]> 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 1af31fa3f808d904b3fe7e8d55349bc436cbcf0f..1b9e9f469c4821c0df6f58d244ab95b256b86cf2 100644 (file)
@@ -4,7 +4,7 @@
  * This file is part of LyX, the document processor.
  * Licence details can be found in the file COPYING.
  *
- * \author José Matos
+ * \author José Matos
  *
  * Full author contact details are available in file CREDITS.
  */
@@ -36,14 +36,17 @@ public:
        static std::string const & getName(int type);
 
 
-       InsetRef(Buffer const & buffer, InsetCommandParams const &);
+       InsetRef(Buffer * buffer, InsetCommandParams const &);
 
        ///
        bool isLabeled() const { return true; }
        ///
-       docstring screenLabel() const;
+       docstring screenLabel() const { return screen_label_; }
        ///
-       EDITABLE editable() const { return IS_EDITABLE; }
+       docstring toolTip(BufferView const &, int, int) const
+               { return tooltip_; }
+       ///
+       bool hasSettings() const { return true; }
        ///
        InsetCode lyxCode() const { return REF_CODE; }
        ///
@@ -54,20 +57,22 @@ 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 textString(odocstream &) const;
+       void tocString(odocstream &) const;
        ///
        void validate(LaTeXFeatures & features) const;
        ///
        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(ParConstIterator const &) const;
+       void addToToc(DocIterator const &);
 protected:
        ///
        InsetRef(InsetRef const &);
@@ -78,6 +83,8 @@ private:
        bool isLatex;
        ///
        mutable docstring screen_label_;
+       ///
+       mutable docstring tooltip_;
 };
 
 } // namespace lyx