X-Git-Url: https://git.lyx.org/gitweb/?a=blobdiff_plain;f=src%2Fmathed%2FInsetMathTabular.h;h=b2394d24183e7238b4baabca4d59a8a1211961b9;hb=d9082639080b9de993742bd352f92e5183058cf5;hp=13b4960e50d89df3a9c2aa5c5061d5d42eafd3e7;hpb=de6418f37765fe452f135f96dee6d49897bff215;p=lyx.git diff --git a/src/mathed/InsetMathTabular.h b/src/mathed/InsetMathTabular.h index 13b4960e50..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; /// - void 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_; };