X-Git-Url: https://git.lyx.org/gitweb/?a=blobdiff_plain;f=src%2Finsets%2FInsetSpecialChar.h;h=5ce620cc2eb78240fdade0c4bfdea4d5c7ecb7f7;hb=15ae3eb85c5494b4343936108cb3b5b7c53bafe4;hp=5485607c9a309ed1fd4f342be2186bad7be0c70c;hpb=f1cba8ff64b369792fd49f5ddf90e8126ab476ac;p=lyx.git diff --git a/src/insets/InsetSpecialChar.h b/src/insets/InsetSpecialChar.h index 5485607c9a..5ce620cc2e 100644 --- a/src/insets/InsetSpecialChar.h +++ b/src/insets/InsetSpecialChar.h @@ -41,11 +41,11 @@ public: /// breakable slash SLASH, /// protected dash - NOBREAKDASH, + NOBREAKDASH }; /// - InsetSpecialChar() {} + InsetSpecialChar() : Inset(0) {} /// explicit InsetSpecialChar(Kind k); /// @@ -59,13 +59,18 @@ 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; - /// the string that is passed to the TOC - void tocString(odocstream &) const; + /// + docstring xhtml(XHTMLStream &, OutputParams const &) const; + /// + void toString(odocstream &) const; + /// + void forOutliner(docstring &, size_t) const; /// InsetCode lyxCode() const { return SPECIALCHAR_CODE; } /// We don't need \begin_inset and \end_inset @@ -73,14 +78,14 @@ public: /// void validate(LaTeXFeatures &) const; - // should this inset be handled like a normal charater - bool isChar() const; + /// 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_;