]> git.lyx.org Git - lyx.git/blobdiff - src/insets/InsetLabel.h
Fix footnote output in description item
[lyx.git] / src / insets / InsetLabel.h
index 37b9cdb27c2d9bf2c9389daf748fe582d5b54ab9..22131ab4a157bc6a11d44e6773a12c873de2fb43 100644 (file)
@@ -19,59 +19,84 @@ namespace lyx {
 
 class Counter;
 
-class InsetLabel : public InsetCommand {
+class InsetLabel : public InsetCommand
+{
 public:
        ///
        InsetLabel(Buffer * buf, InsetCommandParams const &);
 
+       ///
+       docstring const & activeCounter() const { return active_counter_; }
+       ///
+       docstring const & counterValue() const { return counter_value_; }
+       ///
+       docstring const & prettyCounter() const { return pretty_counter_; }
+       /// Updates only the label string, doesn't handle undo nor references.
+       void updateLabel(docstring const & new_label);
+       /// Updates the label and the references to it.
+       /// Will also handle undo/redo if \p cursor is passed.
+       void updateLabelAndRefs(docstring const & new_label, Cursor * cursor = 0);
+
+       /// \name Public functions inherited from Inset class
+       //@{
        /// verify label and update references.
-       /**
-         * Overloaded from Inset::initView.
-         **/
        void initView();
-
        ///
        bool isLabeled() const { return true; }
-
-       ///
-       docstring screenLabel() const;
        ///
        bool hasSettings() const { return true; }
        ///
        InsetCode lyxCode() const { return LABEL_CODE; }
        ///
-       int plaintext(odocstream &, OutputParams const &) const;
+       int plaintext(odocstringstream & ods, OutputParams const & op,
+                     size_t max_length = INT_MAX) const;
        ///
        int docbook(odocstream &, OutputParams const &) const;
        ///
        docstring xhtml(XHTMLStream &, OutputParams const &) const;
        ///
+       void updateBuffer(ParIterator const & it, UpdateType);
+       ///
+       void addToToc(DocIterator const & di, bool output_active,
+                                 UpdateType utype, TocBackend & backend) const;
+       /// Is the content of this inset part of the immediate (visible) text sequence?
+       bool isPartOfTextSequence() const { return false; }
+       //@}
+
+       /// \name Static public methods obligated for InsetCommand derived classes
+       //@{
+       ///
        static ParamInfo const & findInfo(std::string const &);
        ///
        static std::string defaultCommand() { return "label"; }
        ///
-       static bool isCompatibleCommand(std::string const & s) 
+       static bool isCompatibleCommand(std::string const & s)
                { return s == "label"; }
+       //@}
+
+       //FIXME: private
+       /// \name Private functions inherited from InsetCommand class
+       //@{
        ///
-       void updateBuffer(ParIterator const & it, UpdateType);
-       ///
-       void addToToc(DocIterator const &);
+       docstring screenLabel() const;
+       //@}
+
+private:
+       /// \name Private functions inherited from Inset class
+       //@{
        ///
-       void updateCommand(docstring const & new_label, bool updaterefs = true);
+       Inset * clone() const { return new InsetLabel(*this); }
        ///
        bool getStatus(Cursor & cur, FuncRequest const & cmd, FuncStatus & status) const;
-       ///
-       docstring const & activeCounter() const { return active_counter_; }
-       ///
-       docstring const & counterValue() const { return counter_value_; }
-       ///
-       docstring const & prettyCounter() const { return pretty_counter_; }
-protected:
        ///
        void doDispatch(Cursor & cur, FuncRequest & cmd);
-private:
+       //@}
+
        ///
-       Inset * clone() const { return new InsetLabel(*this); }
+       void uniqueLabel(docstring & label) const;
+       ///
+       void updateReferences(docstring const & old_label,
+               docstring const & new_label);
        ///
        docstring screen_label_;
        ///