]> git.lyx.org Git - lyx.git/blobdiff - src/insets/insetbibitem.h
* src/LyXAction.C: mark goto-clear-bookmark as working without buffer
[lyx.git] / src / insets / insetbibitem.h
index ae3c6649a315ace94a2f2b33fe8906453bc26d38..32f4574c22431878f977160d2cd912ababff8bd8 100644 (file)
@@ -15,7 +15,8 @@
 
 #include "insetcommand.h"
 
-class Buffer;
+
+namespace lyx {
 
 /** Used to insert bibitem's information (key and label)
 
@@ -27,39 +28,38 @@ public:
        ///
        InsetBibitem(InsetCommandParams 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 std::string const getScreenLabel(Buffer const &) const;
+       docstring const getScreenLabel(Buffer const &) const;
        ///
        EDITABLE editable() const { return IS_EDITABLE; }
        ///
-       InsetOld::Code lyxCode() const { return InsetOld::BIBITEM_CODE; }
-       /// keep .lyx format compatible
-       bool directWrite() const { return true; }
+       InsetBase::Code lyxCode() const { return InsetBase::BIBITEM_CODE; }
        ///
        void setCounter(int);
        ///
        int getCounter() const { return counter; }
        ///
-       std::string const getBibLabel() const;
+       docstring const getBibLabel() const;
+       ///
+       int plaintext(Buffer const &, odocstream &, OutputParams const &) const;
 protected:
        ///
-       virtual
-       dispatch_result
-       priv_dispatch(FuncRequest const & cmd, idx_type &, pos_type &);
+       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.
+docstring const bibitemWidest(Buffer const &);
+
+
+} // namespace lyx
+
 #endif // INSET_BIBITEM_H