X-Git-Url: https://git.lyx.org/gitweb/?a=blobdiff_plain;f=src%2Finsets%2FInsetBibitem.h;h=41497e18497f48ac185baafe37c29a156a7153a7;hb=239b9919ffe28338d789e6dc9122228f77ab77a7;hp=1508a22c771c63695a8cc1a6348a4d7a37da34cc;hpb=35f3f7cbc4c4bda01aee68cdd5c24abd53365954;p=lyx.git diff --git a/src/insets/InsetBibitem.h b/src/insets/InsetBibitem.h index 1508a22c77..41497e1849 100644 --- a/src/insets/InsetBibitem.h +++ b/src/insets/InsetBibitem.h @@ -12,12 +12,14 @@ #ifndef INSET_BIBITEM_H #define INSET_BIBITEM_H -#include "BiblioInfo.h" + #include "InsetCommand.h" namespace lyx { +class BiblioInfo; + ///////////////////////////////////////////////////////////////////////// // // InsetBibItem @@ -35,45 +37,67 @@ public: InsetBibitem(Buffer *, InsetCommandParams const &); /// ~InsetBibitem(); + /// - static ParamInfo const & findInfo(std::string const &); + void updateCommand(docstring const & new_key, bool dummy = false); + + /// \name Public functions inherited from Inset class + //@{ /// - static std::string defaultCommand() { return "bibitem"; } + InsetCode lyxCode() const { return BIBITEM_CODE; } /// - static bool isCompatibleCommand(std::string const & s) - { return s == "bibitem"; } -private: + 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; - /// - bool hasSettings() const { return true; } + int plaintext(odocstringstream &, OutputParams const &, + size_t max_length = INT_MAX) const; /// - InsetCode lyxCode() const { return BIBITEM_CODE; } + docstring xhtml(XHTMLStream &, OutputParams const &) const; /// - docstring bibLabel() const; + void collectBibKeys(InsetIterator const &) const; + /// update the counter of this inset + void updateBuffer(ParIterator const &, UpdateType); + ///@} + + /// \name Static public methods obligated for InsetCommand derived classes + //@{ /// - int plaintext(odocstream &, OutputParams const &) const; + static ParamInfo const & findInfo(std::string const &); /// - docstring xhtml(XHTMLStream &, OutputParams const &) const; + static std::string defaultCommand() { return "bibitem"; } /// - virtual void fillWithBibKeys(BiblioInfo &) const; - /// Update the counter of this inset - void updateBuffer(ParIterator const &, UpdateType); + static bool isCompatibleCommand(std::string const & s) + { return s == "bibitem"; } + ///@} + +private: /// - void updateCommand(docstring const & new_key, bool dummy = false); + 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 + //@{ + /// + docstring screenLabel() const; + //@} friend docstring bibitemWidest(Buffer const & buffer, OutputParams const &); + /// The label that is set by updateBuffer docstring autolabel_; /// @@ -84,6 +108,7 @@ private: /// Return the widest label in the Bibliography. docstring bibitemWidest(Buffer const &, OutputParams const &); + } // namespace lyx #endif // INSET_BIBITEM_H