]> 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 13284c8db2db2835a6713e60267e931cce2e5909..33ba32ebc27e6b0b4c61834b66e48082dbac6428 100644 (file)
@@ -21,14 +21,22 @@ class InsetLabel : public InsetCommand {
 public:
        ///
        InsetLabel(InsetCommandParams const &);
+
+       /// verify label and update references.
+       /**
+         * Overloaded from Inset::initView.
+         **/
+       void initView();
+
+       ///
+       bool isLabeled() const { return true; }
+
        ///
        docstring screenLabel() const;
        ///
        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;
        ///
@@ -45,13 +53,17 @@ public:
        ///
        void updateLabels(ParIterator const & it);
        ///
-       void addToToc(ParConstIterator const &) const;
+       void addToToc(DocIterator const &);
+       ///
+       void updateCommand(docstring const & new_label, bool updaterefs = true);
 protected:
        ///
        void doDispatch(Cursor & cur, FuncRequest & cmd);
 private:
        ///
        Inset * clone() const { return new InsetLabel(*this); }
+       ///
+       docstring screen_label_;
 };