X-Git-Url: https://git.lyx.org/gitweb/?a=blobdiff_plain;f=src%2Finsets%2Finsetlabel.h;h=f02117cbde74fa16a850ba88cc673d17aa170c60;hb=e28331ed63062dea10d0a21b9ec12034b4b17b9a;hp=32a12788baf4e02076f2be54d2d0ed35b50e333f;hpb=0be0fcfd5907d448cd51addf83ed7032719a0692;p=lyx.git diff --git a/src/insets/insetlabel.h b/src/insets/insetlabel.h index 32a12788ba..f02117cbde 100644 --- a/src/insets/insetlabel.h +++ b/src/insets/insetlabel.h @@ -12,38 +12,36 @@ #ifndef INSET_LABEL_H #define INSET_LABEL_H - #include "insetcommand.h" + +namespace lyx { + class InsetLabel : public InsetCommand { public: /// InsetLabel(InsetCommandParams const &); /// - ~InsetLabel(); - /// - virtual std::auto_ptr clone() const { - return std::auto_ptr(new InsetLabel(params())); - } - /// - virtual dispatch_result localDispatch(FuncRequest const & cmd); - /// - string const getScreenLabel(Buffer const *) const { return getContents(); } + docstring const getScreenLabel(Buffer const &) const; /// EDITABLE editable() const { return IS_EDITABLE; } /// - InsetOld::Code lyxCode() const { return InsetOld::LABEL_CODE; } - /// - void getLabelList(std::vector &) const; - /// - int latex(Buffer const *, std::ostream &, - LatexRunParams const &) const; + InsetBase::Code lyxCode() const { return InsetBase::LABEL_CODE; } + /// Appends \c list with this label + void getLabelList(Buffer const &, std::vector & list) const; /// - int ascii(Buffer const *, std::ostream &, int linelen) const; + int latex(Buffer const &, odocstream &, OutputParams const &) const; /// - int linuxdoc(Buffer const *, std::ostream &) const; + int plaintext(Buffer const &, odocstream &, OutputParams const &) const; /// - int docbook(Buffer const *, std::ostream &, bool mixcont) const; + int docbook(Buffer const &, odocstream &, OutputParams const &) const; +protected: + virtual void doDispatch(LCursor & cur, FuncRequest & cmd); +private: + virtual std::auto_ptr doClone() const; }; + +} // namespace lyx + #endif