X-Git-Url: https://git.lyx.org/gitweb/?a=blobdiff_plain;f=src%2Fmathed%2FInsetMathSize.cpp;h=5055f2d73e6c2612d7e9b5402ce4a8deb7f2a775;hb=e5bb491e2e10a8097284d11eae5501a3673731cb;hp=46ea29b30fc5f6ae027cac3a28a80aa90aa5d77f;hpb=f643ae700700cbd9aa0b1aca8155c6d7f2aee34d;p=lyx.git diff --git a/src/mathed/InsetMathSize.cpp b/src/mathed/InsetMathSize.cpp index 46ea29b30f..5055f2d73e 100644 --- a/src/mathed/InsetMathSize.cpp +++ b/src/mathed/InsetMathSize.cpp @@ -16,6 +16,7 @@ #include "MathData.h" #include "MathParser.h" #include "MathStream.h" +#include "MetricsInfo.h" #include "output_xhtml.h" #include "support/convert.h" @@ -31,7 +32,8 @@ using namespace std; namespace lyx { InsetMathSize::InsetMathSize(Buffer * buf, latexkeys const * l) - : InsetMathNest(buf, 1), key_(l), style_(Styles(convert(l->extra))) + : InsetMathNest(buf, 1), key_(l), + style_(MathStyle(convert(l->extra))) {} @@ -43,21 +45,21 @@ Inset * InsetMathSize::clone() const void InsetMathSize::metrics(MetricsInfo & mi, Dimension & dim) const { - Changer dummy = mi.base.changeStyle(style_); + Changer dummy2 = mi.base.changeEnsureMath(); + Changer dummy = mi.base.font.changeStyle(style_); cell(0).metrics(mi, dim); - metricsMarkers(mi, dim); } void InsetMathSize::draw(PainterInfo & pi, int x, int y) const { - Changer dummy = pi.base.changeStyle(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 +void InsetMathSize::write(TeXMathStream & os) const { MathEnsurer ensurer(os); os << "{\\" << key_->name << ' ' << cell(0) << '}'; @@ -65,13 +67,13 @@ void InsetMathSize::write(WriteStream & os) const // 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 +// 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(MathMLStream & ms) const { string const & name = to_utf8(key_->name); bool dispstyle = (name == "displaystyle");