]> 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 9e2078f2cbb637c44f409e5305dc9c8d9e997194..bb3b5ca00312a66069270ec69679279b6e371806 100644 (file)
@@ -1,20 +1,17 @@
 // -*- 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 InsetTOC : public InsetCommand {
 public:
        ///
-       InsetTOC(InsetCommandParams const & p) : InsetCommand(p) {}
+       InsetTOC(InsetCommandParams const &);
+       ///
+       ~InsetTOC();
+       ///
+       virtual Inset * clone() const {
+               return new InsetTOC(params());
+       }
+       ///
+       dispatch_result localDispatch(FuncRequest const & cmd);
        ///
-        Inset * Clone(Buffer const &) const { return new InsetTOC(params()); }
-       ///
-       string const getScreenLabel() const;
+       string const getScreenLabel(Buffer const *) const;
        ///
-       void Edit(BufferView * bv, int, int, unsigned int);
-        ///
-       EDITABLE Editable() const { return IS_EDITABLE; }
+       EDITABLE editable() const { return IS_EDITABLE; }
        ///
        bool display() const { return true; }
        ///
-       Inset::Code LyxCode() const;
+       Inset::Code lyxCode() const;
        ///
-       int Ascii(Buffer const *, std::ostream &, int linelen) const;
+       int ascii(Buffer const *, std::ostream &, int linelen) const;
        ///
-       int Linuxdoc(Buffer const *, std::ostream &) const;
+       int linuxdoc(Buffer const *, std::ostream &) const;
        ///
-       int DocBook(Buffer const *, std::ostream &) const;
+       int docbook(Buffer const *, std::ostream &, bool mixcont) const;
 };
 
 #endif