]> git.lyx.org Git - lyx.git/blobdiff - src/insets/InsetRef.h
Well, it turns out that we need a different return value for the xhtml
[lyx.git] / src / insets / InsetRef.h
index 9bc8d44641021766304b899386dd8b0327b2e1a9..e6f37462cd53ca1e3167598cfbc5ebfe7f423809 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,12 +36,14 @@ public:
        static std::string const & getName(int type);
 
 
-       InsetRef(InsetCommandParams const &, Buffer const &);
+       InsetRef(Buffer const & buffer, InsetCommandParams const &);
 
+       ///
+       bool isLabeled() const { return true; }
        ///
        docstring screenLabel() const;
        ///
-       EDITABLE editable() const { return IS_EDITABLE; }
+       bool hasSettings() const { return true; }
        ///
        InsetCode lyxCode() const { return REF_CODE; }
        ///
@@ -53,7 +55,7 @@ public:
        ///
        int docbook(odocstream &, OutputParams const &) const;
        /// the string that is passed to the TOC
-       void textString(odocstream &) const;
+       void tocString(odocstream &) const;
        ///
        void validate(LaTeXFeatures & features) const;
        ///
@@ -63,17 +65,19 @@ public:
        ///
        static bool isCompatibleCommand(std::string const & s);
        ///
-       void addToToc(ParConstIterator const &) const;
+       void updateLabels(ParIterator const & it);
+       ///
+       void addToToc(DocIterator const &);
 protected:
        ///
        InsetRef(InsetRef const &);
-       ///
-       void doDispatch(Cursor & cur, FuncRequest & cmd);
 private:
        ///
        Inset * clone() const { return new InsetRef(*this); }
        ///
        bool isLatex;
+       ///
+       mutable docstring screen_label_;
 };
 
 } // namespace lyx