]> git.lyx.org Git - lyx.git/blobdiff - src/mathed/math_lefteqninset.C
fix #1073
[lyx.git] / src / mathed / math_lefteqninset.C
index 9362eba65e3a3a2deccf7549f9cd073e4ff414f0..febd73aafe5a3e2994d5904eaccff13279c18615 100644 (file)
@@ -1,10 +1,7 @@
-#ifdef __GNUG__
-#pragma implementation
-#endif
 
 #include "math_lefteqninset.h"
-#include "math_mathmlstream.h"
 #include "math_support.h"
+#include "support/LOstream.h"
 
 
 MathLefteqnInset::MathLefteqnInset()
@@ -18,29 +15,30 @@ MathInset * MathLefteqnInset::clone() const
 }
 
 
-void MathLefteqnInset::metrics(MathMetricsInfo & mi) const
+void MathLefteqnInset::metrics(MetricsInfo & mi) const
 {
        cell(0).metrics(mi);
        dim_.a = cell(0).ascent() + 2;
        dim_.d = cell(0).descent() + 2;
        dim_.w = 4;
+       metricsMarkers2();
 }
 
 
-void MathLefteqnInset::draw(MathPainterInfo & pain, int x, int y) const
+void MathLefteqnInset::draw(PainterInfo & pi, int x, int y) const
 {
-       cell(0).draw(pain, x + 2, y);
-       //mathed_draw_framebox(pain, x, y, this);
+       cell(0).draw(pi, x + 2, y);
+       drawMarkers2(pi, x, y);
 }
 
 
-void MathLefteqnInset::write(WriteStream & os) const
+string MathLefteqnInset::name() const
 {
-       os << "\\lefteqn{" << cell(0) << '}';
+       return "lefteqn";
 }
 
 
-void MathLefteqnInset::normalize(NormalStream & os) const
+void MathLefteqnInset::infoize(std::ostream & os) const
 {
-       os << "[lefteqn " << cell(0) << ']';
+       os << "Lefteqn ";
 }