X-Git-Url: https://git.lyx.org/gitweb/?a=blobdiff_plain;f=src%2Fmathed%2FInsetMathTabular.h;h=b2394d24183e7238b4baabca4d59a8a1211961b9;hb=d9082639080b9de993742bd352f92e5183058cf5;hp=1d591924a53d23a32d7032a651ba060613580e3d;hpb=32871c1284f15265f652ff01c438e539a7c8181f;p=lyx.git diff --git a/src/mathed/InsetMathTabular.h b/src/mathed/InsetMathTabular.h index 1d591924a5..b2394d2418 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,32 +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); /// - InsetMathTabular(docstring const &, char valign, docstring const & halign); + void metrics(MetricsInfo & mi, Dimension & dim) const override; /// - bool metrics(MetricsInfo & mi, Dimension & dim) 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; + /// + InsetCode lyxCode() const override { return MATH_TABULAR_CODE; } /// - void infoize(odocstream & os) const; + int leftMargin() const override { return 4; } /// - void normalize(NormalStream &) const; + int rightMargin() const override { return 2; } /// - void maple(MapleStream &) const; + bool handlesMulticolumn() const override { return true; } private: - virtual std::auto_ptr doClone() const; + Inset * clone() const override; /// docstring name_; };