]> git.lyx.org Git - lyx.git/blobdiff - src/mathed/math_arrayinset.h
enable direct input of #1...#9; some whitespace changes
[lyx.git] / src / mathed / math_arrayinset.h
index 45325c92ed051433c6915a21fc67310c5719b46d..d09dae7e8aa1f3c415d0961f65d22947208fe6e2 100644 (file)
@@ -14,13 +14,24 @@ public:
        ///
        MathArrayInset(int m, int n);
        ///
+       MathArrayInset(int m, int n, char valign, string const & halign);
+       ///
+       MathArrayInset(char valign, string const & halign);
+       /// convienience constructor from whitespace/newline seperated data
+       MathArrayInset(string const & str);
+       ///
        MathInset * clone() const;
        ///
-       void write(std::ostream &, bool fragile) const;
+       void metrics(MathMetricsInfo const & st) const;
+       ///
+       MathArrayInset * asArrayInset() { return this; }
+
+       ///
+       void write(WriteStream & os) const;
        ///
-       void metrics(MathStyles st) const;
+       void normalize(NormalStream &) const;
        ///
-       bool isArray() const { return true; }
+       void maplize(MapleStream &) const;
 };
 
 #endif