X-Git-Url: https://git.lyx.org/gitweb/?a=blobdiff_plain;f=src%2Finsets%2FInsetLabel.h;h=61bcc1f3109d052835f4c2f5d2b66256bf4a7e84;hb=25ef8e7eef8dfb2b6d6d4f2935ae6775ebf2ba60;hp=afbfda9d552becc761afb2c727ae0d8c82240851;hpb=07b6198f4c3aa6dfe3245394b660966fd3e85c99;p=lyx.git diff --git a/src/insets/InsetLabel.h b/src/insets/InsetLabel.h index afbfda9d55..61bcc1f310 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,35 +17,90 @@ namespace lyx { -class InsetLabel : public InsetCommand { +class Counter; + +class InsetLabel : public InsetCommand +{ public: /// - InsetLabel(InsetCommandParams const &); + 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. + void initView(); /// - docstring const getScreenLabel(Buffer const &) const; + bool isLabeled() const { return true; } /// - EDITABLE editable() const { return IS_EDITABLE; } + bool hasSettings() const { return true; } /// InsetCode lyxCode() const { return LABEL_CODE; } - /// Appends \c list with this label - void getLabelList(Buffer const &, std::vector & list) const; /// - int latex(Buffer const &, odocstream &, OutputParams const &) const; + int plaintext(odocstream &, OutputParams const &) const; /// - int plaintext(Buffer const &, odocstream &, OutputParams const &) const; + int docbook(odocstream &, OutputParams const &) const; /// - int docbook(Buffer const &, odocstream &, OutputParams const &) const; + docstring xhtml(XHTMLStream &, OutputParams const &) const; /// - static CommandInfo const * findInfo(std::string const &); + void updateBuffer(ParIterator const & it, UpdateType); /// - static std::string defaultCommand() { return "label"; }; + void addToToc(DocIterator const &) const; + //@} + + /// \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) { return s == "label"; } -protected: - virtual void doDispatch(Cursor & cur, FuncRequest & cmd); + //@} + + //FIXME: private + /// \name Private functions inherited from InsetCommand class + //@{ + /// + docstring screenLabel() const; + //@} + private: - virtual Inset * clone() const; + /// \name Private functions inherited from Inset class + //@{ + /// + Inset * clone() const { return new InsetLabel(*this); } + /// + bool getStatus(Cursor & cur, FuncRequest const & cmd, FuncStatus & status) const; + /// + void doDispatch(Cursor & cur, FuncRequest & cmd); + //@} + + /// + void uniqueLabel(docstring & label) const; + /// + void updateReferences(docstring const & old_label, + docstring const & new_label); + /// + docstring screen_label_; + /// + docstring active_counter_; + /// + docstring counter_value_; + /// + docstring pretty_counter_; };