X-Git-Url: https://git.lyx.org/gitweb/?a=blobdiff_plain;f=src%2Finsets%2FInsetLabel.h;h=65a6d3aa20fa3f5b16a739f1ad52da99021f8b56;hb=83074c431c97f5447ddbfd8394c97c1118c93693;hp=e9e2669c10d0552b252079e650927f8ab319f3b8;hpb=132003aac5a30bc133f82a453a558945f13d83ff;p=lyx.git diff --git a/src/insets/InsetLabel.h b/src/insets/InsetLabel.h index e9e2669c10..65a6d3aa20 100644 --- a/src/insets/InsetLabel.h +++ b/src/insets/InsetLabel.h @@ -4,7 +4,7 @@ * This file is part of LyX, the document processor. * Licence details can be found in the file COPYING. * - * \author Lars Gullik Bjønnes + * \author Lars Gullik Bjønnes * * Full author contact details are available in file CREDITS. */ @@ -17,43 +17,94 @@ namespace lyx { -class InsetLabel : public InsetCommand { +class Counter; + +class InsetLabel : public InsetCommand +{ public: /// - InsetLabel(InsetCommandParams const &); + InsetLabel(Buffer * buf, InsetCommandParams const &); + /// - docstring screenLabel() const; + docstring const & activeCounter() const { return active_counter_; } /// - EDITABLE editable() const { return IS_EDITABLE; } + docstring const & counterValue() const { return counter_value_; } /// - InsetCode lyxCode() const { return LABEL_CODE; } - /// Appends \c list with this label - void getLabelList(std::vector & list) const; + 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. + void initView(); + /// + bool isLabeled() const { return true; } /// - int latex(odocstream &, OutputParams const &) const; + bool hasSettings() const { return true; } /// - int plaintext(odocstream &, OutputParams const &) const; + InsetCode lyxCode() const { return LABEL_CODE; } + /// + 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 std::string defaultCommand() { return "label"; } /// static bool isCompatibleCommand(std::string const & s) { return s == "label"; } + //@} + + //FIXME: private + /// \name Private functions inherited from InsetCommand class + //@{ + /// + docstring screenLabel() const; + //@} + +private: + /// \name Private functions inherited from Inset class + //@{ /// - void updateLabels(ParIterator const & it); + Inset * clone() const { return new InsetLabel(*this); } /// - void addToToc(ParConstIterator const &) const; -protected: + bool getStatus(Cursor & cur, FuncRequest const & cmd, FuncStatus & status) const; /// 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_; + /// + docstring active_counter_; + /// + docstring counter_value_; /// - void update(docstring const & new_label); + docstring pretty_counter_; };