]> git.lyx.org Git - lyx.git/blobdiff - src/mathed/math_lefteqninset.C
small up/down tweaking
[lyx.git] / src / mathed / math_lefteqninset.C
index 99eb3159a25adb051cb547c46e49c1c690ee7fac..17d64b2f6893e8c68776be2ed661fcfb25165894 100644 (file)
@@ -3,10 +3,8 @@
 #endif
 
 #include "math_lefteqninset.h"
-#include "LColor.h"
-#include "Painter.h"
-#include "math_cursor.h"
-#include "math_mathmlstream.h"
+#include "math_support.h"
+#include "support/LOstream.h"
 
 
 MathLefteqnInset::MathLefteqnInset()
@@ -20,32 +18,30 @@ MathInset * MathLefteqnInset::clone() const
 }
 
 
-void MathLefteqnInset::metrics(MathMetricsInfo const & mi) const
+void MathLefteqnInset::metrics(MathMetricsInfo & mi) const
 {
-       MathNestInset::metrics(mi);
-       ascent_  = xcell(0).ascent() + 2;
-       descent_ = xcell(0).descent() + 2;
-       width_   = 4;
+       cell(0).metrics(mi);
+       dim_.a = cell(0).ascent() + 2;
+       dim_.d = cell(0).descent() + 2;
+       dim_.w = 4;
+       metricsMarkers2();
 }
 
 
-void MathLefteqnInset::draw(Painter & pain, int x, int y) const
+void MathLefteqnInset::draw(MathPainterInfo & pi, int x, int y) const
 {
-       xcell(0).draw(pain, x + 2, y);
-       if (mathcursor && mathcursor->isInside(this)) {
-               pain.rectangle(x, y - ascent(), xcell(0).width(), height(),
-                       LColor::mathframe);
-       }
+       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 ";
 }