]> 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 c96c6266a191d6e2bbd4842d1bf3824f2b9361eb..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-2000 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"
 
-class Buffer;
-
 /** Used to insert table of contents
  */
 class InsetTOC : public InsetCommand {
 public:
        ///
-       InsetTOC() : InsetCommand("tableofcontents") {}
-       ///
-       explicit
-       InsetTOC(Buffer * b) : InsetCommand("tableofcontents"), owner(b) {}
-        ///
-        Inset * Clone() const { return new InsetTOC(owner); }
-       ///
-       string getScreenLabel() const;
-       /// On edit, we open the TOC pop-up
-       void Edit(BufferView * bv, int, int, unsigned int);
-        ///
-       EDITABLE Editable() const {
-               return IS_EDITABLE;
+       InsetTOC(InsetCommandParams const &);
+       ///
+       ~InsetTOC();
+       ///
+       virtual Inset * clone() const {
+               return new InsetTOC(params());
        }
        ///
+       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(Buffer const *, std::ostream &) const;
+       int ascii(Buffer const *, std::ostream &, int linelen) const;
        ///
-       int DocBook(Buffer const *, std::ostream &) const;
-private:
+       int linuxdoc(Buffer const *, std::ostream &) const;
        ///
-       Buffer * owner;
+       int docbook(Buffer const *, std::ostream &, bool mixcont) const;
 };
 
 #endif