]> git.lyx.org Git - lyx.git/blobdiff - src/insets/InsetBibitem.h
Inset::addToToc(): change signature. Use DocIterator instead of ParConstIterator...
[lyx.git] / src / insets / InsetBibitem.h
index 6f476fd1b54a957aae9a93fdcbdbc4d0993458db..5cc1f70c61bb156c807db15618cd8161f61d6ab4 100644 (file)
 #ifndef INSET_BIBITEM_H
 #define INSET_BIBITEM_H
 
-
 #include "InsetCommand.h"
 #include "BiblioInfo.h"
 
 
 namespace lyx {
 
-/** Used to insert bibitem's information (key and label)
+/////////////////////////////////////////////////////////////////////////
+//
+// 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 {
+//  Must be automatically inserted as the first object in a
+//  bibliography paragraph.
+class InsetBibitem : public InsetCommand
+{
 public:
        ///
        InsetBibitem(InsetCommandParams const &);
        ///
+       static ParamInfo const & findInfo(std::string const &);
+       ///
+       static std::string defaultCommand() { return "bibitem"; }
+       ///
+       static bool isCompatibleCommand(std::string const & s) 
+               { return s == "bibitem"; }
+private:
+       /// verify label and update references.
+       /// Overloaded from Inset::initView.
+       void initView();
+       ///
+       bool isLabeled() const { return true; }
+       ///
        void read(Lexer & lex);
        ///
        docstring screenLabel() const;
@@ -45,18 +63,13 @@ public:
        /// Update the counter of this inset
        virtual void updateLabels(ParIterator const &);
        ///
-       static ParamInfo const & findInfo(std::string const &);
-       ///
-       static std::string defaultCommand() { return "bibitem"; };
+       void updateCommand(docstring const & new_key, bool dummy = false);
        ///
-       static bool isCompatibleCommand(std::string const & s) 
-               { return s == "bibitem"; }
-protected:
+       void doDispatch(Cursor & cur, FuncRequest & cmd);
        ///
-       virtual void doDispatch(Cursor & cur, FuncRequest & cmd);
-private:
-       ///
-       virtual Inset * clone() const;
+       Inset * clone() const { return new InsetBibitem(*this); }
+
+       friend docstring bibitemWidest(Buffer const & buffer);
        /// The label that is set by updateLabels
        docstring autolabel_;
        ///
@@ -65,8 +78,7 @@ private:
 
 
 /// Return the widest label in the Bibliography.
-docstring const bibitemWidest(Buffer const &);
-
+docstring bibitemWidest(Buffer const &);
 
 } // namespace lyx