]> git.lyx.org Git - lyx.git/blobdiff - src/insets/insetquotes.h
changelogs
[lyx.git] / src / insets / insetquotes.h
index 57bc9db7b29d97ef3188f56bb4dc7e36089d7109..c88dfeb8bfb0ed703617de97e493ca94e88a8106 100644 (file)
@@ -67,8 +67,8 @@ public:
        InsetQuotes(std::string const & str = "eld");
        /// Create the right quote inset after character c
        InsetQuotes(char c, BufferParams const & params);
-       ///
-       virtual std::auto_ptr<InsetBase> clone() const;
+       /// Direct access to inner/outer quotation marks
+       InsetQuotes(char c, quote_language l, quote_times t);
        ///
        void metrics(MetricsInfo &, Dimension &) const;
        ///
@@ -83,21 +83,26 @@ public:
        void read(Buffer const &, LyXLex & lex);
        ///
        int latex(Buffer const &, std::ostream &,
-                 LatexRunParams const &) const;
+                 OutputParams const &) const;
        ///
-       int ascii(Buffer const &, std::ostream &, int linelen) const;
+       int plaintext(Buffer const &, std::ostream &,
+                 OutputParams const &) const;
        ///
-       int linuxdoc(Buffer const &, std::ostream &) const;
+       int linuxdoc(Buffer const &, std::ostream &,
+                    OutputParams const &) const;
        ///
-       int docbook(Buffer const &, std::ostream &, bool mixcont) const;
+       int docbook(Buffer const &, std::ostream &,
+                   OutputParams const &) const;
        ///
        void validate(LaTeXFeatures &) const;
        ///
        InsetOld::Code lyxCode() const;
-       // should this inset be handled like a normal charater
+       // should this inset be handled like a normal character
        bool isChar() const { return true; }
 
 private:
+       virtual std::auto_ptr<InsetBase> doClone() const;
+
        ///
        quote_language language_;
        ///
@@ -109,6 +114,8 @@ private:
            side and the multiplicity of the quote.
         */
        InsetQuotes(quote_language l, quote_side s, quote_times t);
+       /// Decide whether we need left or right quotation marks
+       void getPosition(char c);
        ///
        void parseString(std::string const &);
        ///