]> git.lyx.org Git - lyx.git/blobdiff - src/insets/insetbibitem.h
insetcharstyle drawing cosmetics
[lyx.git] / src / insets / insetbibitem.h
index c2d5797ab6d6f846eddb27b8db98a6cf5e0f118e..b05d22fe4ac1aefbc4038683c28dbd0094b34f5e 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
@@ -27,11 +25,7 @@ public:
        ///
        InsetBibitem(InsetCommandParams const &);
        ///
-       ~InsetBibitem();
-       ///
        std::auto_ptr<InsetBase> clone() const;
-       ///
-       virtual dispatch_result localDispatch(FuncRequest const & cmd);
        /** Currently \bibitem is used as a LyX2.x command,
            so we need this method.
        */
@@ -39,7 +33,7 @@ public:
        ///
        void read(Buffer const &, LyXLex & lex);
        ///
-       virtual string const getScreenLabel(Buffer const &) const;
+       virtual std::string const getScreenLabel(Buffer const &) const;
        ///
        EDITABLE editable() const { return IS_EDITABLE; }
        ///
@@ -51,8 +45,13 @@ public:
        ///
        int getCounter() const { return counter; }
        ///
-       string const getBibLabel() const;
-
+       std::string const getBibLabel() const;
+       ///
+       int plaintext(Buffer const &, std::ostream &,
+                     OutputParams const &) const;
+protected:
+       ///
+       virtual void priv_dispatch(LCursor & cur, FuncRequest & cmd);
 private:
        ///
        int counter;