]> git.lyx.org Git - lyx.git/blobdiff - src/insets/insetfloatlist.h
prevent crash when inserting minipage in table cell,
[lyx.git] / src / insets / insetfloatlist.h
index b774d504219a4f2a27270c28d785cb87296b51dd..8854eea077e77dfd20d7be0ac153ba0814b9b890 100644 (file)
@@ -12,9 +12,6 @@
 #ifndef INSET_FLOATLIST_H
 #define INSET_FLOATLIST_H
 
-#ifdef __GNUG__
-#pragma interface
-#endif
 
 #include "insetcommand.h"
 
@@ -27,27 +24,28 @@ public:
        ///
        InsetFloatList(string const & type);
        ///
-       Inset * clone(Buffer const &, bool = false) const {
-               return new InsetFloatList(getCmdName());
-       }
+       ~InsetFloatList();
        ///
-       string const getScreenLabel(Buffer const *) const;
+       virtual std::auto_ptr<InsetBase> clone() const {
+               return std::auto_ptr<InsetBase>(new InsetFloatList(getCmdName()));
+       }
        ///
-       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; }
        ///
        bool display() const { return true; }
        ///
-       Inset::Code lyxCode() const;
+       InsetOld::Code lyxCode() const;
        ///
        void write(Buffer const *, std::ostream &) const;
        ///
        void read(Buffer const *, LyXLex &);
        ///
-       int latex(Buffer const *, std::ostream &, bool, bool) const;
+       int latex(Buffer const *, std::ostream &,
+                 LatexRunParams const &) const;
        ///
        int linuxdoc(Buffer const *, std::ostream &) const { return 0; }
        ///