X-Git-Url: https://git.lyx.org/gitweb/?a=blobdiff_plain;f=src%2Fmathed%2FInsetMathRoot.cpp;h=38ffb18ff3cecb28134fd6537eab05bed40da1c4;hb=f67cf6f4bb3e3d22ac9aebfa22027c3537cbdf61;hp=0017e1c9542e38111970fac0ce880dd1d6b9e97a;hpb=9383f4c3c6f9cfab2d658701ba66e2b54cd68bea;p=lyx.git diff --git a/src/mathed/InsetMathRoot.cpp b/src/mathed/InsetMathRoot.cpp index 0017e1c954..38ffb18ff3 100644 --- a/src/mathed/InsetMathRoot.cpp +++ b/src/mathed/InsetMathRoot.cpp @@ -4,7 +4,7 @@ * Licence details can be found in the file COPYING. * * \author Alejandro Aguilar Sierra - * \author André Pönitz + * \author André Pönitz * * Full author contact details are available in file CREDITS. */ @@ -12,6 +12,8 @@ #include #include "InsetMathRoot.h" + +#include "LaTeXFeatures.h" #include "MathData.h" #include "MathStream.h" #include "Cursor.h" @@ -23,8 +25,8 @@ using namespace std; namespace lyx { -InsetMathRoot::InsetMathRoot() - : InsetMathNest(2) +InsetMathRoot::InsetMathRoot(Buffer * buf) + : InsetMathNest(buf, 2) {} @@ -43,8 +45,6 @@ void InsetMathRoot::metrics(MetricsInfo & mi, Dimension & dim) const dim.des = max(dim0.descent() - 5, dim1.descent()) + 2; dim.wid = dim0.width() + dim1.width() + 10; metricsMarkers(dim); - // Cache the inset dimension. - setDimCache(mi, dim); } @@ -62,18 +62,19 @@ void InsetMathRoot::draw(PainterInfo & pi, int x, int y) const int xp[4]; int yp[4]; pi.pain.line(x + dim.width(), y - a + 1, - x + w + 4, y - a + 1, Color_math); + x + w + 4, y - a + 1, pi.base.font.color()); xp[0] = x + w + 4; yp[0] = y - a + 1; xp[1] = x + w; yp[1] = y + d; xp[2] = x + w - 2; yp[2] = y + (d - a)/2 + 2; xp[3] = x + w - 5; yp[3] = y + (d - a)/2 + 4; - pi.pain.lines(xp, yp, 4, Color_math); + pi.pain.lines(xp, yp, 4, pi.base.font.color()); drawMarkers(pi, x, y); } void InsetMathRoot::write(WriteStream & os) const { + MathEnsurer ensurer(os); os << "\\sqrt[" << cell(0) << "]{" << cell(1) << '}'; } @@ -119,4 +120,23 @@ void InsetMathRoot::mathmlize(MathStream & os) const } +void InsetMathRoot::htmlize(HtmlStream & os) const +{ + os << MTag("span", "class='root'") + << MTag("sup") << cell(0) << ETag("sup") + << from_ascii("√") + << MTag("span", "class='rootof'") << cell(1) << ETag("span") + << ETag("span"); +} + + +void InsetMathRoot::validate(LaTeXFeatures & features) const +{ + if (features.runparams().math_flavor == OutputParams::MathAsHTML) + features.addCSSSnippet( + "span.rootof{border-top: thin solid black;}\n" + "span.root sup{font-size: 75%;}"); + InsetMathNest::validate(features); +} + } // namespace lyx