lyx_mirror/src/mathed/math_fracinset.C

73 lines
1.5 KiB
C++
Raw Normal View History

#ifdef __GNUG__
#pragma implementation
#endif
#include "math_fracinset.h"
#include "math_support.h"
#include "Painter.h"
#include "math_mathmlstream.h"
MathFracInset::MathFracInset(bool atop)
: atop_(atop)
{}
MathInset * MathFracInset::clone() const
{
return new MathFracInset(*this);
}
void MathFracInset::metrics(MathMetricsInfo const & mi) const
{
MathMetricsInfo m = mi;
smallerStyleFrac(m);
xcell(0).metrics(m);
xcell(1).metrics(m);
width_ = std::max(xcell(0).width(), xcell(1).width()) + 4;
ascent_ = xcell(0).height() + 4 + 5;
descent_ = xcell(1).height() + 4 - 5;
}
void MathFracInset::draw(Painter & pain, int x, int y) const
{
int m = x + width() / 2;
xcell(0).draw(pain, m - xcell(0).width() / 2, y - xcell(0).descent() - 3 - 5);
xcell(1).draw(pain, m - xcell(1).width() / 2, y + xcell(1).ascent() + 3 - 5);
if (!atop_)
pain.line(x + 2, y - 5, x + width() - 4, y - 5, LColor::mathline);
}
void MathFracInset::write(WriteStream & os) const
{
if (atop_)
os << '{' << cell(0) << "\\atop " << cell(1) << '}';
else
os << "\\frac{" << cell(0) << "}{" << cell(1) << '}';
}
void MathFracInset::normalize(NormalStream & os) const
{
if (atop_)
os << "[atop ";
else
os << "[frac ";
os << cell(0) << ' ' << cell(1) << ']';
}
void MathFracInset::maplize(MapleStream & os) const
{
os << '(' << cell(0) << ")/(" << cell(1) << ')';
}
void MathFracInset::mathmlize(MathMLStream & os) const
{
os << MTag("mfrac") << cell(0) << cell(1) << ETag("mfrac");
}