X-Git-Url: https://git.lyx.org/gitweb/?a=blobdiff_plain;f=src%2Finsets%2Finsettoc.h;h=413740f4860ebbfe5c9950107a255ba70a108a7d;hb=4a5b7a5952ad2381fcdf4830511293e184c7c5a1;hp=d64cd9b2b9575f25236a1ea82cd7ccc1c738bb7e;hpb=b3e20a15e74bc3a419ed6d01e49dccc11192b205;p=lyx.git diff --git a/src/insets/insettoc.h b/src/insets/insettoc.h index d64cd9b2b9..413740f486 100644 --- a/src/insets/insettoc.h +++ b/src/insets/insettoc.h @@ -5,7 +5,7 @@ * LyX, The Document Word Processor * * Copyright 1995 Matthias Ettrich - * Copyright 1996-1999 The LyX Team. + * Copyright 1996-2001 The LyX Team. * * ====================================================== */ @@ -17,46 +17,36 @@ #endif #include "insetcommand.h" -#include "gettext.h" - -class Buffer; /** Used to insert table of contents */ class InsetTOC : public InsetCommand { public: /// - InsetTOC() : InsetCommand("tableofcontents") {} - /// - InsetTOC(Buffer * b) : InsetCommand("tableofcontents"), owner(b) {} - /// - Inset * Clone() const { return new InsetTOC(owner); } - /// - string getScreenLabel() const { return _("Table of Contents"); } - /// On edit, we open the TOC pop-up - void Edit(BufferView * bv, int, int, unsigned int); - /// - EDITABLE Editable() const { - return IS_EDITABLE; + InsetTOC(InsetCommandParams const & p, bool same_id = false) + : InsetCommand(p, same_id) {} + /// + virtual Inset * clone(Buffer const &, bool same_id = false) const { + return new InsetTOC(params(), same_id); } /// - bool display() const { return true; } + string const getScreenLabel(Buffer const *) const; /// - Inset::Code LyxCode() const { return Inset::TOC_CODE; } -#ifdef USE_OSTREAM_ONLY + void edit(BufferView * bv, int, int, unsigned int); /// - int Linuxdoc(ostream &) const; + void edit(BufferView * bv, bool front = true); /// - int DocBook(ostream &) const; -#else + EDITABLE editable() const { return IS_EDITABLE; } /// - int Linuxdoc(string & file) const; + bool display() const { return true; } /// - int DocBook(string & file) const; -#endif -private: + Inset::Code lyxCode() const; + /// + int ascii(Buffer const *, std::ostream &, int linelen) const; + /// + int linuxdoc(Buffer const *, std::ostream &) const; /// - Buffer * owner; + int docbook(Buffer const *, std::ostream &) const; }; #endif