X-Git-Url: https://git.lyx.org/gitweb/?a=blobdiff_plain;f=src%2Fmathed%2FInsetMathBoldSymbol.cpp;h=d8205198843e821056080a0670a12f0097bf8038;hb=5fdc577badb1cb133d6a0dc7d831bb1f82576adb;hp=d3633efc8c3dd15fa62b8ba47273ec4a3f249a3c;hpb=31713932b247802b5b59482f5157c8a4f7206825;p=lyx.git diff --git a/src/mathed/InsetMathBoldSymbol.cpp b/src/mathed/InsetMathBoldSymbol.cpp index d3633efc8c..d820519884 100644 --- a/src/mathed/InsetMathBoldSymbol.cpp +++ b/src/mathed/InsetMathBoldSymbol.cpp @@ -3,7 +3,7 @@ * This file is part of LyX, the document processor. * Licence details can be found in the file COPYING. * - * \author André Pönitz + * \author André Pönitz * * Full author contact details are available in file CREDITS. */ @@ -14,6 +14,7 @@ #include "MathStream.h" #include "MathData.h" +#include "MetricsInfo.h" #include "LaTeXFeatures.h" #include @@ -21,8 +22,8 @@ namespace lyx { -InsetMathBoldSymbol::InsetMathBoldSymbol(Kind kind) - : InsetMathNest(1), kind_(kind) +InsetMathBoldSymbol::InsetMathBoldSymbol(Buffer * buf, Kind kind) + : InsetMathNest(buf, 1), kind_(kind) {} @@ -32,18 +33,35 @@ Inset * InsetMathBoldSymbol::clone() const } +docstring InsetMathBoldSymbol::name() const +{ + switch (kind_) { + case AMS_BOLD: + return from_ascii("boldsymbol"); + case BM_BOLD: + return from_ascii("bm"); + case BM_HEAVY: + return from_ascii("hm"); + } + // avoid compiler warning + return docstring(); +} + + void InsetMathBoldSymbol::metrics(MetricsInfo & mi, Dimension & dim) const { - //FontSetChanger dummy(mi.base, "mathbf"); + Changer dummy = mi.base.changeEnsureMath(); + //Changer dummy = mi.base.changeFontSet("mathbf"); cell(0).metrics(mi, dim); - metricsMarkers(dim); + metricsMarkers(mi, dim); ++dim.wid; // for 'double stroke' } void InsetMathBoldSymbol::draw(PainterInfo & pi, int x, int y) const { - //FontSetChanger dummy(pi.base, "mathbf"); + Changer dummy = pi.base.changeEnsureMath(); + //Changer dummy = pi.base.changeFontSet("mathbf"); cell(0).draw(pi, x + 1, y); cell(0).draw(pi, x + 2, y); drawMarkers(pi, x, y); @@ -76,7 +94,7 @@ void InsetMathBoldSymbol::validate(LaTeXFeatures & features) const void InsetMathBoldSymbol::write(WriteStream & os) const { - bool brace = ensureMath(os); + MathEnsurer ensurer(os); switch (kind_) { case AMS_BOLD: os << "\\boldsymbol{" << cell(0) << "}"; @@ -88,7 +106,18 @@ void InsetMathBoldSymbol::write(WriteStream & os) const os << "\\hm{" << cell(0) << "}"; break; } - os.pendingBrace(brace); +} + + +void InsetMathBoldSymbol::mathmlize(MathStream & os) const +{ + os << "" << cell(0) << ""; +} + + +void InsetMathBoldSymbol::htmlize(HtmlStream & os) const +{ + os << MTag("b") << cell(0) << ETag("b"); }