lyx_mirror/src/mathed/math_fboxinset.C

68 lines
1.3 KiB
C++
Raw Normal View History

#include <config.h>
#include "math_fboxinset.h"
#include "math_support.h"
#include "math_mathmlstream.h"
#include "math_streamstr.h"
#include "math_parser.h"
#include "frontends/Painter.h"
MathFboxInset::MathFboxInset(latexkeys const * key)
: MathNestInset(1), key_(key)
{}
MathInset * MathFboxInset::clone() const
{
return new MathFboxInset(*this);
}
MathInset::mode_type MathFboxInset::currentMode() const
{
if (key_->name == "fbox")
return TEXT_MODE;
return MATH_MODE;
}
void MathFboxInset::metrics(MathMetricsInfo & mi) const
{
if (key_->name == "fbox") {
MathFontSetChanger dummy(mi.base, "textnormal");
dim_ = cell(0).metrics(mi);
metricsMarkers2(5); // 5 pixels margin
} else {
dim_ = cell(0).metrics(mi);
metricsMarkers2(5); // 5 pixels margin
}
}
void MathFboxInset::draw(MathPainterInfo & pi, int x, int y) const
{
pi.pain.rectangle(x + 1, y - ascent() + 1, width() - 2, height() - 2,
LColor::black);
if (key_->name == "fbox") {
MathFontSetChanger dummy(pi.base, "textnormal");
cell(0).draw(pi, x + 5, y);
} else {
cell(0).draw(pi, x + 5, y);
}
}
void MathFboxInset::write(WriteStream & os) const
{
os << '\\' << key_->name << '{' << cell(0) << '}';
}
void MathFboxInset::normalize(NormalStream & os) const
{
os << '[' << key_->name << ' ' << cell(0) << ']';
}