]> git.lyx.org Git - lyx.git/blobdiff - src/insets/insetlatexaccent.h
The speed patch: redraw only rows that have changed
[lyx.git] / src / insets / insetlatexaccent.h
index d35f71bd2580c1f7eafc5ffd84d44358eb83ec72..a44359f77a6e6518cf2f4d40ee5761789c0e9c33 100644 (file)
@@ -30,8 +30,7 @@ public:
        ///
        InsetLatexAccent();
        ///
-       explicit
-       InsetLatexAccent(std::string const & str);
+       explicit InsetLatexAccent(std::string const & str);
        ///
        void metrics(MetricsInfo &, Dimension &) const;
        ///
@@ -58,17 +57,21 @@ public:
        ///
        int docbook(Buffer const &, std::ostream &,
                    OutputParams const &) const;
+       /// the string that is passed to the TOC
+       virtual int textString(Buffer const &, std::ostream & os,
+               OutputParams const &) const;
        ///
        bool directWrite() const;
        ///
-       virtual std::auto_ptr<InsetBase> clone() const;
-       ///
-       InsetOld::Code lyxCode()const;
+       InsetBase::Code lyxCode()const;
        ///
        inline bool canDisplay();
        // should this inset be handled like a normal charater
        bool isChar() const { return true; }
 
+       /// is this equivalent to a letter?
+       virtual bool isLetter() const { return candisp; }
+
        /// all the accent types
        enum ACCENT_TYPES{
                ///
@@ -116,6 +119,9 @@ public:
        };
 private:
        friend std::ostream & operator<<(std::ostream &, ACCENT_TYPES);
+
+       virtual std::auto_ptr<InsetBase> doClone() const;
+
        /// Check if we know the modifier and can display it ok on screen.
        void checkContents();
        ///