X-Git-Url: https://git.lyx.org/gitweb/?a=blobdiff_plain;f=src%2Fmathed%2FInsetMathDecoration.cpp;h=b9202f5d6394bbf5cc0e1d7623916d60f023c65b;hb=3d4076b598deb18660e50ec9c327efc3b15f15d0;hp=be28d0765e36075d0562ac56d4051ef8bf8cfe3d;hpb=a0043da05f5d32653917d8c551ee50138e639b00;p=lyx.git diff --git a/src/mathed/InsetMathDecoration.cpp b/src/mathed/InsetMathDecoration.cpp index be28d0765e..b9202f5d63 100644 --- a/src/mathed/InsetMathDecoration.cpp +++ b/src/mathed/InsetMathDecoration.cpp @@ -22,6 +22,7 @@ #include "LaTeXFeatures.h" #include "support/debug.h" +#include "support/docstring.h" #include "support/lassert.h" #include @@ -46,7 +47,7 @@ Inset * InsetMathDecoration::clone() const bool InsetMathDecoration::upper() const { - return key_->name.substr(0, 5) != "under"; + return key_->name.substr(0, 5) != "under" && key_->name != "utilde"; } @@ -92,7 +93,9 @@ bool InsetMathDecoration::wide() const key_->name == "widetilde" || key_->name == "underleftarrow" || key_->name == "underrightarrow" || - key_->name == "underleftrightarrow"; + key_->name == "underleftrightarrow" || + key_->name == "undertilde" || + key_->name == "utilde"; } @@ -104,8 +107,9 @@ InsetMath::mode_type InsetMathDecoration::currentMode() const void InsetMathDecoration::metrics(MetricsInfo & mi, Dimension & dim) const { - FontSetChanger dummy(mi.base, currentMode() == TEXT_MODE ? - "textnormal" : "mathnormal"); + bool really_change_font = currentMode() == TEXT_MODE + && isMathFont(from_ascii(mi.base.fontname)); + FontSetChanger dummy(mi.base, "textnormal", really_change_font); cell(0).metrics(mi, dim); @@ -126,8 +130,9 @@ void InsetMathDecoration::metrics(MetricsInfo & mi, Dimension & dim) const void InsetMathDecoration::draw(PainterInfo & pi, int x, int y) const { - FontSetChanger dummy(pi.base, currentMode() == TEXT_MODE ? - "textnormal" : "mathnormal"); + bool really_change_font = currentMode() == TEXT_MODE + && isMathFont(from_ascii(pi.base.fontname)); + FontSetChanger dummy(pi.base, "textnormal", really_change_font); cell(0).draw(pi, x + 1, y); Dimension const & dim0 = cell(0).dimension(*pi.base.bv); @@ -173,9 +178,9 @@ namespace { string tag; }; - typedef map Translator; + typedef map TranslationMap; - void buildTranslator(Translator & t) { + void buildTranslationMap(TranslationMap & t) { // the decorations we need to support are listed in lib/symbols t["acute"] = Attributes(true, "´"); t["bar"] = Attributes(true, "‾"); @@ -201,23 +206,25 @@ namespace { // this is the macron, again, but it works t["underline"] = Attributes(false, "¯"); t["underrightarrow"] = Attributes(false, "⟶"); + t["undertilde"] = Attributes(false, "∼"); + t["utilde"] = Attributes(false, "∼"); t["vec"] = Attributes(true, "→"); t["widehat"] = Attributes(true, "^"); t["widetilde"] = Attributes(true, "∼"); } - Translator const & translator() { - static Translator t; + TranslationMap const & translationMap() { + static TranslationMap t; if (t.empty()) - buildTranslator(t); + buildTranslationMap(t); return t; } } void InsetMathDecoration::mathmlize(MathStream & os) const { - Translator const & t = translator(); - Translator::const_iterator cur = t.find(to_utf8(key_->name)); + TranslationMap const & t = translationMap(); + TranslationMap::const_iterator cur = t.find(to_utf8(key_->name)); LASSERT(cur != t.end(), return); char const * const outag = cur->second.over ? "mover" : "munder"; os << MTag(outag) @@ -240,8 +247,8 @@ void InsetMathDecoration::htmlize(HtmlStream & os) const return; } - Translator const & t = translator(); - Translator::const_iterator cur = t.find(name); + TranslationMap const & t = translationMap(); + TranslationMap::const_iterator cur = t.find(name); LASSERT(cur != t.end(), return); bool symontop = cur->second.over; @@ -268,21 +275,16 @@ void InsetMathDecoration::validate(LaTeXFeatures & features) const if (features.runparams().math_flavor == OutputParams::MathAsHTML) { string const name = to_utf8(key_->name); if (name == "bar") { - features.addPreambleSnippet(""); + features.addCSSSnippet("span.overbar{border-top: thin black solid;}"); } else if (name == "underbar" || name == "underline") { - features.addPreambleSnippet(""); + features.addCSSSnippet("span.underbar{border-bottom: thin black solid;}"); } else { - features.addPreambleSnippet(""); + "span.symbol{height: 0.5ex;}"); } } else { if (!key_->requires.empty())