]> git.lyx.org Git - lyx.git/blobdiff - src/insets/insettoc.h
Don't remove cell selections after fontchange.
[lyx.git] / src / insets / insettoc.h
index 2bc060c5baa2a49af15c18c6e5348e0423aee9cf..413740f4860ebbfe5c9950107a255ba70a108a7d 100644 (file)
@@ -4,52 +4,49 @@
  *
  *           LyX, The Document Word Processor
  *      
- *         Copyright (C) 1995 Matthias Ettrich
- *                        1996-1998 The LyX Team.
+ *           Copyright 1995 Matthias Ettrich
+ *           Copyright 1996-2001 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(Buffer *b): InsetCommand("tableofcontents"),owner(b){}
-        ///
-        Inset* Clone() { return new InsetTOC(owner); }
-       ///
-       string getScreenLabel() const { return _("Table of Contents"); }
-       /// On edit, we open the TOC pop-up
-       void Edit(int, int);
-        ///
-       unsigned char Editable() const {
-               return 1;
+       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;
+       ///
+       void edit(BufferView * bv, int, int, unsigned int);
+       ///
+       void edit(BufferView * bv, bool front = true);
+       ///
+       EDITABLE editable() const { return IS_EDITABLE; }
+       ///
+       bool display() const { return true; }
        ///
-       Inset::Code LyxCode() const { return Inset::TOC_CODE; }
+       Inset::Code lyxCode() const;
        ///
-       int Linuxdoc(string &file);
+       int ascii(Buffer const *, std::ostream &, int linelen) const;
        ///
-       int DocBook(string &file);
-private:
+       int linuxdoc(Buffer const *, std::ostream &) const;
        ///
-       Buffer *owner;
+       int docbook(Buffer const *, std::ostream &) const;
 };
 
 #endif