]> 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 7af83034effdd095dd2e416cf6c6129cbc178015..9ceca591557620b405b2b3df3d0ed3d660230b03 100644 (file)
@@ -56,30 +56,28 @@ public:
        ///
        InsetMinipage(BufferParams const &);
        ///
-       InsetMinipage(InsetMinipage const &, bool same_id = false);
+       InsetMinipage(InsetMinipage const &);
        ///
        ~InsetMinipage();
        ///
-       virtual dispatch_result localDispatch(FuncRequest const & cmd); 
+       virtual dispatch_result localDispatch(FuncRequest const & cmd);
        ///
        void write(Buffer const * buf, std::ostream & os) const;
        ///
        void read(Buffer const * buf, LyXLex & lex);
        ///
-       Inset * clone(Buffer const &, bool same_id = false) 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 &,
-                 bool fp) const;
+       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
@@ -112,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 &);
        ///