X-Git-Url: https://git.lyx.org/gitweb/?a=blobdiff_plain;f=src%2Fmathed%2FInsetMathOverset.cpp;h=cf7d6d3feb28669036a297976a08c16f981b8a5f;hb=573500dd04f154f27318ac5ec469a337f97fe9f0;hp=bd56bff79fa457820c43bbbec306b239e0c249f0;hpb=9abb7db46800e554f57e865a3e768602ffd9d6f1;p=lyx.git diff --git a/src/mathed/InsetMathOverset.cpp b/src/mathed/InsetMathOverset.cpp index bd56bff79f..cf7d6d3feb 100644 --- a/src/mathed/InsetMathOverset.cpp +++ b/src/mathed/InsetMathOverset.cpp @@ -3,7 +3,7 @@ * This file is part of LyX, the document processor. * Licence details can be found in the file COPYING. * - * \author André Pönitz + * \author André Pönitz * * Full author contact details are available in file CREDITS. */ @@ -38,8 +38,6 @@ void InsetMathOverset::metrics(MetricsInfo & mi, Dimension & dim) const dim.asc = dim1.asc + dim0.height() + 4; dim.des = dim1.des; metricsMarkers(dim); - // Cache the inset dimension. - setDimCache(mi, dim); } @@ -75,6 +73,7 @@ bool InsetMathOverset::idxLast(Cursor & cur) const void InsetMathOverset::write(WriteStream & os) const { + MathEnsurer ensurer(os); os << "\\overset{" << cell(0) << "}{" << cell(1) << '}'; } @@ -85,9 +84,32 @@ void InsetMathOverset::normalize(NormalStream & os) const } +void InsetMathOverset::mathmlize(MathStream & ms) const +{ + ms << "" << cell(1) << cell(0) << ""; +} + + +void InsetMathOverset::htmlize(HtmlStream & os) const +{ + os << MTag("span", "class='overset'") + << MTag("span", "class='top'") << cell(0) << ETag("span") + << MTag("span") << cell(1) << ETag("span") + << ETag("span"); +} + + void InsetMathOverset::validate(LaTeXFeatures & features) const { - features.require("amsmath"); + if (features.runparams().isLaTeX()) + features.require("amsmath"); + else if (features.runparams().math_flavor == OutputParams::MathAsHTML) + features.addPreambleSnippet(""); + InsetMathNest::validate(features); }