]> git.lyx.org Git - lyx.git/blobdiff - src/insets/insettoc.h
Enable the external inset to handle unknown templates gracefully.
[lyx.git] / src / insets / insettoc.h
index 34e1dbc0ed60d0b65f3cff6ca6f24f555991941a..bb3b5ca00312a66069270ec69679279b6e371806 100644 (file)
@@ -1,55 +1,48 @@
 // -*- C++ -*-
-/* This file is part of*
- * ======================================================
+/**
+ * \file insettoc.h
+ * This file is part of LyX, the document processor.
+ * Licence details can be found in the file COPYING.
  *
- *           LyX, The Document Word Processor
- *      
- *           Copyright 1995 Matthias Ettrich
- *           Copyright 1996-1999 The LyX Team.
- * 
- * ====================================================== */
+ * \author Lars Gullik Bjønnes
+ *
+ * Full author contact details are available in file CREDITS
+ */
 
 #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 &);
+       ///
+       ~InsetTOC();
+       ///
+       virtual Inset * clone() const {
+               return new InsetTOC(params());
        }
        ///
-       bool Display() const { return true; }
+       dispatch_result localDispatch(FuncRequest const & cmd);
+       ///
+       string const getScreenLabel(Buffer const *) const;
+       ///
+       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 &, bool mixcont) const;
 };
 
 #endif