]> git.lyx.org Git - lyx.git/blobdiff - src/insets/insetminipage.h
prevent crash when inserting minipage in table cell,
[lyx.git] / src / insets / insetminipage.h
index c78c769d4eb6ffcd1ced1979961b005853b248d6..9ceca591557620b405b2b3df3d0ed3d660230b03 100644 (file)
@@ -58,8 +58,6 @@ public:
        ///
        InsetMinipage(InsetMinipage const &);
        ///
-       //InsetMinipage(InsetMinipage const &, bool same_id);
-       ///
        ~InsetMinipage();
        ///
        virtual dispatch_result localDispatch(FuncRequest const & cmd);
@@ -68,22 +66,18 @@ public:
        ///
        void read(Buffer const * buf, LyXLex & lex);
        ///
-       Inset * clone(Buffer const &) const;
-       ///
-       //Inset * clone(Buffer const &, bool same_id) const;
+       virtual std::auto_ptr<InsetBase> clone() const;
        ///
-       void dimension(BufferView *, LyXFont const &, Dimension &) const;
+       void metrics(MetricsInfo &, Dimension &) const;
        ///
-       Inset::Code lyxCode() const { return Inset::MINIPAGE_CODE; }
+       InsetOld::Code lyxCode() const { return InsetOld::MINIPAGE_CODE; }
        ///
        int latex(Buffer const *, std::ostream &,
                  LatexRunParams const &) const;
        ///
        string const editMessage() const;
        ///
-       bool insetAllowed(Inset::Code) const;
-       ///
-       int getMaxWidth(BufferView *, UpdatableInset const *) const;
+       bool insetAllowed(InsetOld::Code) const;
        ///
        bool needFullRow() const { return false; }
        /** returns true if, when outputing LaTeX, font changes should
@@ -116,7 +110,7 @@ public:
        ///
        virtual string const & name() const { return name_; }
        ///
-       virtual string const inset2string() const;
+       virtual string const inset2string(Buffer const &) const;
        ///
        static void string2params(string const &, InsetMinipage::Params &);
        ///