X-Git-Url: https://git.lyx.org/gitweb/?a=blobdiff_plain;f=src%2Fmathed%2FInsetMathDecoration.cpp;h=37ae239d108479d057a042b9a4bfafb2cbb2fed4;hb=8cd80803220e02f7a9148f11b99f4f3aeb0d3f38;hp=a717484c055d2a248e339ebe4e8361d1fa585288;hpb=17af3ea8f418d290c16165234250dec15507385b;p=lyx.git diff --git a/src/mathed/InsetMathDecoration.cpp b/src/mathed/InsetMathDecoration.cpp index a717484c05..37ae239d10 100644 --- a/src/mathed/InsetMathDecoration.cpp +++ b/src/mathed/InsetMathDecoration.cpp @@ -22,17 +22,22 @@ #include "LaTeXFeatures.h" #include "support/debug.h" +#include "support/docstring.h" +#include "support/gettext.h" #include "support/lassert.h" +#include "support/lstrings.h" #include +using namespace lyx::support; + using namespace std; namespace lyx { InsetMathDecoration::InsetMathDecoration(Buffer * buf, latexkeys const * key) - : InsetMathNest(buf, 1), key_(key) + : InsetMathNest(buf, 1), key_(key), dh_(0), dy_(0), dw_(0) { // lyxerr << " creating deco " << key->name << endl; } @@ -46,7 +51,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"; } @@ -54,13 +59,7 @@ bool InsetMathDecoration::isScriptable() const { return key_->name == "overbrace" || - key_->name == "underbrace" || - key_->name == "overleftarrow" || - key_->name == "overrightarrow" || - key_->name == "overleftrightarrow" || - key_->name == "underleftarrow" || - key_->name == "underrightarrow" || - key_->name == "underleftrightarrow"; + key_->name == "underbrace"; } @@ -92,7 +91,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,10 +105,9 @@ InsetMath::mode_type InsetMathDecoration::currentMode() const void InsetMathDecoration::metrics(MetricsInfo & mi, Dimension & dim) const { - bool const upshape = currentMode() == TEXT_MODE - && mi.base.font.color() == Color_math; - ShapeChanger dummy(mi.base.font, upshape ? - UP_SHAPE : mi.base.font.shape()); + 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); @@ -128,10 +128,9 @@ void InsetMathDecoration::metrics(MetricsInfo & mi, Dimension & dim) const void InsetMathDecoration::draw(PainterInfo & pi, int x, int y) const { - bool const upshape = currentMode() == TEXT_MODE - && pi.base.font.color() == Color_math; - ShapeChanger dummy(pi.base.font, upshape ? - UP_SHAPE : pi.base.font.shape()); + 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); @@ -164,7 +163,7 @@ void InsetMathDecoration::normalize(NormalStream & os) const void InsetMathDecoration::infoize(odocstream & os) const { - os << "Deco: " << key_->name; + os << bformat(_("Decoration: %1$s"), key_->name); } @@ -205,6 +204,8 @@ 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, "∼"); @@ -238,7 +239,7 @@ void InsetMathDecoration::htmlize(HtmlStream & os) const os << MTag("span", "class='overbar'") << cell(0) << ETag("span"); return; } - + if (name == "underbar" || name == "underline") { os << MTag("span", "class='underbar'") << cell(0) << ETag("span"); return; @@ -247,12 +248,12 @@ void InsetMathDecoration::htmlize(HtmlStream & os) const TranslationMap const & t = translationMap(); TranslationMap::const_iterator cur = t.find(name); LASSERT(cur != t.end(), return); - + bool symontop = cur->second.over; string const symclass = symontop ? "symontop" : "symonbot"; os << MTag("span", "class='symbolpair " + symclass + "'") << '\n'; - + if (symontop) os << MTag("span", "class='symbol'") << from_ascii(cur->second.tag); else @@ -272,25 +273,20 @@ 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.symbolpair span{display: block;}\n" + "span.symbol{height: 0.5ex;}"); } } else { if (!key_->requires.empty()) - features.require(to_utf8(key_->requires)); + features.require(key_->requires); } InsetMathNest::validate(features); }