X-Git-Url: https://git.lyx.org/gitweb/?a=blobdiff_plain;f=src%2Finsets%2Finsettoc.h;h=73bf1b67d32972a0109c97fc63a5c3f7988e4314;hb=e28331ed63062dea10d0a21b9ec12034b4b17b9a;hp=6b8d542c5a097f83826b8b802f787a120c751c23;hpb=f1c24d100985c6df2eb5ec390017b69c78fe49c7;p=lyx.git diff --git a/src/insets/insettoc.h b/src/insets/insettoc.h index 6b8d542c5a..73bf1b67d3 100644 --- a/src/insets/insettoc.h +++ b/src/insets/insettoc.h @@ -1,52 +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 + * \author Lars Gullik Bjønnes * - * Copyright 1995 Matthias Ettrich - * Copyright 1996-2001 The LyX Team. - * - * ====================================================== */ + * 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, bool same_id = false) - : InsetCommand(p, same_id) {} + explicit InsetTOC(InsetCommandParams const &); /// - virtual Inset * clone(Buffer const &, bool same_id = false) const { - return new InsetTOC(params(), same_id); - } - /// - string const getScreenLabel(Buffer const *) const; - /// - void edit(BufferView * bv, int, int, mouse_button::state); - /// - void edit(BufferView * bv, bool front = true); + docstring const getScreenLabel(Buffer const &) const; /// EDITABLE editable() const { return IS_EDITABLE; } /// - bool display() const { return true; } - /// - 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 &, bool mixcont) const; + int docbook(Buffer const &, odocstream &, + OutputParams const &) const; +private: + virtual std::auto_ptr doClone() const; }; + +} // namespace lyx + #endif