X-Git-Url: https://git.lyx.org/gitweb/?a=blobdiff_plain;f=src%2Finsets%2FInsetBibitem.h;h=41497e18497f48ac185baafe37c29a156a7153a7;hb=239b9919ffe28338d789e6dc9122228f77ab77a7;hp=98db70e68d569f40858c8a47308ed1c4bdc03792;hpb=8a221dc70c53b950697f8440ec4894f2cede7cfa;p=lyx.git diff --git a/src/insets/InsetBibitem.h b/src/insets/InsetBibitem.h index 98db70e68d..41497e1849 100644 --- a/src/insets/InsetBibitem.h +++ b/src/insets/InsetBibitem.h @@ -18,51 +18,95 @@ namespace lyx { -/** Used to insert bibitem's information (key and label) +class BiblioInfo; - Must be automatically inserted as the first object in a - bibliography paragraph. - */ -class InsetBibitem : public InsetCommand { +///////////////////////////////////////////////////////////////////////// +// +// InsetBibItem +// +///////////////////////////////////////////////////////////////////////// + +/// Used to insert bibitem's information (key and label) + +// Must be automatically inserted as the first object in a +// bibliography paragraph. +class InsetBibitem : public InsetCommand +{ public: /// - InsetBibitem(InsetCommandParams const &); + InsetBibitem(Buffer *, InsetCommandParams const &); /// - void read(Buffer const &, Lexer & lex); + ~InsetBibitem(); + /// - docstring const getScreenLabel(Buffer const &) const; + void updateCommand(docstring const & new_key, bool dummy = false); + + /// \name Public functions inherited from Inset class + //@{ /// - EDITABLE editable() const { return IS_EDITABLE; } + InsetCode lyxCode() const { return BIBITEM_CODE; } /// - Inset::Code lyxCode() const { return Inset::BIBITEM_CODE; } + bool hasSettings() const { return true; } + /// \copydoc Inset::initView() + /// verify label and update references. + void initView(); /// - void setCounter(int); + bool isLabeled() const { return true; } /// - int getCounter() const { return counter; } + void read(Lexer & lex); /// - docstring const getBibLabel() const; + int plaintext(odocstringstream &, OutputParams const &, + size_t max_length = INT_MAX) const; /// - int plaintext(Buffer const &, odocstream &, OutputParams const &) const; + docstring xhtml(XHTMLStream &, OutputParams const &) const; /// - virtual void fillWithBibKeys(Buffer const &, - std::vector > &, - InsetIterator const &) const; + void collectBibKeys(InsetIterator const &) const; + /// update the counter of this inset + void updateBuffer(ParIterator const &, UpdateType); + ///@} -protected: + /// \name Static public methods obligated for InsetCommand derived classes + //@{ /// - virtual void doDispatch(Cursor & cur, FuncRequest & cmd); + static ParamInfo const & findInfo(std::string const &); + /// + static std::string defaultCommand() { return "bibitem"; } + /// + static bool isCompatibleCommand(std::string const & s) + { return s == "bibitem"; } + ///@} + private: - virtual std::auto_ptr doClone() const; + /// + docstring bibLabel() const; + + /// \name Private functions inherited from Inset class + //@{ + /// + void doDispatch(Cursor & cur, FuncRequest & cmd); + /// + Inset * clone() const { return new InsetBibitem(*this); } + /// Is the content of this inset part of the immediate (visible) text sequence? + bool isPartOfTextSequence() const { return false; } + ///@} + /// \name Private functions inherited from InsetCommand class + //@{ /// - int counter; + docstring screenLabel() const; + //@} + + friend docstring bibitemWidest(Buffer const & buffer, OutputParams const &); + + /// The label that is set by updateBuffer + docstring autolabel_; /// static int key_counter; }; /// Return the widest label in the Bibliography. -docstring const bibitemWidest(Buffer const &); +docstring bibitemWidest(Buffer const &, OutputParams const &); } // namespace lyx