]> git.lyx.org Git - lyx.git/blobdiff - src/insets/insettoc.h
reformatting and remove using delc
[lyx.git] / src / insets / insettoc.h
index 9b8ce9720844b03f0b2b2573767eae2b3d369de1..9e2078f2cbb637c44f409e5305dc9c8d9e997194 100644 (file)
@@ -4,52 +4,44 @@
  *
  *           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
 #endif
 
 #include "insetcommand.h"
-#include "gettext.h"
-
-// Created by Lgb 970527
 
 /** Used to insert table of contents
  */
-class InsetTOC: public InsetCommand {
+class InsetTOC : public InsetCommand {
 public:
        ///
-       InsetTOC(): InsetCommand("tableofcontents") {}
+       InsetTOC(InsetCommandParams const & p) : InsetCommand(p) {}
        ///
-       InsetTOC(Buffer *b): InsetCommand("tableofcontents"),owner(b){}
-        ///
-        Inset* Clone() { return new InsetTOC(owner); }
+        Inset * Clone(Buffer const &) const { return new InsetTOC(params()); }
        ///
-       LString getScreenLabel() const { return _("Table of Contents"); }
-       /// On edit, we open the TOC pop-up
-       void Edit(int, int);
+       string const getScreenLabel() const;
+       ///
+       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; }
+       Inset::Code LyxCode() const;
        ///
-       int Linuxdoc(LString &file);
+       int Ascii(Buffer const *, std::ostream &, int linelen) const;
        ///
-       int DocBook(LString &file);
-private:
+       int Linuxdoc(Buffer const *, std::ostream &) const;
        ///
-       Buffer *owner;
+       int DocBook(Buffer const *, std::ostream &) const;
 };
 
 #endif