]> git.lyx.org Git - lyx.git/blobdiff - src/insets/insetbibitem.h
The speed patch: redraw only rows that have changed
[lyx.git] / src / insets / insetbibitem.h
index 1d0444057c9d1be2ab6b911f0b0ce4c0da17f311..250b8f3c08cab157704df4daed9d7240f9c75bdd 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
@@ -15,8 +15,6 @@
 
 #include "insetcommand.h"
 
-class Buffer;
-
 /** Used to insert bibitem's information (key and label)
 
   Must be automatically inserted as the first object in a
@@ -26,49 +24,43 @@ class InsetBibitem : public InsetCommand {
 public:
        ///
        InsetBibitem(InsetCommandParams const &);
-       ///
-       ~InsetBibitem();
-       ///
-       Inset * clone(Buffer const &, bool same_id = false) const;
-       /// small wrapper for the time being
-       virtual dispatch_result localDispatch(FuncRequest const & cmd);
        /** Currently \bibitem is used as a LyX2.x command,
            so we need this method.
        */
-       void write(Buffer const *, std::ostream &) const;
+       void write(Buffer const &, std::ostream &) const;
        ///
-       void read(Buffer const *, LyXLex & lex);
+       void read(Buffer const &, LyXLex & lex);
        ///
-       virtual string const getScreenLabel(Buffer const *) const;
-       ///
-       void edit(BufferView *, int x, int y, mouse_button::state button);
-       ///
-       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; }
+       InsetBase::Code lyxCode() const { return InsetBase::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;
        ///
-       struct Holder {
-               InsetBibitem * inset;
-               BufferView * view;
-       };
-
+       int plaintext(Buffer const &, std::ostream &,
+                     OutputParams const &) const;
+protected:
+       ///
+       virtual void doDispatch(LCursor & cur, FuncRequest & cmd);
 private:
+       virtual std::auto_ptr<InsetBase> doClone() const;
+
        ///
        int counter;
        ///
-       Holder holder;
-       ///
        static int key_counter;
 };
 
+
+/// Return the widest label in the Bibliography.
+std::string const bibitemWidest(Buffer const &);
+
 #endif // INSET_BIBITEM_H