X-Git-Url: https://git.lyx.org/gitweb/?a=blobdiff_plain;f=src%2Finsets%2Finsetspecialchar.h;h=26ee9612bde82ee48684161012c687a4420fce19;hb=e28331ed63062dea10d0a21b9ec12034b4b17b9a;hp=6f6c607518d49ad59d4b950166718eb2fa287f06;hpb=59413be9a0b999c17784d1abad01e55819ecd27a;p=lyx.git diff --git a/src/insets/insetspecialchar.h b/src/insets/insetspecialchar.h index 6f6c607518..26ee9612bd 100644 --- a/src/insets/insetspecialchar.h +++ b/src/insets/insetspecialchar.h @@ -17,7 +17,10 @@ #include "inset.h" -struct LaTeXFeatures; + +namespace lyx { + +class LaTeXFeatures; /// Used to insert special chars class InsetSpecialChar : public InsetOld { @@ -45,7 +48,7 @@ public: /// Kind kind() const; /// - void metrics(MetricsInfo &, Dimension &) const; + bool metrics(MetricsInfo &, Dimension &) const; /// void draw(PainterInfo & pi, int x, int y) const; /// @@ -53,19 +56,19 @@ public: /// Will not be used when lyxf3 void read(Buffer const &, LyXLex & lex); /// - int latex(Buffer const &, std::ostream &, + int latex(Buffer const &, odocstream &, OutputParams const &) const; /// - int plaintext(Buffer const &, std::ostream &, + int plaintext(Buffer const &, odocstream &, OutputParams const &) const; /// - int linuxdoc(Buffer const &, std::ostream &, - OutputParams const &) const; - /// - int docbook(Buffer const &, std::ostream &, + int docbook(Buffer const &, odocstream &, OutputParams const &) const; + /// the string that is passed to the TOC + virtual int textString(Buffer const &, odocstream &, + OutputParams const &) const; /// - InsetOld::Code lyxCode() const { return InsetOld::SPECIALCHAR_CODE; } + InsetBase::Code lyxCode() const { return InsetBase::SPECIALCHAR_CODE; } /// We don't need \begin_inset and \end_inset bool directWrite() const { return true; } /// @@ -84,4 +87,7 @@ private: Kind kind_; }; + +} // namespace lyx + #endif