X-Git-Url: https://git.lyx.org/gitweb/?a=blobdiff_plain;f=src%2Finsets%2FInsetSpecialChar.h;h=ebdfb1a6e4f42754be5c731d5d19114d3744d41e;hb=e4c46abeb7385960c9dd42494e3c7c1f3e699b56;hp=2d8401c2b5fa899fec98085bfe4eb7f9d0722151;hpb=266399ef83b3aa2bf4e9ff014f07412fc637b280;p=lyx.git diff --git a/src/insets/InsetSpecialChar.h b/src/insets/InsetSpecialChar.h index 2d8401c2b5..ebdfb1a6e4 100644 --- a/src/insets/InsetSpecialChar.h +++ b/src/insets/InsetSpecialChar.h @@ -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); /// @@ -61,7 +69,8 @@ public: /// 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; /// @@ -69,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 @@ -84,7 +95,7 @@ public: /// 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_;