]> git.lyx.org Git - lyx.git/blobdiff - src/mathed/math_stackrelinset.C
make \newcommand{\bb}[1]{\mathbf{#1}} work for read/write/display.
[lyx.git] / src / mathed / math_stackrelinset.C
index 3db27793445493a5b0f743b9d04018a612ccff4d..2c2e1887519c6a1413f082cb60899d1ad98e9302 100644 (file)
@@ -3,8 +3,8 @@
 #endif
 
 #include "math_stackrelinset.h"
-#include "mathed/support.h"
-#include "support/LOstream.h"
+#include "math_mathmlstream.h"
+#include "math_support.h"
 
 
 MathStackrelInset::MathStackrelInset()
@@ -17,12 +17,12 @@ MathInset * MathStackrelInset::clone() const
 }
 
 
-void MathStackrelInset::metrics(MathMetricsInfo const & st) const
+void MathStackrelInset::metrics(MathMetricsInfo const & mi) const
 {
-       size_    = st;
-       smallerStyleFrac(size_);
-       xcell(0).metrics(size_);
-       xcell(1).metrics(st);
+       MathMetricsInfo m = mi;
+       smallerStyleFrac(m);
+       xcell(0).metrics(m);
+       xcell(1).metrics(mi);
        width_   = std::max(xcell(0).width(), xcell(1).width()) + 4; 
        ascent_  = xcell(1).ascent() + xcell(0).height() + 4;
        descent_ = xcell(1).descent();
@@ -31,25 +31,20 @@ void MathStackrelInset::metrics(MathMetricsInfo const & st) const
 
 void MathStackrelInset::draw(Painter & pain, int x, int y) const
 {
-       xo(x);
-       yo(y);
-       int m = x + width() / 2;
-       xcell(0).draw(pain, m - xcell(0).width() / 2, y - xcell(0).height() - 4);
+       int m  = x + width() / 2;
+       int yo = y - xcell(1).ascent() - xcell(0).descent() - 1;
+       xcell(0).draw(pain, m - xcell(0).width() / 2, yo);
        xcell(1).draw(pain, m - xcell(1).width() / 2, y);
 }
 
 
-void MathStackrelInset::write(MathWriteInfo & os) const
+void MathStackrelInset::write(WriteStream & os) const
 {
        os << "\\stackrel{" << cell(0) << "}{" << cell(1) << '}';
 }
 
 
-void MathStackrelInset::writeNormal(std::ostream & os) const
+void MathStackrelInset::normalize(NormalStream & os) const
 {
-       os << "[stackrel ";
-       cell(0).writeNormal(os);
-       os << " ";
-       cell(1).writeNormal(os);
-       os << "] ";
+       os << "[stackrel " << cell(0) << ' ' << cell(1) << ']';
 }