X-Git-Url: https://git.lyx.org/gitweb/?a=blobdiff_plain;f=src%2FMetricsInfo.cpp;h=b2f9974504fbba14bafd4a28af83611e13f64ed7;hb=72a488d7e6b56432263c80dd92cd6acc565e03a7;hp=fdde05f3d797a46aabe5fc6de89488f99dca8d32;hpb=9a9a6a8c8f12cb8b0e713a9a1ed3c5763fa25c66;p=lyx.git diff --git a/src/MetricsInfo.cpp b/src/MetricsInfo.cpp index fdde05f3d7..b2f9974504 100644 --- a/src/MetricsInfo.cpp +++ b/src/MetricsInfo.cpp @@ -37,7 +37,7 @@ namespace lyx { ///////////////////////////////////////////////////////////////////////// MetricsBase::MetricsBase(BufferView * b, FontInfo f, int w) - : bv(b), font(move(f)), style(LM_ST_TEXT), fontname("mathnormal"), + : bv(b), font(move(f)), fontname("mathnormal"), textwidth(w), macro_nesting(0), solid_line_thickness_(1), solid_line_offset_(1), dotted_line_thickness_(1) { @@ -58,28 +58,42 @@ MetricsBase::MetricsBase(BufferView * b, FontInfo f, int w) } -Changer MetricsBase::changeFontSet(string const & name, bool cond) +Changer MetricsBase::changeFontSet(string const & name) { RefChanger rc = make_save(*this); - if (!cond) - rc->keep(); - else { - ColorCode oldcolor = font.color(); - string const oldname = fontname; - fontname = name; - if (isMathFont(name) || isMathFont(oldname)) - font = sane_font; - augmentFont(font, name); - font.setSize(rc->old.font.size()); - if (name != "lyxtex" - && ((isTextFont(oldname) && oldcolor != Color_foreground) - || (isMathFont(oldname) && oldcolor != Color_math))) - font.setColor(oldcolor); - } + ColorCode oldcolor = font.color(); + string const oldname = fontname; + fontname = name; + if (isMathFont(name) || isMathFont(oldname)) + font = sane_font; + augmentFont(font, name); + font.setSize(rc->old.font.size()); + font.setStyle(rc->old.font.style()); + if (name != "lyxtex" + && ((isTextFont(oldname) && oldcolor != Color_foreground) + || (isMathFont(oldname) && oldcolor != Color_math))) + font.setColor(oldcolor); return move(rc); } +Changer MetricsBase::changeEnsureMath(Inset::mode_type mode) +{ + switch (mode) { + case Inset::UNDECIDED_MODE: + return Changer(); + case Inset::TEXT_MODE: + return isMathFont(fontname) ? changeFontSet("textnormal") : Changer(); + case Inset::MATH_MODE: + // FIXME: + // \textit{\ensuremath{\text{a}}} + // should appear in italics + return isTextFont(fontname) ? changeFontSet("mathnormal"): Changer(); + } + return Changer(); +} + + ///////////////////////////////////////////////////////////////////////// // // MetricsInfo @@ -151,58 +165,41 @@ Color PainterInfo::textColor(Color const & color) const } -Changer MetricsBase::changeScript(bool cond) +Changer MetricsBase::changeScript() { - switch (style) { + switch (font.style()) { case LM_ST_DISPLAY: case LM_ST_TEXT: - return changeStyle(LM_ST_SCRIPT, cond); + return font.changeStyle(LM_ST_SCRIPT); case LM_ST_SCRIPT: case LM_ST_SCRIPTSCRIPT: - return changeStyle(LM_ST_SCRIPTSCRIPT, cond); + return font.changeStyle(LM_ST_SCRIPTSCRIPT); } //remove Warning - LASSERT(false, return Changer()); + return Changer(); } -Changer MetricsBase::changeFrac(bool cond) +Changer MetricsBase::changeFrac() { - switch (style) { + switch (font.style()) { case LM_ST_DISPLAY: - return changeStyle(LM_ST_TEXT, cond); + return font.changeStyle(LM_ST_TEXT); case LM_ST_TEXT: - return changeStyle(LM_ST_SCRIPT, cond); + return font.changeStyle(LM_ST_SCRIPT); case LM_ST_SCRIPT: case LM_ST_SCRIPTSCRIPT: - return changeStyle(LM_ST_SCRIPTSCRIPT, cond); + return font.changeStyle(LM_ST_SCRIPTSCRIPT); } //remove Warning return Changer(); } -Changer MetricsBase::changeStyle(Styles new_style, bool cond) +Changer MetricsBase::changeArray() { - static const int diff[4][4] = - { { 0, 0, -3, -5 }, - { 0, 0, -3, -5 }, - { 3, 3, 0, -2 }, - { 5, 5, 2, 0 } }; - int t = diff[style][new_style]; - RefChanger rc = make_save(*this); - if (!cond) - rc->keep(); - else { - if (t > 0) - while (t--) - font.incSize(); - else - while (t++) - font.decSize(); - style = new_style; - } - return move(rc); + return (font.style() == LM_ST_DISPLAY) ? font.changeStyle(LM_ST_TEXT) + : Changer(); }