]> git.lyx.org Git - lyx.git/blobdiff - src/insets/insettoc.h
fix #832
[lyx.git] / src / insets / insettoc.h
index cf0de54519bb71dc09fe13124324d3edfd981a29..22edad4b776fbe4ebef398c521e426a0ed4792ee 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 &, bool same_id = false);
+       ///
+       ~InsetTOC();
        ///
-        Inset * Clone() const { return new InsetTOC(params()); }
-       ///
-       string getScreenLabel() const;
+       virtual Inset * clone(Buffer const &, bool same_id = false) const {
+               return new InsetTOC(params(), same_id);
+       }
        ///
-       void Edit(BufferView * bv, int, int, unsigned int);
-        ///
-       EDITABLE Editable() const { return IS_EDITABLE; }
+       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;
+       Inset::Code lyxCode() 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