]> git.lyx.org Git - lyx.git/blobdiff - src/mathed/InsetMathXYMatrix.h
Merge branch 'master' of git.lyx.org:lyx
[lyx.git] / src / mathed / InsetMathXYMatrix.h
index e9be79c81d7586c37b9dfbcb7aa8dbb12ab07b34..72f48efe46534799c9f4dea52093e00d07a3da5b 100644 (file)
@@ -4,7 +4,7 @@
  * This file is part of LyX, the document processor.
  * Licence details can be found in the file COPYING.
  *
- * \author André Pönitz
+ * \author André Pönitz
  *
  * Full author contact details are available in file CREDITS.
  */
@@ -12,7 +12,7 @@
 #ifndef MATH_XYMATRIX_H
 #define MATH_XYMATRIX_H
 
-#include "lyxlength.h"
+#include "Length.h"
 #include "InsetMathGrid.h"
 
 
@@ -22,7 +22,8 @@ namespace lyx {
 class InsetMathXYMatrix : public InsetMathGrid {
 public:
        ///
-       InsetMathXYMatrix();
+       InsetMathXYMatrix(Buffer * buf, Length const & = Length(), char c = '\0',
+               bool equal_spacing = false);
        ///
        void metrics(MetricsInfo &, Dimension &) const;
        ///
@@ -32,19 +33,32 @@ public:
        ///
        virtual int rowsep() const;
 
-       ///
-       void normalize();
        ///
        void write(WriteStream & os) const;
        ///
-       void infoize(std::ostream & os) const;
+       void infoize(odocstream & os) const;
        ///
        void normalize(NormalStream &) const;
        ///
        void maple(MapleStream &) const;
+       ///
+       void validate(LaTeXFeatures & features) const;
+       ///
+       InsetCode lyxCode() const { return MATH_XYMATRIX_CODE; }
+       ///
+       void mathmlize(MathStream &) const;
+       ///
+       void htmlize(HtmlStream &) const;
+
 private:
        ///
-       virtual std::auto_ptr<InsetBase> doClone() const;
+       virtual Inset * clone() const;
+       /// extra spacing, may be empty
+       Length spacing_;
+       ///
+       char spacing_code_;
+       ///
+       bool equal_spacing_;
 };