X-Git-Url: https://git.lyx.org/gitweb/?a=blobdiff_plain;f=src%2Fmathed%2FInsetMathSize.cpp;h=18d0aaf95a9c4ab5167b672b63e821d67e937df0;hb=faeb1997932dd60909ebe7c7883a5c8fbfe81e8c;hp=1ad777d9a622b2b4a5aa9a04c75095f8eb28f3c4;hpb=31713932b247802b5b59482f5157c8a4f7206825;p=lyx.git diff --git a/src/mathed/InsetMathSize.cpp b/src/mathed/InsetMathSize.cpp index 1ad777d9a6..18d0aaf95a 100644 --- a/src/mathed/InsetMathSize.cpp +++ b/src/mathed/InsetMathSize.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. */ @@ -12,19 +12,27 @@ #include "InsetMathSize.h" +#include "LaTeXFeatures.h" #include "MathData.h" #include "MathParser.h" #include "MathStream.h" +#include "output_xhtml.h" #include "support/convert.h" +#include "support/gettext.h" +#include "support/lstrings.h" +#include #include +using namespace lyx::support; +using namespace std; namespace lyx { -InsetMathSize::InsetMathSize(latexkeys const * l) - : InsetMathNest(1), key_(l), style_(Styles(convert(l->extra))) +InsetMathSize::InsetMathSize(Buffer * buf, latexkeys const * l) + : InsetMathNest(buf, 1), key_(l), + style_(MathStyle(convert(l->extra))) {} @@ -36,25 +44,55 @@ Inset * InsetMathSize::clone() const void InsetMathSize::metrics(MetricsInfo & mi, Dimension & dim) const { - StyleChanger dummy(mi.base, style_); + Changer dummy2 = mi.base.changeEnsureMath(); + Changer dummy = mi.base.font.changeStyle(style_); cell(0).metrics(mi, dim); - metricsMarkers(dim); } void InsetMathSize::draw(PainterInfo & pi, int x, int y) const { - StyleChanger dummy(pi.base, style_); - cell(0).draw(pi, x + 1, y); - drawMarkers(pi, x, y); + Changer dummy2 = pi.base.changeEnsureMath(); + Changer dummy = pi.base.font.changeStyle(style_); + cell(0).draw(pi, x, y); } void InsetMathSize::write(WriteStream & os) const { - bool brace = ensureMath(os); + MathEnsurer ensurer(os); os << "{\\" << key_->name << ' ' << cell(0) << '}'; - os.pendingBrace(brace); +} + + +// From the MathML documentation: +// MathML uses two attributes, displaystyle and scriptlevel, to control +// orthogonal presentation features that TeX encodes into one "style" +// attribute with values \displaystyle, \textstyle, \scriptstyle, and +// \scriptscriptstyle. The corresponding values of displaystyle and scriptlevel +// for those TeX styles would be "true" and "0", "false" and "0", "false" and "1", +// and "false" and "2", respectively. +void InsetMathSize::mathmlize(MathStream & ms) const +{ + string const & name = to_utf8(key_->name); + bool dispstyle = (name == "displaystyle"); + int scriptlevel = 0; + if (name == "scriptstyle") + scriptlevel = 1; + else if (name == "scriptscriptstyle") + scriptlevel = 2; + stringstream attrs; + attrs << "displaystyle='" << (dispstyle ? "true" : "false") + << "' scriptlevel='" << scriptlevel << "'"; + ms << MTag("mstyle", attrs.str()) << cell(0) << ETag("mstyle"); +} + + +void InsetMathSize::htmlize(HtmlStream & os) const +{ + string const & name = to_utf8(key_->name); + os << MTag("span", "class='" + name + "'") + << cell(0) << ETag("span"); } @@ -66,8 +104,18 @@ void InsetMathSize::normalize(NormalStream & os) const void InsetMathSize::infoize(odocstream & os) const { - os << "Size: " << key_->name; + os << bformat(_("Size: %1$s"), key_->name); } +void InsetMathSize::validate(LaTeXFeatures & features) const +{ + if (features.runparams().math_flavor == OutputParams::MathAsHTML) + features.addCSSSnippet( + "span.displaystyle, span.textstyle{font-size: normal;}\n" + "span.scriptstyle {font-size: small;}\n" + "span.scriptscriptstyle {font-size: x-small;}"); + InsetMathNest::validate(features); +} + } // namespace lyx