]> git.lyx.org Git - lyx.git/blobdiff - src/insets/InsetSpecialChar.h
Fix mis-nomer
[lyx.git] / src / insets / InsetSpecialChar.h
index 7fff625da0b2a9c8be97ac94dc84923c9a210179..ebdfb1a6e4f42754be5c731d5d19114d3744d41e 100644 (file)
@@ -42,10 +42,18 @@ public:
                SLASH,
                /// protected dash
                NOBREAKDASH,
+               /// LyX logo
+               PHRASE_LYX,
+               /// TeX logo
+               PHRASE_TEX,
+               /// LaTeX2e logo
+               PHRASE_LATEX2E,
+               /// LaTeX logo
+               PHRASE_LATEX
        };
 
        ///
-       InsetSpecialChar() : Inset(0) {}
+       InsetSpecialChar() : Inset(0), kind_(HYPHENATION) {}
        ///
        explicit InsetSpecialChar(Kind k);
        ///
@@ -59,15 +67,20 @@ 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;
+       int plaintext(odocstringstream & ods, OutputParams const & op,
+                     size_t max_length = INT_MAX) const;
        ///
        int docbook(odocstream &, OutputParams const &) const;
        ///
        docstring xhtml(XHTMLStream &, OutputParams const &) const;
-       /// the string that is passed to the TOC
-       void tocString(odocstream &) const;
+       ///
+       void toString(odocstream &) const;
+       ///
+       bool isInToc() const { return true; }   
+       ///
+       void forOutliner(docstring &, size_t const, bool const) const;
        ///
        InsetCode lyxCode() const { return SPECIALCHAR_CODE; }
        /// We don't need \begin_inset and \end_inset
@@ -75,14 +88,14 @@ public:
        ///
        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); };
+       Inset * clone() const { return new InsetSpecialChar(*this); }
 
        /// And which kind is this?
        Kind kind_;