]> git.lyx.org Git - lyx.git/blobdiff - src/mathed/math_arrayinset.h
whichFont down to 5.3%
[lyx.git] / src / mathed / math_arrayinset.h
index e80acf6d0a8a33447741f9e99af77ffcf8d640cc..ce74bf261c64ff24b6fd38c36ca58cc360ab1f64 100644 (file)
 class MathArrayInset : public MathGridInset {
 public: 
        ///
-       MathArrayInset(int m, int n);
+       MathArrayInset(string const &, int m, int n);
        ///
-       MathArrayInset(int m, int n, char valign, string const & halign);
+       MathArrayInset(string const &, int m, int n,
+               char valign, string const & halign);
        ///
-       MathInset * clone() const;
-       ///
-       void write(MathWriteInfo & os) const;
+       MathArrayInset(string const &, char valign, string const & halign);
+       /// convienience constructor from whitespace/newline seperated data
+       MathArrayInset(string const &, string const & str);
        ///
-       void writeNormal(std::ostream &) const;
+       MathInset * clone() const;
        ///
        void metrics(MathMetricsInfo const & st) const;
        ///
        MathArrayInset * asArrayInset() { return this; }
+
+       ///
+       void write(WriteStream & os) const;
+       ///
+       void normalize(NormalStream &) const;
+       ///
+       void maplize(MapleStream &) const;
+
+private:
+       ///
+       string name_;
 };
 
 #endif