X-Git-Url: https://git.lyx.org/gitweb/?a=blobdiff_plain;f=src%2Finsets%2FInsetBibitem.h;h=ba33732ad0b01d33a7ee6c6ce02d1df6235b508e;hb=131f4b92bac3ecb75b47c266dfa3d8543bd4d578;hp=44adc6b1ef6cc4c5758215f101fcad16faad11a6;hpb=2ab77c16f64b5e966c351f4d7a544e4892825127;p=lyx.git diff --git a/src/insets/InsetBibitem.h b/src/insets/InsetBibitem.h index 44adc6b1ef..ba33732ad0 100644 --- a/src/insets/InsetBibitem.h +++ b/src/insets/InsetBibitem.h @@ -14,59 +14,91 @@ #include "InsetCommand.h" -#include "BiblioInfo.h" 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 &); + /// + ~InsetBibitem(); + + /// + void updateCommand(docstring const & new_key, bool dummy = false); + + /// \name Public functions inherited from Inset class + //@{ + /// + InsetCode lyxCode() const { return BIBITEM_CODE; } + /// + bool hasSettings() const { return true; } + /// \copydoc Inset::initView() /// verify label and update references. - /** - * Overloaded from Inset::initView. - **/ void initView(); /// bool isLabeled() const { return true; } /// void read(Lexer & lex); /// - docstring screenLabel() const; - /// - EDITABLE editable() const { return IS_EDITABLE; } - /// - InsetCode lyxCode() const { return BIBITEM_CODE; } - /// - docstring bibLabel() const; + int plaintext(odocstringstream &, OutputParams const &, + size_t max_length = INT_MAX) const; /// - int plaintext(odocstream &, OutputParams const &) const; + docstring xhtml(XHTMLStream &, OutputParams const &) const; /// - virtual void fillWithBibKeys(BiblioInfo &, InsetIterator const &) const; - /// Update the counter of this inset - virtual void updateLabels(ParIterator const &); + void collectBibKeys(InsetIterator const &, support::FileNameList &) const; + /// update the counter of this inset + void updateBuffer(ParIterator const &, UpdateType); + ///@} + + /// \name Static public methods obligated for InsetCommand derived classes + //@{ /// static ParamInfo const & findInfo(std::string const &); /// - static std::string defaultCommand() { return "bibitem"; }; + static std::string defaultCommand() { return "bibitem"; } /// - static bool isCompatibleCommand(std::string const & s) + static bool isCompatibleCommand(std::string const & s) { return s == "bibitem"; } + ///@} + +private: /// - void updateCommand(docstring const & new_key, bool dummy = false); -protected: + docstring bibLabel() const; + + /// \name Private functions inherited from Inset class + //@{ /// - virtual void doDispatch(Cursor & cur, FuncRequest & cmd); -private: + 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 + //@{ /// - virtual Inset * clone() const { return new InsetBibitem(*this); } - /// The label that is set by updateLabels + docstring screenLabel() const; + //@} + + friend docstring bibitemWidest(Buffer const & buffer, OutputParams const &); + + /// The label that is set by updateBuffer docstring autolabel_; /// static int key_counter; @@ -74,7 +106,7 @@ private: /// Return the widest label in the Bibliography. -docstring const bibitemWidest(Buffer const &); +docstring bibitemWidest(Buffer const &, OutputParams const &); } // namespace lyx