mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-11-11 13:46:43 +00:00
9b2be91bed
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@4601 a592a061-630c-0410-9148-cb99ea01b6c8
112 lines
2.3 KiB
C
112 lines
2.3 KiB
C
#ifdef __GNUG__
|
|
#pragma implementation
|
|
#endif
|
|
|
|
#include "math_fracinset.h"
|
|
#include "math_support.h"
|
|
#include "frontends/Painter.h"
|
|
#include "math_mathmlstream.h"
|
|
#include "textpainter.h"
|
|
|
|
|
|
using std::max;
|
|
|
|
|
|
MathFracInset::MathFracInset(bool atop)
|
|
: atop_(atop)
|
|
{}
|
|
|
|
|
|
MathInset * MathFracInset::clone() const
|
|
{
|
|
return new MathFracInset(*this);
|
|
}
|
|
|
|
|
|
MathFracInset * MathFracInset::asFracInset()
|
|
{
|
|
return atop_ ? 0 : this;
|
|
}
|
|
|
|
|
|
void MathFracInset::metrics(MathMetricsInfo & mi) const
|
|
{
|
|
MathFracChanger dummy(mi.base);
|
|
xcell(0).metrics(mi);
|
|
xcell(1).metrics(mi);
|
|
dim_.w = max(xcell(0).width(), xcell(1).width()) + 2;
|
|
dim_.a = xcell(0).height() + 2 + 5;
|
|
dim_.d = xcell(1).height() + 2 - 5;
|
|
}
|
|
|
|
|
|
void MathFracInset::draw(MathPainterInfo & pi, int x, int y) const
|
|
{
|
|
int m = x + width() / 2;
|
|
MathFracChanger dummy(pi.base);
|
|
xcell(0).draw(pi, m - xcell(0).width() / 2, y - xcell(0).descent() - 2 - 5);
|
|
xcell(1).draw(pi, m - xcell(1).width() / 2, y + xcell(1).ascent() + 2 - 5);
|
|
if (!atop_)
|
|
pi.pain.line(x + 1, y - 5, x + width() - 2, y - 5, LColor::math);
|
|
}
|
|
|
|
|
|
void MathFracInset::metricsT(TextMetricsInfo const & mi) const
|
|
{
|
|
xcell(0).metricsT(mi);
|
|
xcell(1).metricsT(mi);
|
|
dim_.w = max(xcell(0).width(), xcell(1).width());
|
|
dim_.a = xcell(0).height() + 1;
|
|
dim_.d = xcell(1).height();
|
|
}
|
|
|
|
|
|
void MathFracInset::drawT(TextPainter & pain, int x, int y) const
|
|
{
|
|
int m = x + width() / 2;
|
|
xcell(0).drawT(pain, m - xcell(0).width() / 2, y - xcell(0).descent() - 1);
|
|
xcell(1).drawT(pain, m - xcell(1).width() / 2, y + xcell(1).ascent());
|
|
if (!atop_)
|
|
pain.horizontalLine(x, y, width());
|
|
}
|
|
|
|
|
|
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::mathematicize(MathematicaStream & os) const
|
|
{
|
|
os << '(' << cell(0) << ")/(" << cell(1) << ')';
|
|
}
|
|
|
|
void MathFracInset::octavize(OctaveStream & os) const
|
|
{
|
|
os << '(' << cell(0) << ")/(" << cell(1) << ')';
|
|
}
|
|
|
|
|
|
void MathFracInset::mathmlize(MathMLStream & os) const
|
|
{
|
|
os << MTag("mfrac") << cell(0) << cell(1) << ETag("mfrac");
|
|
}
|