X-Git-Url: https://git.lyx.org/gitweb/?a=blobdiff_plain;f=src%2Finsets%2Finsetbibitem.h;h=32f4574c22431878f977160d2cd912ababff8bd8;hb=e28331ed63062dea10d0a21b9ec12034b4b17b9a;hp=25d60f2523265998f296a6ed1a395a4365eb5d25;hpb=44cd0fc9a1687cc63911c7f98d978594458e7813;p=lyx.git diff --git a/src/insets/insetbibitem.h b/src/insets/insetbibitem.h index 25d60f2523..32f4574c22 100644 --- a/src/insets/insetbibitem.h +++ b/src/insets/insetbibitem.h @@ -15,7 +15,8 @@ #include "insetcommand.h" -class Buffer; + +namespace lyx { /** Used to insert bibitem's information (key and label) @@ -27,37 +28,38 @@ public: /// InsetBibitem(InsetCommandParams const &); /// - ~InsetBibitem(); - /// - std::auto_ptr 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); /// - 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 void doDispatch(LCursor & cur, FuncRequest & cmd); private: + virtual std::auto_ptr 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