]> git.lyx.org Git - lyx.git/blobdiff - src/mathed/InsetMathXYMatrix.h
Fix bug 5802 (http://bugzilla.lyx.org/show_bug.cgi?id=5802)
[lyx.git] / src / mathed / InsetMathXYMatrix.h
index 1928af1aa360955a9ccdcc640e29f372517a7df6..4453d00d658e1a2d7cd56b63c5dbf699c17609f9 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.
  */
 #ifndef MATH_XYMATRIX_H
 #define MATH_XYMATRIX_H
 
-#include "lyxlength.h"
+#include "Length.h"
 #include "InsetMathGrid.h"
 
 
+namespace lyx {
+
+
 class InsetMathXYMatrix : public InsetMathGrid {
 public:
        ///
-       InsetMathXYMatrix();
+       InsetMathXYMatrix(Length const & = Length(), char c = '\0');
        ///
        void metrics(MetricsInfo &, Dimension &) const;
        ///
@@ -34,14 +37,23 @@ public:
        ///
        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;
 private:
        ///
-       virtual std::auto_ptr<InsetBase> doClone() const;
+       virtual Inset * clone() const;
+       /// extra spacing, may be empty
+       Length spacing_;
+       ///
+       char spacing_code_;
 };
 
+
+
+} // namespace lyx
 #endif