X-Git-Url: https://git.lyx.org/gitweb/?a=blobdiff_plain;f=src%2Finsets%2Finsettoc.h;h=bf12da1f6e1ef5c293e9d509e42b368f7cec5053;hb=3c8aba3b556871fb1100a2f98cd93d5d4e3f70c9;hp=9b8ce9720844b03f0b2b2573767eae2b3d369de1;hpb=27de1486ca34aaad446adb798d71a77d6f6304da;p=lyx.git diff --git a/src/insets/insettoc.h b/src/insets/insettoc.h index 9b8ce97208..bf12da1f6e 100644 --- a/src/insets/insettoc.h +++ b/src/insets/insettoc.h @@ -4,13 +4,13 @@ * * LyX, The Document Word Processor * - * Copyright (C) 1995 Matthias Ettrich - * 1996-1998 The LyX Team. + * Copyright 1995 Matthias Ettrich + * Copyright 1996-2000 The LyX Team. * - *======================================================*/ + * ====================================================== */ -#ifndef _INSET_TOC_H -#define _INSET_TOC_H +#ifndef INSET_TOC_H +#define INSET_TOC_H #ifdef __GNUG__ #pragma interface @@ -19,37 +19,38 @@ #include "insetcommand.h" #include "gettext.h" -// Created by Lgb 970527 +class Buffer; /** Used to insert table of contents */ -class InsetTOC: public InsetCommand { +class InsetTOC : public InsetCommand { public: /// - InsetTOC(): InsetCommand("tableofcontents") {} + InsetTOC() : InsetCommand("tableofcontents") {} /// - InsetTOC(Buffer *b): InsetCommand("tableofcontents"),owner(b){} + explicit + InsetTOC(Buffer * b) : InsetCommand("tableofcontents"), owner(b) {} /// - Inset* Clone() { return new InsetTOC(owner); } + Inset * Clone() const { return new InsetTOC(owner); } /// - LString 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; } + bool display() const { return true; } /// Inset::Code LyxCode() const { return Inset::TOC_CODE; } /// - int Linuxdoc(LString &file); + int Linuxdoc(std::ostream &) const; /// - int DocBook(LString &file); + int DocBook(std::ostream &) const; private: /// - Buffer *owner; + Buffer * owner; }; #endif