X-Git-Url: https://git.lyx.org/gitweb/?a=blobdiff_plain;f=src%2Finsets%2Finsetlabel.h;h=f02117cbde74fa16a850ba88cc673d17aa170c60;hb=e28331ed63062dea10d0a21b9ec12034b4b17b9a;hp=6137b5b07b0617d7f143c8eba5a52c41e7a18e6b;hpb=65b49997597efd5a5ba920c739ba6cd8384e1eeb;p=lyx.git diff --git a/src/insets/insetlabel.h b/src/insets/insetlabel.h index 6137b5b07b..f02117cbde 100644 --- a/src/insets/insetlabel.h +++ b/src/insets/insetlabel.h @@ -1,54 +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 - * - * Copyright 1995 Matthias Ettrich - * Copyright 1995-1999 The LyX Team + * \author Lars Gullik Bjønnes * - * ====================================================== */ + * 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" -#include "LString.h" -/// + +namespace lyx { + class InsetLabel : public InsetCommand { public: /// - InsetLabel(string const & cmd); - /// - InsetLabel() : InsetCommand("label") {} - /// - Inset * Clone() const; + InsetLabel(InsetCommandParams const &); /// - Inset::Code LyxCode() const { return Inset::LABEL_CODE; } + docstring const getScreenLabel(Buffer const &) const; /// - int GetNumberOfLabels() const; + EDITABLE editable() const { return IS_EDITABLE; } /// - string getLabel(int) const; + InsetBase::Code lyxCode() const { return InsetBase::LABEL_CODE; } + /// Appends \c list with this label + void getLabelList(Buffer const &, std::vector & list) const; /// - string getScreenLabel() const { return getContents(); } + int latex(Buffer const &, odocstream &, OutputParams const &) const; /// - unsigned char Editable() const { return 0; } + int plaintext(Buffer const &, odocstream &, OutputParams const &) const; /// - int Latex(FILE * file, signed char fragile); - /// - int Latex(string & file, signed char fragile); - /// - int Linuxdoc(string & file); - /// - int DocBook(string & file); + int docbook(Buffer const &, odocstream &, OutputParams const &) const; +protected: + virtual void doDispatch(LCursor & cur, FuncRequest & cmd); private: - /// This function escapes 8-bit characters - string escape(string const &) const; + virtual std::auto_ptr doClone() const; }; + +} // namespace lyx + #endif