X-Git-Url: https://git.lyx.org/gitweb/?a=blobdiff_plain;f=src%2Fmathed%2FInsetMathTabular.h;h=481d28ef0e723ed48d42ba4009c1614bcfaef5e5;hb=3a544072a522845b192594dd2ab11fcb1fc80eeb;hp=4e86b44ab9459c852a9d96af717d4a8a24998080;hpb=e24bf64c68102691fc76081de9fb57926b482726;p=lyx.git diff --git a/src/mathed/InsetMathTabular.h b/src/mathed/InsetMathTabular.h index 4e86b44ab9..481d28ef0e 100644 --- a/src/mathed/InsetMathTabular.h +++ b/src/mathed/InsetMathTabular.h @@ -4,7 +4,7 @@ * This file is part of LyX, the document processor. * Licence details can be found in the file COPYING. * - * \author André Pönitz + * \author André Pönitz * * Full author contact details are available in file CREDITS. */ @@ -22,14 +22,12 @@ namespace lyx { class InsetMathTabular : public InsetMathGrid { public: /// - InsetMathTabular(docstring const &, int m, int n); + InsetMathTabular(Buffer * buf, docstring const &, int m, int n); /// - InsetMathTabular(docstring const &, int m, int n, + InsetMathTabular(Buffer * buf, docstring const &, int m, int n, char valign, docstring const & halign); /// - InsetMathTabular(docstring const &, char valign, docstring const & halign); - /// - bool metrics(MetricsInfo & mi, Dimension & dim) const; + void metrics(MetricsInfo & mi, Dimension & dim) const; /// void draw(PainterInfo & pi, int x, int y) const; /// @@ -45,9 +43,17 @@ public: void normalize(NormalStream &) const; /// void maple(MapleStream &) const; + /// + InsetCode lyxCode() const { return MATH_TABULAR_CODE; } + /// + int leftMargin() const { return 4; } //override + /// + int rightMargin() const { return 2; } //override + /// + bool handlesMulticolumn() const { return true; } //override private: - virtual std::auto_ptr doClone() const; + Inset * clone() const; /// docstring name_; };