]> git.lyx.org Git - lyx.git/blobdiff - src/mathed/math_arrayinset.h
macro rework
[lyx.git] / src / mathed / math_arrayinset.h
index 1dc35f05a152b8b21ef73ee20db10a367ed05645..dbd9fe3bc035b5aa70429a703d351c8c8375ef49 100644 (file)
@@ -1,24 +1,55 @@
 // -*- C++ -*-
+/**
+ * \file math_arrayinset.h
+ * This file is part of LyX, the document processor.
+ * Licence details can be found in the file COPYING.
+ *
+ * \author André Pönitz
+ *
+ * Full author contact details are available in file CREDITS.
+ */
+
 #ifndef MATH_ARRAYINSET_H
 #define MATH_ARRAYINSET_H
 
 #include "math_gridinset.h"
 
-#ifdef __GNUG__
-#pragma interface
-#endif
-
 
+/// Inset for things like \begin{array}...\end{array}
 class MathArrayInset : public MathGridInset {
-public: 
+public:
+       ///
+       MathArrayInset(std::string const &, int m, int n);
+       ///
+       MathArrayInset(std::string const &, int m, int n,
+               char valign, std::string const & halign);
+       ///
+       MathArrayInset(std::string const &, char valign, std::string const & halign);
+       /// convienience constructor from whitespace/newline seperated data
+       MathArrayInset(std::string const &, std::string const & str);
+       ///
+       std::auto_ptr<InsetBase> clone() const;
        ///
-       MathArrayInset(int m, int n);
+       void metrics(MetricsInfo & mi, Dimension & dim) const;
        ///
-       MathInset * clone() const;
+       void draw(PainterInfo & pi, int x, int y) const;
        ///
-       void write(std::ostream &, bool fragile) const;
+       MathArrayInset * asArrayInset() { return this; }
+       ///
+       MathArrayInset const * asArrayInset() const { return this; }
+
+       ///
+       void write(WriteStream & os) const;
+       ///
+       void infoize(std::ostream & os) const;
+       ///
+       void normalize(NormalStream & os) const;
+       ///
+       void maple(MapleStream & os) const;
+
+private:
        ///
-       bool isArray() const { return true; }
+       std::string name_;
 };
 
 #endif