]> git.lyx.org Git - lyx.git/blobdiff - src/mathed/InsetMathAMSArray.h
de.po
[lyx.git] / src / mathed / InsetMathAMSArray.h
index 76ca3208fbf4387e6b1520db6eea3dbf9d7b8eb9..930a2bef4ba5a0166531fdfd5f6002067a234772 100644 (file)
@@ -42,17 +42,28 @@ public:
        void infoize(odocstream & os) const;
        ///
        void normalize(NormalStream &) const;
+       // Don't need mathmlize or htmlize, as this is handled by
+       // InsetMathMatrix after being extracted in MathExtern.
+       // void mathmlize(MathStream &) const;
+       // void htmlize(HTMLStream &) const;
        ///
        void validate(LaTeXFeatures & features) const;
        ///
        InsetCode lyxCode() const { return MATH_AMSARRAY_CODE; }
-private:
-       virtual Inset * clone() const;
        ///
        char const * name_left() const;
        ///
        char const * name_right() const;
        ///
+       int leftMargin() const { return 6; } //override
+       ///
+       int rightMargin() const { return 8; } //override
+       ///
+       bool handlesMulticolumn() const { return true; } //override
+
+private:
+       virtual Inset * clone() const;
+       ///
        docstring name_;
 };