lyx_mirror/src/mathed/math_braceinset.C

64 lines
1.1 KiB
C++
Raw Normal View History

#include <config.h>
#ifdef __GNUG__
#pragma implementation
#endif
#include "math_braceinset.h"
#include "math_parser.h"
#include "math_support.h"
#include "math_mathmlstream.h"
using std::max;
MathBraceInset::MathBraceInset()
: MathNestInset(1)
{}
MathInset * MathBraceInset::clone() const
{
return new MathBraceInset(*this);
}
void MathBraceInset::metrics(MathMetricsInfo & mi) const
{
xcell(0).metrics(mi);
int a, d;
mathed_char_dim(mi.base.font, '{', a, d, wid_);
ascent_ = max(xcell(0).ascent(), a);
descent_ = max(xcell(0).descent(), a);
width_ = xcell(0).width() + 2 * wid_;
}
void MathBraceInset::draw(MathPainterInfo & pi, int x, int y) const
{
LyXFont font = pi.base.font;
font.setColor(LColor::latex);
drawChar(pi, font, x, y, '{');
xcell(0).draw(pi, x + wid_, y);
drawChar(pi, font, x + width_ - wid_, y, '}');
}
void MathBraceInset::write(WriteStream & os) const
{
os << '{' << cell(0) << '}';
}
void MathBraceInset::normalize(NormalStream & os) const
{
os << "[block " << cell(0) << ']';
}
void MathBraceInset::infoize(std::ostream & os) const
{
os << "Nested Block: ";
}