lyx_mirror/src/mathed/InsetMathBoldSymbol.cpp
André Pönitz f1cba8ff64 more latin1..utf8 schanges. all of src/* should be utf8 now
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@27425 a592a061-630c-0410-9148-cb99ea01b6c8
2008-11-14 15:58:50 +00:00

126 lines
2.2 KiB
C++

/**
* \file InsetMathBoldSymbol.cpp
* This file is part of LyX, the document processor.
* Licence details can be found in the file COPYING.
*
* \author André Pönitz
*
* Full author contact details are available in file CREDITS.
*/
#include <config.h>
#include "InsetMathBoldSymbol.h"
#include "MathStream.h"
#include "MathData.h"
#include "LaTeXFeatures.h"
#include <ostream>
namespace lyx {
InsetMathBoldSymbol::InsetMathBoldSymbol(Kind kind)
: InsetMathNest(1), kind_(kind)
{}
Inset * InsetMathBoldSymbol::clone() const
{
return new InsetMathBoldSymbol(*this);
}
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");
cell(0).metrics(mi, dim);
metricsMarkers(dim);
++dim.wid; // for 'double stroke'
}
void InsetMathBoldSymbol::draw(PainterInfo & pi, int x, int y) const
{
//FontSetChanger dummy(pi.base, "mathbf");
cell(0).draw(pi, x + 1, y);
cell(0).draw(pi, x + 2, y);
drawMarkers(pi, x, y);
}
void InsetMathBoldSymbol::metricsT(TextMetricsInfo const & mi, Dimension & /*dim*/) const
{
// FIXME: BROKEN!
Dimension dim;
cell(0).metricsT(mi, dim);
}
void InsetMathBoldSymbol::drawT(TextPainter & pain, int x, int y) const
{
cell(0).drawT(pain, x, y);
}
void InsetMathBoldSymbol::validate(LaTeXFeatures & features) const
{
InsetMathNest::validate(features);
if (kind_ == AMS_BOLD)
features.require("amsbsy");
else
features.require("bm");
}
void InsetMathBoldSymbol::write(WriteStream & os) const
{
MathEnsurer ensurer(os);
switch (kind_) {
case AMS_BOLD:
os << "\\boldsymbol{" << cell(0) << "}";
break;
case BM_BOLD:
os << "\\bm{" << cell(0) << "}";
break;
case BM_HEAVY:
os << "\\hm{" << cell(0) << "}";
break;
}
}
void InsetMathBoldSymbol::infoize(odocstream & os) const
{
switch (kind_) {
case AMS_BOLD:
os << "Boldsymbol ";
break;
case BM_BOLD:
os << "Boldsymbol (bm)";
break;
case BM_HEAVY:
os << "Heavysymbol (bm)";
break;
}
}
} // namespace lyx