]> git.lyx.org Git - lyx.git/blobdiff - src/insets/InsetSpecialChar.h
tex2lyx: support for Spreadsheet and chess external templates
[lyx.git] / src / insets / InsetSpecialChar.h
index 7a06c54b57a3585e8e1654f0af0cda136f888407..2d8401c2b5fa899fec98085bfe4eb7f9d0722151 100644 (file)
@@ -41,7 +41,7 @@ public:
                /// breakable slash
                SLASH,
                /// protected dash
-               NOBREAKDASH,
+               NOBREAKDASH
        };
 
        ///
@@ -59,7 +59,7 @@ public:
        /// Will not be used when lyxf3
        void read(Lexer & lex);
        ///
-       int latex(odocstream &, OutputParams const &) const;
+       void latex(otexstream &, OutputParams const &) const;
        ///
        int plaintext(odocstream &, OutputParams const &) const;
        ///
@@ -69,17 +69,19 @@ public:
        ///
        void toString(odocstream &) const;
        ///
+       void forToc(docstring &, size_t) const;
+       ///
        InsetCode lyxCode() const { return SPECIALCHAR_CODE; }
        /// We don't need \begin_inset and \end_inset
        bool directWrite() const { return true; }
        ///
        void validate(LaTeXFeatures &) const;
 
-       // should this inset be handled like a normal charater
+       /// should this inset be handled like a normal character?
        bool isChar() const { return true; }
        /// is this equivalent to a letter?
        bool isLetter() const;
-       // should we break lines after this inset?
+       /// should we break lines after this inset?
        bool isLineSeparator() const;
 private:
        Inset * clone() const { return new InsetSpecialChar(*this); };