]> git.lyx.org Git - lyx.git/blobdiff - src/insets/InsetLabel.h
This optional argument to the InsetCollapsable constructor
[lyx.git] / src / insets / InsetLabel.h
index ca868400457dcb2d29cc116463951dcdc66f12fa..33ba32ebc27e6b0b4c61834b66e48082dbac6428 100644 (file)
@@ -24,9 +24,12 @@ public:
 
        /// verify label and update references.
        /**
-         * Overloaded from Inset::validate.
+         * Overloaded from Inset::initView.
          **/
-       void validate();
+       void initView();
+
+       ///
+       bool isLabeled() const { return true; }
 
        ///
        docstring screenLabel() const;
@@ -34,8 +37,6 @@ public:
        EDITABLE editable() const { return IS_EDITABLE; }
        ///
        InsetCode lyxCode() const { return LABEL_CODE; }
-       /// Appends \c list with this label
-       void getLabelList(std::vector<docstring> & list) const;
        ///
        int latex(odocstream &, OutputParams const &) const;
        ///
@@ -52,9 +53,9 @@ public:
        ///
        void updateLabels(ParIterator const & it);
        ///
-       void addToToc(ParConstIterator const &) const;
+       void addToToc(DocIterator const &);
        ///
-       void update(docstring const & new_label, bool updaterefs = true);
+       void updateCommand(docstring const & new_label, bool updaterefs = true);
 protected:
        ///
        void doDispatch(Cursor & cur, FuncRequest & cmd);