X-Git-Url: https://git.lyx.org/gitweb/?a=blobdiff_plain;f=src%2Fmathed%2FInsetMathTabular.h;h=b2394d24183e7238b4baabca4d59a8a1211961b9;hb=d9082639080b9de993742bd352f92e5183058cf5;hp=56486e9c7b7d4732edb75c7d3263afc09bc91105;hpb=6c300f72a217722652dc27db9108e1050028979c;p=lyx.git diff --git a/src/mathed/InsetMathTabular.h b/src/mathed/InsetMathTabular.h index 56486e9c7b..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,37 +22,42 @@ namespace lyx { class InsetMathTabular : public InsetMathGrid { public: /// - InsetMathTabular(std::string const &, int m, int n); + InsetMathTabular(Buffer * buf, docstring const &, int m, int n); /// - InsetMathTabular(std::string const &, int m, int n, - char valign, std::string const & halign); + InsetMathTabular(Buffer * buf, docstring const &, int m, int n, + char valign, docstring const & halign); /// - InsetMathTabular(std::string const &, char valign, std::string 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; /// - void infoize(std::ostream & 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; } + /// + bool handlesMulticolumn() const override { return true; } private: - virtual std::auto_ptr doClone() const; + Inset * clone() const override; /// - std::string name_; + docstring name_; }; - - } // namespace lyx + #endif