X-Git-Url: https://git.lyx.org/gitweb/?a=blobdiff_plain;f=src%2Fmathed%2FInsetMathTabular.h;h=481d28ef0e723ed48d42ba4009c1614bcfaef5e5;hb=3a544072a522845b192594dd2ab11fcb1fc80eeb;hp=0fb6c27961cc96b31b0f2b1cb5d5fa2858e8f335;hpb=0facb603fefec1ecc927f77bcf6228ca1f035444;p=lyx.git diff --git a/src/mathed/InsetMathTabular.h b/src/mathed/InsetMathTabular.h index 0fb6c27961..481d28ef0e 100644 --- a/src/mathed/InsetMathTabular.h +++ b/src/mathed/InsetMathTabular.h @@ -22,15 +22,13 @@ 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); /// void metrics(MetricsInfo & mi, Dimension & dim) const; /// - Dimension const dimension(BufferView const &) const; - /// void draw(PainterInfo & pi, int x, int y) const; /// InsetMathTabular * asTabularInset() { return this; } @@ -47,6 +45,12 @@ public: 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: Inset * clone() const;