]> git.lyx.org Git - lyx.git/blobdiff - src/mathed/InsetMathSqrt.cpp
Support the mathbbm font.
[lyx.git] / src / mathed / InsetMathSqrt.cpp
index 1f58dce4dbf979f595412bcc9a080f81a3a74260..23d28e80293e7e799d3b2c122083f440dc9c63c0 100644 (file)
 
 #include "InsetMathSqrt.h"
 
+#include "InsetMathRoot.h"
 #include "MathData.h"
 #include "MathStream.h"
+#include "MathSupport.h"
 
 #include "LaTeXFeatures.h"
 #include "MetricsInfo.h"
@@ -37,31 +39,13 @@ Inset * InsetMathSqrt::clone() const
 
 void InsetMathSqrt::metrics(MetricsInfo & mi, Dimension & dim) const
 {
-       Changer dummy = mi.base.changeEnsureMath();
-       cell(0).metrics(mi, dim);
-       dim.asc += 4;
-       dim.des += 2;
-       dim.wid += 12;
-       metricsMarkers(mi, dim);
+       mathed_root_metrics(mi, cell(0), nullptr, dim);
 }
 
 
 void InsetMathSqrt::draw(PainterInfo & pi, int x, int y) const
 {
-       Changer dummy = pi.base.changeEnsureMath();
-       cell(0).draw(pi, x + 10, y);
-       Dimension const dim = dimension(*pi.base.bv);
-       int const a = dim.ascent();
-       int const d = dim.descent();
-       int xp[3];
-       int yp[3];
-       pi.pain.line(x + dim.width(), y - a + 1,
-               x + 8, y - a + 1, pi.base.font.color());
-       xp[0] = x + 8;            yp[0] = y - a + 1;
-       xp[1] = x + 5;            yp[1] = y + d - 1;
-       xp[2] = x;                yp[2] = y + (d - a)/2;
-       pi.pain.lines(xp, yp, 3, pi.base.font.color());
-       drawMarkers(pi, x, y);
+       mathed_draw_root(pi, x, y, cell(0), nullptr, dimension(*pi.base.bv));
 }
 
 
@@ -114,17 +98,17 @@ void InsetMathSqrt::octave(OctaveStream & os) const
 }
 
 
-void InsetMathSqrt::mathmlize(MathStream & os) const
+void InsetMathSqrt::mathmlize(MathStream & ms) const
 {
-       os << MTag("msqrt") << cell(0) << ETag("msqrt");
+       ms << MTag("msqrt") << cell(0) << ETag("msqrt");
 }
 
 
 void InsetMathSqrt::htmlize(HtmlStream & os) const
 {
        os << MTag("span", "class='sqrt'")
-          << from_ascii("&radic;") 
-          << MTag("span", "class='sqrtof'")    << cell(0) << ETag("span") 
+          << from_ascii("&radic;")
+          << MTag("span", "class='sqrtof'")    << cell(0) << ETag("span")
                 << ETag("span");
 }