]> git.lyx.org Git - lyx.git/blobdiff - src/insets/InsetBibitem.h
Whitespace.
[lyx.git] / src / insets / InsetBibitem.h
index b0b1121a36bb7df593dbc3db01d8694f6aa34f48..f18356b9d469286795f718c21952eab6f87a158a 100644 (file)
 
 
 #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 &);
-       ///
-       void read(Buffer const &, Lexer & lex);
+       InsetBibitem(Buffer *, InsetCommandParams const &);
        ///
-       docstring const getScreenLabel(Buffer const &) const;
+       ~InsetBibitem();
+
        ///
-       EDITABLE editable() const { return IS_EDITABLE; }
+       void updateCommand(docstring const & new_key, bool dummy = false);
+
+       /// \name Public functions inherited from Inset class
+       //@{
        ///
        InsetCode lyxCode() const { return BIBITEM_CODE; }
        ///
-       docstring const getBibLabel() const;
+       bool hasSettings() const { return true; }
+       /// \copydoc Inset::initView()
+       /// verify label and update references.
+       void initView();
        ///
-       int plaintext(Buffer const &, odocstream &, OutputParams const &) const;
+       bool isLabeled() const { return true; }
        ///
-       virtual void fillWithBibKeys(Buffer const &,
-               BiblioInfo &, InsetIterator const &) const;
-       /// Update the counter of this inset
-       virtual void updateLabels(Buffer const &, ParIterator const &);
+       void read(Lexer & lex);
        ///
-       static CommandInfo const * findInfo(std::string const &);
+       int plaintext(odocstringstream &, OutputParams const &,
+                     size_t max_length = INT_MAX) const;
        ///
-       static std::string defaultCommand() { return "bibitem"; };
+       docstring xhtml(XHTMLStream &, OutputParams const &) const;
        ///
-       static bool isCompatibleCommand(std::string const & s) 
-               { return s == "bibitem"; }
-protected:
+       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
+       //@{
+       ///
+       static ParamInfo const & findInfo(std::string const &);
+       ///
+       static std::string defaultCommand() { return "bibitem"; }
        ///
-       virtual void doDispatch(Cursor & cur, FuncRequest & cmd);
+       static bool isCompatibleCommand(std::string const & s)
+               { return s == "bibitem"; }
+       ///@}
+
 private:
-       virtual Inset * clone() const;
+       ///
+       docstring bibLabel() const;
+
+       /// \name Private functions inherited from Inset class
+       //@{
+       ///
+       void doDispatch(Cursor & cur, FuncRequest & cmd);
+       ///
+       Inset * clone() const { return new InsetBibitem(*this); }
+       ///@}
+
+       /// \name Private functions inherited from InsetCommand class
+       //@{
+       ///
+       docstring screenLabel() const;
+       //@}
+
+       friend docstring bibitemWidest(Buffer const & buffer, OutputParams const &);
 
-       /// The label that is set by updateLabels
+       /// The label that is set by updateBuffer
        docstring autolabel_;
        ///
        static int key_counter;
@@ -66,7 +104,7 @@ private:
 
 
 /// Return the widest label in the Bibliography.
-docstring const bibitemWidest(Buffer const &);
+docstring bibitemWidest(Buffer const &, OutputParams const &);
 
 
 } // namespace lyx