]> git.lyx.org Git - lyx.git/blobdiff - src/insets/InsetQuotes.h
Andre's s/getTextClass/textClass/ cleanup.
[lyx.git] / src / insets / InsetQuotes.h
index a8b1a17fa6c6ce8fc69ed27828dc0037e4885640..118768bdcd35b21fa7567ae92fc675843b251bed 100644 (file)
@@ -28,7 +28,7 @@ class LaTeXFeatures;
 /** Quotes.
   Used for the various quotes. German, English, French, all either
   double or single **/
-class InsetQuotes : public InsetOld {
+class InsetQuotes : public Inset {
 public:
        ///
        enum quote_language {
@@ -67,20 +67,17 @@ public:
            \item etc.
          \end{itemize}
          */
-       explicit
-       InsetQuotes(std::string const & str = "eld");
+       explicit InsetQuotes(std::string const & str = "eld");
        /// Create the right quote inset after character c
        InsetQuotes(char_type c, BufferParams const & params);
        /// Direct access to inner/outer quotation marks
        InsetQuotes(char_type c, quote_language l, quote_times t);
        ///
-       bool metrics(MetricsInfo &, Dimension &) const;
+       docstring name() const;
        ///
-       void draw(PainterInfo & pi, int x, int y) const;
-#if 0
+       void metrics(MetricsInfo &, Dimension &) const;
        ///
-       LyXFont const convertFont(LyXFont const & font) const;
-#endif
+       void draw(PainterInfo & pi, int x, int y) const;
        ///
        void write(Buffer const &, std::ostream &) const;
        ///
@@ -98,12 +95,12 @@ public:
        ///
        void validate(LaTeXFeatures &) const;
        ///
-       InsetBase::Code lyxCode() const;
-       // should this inset be handled like a normal character
+       InsetCode lyxCode() const { return QUOTE_CODE; }
+       /// should this inset be handled like a normal character
        bool isChar() const { return true; }
 
 private:
-       virtual std::auto_ptr<InsetBase> doClone() const;
+       virtual Inset * clone() const;
 
        ///
        quote_language language_;