]> git.lyx.org Git - lyx.git/blobdiff - src/mathed/math_lefteqninset.C
make \newcommand{\bb}[1]{\mathbf{#1}} work for read/write/display.
[lyx.git] / src / mathed / math_lefteqninset.C
index 8628abce060da9bcad59cc5f5c17889a5785e747..318a634549838f1a6b961e51a774fb66c5de3fae 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"
 
 
 MathLefteqnInset::MathLefteqnInset()
@@ -32,23 +30,17 @@ void MathLefteqnInset::metrics(MathMetricsInfo const & mi) const
 void MathLefteqnInset::draw(Painter & pain, 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);
-       }
+       //mathed_draw_framebox(pain, x, y, this);
 }
 
 
-void MathLefteqnInset::write(MathWriteInfo & os) const
+void MathLefteqnInset::write(WriteStream & os) const
 {
-       os << "\\lefteqn{" << cell(0) << "}";
+       os << "\\lefteqn{" << cell(0) << '}';
 }
 
 
-void MathLefteqnInset::writeNormal(NormalStream & os) const
+void MathLefteqnInset::normalize(NormalStream & os) const
 {
-       os << "[lefteqn ";
-       MathWriteInfo wi(os.os_);
-       cell(0).write(wi);
-       os << "]";
+       os << "[lefteqn " << cell(0) << ']';
 }