]> git.lyx.org Git - lyx.git/blobdiff - src/insets/InsetBibitem.h
Fix GRAPHICS_EDIT of InsetGraphics
[lyx.git] / src / insets / InsetBibitem.h
index 3ed6356a9123a53496af9e281fc21634750e8f35..44adc6b1ef6cc4c5758215f101fcad16faad11a6 100644 (file)
@@ -14,7 +14,7 @@
 
 
 #include "InsetCommand.h"
-#include "Biblio_typedefs.h"
+#include "BiblioInfo.h"
 
 
 namespace lyx {
@@ -28,30 +28,44 @@ class InsetBibitem : public InsetCommand {
 public:
        ///
        InsetBibitem(InsetCommandParams const &);
+       /// verify label and update references.
+       /**
+         * Overloaded from Inset::initView.
+         **/
+       void initView();
        ///
-       void read(Buffer const &, Lexer & lex);
+       bool isLabeled() const { return true; }
        ///
-       docstring const getScreenLabel(Buffer const &) const;
+       void read(Lexer & lex);
+       ///
+       docstring screenLabel() const;
        ///
        EDITABLE editable() const { return IS_EDITABLE; }
        ///
-       Inset::Code lyxCode() const { return Inset::BIBITEM_CODE; }
+       InsetCode lyxCode() const { return BIBITEM_CODE; }
        ///
-       docstring const getBibLabel() const;
+       docstring bibLabel() const;
        ///
-       int plaintext(Buffer const &, odocstream &, OutputParams const &) const;
+       int plaintext(odocstream &, OutputParams const &) const;
        ///
-       virtual void fillWithBibKeys(Buffer const &,
-               biblio::BibKeyList &, InsetIterator const &) const;
+       virtual void fillWithBibKeys(BiblioInfo &, InsetIterator const &) const;
        /// Update the counter of this inset
-       virtual void updateLabels(Buffer const &, ParIterator const &);
-
+       virtual void updateLabels(ParIterator const &);
+       ///
+       static ParamInfo const & findInfo(std::string const &);
+       ///
+       static std::string defaultCommand() { return "bibitem"; };
+       ///
+       static bool isCompatibleCommand(std::string const & s) 
+               { return s == "bibitem"; }
+       ///
+       void updateCommand(docstring const & new_key, bool dummy = false);
 protected:
        ///
        virtual void doDispatch(Cursor & cur, FuncRequest & cmd);
 private:
-       virtual std::auto_ptr<Inset> doClone() const;
-
+       ///
+       virtual Inset * clone() const { return new InsetBibitem(*this); }
        /// The label that is set by updateLabels
        docstring autolabel_;
        ///