X-Git-Url: https://git.lyx.org/gitweb/?a=blobdiff_plain;f=src%2Finsets%2Finsettoc.h;h=bf12da1f6e1ef5c293e9d509e42b368f7cec5053;hb=3c8aba3b556871fb1100a2f98cd93d5d4e3f70c9;hp=db4871ff80093e17a2b8a45d0a64d91e17d4da97;hpb=d5134a917d3056d1f5d0a957b29c15374279a7b7;p=lyx.git diff --git a/src/insets/insettoc.h b/src/insets/insettoc.h index db4871ff80..bf12da1f6e 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-2000 The LyX Team. * * ====================================================== */ @@ -19,7 +19,7 @@ #include "insetcommand.h" #include "gettext.h" -// Created by Lgb 970527 +class Buffer; /** Used to insert table of contents */ @@ -28,25 +28,26 @@ public: /// InsetTOC() : InsetCommand("tableofcontents") {} /// + explicit InsetTOC(Buffer * b) : InsetCommand("tableofcontents"), owner(b) {} /// Inset * Clone() const { return new InsetTOC(owner); } /// - string getScreenLabel() const { return _("Table of Contents"); } + string getScreenLabel() const; /// On edit, we open the TOC pop-up - void Edit(int, int); + void Edit(BufferView * bv, int, int, unsigned int); /// - unsigned char Editable() const { - return 1; + EDITABLE Editable() const { + return IS_EDITABLE; } /// bool display() const { return true; } /// Inset::Code LyxCode() const { return Inset::TOC_CODE; } /// - int Linuxdoc(string & file) const; + int Linuxdoc(std::ostream &) const; /// - int DocBook(string & file) const; + int DocBook(std::ostream &) const; private: /// Buffer * owner;