]> git.lyx.org Git - lyx.git/blobdiff - src/insets/insetref.h
prevent crash when inserting minipage in table cell,
[lyx.git] / src / insets / insetref.h
index 87b8716593598b652127d53474163cfc2f1d7edb..3ec8215fa24c8ab6748ebdccfae60dfe68ab8a88 100644 (file)
@@ -35,27 +35,29 @@ public:
        ///
        static string const & getName(int type);
 
+
+       InsetRef(InsetCommandParams const &, Buffer const &);
+
+       InsetRef(InsetRef const &);
+
+       ~InsetRef();
        ///
-       InsetRef(InsetCommandParams const &, Buffer const &, bool same_id = false);
-       ///
-       virtual Inset * clone(Buffer const & buffer, bool same_id = false) const {
-               return new InsetRef(params(), buffer, same_id);
+       virtual std::auto_ptr<InsetBase> clone() const {
+               return std::auto_ptr<InsetBase>(new InsetRef(*this));
        }
        ///
+       dispatch_result localDispatch(FuncRequest const & cmd);
+       ///
        string const getScreenLabel(Buffer const *) const;
        ///
        EDITABLE editable() const { return IS_EDITABLE; }
        ///
-       Inset::Code lyxCode() const { return Inset::REF_CODE; }
-       ///
-       void edit(BufferView *, int, int, mouse_button::state);
-       ///
-       void edit(BufferView * bv, bool front = true);
+       InsetOld::Code lyxCode() const { return InsetOld::REF_CODE; }
        ///
        bool display() const { return false; }
        ///
        int latex(Buffer const *, std::ostream &,
-                 bool fragile, bool free_spc) const;
+                 LatexRunParams const &) const;
        ///
        int ascii(Buffer const *, std::ostream &, int linelen) const;
        ///