]> 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 3f4382d8eab624cd027e1dbda7397f470ebf6e51..318a634549838f1a6b961e51a774fb66c5de3fae 100644 (file)
@@ -3,10 +3,8 @@
 #endif
 
 #include "math_lefteqninset.h"
-#include "support/LOstream.h"
-#include "LColor.h"
-#include "Painter.h"
-#include "math_cursor.h"
+#include "math_mathmlstream.h"
+#include "math_support.h"
 
 
 MathLefteqnInset::MathLefteqnInset()
@@ -20,35 +18,29 @@ MathInset * MathLefteqnInset::clone() const
 }
 
 
-void MathLefteqnInset::draw(Painter & pain, int x, int y) const
+void MathLefteqnInset::metrics(MathMetricsInfo const & mi) const
 {
-       xcell(0).draw(pain, x + 2, y);
-       if (mathcursor && mathcursor->isInside(this)) {
-               pain.rectangle(x, y - ascent(), xcell(0).width(), height(),
-                       LColor::mathframe);
-       }
+       MathNestInset::metrics(mi);
+       ascent_  = xcell(0).ascent() + 2;
+       descent_ = xcell(0).descent() + 2;
+       width_   = 4;
 }
 
 
-void MathLefteqnInset::write(MathWriteInfo & os) const
+void MathLefteqnInset::draw(Painter & pain, int x, int y) const
 {
-       os << "\\lefteqn{" << cell(0) << "}";
+       xcell(0).draw(pain, x + 2, y);
+       //mathed_draw_framebox(pain, x, y, this);
 }
 
 
-void MathLefteqnInset::writeNormal(std::ostream & os) const
+void MathLefteqnInset::write(WriteStream & os) const
 {
-       os << "[lefteqn ";
-       MathWriteInfo wi(os);
-       cell(0).write(wi);
-       os << "] ";
+       os << "\\lefteqn{" << cell(0) << '}';
 }
 
 
-void MathLefteqnInset::metrics(MathMetricsInfo const & mi) const
+void MathLefteqnInset::normalize(NormalStream & os) const
 {
-       MathNestInset::metrics(mi);
-       ascent_  = xcell(0).ascent() + 2;
-       descent_ = xcell(0).descent() + 2;
-       width_   = 4;
+       os << "[lefteqn " << cell(0) << ']';
 }