]> 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 05983fb25c691aa91d98fd3725e5b54374b59d79..250b8f3c08cab157704df4daed9d7240f9c75bdd 100644 (file)
@@ -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,8 +24,6 @@ class InsetBibitem : public InsetCommand {
 public:
        ///
        InsetBibitem(InsetCommandParams const &);
-       ///
-       std::auto_ptr<InsetBase> clone() const;
        /** Currently \bibitem is used as a LyX2.x command,
            so we need this method.
        */
@@ -39,7 +35,7 @@ public:
        ///
        EDITABLE editable() const { return IS_EDITABLE; }
        ///
-       InsetOld::Code lyxCode() const { return InsetOld::BIBITEM_CODE; }
+       InsetBase::Code lyxCode() const { return InsetBase::BIBITEM_CODE; }
        /// keep .lyx format compatible
        bool directWrite() const { return true; }
        ///
@@ -48,14 +44,23 @@ public:
        int getCounter() const { return counter; }
        ///
        std::string const getBibLabel() const;
+       ///
+       int plaintext(Buffer const &, std::ostream &,
+                     OutputParams const &) const;
 protected:
        ///
-       virtual void priv_dispatch(LCursor & cur, FuncRequest & cmd);
+       virtual void doDispatch(LCursor & cur, FuncRequest & cmd);
 private:
+       virtual std::auto_ptr<InsetBase> doClone() const;
+
        ///
        int counter;
        ///
        static int key_counter;
 };
 
+
+/// Return the widest label in the Bibliography.
+std::string const bibitemWidest(Buffer const &);
+
 #endif // INSET_BIBITEM_H