mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-11-11 13:46:43 +00:00
00413a7841
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@4843 a592a061-630c-0410-9148-cb99ea01b6c8
96 lines
1.6 KiB
C
96 lines
1.6 KiB
C
#include <config.h>
|
|
|
|
#ifdef __GNUG__
|
|
#pragma implementation
|
|
#endif
|
|
|
|
#include "math_braceinset.h"
|
|
#include "math_parser.h"
|
|
#include "math_support.h"
|
|
#include "math_mathmlstream.h"
|
|
#include "support/LOstream.h"
|
|
|
|
using std::max;
|
|
|
|
|
|
MathBraceInset::MathBraceInset()
|
|
: MathNestInset(1)
|
|
{}
|
|
|
|
|
|
MathBraceInset::MathBraceInset(MathArray const & ar)
|
|
: MathNestInset(1)
|
|
{
|
|
cell(0) = ar;
|
|
}
|
|
|
|
|
|
MathInset * MathBraceInset::clone() const
|
|
{
|
|
return new MathBraceInset(*this);
|
|
}
|
|
|
|
|
|
void MathBraceInset::metrics(MathMetricsInfo & mi) const
|
|
{
|
|
cell(0).metrics(mi);
|
|
Dimension t;
|
|
mathed_char_dim(mi.base.font, '{', t);
|
|
wid_ = t.w;
|
|
dim_.a = max(cell(0).ascent(), t.a);
|
|
dim_.d = max(cell(0).descent(), t.a);
|
|
dim_.w = cell(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, '{');
|
|
cell(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::maplize(MapleStream & os) const
|
|
{
|
|
os << cell(0);
|
|
}
|
|
|
|
|
|
void MathBraceInset::octavize(OctaveStream & os) const
|
|
{
|
|
os << cell(0);
|
|
}
|
|
|
|
|
|
void MathBraceInset::mathmlize(MathMLStream & os) const
|
|
{
|
|
os << MTag("mrow") << cell(0) << ETag("mrow");
|
|
}
|
|
|
|
|
|
void MathBraceInset::mathematicize(MathematicaStream & os) const
|
|
{
|
|
os << cell(0);
|
|
}
|
|
|
|
|
|
void MathBraceInset::infoize(std::ostream & os) const
|
|
{
|
|
os << "Nested Block: ";
|
|
}
|