]> 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 d64cd9b2b9575f25236a1ea82cd7ccc1c738bb7e..bb3b5ca00312a66069270ec69679279b6e371806 100644 (file)
@@ -1,62 +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"
-
-class Buffer;
 
 /** Used to insert table of contents
  */
 class InsetTOC : public InsetCommand {
 public:
        ///
-       InsetTOC() : InsetCommand("tableofcontents") {}
-       ///
-       InsetTOC(Buffer * b) : InsetCommand("tableofcontents"), owner(b) {}
-        ///
-        Inset * Clone() const { return new InsetTOC(owner); }
-       ///
-       string getScreenLabel() const { return _("Table of Contents"); }
-       /// 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());
        }
        ///
-       bool display() const { return true; }
+       dispatch_result localDispatch(FuncRequest const & cmd);
        ///
-       Inset::Code LyxCode() const { return Inset::TOC_CODE; }
-#ifdef USE_OSTREAM_ONLY
+       string const getScreenLabel(Buffer const *) const;
        ///
-       int Linuxdoc(ostream &) const;
+       EDITABLE editable() const { return IS_EDITABLE; }
        ///
-       int DocBook(ostream &) const;
-#else
+       bool display() const { return true; }
        ///
-       int Linuxdoc(string & file) const;
+       Inset::Code lyxCode() const;
        ///
-       int DocBook(string & file) const;
-#endif
-private:
+       int ascii(Buffer const *, std::ostream &, int linelen) const;
+       ///
+       int linuxdoc(Buffer const *, std::ostream &) const;
        ///
-       Buffer * owner;
+       int docbook(Buffer const *, std::ostream &, bool mixcont) const;
 };
 
 #endif