]> git.lyx.org Git - lyx.git/blobdiff - src/insets/insetspecialchar.h
* BufferParams:
[lyx.git] / src / insets / insetspecialchar.h
index fabcf8eaa1f0ca012b3e8af647a8da69c4b76a39..91655f3cf9b6db5d236a19e6b6e1483444beafb9 100644 (file)
@@ -17,6 +17,9 @@
 
 #include "inset.h"
 
+
+namespace lyx {
+
 class LaTeXFeatures;
 
 ///  Used to insert special chars
@@ -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,17 +56,17 @@ public:
        /// Will not be used when lyxf3
        void read(Buffer const &, LyXLex & lex);
        ///
-       int latex(Buffer const &, std::ostream &,
-                 OutputParams const &) const;
-       ///
-       int plaintext(Buffer const &, std::ostream &,
-                 OutputParams const &) const;
+       int latex(Buffer const &, odocstream &,
+                 OutputParams const &) const;
        ///
-       int linuxdoc(Buffer const &, std::ostream &,
-                    OutputParams const &) const;
+       int plaintext(Buffer const &, odocstream &,
+                     OutputParams const &) const;
        ///
-       int docbook(Buffer const &, std::ostream &,
-                   OutputParams const &) const;
+       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;
        ///
        InsetBase::Code lyxCode() const { return InsetBase::SPECIALCHAR_CODE; }
        /// We don't need \begin_inset and \end_inset
@@ -84,4 +87,7 @@ private:
        Kind kind_;
 };
 
+
+} // namespace lyx
+
 #endif