X-Git-Url: https://git.lyx.org/gitweb/?a=blobdiff_plain;f=src%2Finsets%2Finsettoc.h;h=73bf1b67d32972a0109c97fc63a5c3f7988e4314;hb=e28331ed63062dea10d0a21b9ec12034b4b17b9a;hp=9e2078f2cbb637c44f409e5305dc9c8d9e997194;hpb=ba916a0f89d99dac83a584e60fd98c1b3d6d614d;p=lyx.git diff --git a/src/insets/insettoc.h b/src/insets/insettoc.h index 9e2078f2cb..73bf1b67d3 100644 --- a/src/insets/insettoc.h +++ b/src/insets/insettoc.h @@ -1,47 +1,47 @@ // -*- C++ -*- -/* This file is part of* - * ====================================================== +/** + * \file insettoc.h + * This file is part of LyX, the document processor. + * Licence details can be found in the file COPYING. * - * LyX, The Document Word Processor - * - * Copyright 1995 Matthias Ettrich - * Copyright 1996-2000 The LyX Team. - * - * ====================================================== */ + * \author Lars Gullik Bjønnes + * + * Full author contact details are available in file CREDITS. + */ #ifndef INSET_TOC_H #define INSET_TOC_H -#ifdef __GNUG__ -#pragma interface -#endif - #include "insetcommand.h" -/** Used to insert table of contents - */ + +namespace lyx { + + +/// Used to insert table of contents and similar lists class InsetTOC : public InsetCommand { public: /// - InsetTOC(InsetCommandParams const & p) : InsetCommand(p) {} - /// - Inset * Clone(Buffer const &) const { return new InsetTOC(params()); } - /// - string const getScreenLabel() const; + explicit InsetTOC(InsetCommandParams const &); /// - void Edit(BufferView * bv, int, int, unsigned int); - /// - EDITABLE Editable() const { return IS_EDITABLE; } + docstring const getScreenLabel(Buffer const &) const; /// - bool display() const { return true; } + EDITABLE editable() const { return IS_EDITABLE; } /// - Inset::Code LyxCode() const; + InsetBase::Code lyxCode() const; /// - int Ascii(Buffer const *, std::ostream &, int linelen) const; + bool display() const { return true; } /// - int Linuxdoc(Buffer const *, std::ostream &) const; + int plaintext(Buffer const &, odocstream &, + OutputParams const &) const; /// - int DocBook(Buffer const *, std::ostream &) const; + int docbook(Buffer const &, odocstream &, + OutputParams const &) const; +private: + virtual std::auto_ptr doClone() const; }; + +} // namespace lyx + #endif