X-Git-Url: https://git.lyx.org/gitweb/?a=blobdiff_plain;f=src%2Finsets%2Finsetlabel.h;h=f02117cbde74fa16a850ba88cc673d17aa170c60;hb=e28331ed63062dea10d0a21b9ec12034b4b17b9a;hp=16b1e094ec6dc83de6742ae526a0af1e30a6bc01;hpb=f1c24d100985c6df2eb5ec390017b69c78fe49c7;p=lyx.git diff --git a/src/insets/insetlabel.h b/src/insets/insetlabel.h index 16b1e094ec..f02117cbde 100644 --- a/src/insets/insetlabel.h +++ b/src/insets/insetlabel.h @@ -1,52 +1,47 @@ // -*- C++ -*- -/* This file is part of* - * ====================================================== +/** + * \file insetlabel.h + * This file is part of LyX, the document processor. + * Licence details can be found in the file COPYING. * - * LyX, The Document Processor + * \author Lars Gullik Bjønnes * - * Copyright 1995 Matthias Ettrich - * Copyright 1995-2001 The LyX Team - * - * ====================================================== */ + * Full author contact details are available in file CREDITS. + */ #ifndef INSET_LABEL_H #define INSET_LABEL_H -#ifdef __GNUG__ -#pragma interface -#endif - #include "insetcommand.h" + +namespace lyx { + class InsetLabel : public InsetCommand { public: /// - InsetLabel(InsetCommandParams const &, bool same_id = false); - /// - virtual Inset * clone(Buffer const &, bool same_id = false) const { - return new InsetLabel(params(), same_id); - } + InsetLabel(InsetCommandParams const &); /// - string const getScreenLabel(Buffer const *) const { return getContents(); } + docstring const getScreenLabel(Buffer const &) const; /// EDITABLE editable() const { return IS_EDITABLE; } /// - Inset::Code lyxCode() const { return Inset::LABEL_CODE; } + InsetBase::Code lyxCode() const { return InsetBase::LABEL_CODE; } + /// Appends \c list with this label + void getLabelList(Buffer const &, std::vector & list) const; /// - void edit(BufferView *, int, int, mouse_button::state); + int latex(Buffer const &, odocstream &, OutputParams const &) const; /// - void edit(BufferView * bv, bool front = true); + int plaintext(Buffer const &, odocstream &, OutputParams const &) const; /// - std::vector const getLabelList() const; - /// - int latex(Buffer const *, std::ostream &, - bool fragile, bool free_spc) const; - /// - int ascii(Buffer const *, std::ostream &, int linelen) const; - /// - int linuxdoc(Buffer const *, std::ostream &) 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