X-Git-Url: https://git.lyx.org/gitweb/?a=blobdiff_plain;f=src%2Fmathed%2FInsetMathFontOld.cpp;h=cde388840cd9b755df53199b5575579e4dbfc708;hb=9296344b9a26191a2092d175a51e357ecc35145d;hp=013808d8a79b142c0389234bc5f51559c1e96a20;hpb=9c55af4a223ce4db29d643251109e245665344bd;p=lyx.git diff --git a/src/mathed/InsetMathFontOld.cpp b/src/mathed/InsetMathFontOld.cpp index 013808d8a7..cde388840c 100644 --- a/src/mathed/InsetMathFontOld.cpp +++ b/src/mathed/InsetMathFontOld.cpp @@ -19,6 +19,7 @@ #include "MetricsInfo.h" #include "support/gettext.h" +#include "support/lassert.h" #include "support/lstrings.h" #include @@ -34,6 +35,13 @@ InsetMathFontOld::InsetMathFontOld(Buffer * buf, latexkeys const * key) } +std::string InsetMathFontOld::font() const +{ + LASSERT(isAscii(key_->name), return "mathnormal"); + return to_ascii(key_->name); +} + + Inset * InsetMathFontOld::clone() const { return new InsetMathFontOld(*this); @@ -42,35 +50,35 @@ Inset * InsetMathFontOld::clone() const void InsetMathFontOld::metrics(MetricsInfo & mi, Dimension & dim) const { - current_mode_ = isTextFont(from_ascii(mi.base.fontname)) + current_mode_ = isTextFont(mi.base.fontname) ? TEXT_MODE : MATH_MODE; - docstring const font = current_mode_ == MATH_MODE - ? "math" + key_->name : "text" + key_->name; + std::string const fontname = current_mode_ == MATH_MODE + ? "math" + font() : "text" + font();// I doubt that this still works // When \cal is used in text mode, the font is not changed - bool really_change_font = font != "textcal"; + bool really_change_font = fontname != "textcal"; - FontSetChanger dummy(mi.base, font, really_change_font); + Changer dummy = really_change_font ? mi.base.changeFontSet(fontname) + : Changer(); cell(0).metrics(mi, dim); - metricsMarkers(dim); } void InsetMathFontOld::draw(PainterInfo & pi, int x, int y) const { - current_mode_ = isTextFont(from_ascii(pi.base.fontname)) + current_mode_ = isTextFont(pi.base.fontname) ? TEXT_MODE : MATH_MODE; - docstring const font = current_mode_ == MATH_MODE - ? "math" + key_->name : "text" + key_->name; + std::string const fontname = current_mode_ == MATH_MODE + ? "math" + font() : "text" + font();// I doubt that this still works // When \cal is used in text mode, the font is not changed - bool really_change_font = font != "textcal"; + bool really_change_font = fontname != "textcal"; - FontSetChanger dummy(pi.base, font, really_change_font); - cell(0).draw(pi, x + 1, y); - drawMarkers(pi, x, y); + Changer dummy = really_change_font ? pi.base.changeFontSet(fontname) + : Changer(); + cell(0).draw(pi, x, y); }