]> git.lyx.org Git - lyx.git/blobdiff - src/insets/InsetSpecialChar.h
Remove hardcoded values
[lyx.git] / src / insets / InsetSpecialChar.h
index 423afda505ae6495b9ef02086a74e2a61560d65f..6474c571733ac2f7c8b574580e18a3387b15871d 100644 (file)
@@ -41,11 +41,19 @@ public:
                /// breakable slash
                SLASH,
                /// protected dash
-               NOBREAKDASH
+               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);
        ///
@@ -70,7 +78,9 @@ public:
        ///
        void toString(odocstream &) const;
        ///
-       void forToc(docstring &, size_t) 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
@@ -79,11 +89,13 @@ public:
        void validate(LaTeXFeatures &) const;
 
        /// should this inset be handled like a normal character?
-       bool isChar() const { return true; }
+       bool isChar() const;
        /// is this equivalent to a letter?
        bool isLetter() const;
        /// should we break lines after this inset?
        bool isLineSeparator() const;
+       /// Is the content of this inset part of the immediate (visible) text sequence?
+       bool isPartOfTextSequence() const { return isChar(); }
 private:
        Inset * clone() const { return new InsetSpecialChar(*this); }