]> 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 37b4457ea08e50ef95d109480fa5cf78695eb216..bb3b5ca00312a66069270ec69679279b6e371806 100644 (file)
@@ -12,9 +12,6 @@
 #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, bool same_id = false)
-                       : InsetCommand(p, same_id) {}
+       InsetTOC(InsetCommandParams const &);
        ///
-       virtual Inset * clone(Buffer const &, bool same_id = false) const {
-               return new InsetTOC(params(), same_id);
-       }
+       ~InsetTOC();
        ///
-       string const getScreenLabel(Buffer const *) const;
+       virtual Inset * clone() const {
+               return new InsetTOC(params());
+       }
        ///
-       void edit(BufferView * bv, int, int, mouse_button::state);
+       dispatch_result localDispatch(FuncRequest const & cmd);
        ///
-       void edit(BufferView * bv, bool front = true);
+       string const getScreenLabel(Buffer const *) const;
        ///
        EDITABLE editable() const { return IS_EDITABLE; }
        ///