]> git.lyx.org Git - features.git/blobdiff - src/insets/InsetRef.h
s/updateLabels/updateBuffer/g, per a suggestion of Abdel's.
[features.git] / src / insets / InsetRef.h
index 1271ad1fd0f0528d6b2df06f23232258625d7c7c..1b9e9f469c4821c0df6f58d244ab95b256b86cf2 100644 (file)
@@ -41,7 +41,10 @@ public:
        ///
        bool isLabeled() const { return true; }
        ///
-       docstring screenLabel() const;
+       docstring screenLabel() const { return screen_label_; }
+       ///
+       docstring toolTip(BufferView const &, int, int) const
+               { return tooltip_; }
        ///
        bool hasSettings() const { return true; }
        ///
@@ -54,6 +57,8 @@ public:
        int plaintext(odocstream &, OutputParams const &) const;
        ///
        int docbook(odocstream &, OutputParams const &) const;
+       ///
+       docstring xhtml(XHTMLStream &, OutputParams const &) const;
        /// the string that is passed to the TOC
        void tocString(odocstream &) const;
        ///
@@ -61,11 +66,11 @@ public:
        ///
        static ParamInfo const & findInfo(std::string const &);
        ///
-       static std::string defaultCommand() { return "ref"; };
+       static std::string defaultCommand() { return "ref"; }
        ///
        static bool isCompatibleCommand(std::string const & s);
        ///
-       void updateLabels(ParIterator const & it);
+       void updateBuffer(ParIterator const & it, UpdateType);
        ///
        void addToToc(DocIterator const &);
 protected:
@@ -78,6 +83,8 @@ private:
        bool isLatex;
        ///
        mutable docstring screen_label_;
+       ///
+       mutable docstring tooltip_;
 };
 
 } // namespace lyx