]> git.lyx.org Git - lyx.git/blobdiff - src/insets/insetbibitem.h
the dispatch patch
[lyx.git] / src / insets / insetbibitem.h
index 62408b63b460c46e18ac33bca9a1b7ae91c429b7..ae3c6649a315ace94a2f2b33fe8906453bc26d38 100644 (file)
@@ -6,7 +6,7 @@
  *
  * \author Alejandro Aguilar Sierra
  *
- * Full author contact details are available in file CREDITS
+ * Full author contact details are available in file CREDITS.
  */
 
 #ifndef INSET_BIBITEM_H
@@ -27,43 +27,38 @@ public:
        ///
        InsetBibitem(InsetCommandParams const &);
        ///
-       Inset * clone(Buffer const &, bool same_id = false) const;
+       ~InsetBibitem();
+       ///
+       std::auto_ptr<InsetBase> clone() const;
        /** Currently \bibitem is used as a LyX2.x command,
            so we need this method.
        */
-       void write(Buffer const *, std::ostream &) const;
-       ///
-       void read(Buffer const *, LyXLex & lex);
-       ///
-       virtual string const getScreenLabel(Buffer const *) const;
+       void write(Buffer const &, std::ostream &) const;
        ///
-       void edit(BufferView *, int x, int y, mouse_button::state button);
+       void read(Buffer const &, LyXLex & lex);
        ///
-       void edit(BufferView * bv, bool front = true);
+       virtual std::string const getScreenLabel(Buffer const &) const;
        ///
        EDITABLE editable() const { return IS_EDITABLE; }
        ///
-       Inset::Code lyxCode() const { return Inset::BIBITEM_CODE; }
+       InsetOld::Code lyxCode() const { return InsetOld::BIBITEM_CODE; }
        /// keep .lyx format compatible
        bool directWrite() const { return true; }
        ///
        void setCounter(int);
        ///
-       int  getCounter() const { return counter; }
+       int getCounter() const { return counter; }
        ///
-       string const getBibLabel() const;
+       std::string const getBibLabel() const;
+protected:
        ///
-       struct Holder {
-               InsetBibitem * inset;
-               BufferView * view;
-       };
-
+       virtual
+       dispatch_result
+       priv_dispatch(FuncRequest const & cmd, idx_type &, pos_type &);
 private:
        ///
        int counter;
        ///
-       Holder holder;
-       ///
        static int key_counter;
 };