]> git.lyx.org Git - lyx.git/blobdiff - src/mathed/math_arrayinset.h
rename commandtags.h to lfuns.h and renumber/cleanup. Rebuild the tree !
[lyx.git] / src / mathed / math_arrayinset.h
index d5d0ed8dfdab89fdcfb34a1c35a66aa8ee4be5ff..10fe6146c504d353decdbeb433e7a6558d0ba78c 100644 (file)
@@ -2,21 +2,49 @@
 #ifndef MATH_ARRAYINSET_H
 #define MATH_ARRAYINSET_H
 
-#include "math_grid.h"
+#include "math_gridinset.h"
 
-#ifdef __GNUG__
-#pragma interface
-#endif
 
+/**
+ * Inset for things like \begin{array}...\end{array}
+ *
+ * \author André Pönitz
+ *
+ * Full author contact details are available in file CREDITS
+ */
 
 class MathArrayInset : public MathGridInset {
-public: 
+public:
+       ///
+       MathArrayInset(string const &, int m, int n);
+       ///
+       MathArrayInset(string const &, int m, int n,
+               char valign, string const & halign);
+       ///
+       MathArrayInset(string const &, char valign, string const & halign);
+       /// convienience constructor from whitespace/newline seperated data
+       MathArrayInset(string const &, string const & str);
+       ///
+       MathInset * clone() const;
+       ///
+       void metrics(MathMetricsInfo & mi) const;
        ///
-       MathArrayInset(int m, int n);
+       void draw(MathPainterInfo & pi, int x, int y) const;
        ///
-       MathInset *  Clone() const;
+       MathArrayInset * asArrayInset() { return this; }
+       ///
+       MathArrayInset const * asArrayInset() const { return this; }
+
+       ///
+       void write(WriteStream & os) const;
+       ///
+       void normalize(NormalStream &) const;
+       ///
+       void maple(MapleStream &) const;
+
+private:
        ///
-       void Write(std::ostream &, bool fragile) const;
+       string name_;
 };
 
 #endif