X-Git-Url: https://git.lyx.org/gitweb/?a=blobdiff_plain;f=src%2Finsets%2FInsetLabel.h;h=dba25f01c942475a61752cf9c862e9229feaece7;hb=3a949b32f08ce4884906a9c5d47c4d7031c794b2;hp=375430b7bfd38e4187a250da1c130b6c071768ad;hpb=152491f9162604dc2060158b497c756b635d4d29;p=lyx.git diff --git a/src/insets/InsetLabel.h b/src/insets/InsetLabel.h index 375430b7bf..dba25f01c9 100644 --- a/src/insets/InsetLabel.h +++ b/src/insets/InsetLabel.h @@ -17,62 +17,88 @@ namespace lyx { -class Counter; - -class InsetLabel : public InsetCommand +class InsetLabel : public InsetCommand { public: /// InsetLabel(Buffer * buf, InsetCommandParams const &); - /// verify label and update references. - /** - * Overloaded from Inset::initView. - **/ - void initView(); - /// - bool isLabeled() const { return true; } + docstring const & activeCounter() const { return active_counter_; } + /// + docstring const & counterValue() const { return counter_value_; } + /// + docstring const & prettyCounter() const { return pretty_counter_; } + /// + int rowFlags() const override { return CanBreakBefore | CanBreakAfter; } + /// Updates only the label string, doesn't handle undo nor references. + void updateLabel(docstring const & new_label, bool const active = true); + /// 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. + void initView() override; /// - docstring screenLabel() const; + bool isLabeled() const override { return true; } /// - bool hasSettings() const { return true; } + bool hasSettings() const override { return true; } /// - InsetCode lyxCode() const { return LABEL_CODE; } + InsetCode lyxCode() const override { return LABEL_CODE; } /// - int plaintext(odocstream &, OutputParams const &) const; + void latex(otexstream & os, OutputParams const & runparams_in) const override; /// - int docbook(odocstream &, OutputParams const &) const; + int plaintext(odocstringstream & ods, OutputParams const & op, + size_t max_length = INT_MAX) const override; /// - docstring xhtml(XHTMLStream &, OutputParams const &) const; + void docbook(XMLStream &, OutputParams const &) const override; /// - static ParamInfo const & findInfo(std::string const &); + docstring xhtml(XMLStream &, OutputParams const &) const override; /// - static std::string defaultCommand() { return "label"; } + void updateBuffer(ParIterator const & it, UpdateType, bool const deleted = false) override; /// - static bool isCompatibleCommand(std::string const & s) - { return s == "label"; } + void addToToc(DocIterator const & di, bool output_active, + UpdateType utype, TocBackend & backend) const override; + /// Is the content of this inset part of the immediate (visible) text sequence? + bool isPartOfTextSequence() const override { return false; } + //@} + + /// \name Static public methods obligated for InsetCommand derived classes + //@{ /// - void updateBuffer(ParIterator const & it, UpdateType); + static ParamInfo const & findInfo(std::string const &); /// - void addToToc(DocIterator const &); + static std::string defaultCommand() { return "label"; } /// - void updateCommand(docstring const & new_label, bool updaterefs = true); + static bool isCompatibleCommand(std::string const & s) + { return s == "label"; } + //@} + + //FIXME: private + /// \name Private functions inherited from InsetCommand class + //@{ /// - bool getStatus(Cursor & cur, FuncRequest const & cmd, FuncStatus & status) const; + docstring screenLabel() const override; + //@} + +private: + /// \name Private functions inherited from Inset class + //@{ /// - docstring const & activeCounter() const { return active_counter_; } + Inset * clone() const override { return new InsetLabel(*this); } /// - docstring const & counterValue() const { return counter_value_; } + bool getStatus(Cursor & cur, FuncRequest const & cmd, FuncStatus & status) const override; /// - docstring const & prettyCounter() const { return pretty_counter_; } -protected: + void doDispatch(Cursor & cur, FuncRequest & cmd) override; + //@} + /// - void doDispatch(Cursor & cur, FuncRequest & cmd); -private: + void uniqueLabel(docstring & label) const; /// - Inset * clone() const { return new InsetLabel(*this); } + void updateReferences(docstring const & old_label, + docstring const & new_label); /// docstring screen_label_; ///