]> git.lyx.org Git - lyx.git/blobdiff - src/mathed/math_sqrtinset.C
small up/down tweaking
[lyx.git] / src / mathed / math_sqrtinset.C
index 5bfb8112a65e4f1575159c3a88fd561c465a0ddb..08589b6af4299ffb46803398219c4813a098ebfe 100644 (file)
@@ -3,9 +3,10 @@
 #endif
 
 #include "math_sqrtinset.h"
+#include "math_mathmlstream.h"
 #include "LColor.h"
-#include "Painter.h"
-#include "support/LOstream.h"
+#include "frontends/Painter.h"
+#include "textpainter.h"
 
 
 MathSqrtInset::MathSqrtInset()
@@ -14,46 +15,84 @@ MathSqrtInset::MathSqrtInset()
 
 
 MathInset * MathSqrtInset::clone() const
-{   
+{
        return new MathSqrtInset(*this);
 }
 
 
-void MathSqrtInset::metrics(MathMetricsInfo const & mi) const
+void MathSqrtInset::metrics(MathMetricsInfo & mi) const
 {
-       xcell(0).metrics(mi);
-       ascent_  = xcell(0).ascent()  + 4;
-       descent_ = xcell(0).descent() + 2;
-       width_   = xcell(0).width()   + 12;
+       cell(0).metrics(mi);
+       dim_.a = cell(0).ascent()  + 4;
+       dim_.d = cell(0).descent() + 2;
+       dim_.w = cell(0).width()   + 12;
+       metricsMarkers();
 }
 
 
-void MathSqrtInset::draw(Painter & pain, int x, int y) const
-{ 
-       xo(x);
-       yo(y);
-       xcell(0).draw(pain, x + 10, y); 
-       int const a = ascent_;
-       int const d = descent_;
+void MathSqrtInset::draw(MathPainterInfo & pi, int x, int y) const
+{
+       cell(0).draw(pi, x + 10, y);
+       int const a = ascent();
+       int const d = descent();
        int xp[4];
        int yp[4];
-       xp[0] = x + width_; yp[0] = y - a + 1;
-       xp[1] = x + 8;      yp[1] = y - a + 1;
-       xp[2] = x + 5;      yp[2] = y + d - 1;
-       xp[3] = x;          yp[3] = y + (d - a)/2;
-       pain.lines(xp, yp, 4, LColor::mathline);
+       xp[0] = x + width(); yp[0] = y - a + 1;
+       xp[1] = x + 8;       yp[1] = y - a + 1;
+       xp[2] = x + 5;       yp[2] = y + d - 1;
+       xp[3] = x;           yp[3] = y + (d - a)/2;
+       pi.pain.lines(xp, yp, 4, LColor::math);
+       drawMarkers(pi, x, y);
+}
+
+
+void MathSqrtInset::metricsT(TextMetricsInfo const & mi) const
+{
+       cell(0).metricsT(mi);
+       dim_.a = cell(0).ascent()  + 1;
+       dim_.d = cell(0).descent();
+       dim_.w = cell(0).width()   + 2;
 }
 
 
-void MathSqrtInset::write(MathWriteInfo & os) const
+void MathSqrtInset::drawT(TextPainter & pain, int x, int y) const
+{
+       cell(0).drawT(pain, x + 2, y);
+       pain.horizontalLine(x + 2, y - cell(0).ascent(), cell(0).width(), '_');
+       pain.verticalLine  (x + 1, y - cell(0).ascent() + 1, cell(0).height());
+       pain.draw(x, y + cell(0).descent(), '\\');
+}
+
+
+void MathSqrtInset::write(WriteStream & os) const
 {
        os << "\\sqrt{" << cell(0) << '}';
 }
 
 
-void MathSqrtInset::writeNormal(std::ostream & os) const
+void MathSqrtInset::normalize(NormalStream & os) const
+{
+       os << "[sqrt " << cell(0) << ']';
+}
+
+void MathSqrtInset::maplize(MapleStream & os) const
+{
+       os << "sqrt(" << cell(0) << ')';
+}
+
+void MathSqrtInset::mathematicize(MathematicaStream & os) const
+{
+       os << "Sqrt[" << cell(0) << ']';
+}
+
+
+void MathSqrtInset::octavize(OctaveStream & os) const
+{
+       os << "sqrt(" << cell(0) << ')';
+}
+
+
+void MathSqrtInset::mathmlize(MathMLStream & os) const
 {
-       os << "[sqrt ";
-       cell(0).writeNormal(os); 
-       os << "] ";
+       os << MTag("msqrt") << cell(0) << ETag("msqrt");
 }