]> git.lyx.org Git - lyx.git/blobdiff - src/mathed/InsetMathSqrt.cpp
Simplify Changers interface
[lyx.git] / src / mathed / InsetMathSqrt.cpp
index f738e2c17bc516db242b681850146839f7050244..3e49abccb2c6bb07087e87768b6f6d9a6ba85292 100644 (file)
 #include <config.h>
 
 #include "InsetMathSqrt.h"
+
 #include "MathData.h"
 #include "MathStream.h"
+
+#include "LaTeXFeatures.h"
+#include "MetricsInfo.h"
 #include "TextPainter.h"
+
 #include "frontends/Painter.h"
 
 
@@ -36,7 +41,7 @@ void InsetMathSqrt::metrics(MetricsInfo & mi, Dimension & dim) const
        dim.asc += 4;
        dim.des += 2;
        dim.wid += 12;
-       metricsMarkers(dim);
+       metricsMarkers(mi, dim);
 }
 
 
@@ -49,11 +54,11 @@ void InsetMathSqrt::draw(PainterInfo & pi, int x, int y) const
        int xp[3];
        int yp[3];
        pi.pain.line(x + dim.width(), y - a + 1,
-               x + 8, y - a + 1, Color_math);
+               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, Color_math);
+       pi.pain.lines(xp, yp, 3, pi.base.font.color());
        drawMarkers(pi, x, y);
 }
 
@@ -113,4 +118,20 @@ void InsetMathSqrt::mathmlize(MathStream & os) const
 }
 
 
+void InsetMathSqrt::htmlize(HtmlStream & os) const
+{
+       os << MTag("span", "class='sqrt'")
+          << from_ascii("&radic;") 
+          << MTag("span", "class='sqrtof'")    << cell(0) << ETag("span") 
+                << ETag("span");
+}
+
+
+void InsetMathSqrt::validate(LaTeXFeatures & features) const
+{
+       if (features.runparams().math_flavor == OutputParams::MathAsHTML)
+               features.addCSSSnippet("span.sqrtof{border-top: thin solid black;}");
+       InsetMathNest::validate(features);
+}
+
 } // namespace lyx