X-Git-Url: https://git.lyx.org/gitweb/?a=blobdiff_plain;f=src%2Fmathed%2FInsetMathTabular.h;h=b2394d24183e7238b4baabca4d59a8a1211961b9;hb=d9082639080b9de993742bd352f92e5183058cf5;hp=0fb6c27961cc96b31b0f2b1cb5d5fa2858e8f335;hpb=0facb603fefec1ecc927f77bcf6228ca1f035444;p=lyx.git diff --git a/src/mathed/InsetMathTabular.h b/src/mathed/InsetMathTabular.h index 0fb6c27961..b2394d2418 100644 --- a/src/mathed/InsetMathTabular.h +++ b/src/mathed/InsetMathTabular.h @@ -22,34 +22,38 @@ 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; + void metrics(MetricsInfo & mi, Dimension & dim) const override; /// - Dimension const dimension(BufferView const &) const; - /// - void draw(PainterInfo & pi, int x, int y) const; + void draw(PainterInfo & pi, int x, int y) const override; /// InsetMathTabular * asTabularInset() { return this; } /// InsetMathTabular const * asTabularInset() const { return this; } /// - void write(WriteStream & os) const; + void write(TeXMathStream & os) const override; + /// + void infoize(odocstream & os) const override; + /// + void normalize(NormalStream &) const override; + /// + void maple(MapleStream &) const override; /// - void infoize(odocstream & os) const; + InsetCode lyxCode() const override { return MATH_TABULAR_CODE; } /// - void normalize(NormalStream &) const; + int leftMargin() const override { return 4; } /// - void maple(MapleStream &) const; + int rightMargin() const override { return 2; } /// - InsetCode lyxCode() const { return MATH_TABULAR_CODE; } + bool handlesMulticolumn() const override { return true; } private: - Inset * clone() const; + Inset * clone() const override; /// docstring name_; };