]> git.lyx.org Git - lyx.git/blobdiff - src/insets/InsetBibitem.h
Fix GRAPHICS_EDIT of InsetGraphics
[lyx.git] / src / insets / InsetBibitem.h
index 4f8f69066e3868eb165d86910372cc1b73f2c44f..44adc6b1ef6cc4c5758215f101fcad16faad11a6 100644 (file)
@@ -28,23 +28,29 @@ 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; }
        ///
        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 &,
-               BiblioInfo &, 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 &);
        ///
@@ -52,12 +58,14 @@ public:
        ///
        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 Inset * clone() const;
+       virtual Inset * clone() const { return new InsetBibitem(*this); }
        /// The label that is set by updateLabels
        docstring autolabel_;
        ///