]> git.lyx.org Git - lyx.git/blobdiff - src/insets/insetref.h
* src/LyXAction.C: mark goto-clear-bookmark as working without buffer
[lyx.git] / src / insets / insetref.h
index 0311730dbcc8832404458d0b55cbde168a92ca0a..a616a08e28a95403b517956897c9cdb45951901c 100644 (file)
@@ -15,6 +15,9 @@
 #include "insetcommand.h"
 
 
+namespace lyx {
+
+
 /// The reference inset
 class InsetRef : public InsetCommand {
 public:
@@ -36,25 +39,22 @@ public:
        InsetRef(InsetCommandParams const &, Buffer const &);
 
        ///
-       std::string const getScreenLabel(Buffer const &) const;
+       docstring const getScreenLabel(Buffer const &) const;
        ///
        EDITABLE editable() const { return IS_EDITABLE; }
        ///
-       InsetBase::Code lyxCode() const { return InsetBase::REF_CODE; }
+       Code lyxCode() const { return REF_CODE; }
        ///
        bool display() const { return false; }
        ///
-       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;
        ///
        void validate(LaTeXFeatures & features) const;
 protected:
@@ -69,4 +69,7 @@ private:
        ///
        bool isLatex;
 };
+
+} // namespace lyx
+
 #endif