]> git.lyx.org Git - lyx.git/blobdiff - src/mathed/math_amsarrayinset.C
fix #1073
[lyx.git] / src / mathed / math_amsarrayinset.C
index 1e4245e5269ad3812c1e0c34764c1dfaafd8e956..ca329ca0417d99d601f48a6cdd516ba5923b1646 100644 (file)
@@ -1,11 +1,9 @@
 #include <config.h>
 
-#ifdef __GNUG__
-#pragma implementation
-#endif
 
 #include "math_amsarrayinset.h"
 #include "math_mathmlstream.h"
+#include "metricsinfo.h"
 #include "math_support.h"
 #include "math_streamstr.h"
 #include "math_support.h"
@@ -32,6 +30,8 @@ char const * MathAMSArrayInset::name_left() const
 {
        if (name_ == "bmatrix")
                return "[";
+       if (name_ == "Bmatrix")
+               return "{";
        if (name_ == "vmatrix")
                return "|";
        if (name_ == "Vmatrix")
@@ -46,6 +46,8 @@ char const * MathAMSArrayInset::name_right() const
 {
        if (name_ == "bmatrix")
                return "]";
+       if (name_ == "Bmatrix")
+               return "}";
        if (name_ == "vmatrix")
                return "|";
        if (name_ == "Vmatrix")
@@ -56,9 +58,9 @@ char const * MathAMSArrayInset::name_right() const
 }
 
 
-void MathAMSArrayInset::metrics(MathMetricsInfo & mi) const
+void MathAMSArrayInset::metrics(MetricsInfo & mi) const
 {
-       MathMetricsInfo m = mi;
+       MetricsInfo m = mi;
        if (m.base.style == LM_ST_DISPLAY)
                m.base.style = LM_ST_TEXT;
        MathGridInset::metrics(m);
@@ -66,7 +68,7 @@ void MathAMSArrayInset::metrics(MathMetricsInfo & mi) const
 }
 
 
-void MathAMSArrayInset::draw(MathPainterInfo & pi, int x, int y) const
+void MathAMSArrayInset::draw(PainterInfo & pi, int x, int y) const
 {
        MathGridInset::draw(pi, x + 6, y);
        int const yy = y - ascent();
@@ -77,16 +79,15 @@ void MathAMSArrayInset::draw(MathPainterInfo & pi, int x, int y) const
 
 void MathAMSArrayInset::write(WriteStream & os) const
 {
-       os << "\\begin{" << name_ << "}";
+       os << "\\begin{" << name_ << '}';
        MathGridInset::write(os);
-       os << "\\end{" << name_ << "}";
+       os << "\\end{" << name_ << '}';
 }
 
 
 void MathAMSArrayInset::normalize(NormalStream & os) const
 {
-       os << "[" << name_ << " ";
+       os << '[' << name_ << ' ';
        MathGridInset::normalize(os);
-       os << "]";
+       os << ']';
 }
-