lyx_mirror/src/mathed/math_fboxinset.C
André Pönitz 9b2be91bed replace (ascent, descent, width) triples by a structure 'dimension'
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@4601 a592a061-630c-0410-9148-cb99ea01b6c8
2002-07-11 11:27:24 +00:00

52 lines
935 B
C

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