]> git.lyx.org Git - lyx.git/blobdiff - src/insets/insetquotes.h
Enable the external inset to handle unknown templates gracefully.
[lyx.git] / src / insets / insetquotes.h
index 3bfa6c095fb194f2168a187414082c41835aa72d..b0cb73ca94dde3616bf6487eb814e96aa7b8d7d6 100644 (file)
@@ -22,7 +22,6 @@ struct LaTeXFeatures;
 
 
 /** Quotes.
-
   Used for the various quotes. German, English, French, all either
   double or single **/
 class InsetQuotes : public Inset {
@@ -68,15 +67,12 @@ public:
        InsetQuotes(string const & str = "eld");
        /// Create the right quote inset after character c
        InsetQuotes(char c, BufferParams const & params);
-
        ///
-       int ascent(BufferView *, LyXFont const &) const;
+       Inset * clone() const;
        ///
-       int descent(BufferView *, LyXFont const &) const;
+       void metrics(MetricsInfo &, Dimension &) const;
        ///
-       int width(BufferView *, LyXFont const &) const;
-       ///
-       void draw(BufferView *, LyXFont const &, int, float &, bool) const;
+       void draw(PainterInfo & pi, int x, int y) const;
 #if 0
        ///
        LyXFont const convertFont(LyXFont const & font) const;
@@ -87,7 +83,7 @@ public:
        void read(Buffer const *, LyXLex & lex);
        ///
        int latex(Buffer const *, std::ostream &,
-                 bool fragile, bool free_spc) const;
+                 LatexRunParams const &) const;
        ///
        int ascii(Buffer const *, std::ostream &, int linelen) const;
        ///
@@ -97,8 +93,6 @@ public:
        ///
        void validate(LaTeXFeatures &) const;
        ///
-       virtual Inset * clone(Buffer const &, bool same_id = false) const;
-       ///
        Inset::Code lyxCode() const;
        // should this inset be handled like a normal charater
        bool isChar() const { return true; }