]> git.lyx.org Git - lyx.git/blobdiff - src/mathed/math_matrixinset.h
Add In nsetOld * argument to updateInset to rebreak the correct par.
[lyx.git] / src / mathed / math_matrixinset.h
index 4795d07716186267e5563474d0a068eb8e0281c2..50d7baccd3e5a458138908795bc52277ca3bb5aa 100644 (file)
@@ -1,88 +1,45 @@
 // -*- C++ -*-
+/**
+ * \file math_matrixinset.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_MATRIXINSET_H
 #define MATH_MATRIXINSET_H
 
-#include <vector>
-
-#include "math_grid.h"
-
-#ifdef __GNUG__
-#pragma interface
-#endif
+#include "math_gridinset.h"
 
-/** Multiline math paragraph base class.
-    This is the base to all multiline editable math objects
-    like array and eqnarray.
-    \author Alejandro Aguilar Sierra
-*/
 
-class LaTeXFeatures;
+// "shortcut" for DelimInset("(",ArrayInset,")")
 
 class MathMatrixInset : public MathGridInset {
-public: 
-       ///
-       MathMatrixInset();
-       ///
-       explicit MathMatrixInset(MathInsetTypes t);
-       ///
-       MathInset * clone() const;
-       ///
-       void Write(std::ostream &, bool fragile) const;
-       ///
-       void Metrics(MathStyles st);
-       ///
-       void draw(Painter &, int, int);
-       ///
-       string label(int row) const;
-       ///
-       void label(int row, string const & label);
-       ///
-       void numbered(int row, bool num);
+public:
        ///
-       bool numbered(int row) const;
+       MathMatrixInset(MathGridInset const &);
        ///
-       bool numberedType() const;
+       MathMatrixInset(string const & str);
        ///
-       bool display() const;
-       ///
-       bool ams() const;
-       ///
-       std::vector<string> const getLabelList() const;
-       ///
-       void Validate(LaTeXFeatures & features);
+       virtual std::auto_ptr<InsetBase> clone() const;
+       /// identifies MatrixInsets
+       MathMatrixInset const * asMatrixInset() const { return this; }
 
        ///
-       void addRow(int);
-       ///
-       void delRow(int);
+       void write(WriteStream & os) const;
        ///
-       void addCol(int);
+       void normalize(NormalStream &) const;
        ///
-       void delCol(int);
+       void maple(MapleStream &) const;
        ///
-       void appendRow();
-
-       /// change type
-       void mutate(string const &);
-       ///
-       void mutate(short);
-
-private:
-       ///
-       void Validate1(LaTeXFeatures & features);
-       ///
-       void header_write(std::ostream &) const;
-       ///
-       void footer_write(std::ostream &) const;
-       ///
-       void glueall();
-       ///
-       string nicelabel(int row) const;
-
+       void maxima(MaximaStream &) const;
        ///
-       std::vector<int> nonum_;
+       void mathmlize(MathMLStream &) const;
        ///
-       std::vector<string> label_;
+       void octave(OctaveStream &) const;
 };
 
 #endif