]> 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 7dd1a172df2102b4d0abfbcdfa586fa1e5dc2001..32f4574c22431878f977160d2cd912ababff8bd8 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,7 +15,8 @@
 
 #include "insetcommand.h"
 
-class Buffer;
+
+namespace lyx {
 
 /** Used to insert bibitem's information (key and label)
 
@@ -27,44 +28,38 @@ public:
        ///
        InsetBibitem(InsetCommandParams const &);
        ///
-       ~InsetBibitem();
-       ///
-       InsetBase * clone() const;
-       ///
-       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 read(Buffer const &, LyXLex & lex);
        ///
-       void read(Buffer const *, LyXLex & lex);
-       ///
-       virtual string const getScreenLabel(Buffer const *) const;
+       docstring const getScreenLabel(Buffer const &) const;
        ///
        EDITABLE editable() const { return IS_EDITABLE; }
        ///
-       Inset::Code lyxCode() const { return Inset::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; }
        ///
-       string const getBibLabel() const;
+       docstring const getBibLabel() const;
        ///
-       struct Holder {
-               InsetBibitem * inset;
-               BufferView * view;
-       };
-
+       int plaintext(Buffer const &, odocstream &, 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.
+docstring const bibitemWidest(Buffer const &);
+
+
+} // namespace lyx
+
 #endif // INSET_BIBITEM_H