]> git.lyx.org Git - lyx.git/blobdiff - src/mathed/math_arrayinset.h
forward search in math insets. ugly. seems to work. don't ask why.
[lyx.git] / src / mathed / math_arrayinset.h
index ee7341d84372398a9f748445fa4d44a39d124c80..d09dae7e8aa1f3c415d0961f65d22947208fe6e2 100644 (file)
@@ -16,13 +16,22 @@ public:
        ///
        MathArrayInset(int m, int n, char valign, string const & halign);
        ///
-       MathInset * clone() const;
+       MathArrayInset(char valign, string const & halign);
+       /// convienience constructor from whitespace/newline seperated data
+       MathArrayInset(string const & str);
        ///
-       void write(std::ostream &, bool fragile) const;
+       MathInset * clone() const;
        ///
-       void metrics(MathStyles st) const;
+       void metrics(MathMetricsInfo const & st) const;
        ///
        MathArrayInset * asArrayInset() { return this; }
+
+       ///
+       void write(WriteStream & os) const;
+       ///
+       void normalize(NormalStream &) const;
+       ///
+       void maplize(MapleStream &) const;
 };
 
 #endif