]> git.lyx.org Git - lyx.git/blobdiff - src/insets/insettoc.h
clear()->erase() ; lots of using directives for cxx
[lyx.git] / src / insets / insettoc.h
index 103f79567363a2c881cdfb9c5a2d7ddab1ac9a24..bf12da1f6e1ef5c293e9d509e42b368f7cec5053 100644 (file)
@@ -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.
  * 
  * ====================================================== */
 
 #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) {}
         ///
-        InsetTOC * Clone() const { return new InsetTOC(owner); }
+        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);
+       int Linuxdoc(std::ostream &) const;
        ///
-       int DocBook(string & file);
+       int DocBook(std::ostream &) const;
 private:
        ///
        Buffer * owner;