2001-02-26 12:53:35 +00:00
|
|
|
#ifdef __GNUG__
|
|
|
|
#pragma implementation
|
|
|
|
#endif
|
|
|
|
|
2001-02-13 13:28:32 +00:00
|
|
|
#include "math_fracinset.h"
|
2001-11-08 12:15:12 +00:00
|
|
|
#include "math_support.h"
|
2001-07-13 09:54:32 +00:00
|
|
|
#include "Painter.h"
|
2001-11-08 12:06:56 +00:00
|
|
|
#include "math_mathmlstream.h"
|
2001-02-14 15:00:50 +00:00
|
|
|
|
2001-02-13 13:28:32 +00:00
|
|
|
|
2001-08-17 17:50:00 +00:00
|
|
|
MathFracInset::MathFracInset(bool atop)
|
|
|
|
: atop_(atop)
|
2001-07-09 10:19:50 +00:00
|
|
|
{}
|
2001-02-13 13:28:32 +00:00
|
|
|
|
|
|
|
|
2001-06-28 10:25:20 +00:00
|
|
|
MathInset * MathFracInset::clone() const
|
2001-02-13 13:28:32 +00:00
|
|
|
{
|
2001-06-25 00:06:33 +00:00
|
|
|
return new MathFracInset(*this);
|
2001-02-13 13:28:32 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2001-11-13 18:33:48 +00:00
|
|
|
MathFracInset * MathFracInset::asFracInset()
|
|
|
|
{
|
|
|
|
return atop_ ? 0 : this;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2001-10-22 15:37:49 +00:00
|
|
|
void MathFracInset::metrics(MathMetricsInfo const & mi) const
|
2001-02-13 13:28:32 +00:00
|
|
|
{
|
2001-10-22 15:37:49 +00:00
|
|
|
MathMetricsInfo m = mi;
|
|
|
|
smallerStyleFrac(m);
|
|
|
|
xcell(0).metrics(m);
|
|
|
|
xcell(1).metrics(m);
|
2001-06-27 15:33:55 +00:00
|
|
|
width_ = std::max(xcell(0).width(), xcell(1).width()) + 4;
|
2002-01-03 13:02:43 +00:00
|
|
|
ascent_ = xcell(0).height() + 2 + 5;
|
|
|
|
descent_ = xcell(1).height() + 2 - 5;
|
2001-02-13 13:28:32 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2001-08-06 17:20:26 +00:00
|
|
|
void MathFracInset::draw(Painter & pain, int x, int y) const
|
2001-02-13 13:28:32 +00:00
|
|
|
{
|
2001-06-25 00:06:33 +00:00
|
|
|
int m = x + width() / 2;
|
2002-01-03 13:02:43 +00:00
|
|
|
xcell(0).draw(pain, m - xcell(0).width() / 2, y - xcell(0).descent() - 2 - 5);
|
|
|
|
xcell(1).draw(pain, m - xcell(1).width() / 2, y + xcell(1).ascent() + 2 - 5);
|
2001-08-17 17:50:00 +00:00
|
|
|
if (!atop_)
|
2001-12-03 16:24:50 +00:00
|
|
|
pain.line(x + 2, y - 5, x + width() - 4, y - 5, LColor::math);
|
2001-02-13 13:28:32 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2001-11-09 08:35:57 +00:00
|
|
|
void MathFracInset::write(WriteStream & os) const
|
2001-02-13 13:28:32 +00:00
|
|
|
{
|
2001-10-19 11:25:48 +00:00
|
|
|
if (atop_)
|
|
|
|
os << '{' << cell(0) << "\\atop " << cell(1) << '}';
|
|
|
|
else
|
|
|
|
os << "\\frac{" << cell(0) << "}{" << cell(1) << '}';
|
2001-02-13 13:28:32 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2001-11-09 08:35:57 +00:00
|
|
|
void MathFracInset::normalize(NormalStream & os) const
|
2001-02-13 13:28:32 +00:00
|
|
|
{
|
2001-08-17 17:50:00 +00:00
|
|
|
if (atop_)
|
|
|
|
os << "[atop ";
|
|
|
|
else
|
|
|
|
os << "[frac ";
|
2001-11-09 08:35:57 +00:00
|
|
|
os << cell(0) << ' ' << cell(1) << ']';
|
2001-02-13 13:28:32 +00:00
|
|
|
}
|
2001-11-07 08:51:35 +00:00
|
|
|
|
|
|
|
|
2001-11-07 17:30:26 +00:00
|
|
|
void MathFracInset::maplize(MapleStream & os) const
|
2001-11-07 08:51:35 +00:00
|
|
|
{
|
2001-11-13 16:27:06 +00:00
|
|
|
os << '(' << cell(0) << ")/(" << cell(1) << ')';
|
2001-11-07 17:30:26 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
void MathFracInset::mathmlize(MathMLStream & os) const
|
|
|
|
{
|
2001-11-08 12:06:56 +00:00
|
|
|
os << MTag("mfrac") << cell(0) << cell(1) << ETag("mfrac");
|
2001-11-07 08:51:35 +00:00
|
|
|
}
|