X-Git-Url: https://git.lyx.org/gitweb/?a=blobdiff_plain;f=src%2Finsets%2FInsetSpecialChar.h;h=2d8401c2b5fa899fec98085bfe4eb7f9d0722151;hb=2906a35663b92030b0668a42ab370dba8ffca4cf;hp=1f04c3d803367acfed610ac997619b4840c5d06c;hpb=b83564d82cbf5ffab48715293df03b6b6284c1b5;p=lyx.git diff --git a/src/insets/InsetSpecialChar.h b/src/insets/InsetSpecialChar.h index 1f04c3d803..2d8401c2b5 100644 --- a/src/insets/InsetSpecialChar.h +++ b/src/insets/InsetSpecialChar.h @@ -6,7 +6,7 @@ * * \author Asger Alstrup Nielsen * \author Jean-Marc Lasgouttes - * \author Lars Gullik Bjønnes + * \author Lars Gullik Bjønnes * * Full author contact details are available in file CREDITS. */ @@ -41,11 +41,11 @@ public: /// breakable slash SLASH, /// protected dash - NOBREAKDASH, + NOBREAKDASH }; /// - InsetSpecialChar() {} + InsetSpecialChar() : Inset(0) {} /// explicit InsetSpecialChar(Kind k); /// @@ -59,13 +59,17 @@ 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 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 forToc(docstring &, size_t) const; /// InsetCode lyxCode() const { return SPECIALCHAR_CODE; } /// We don't need \begin_inset and \end_inset @@ -73,11 +77,11 @@ 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); };