2002-02-01 10:33:06 +00:00
|
|
|
#include "math_undersetinset.h"
|
|
|
|
#include "math_mathmlstream.h"
|
|
|
|
#include "math_support.h"
|
|
|
|
|
|
|
|
|
2002-02-16 15:59:55 +00:00
|
|
|
using std::max;
|
2003-07-25 17:11:25 +00:00
|
|
|
using std::auto_ptr;
|
2002-02-16 15:59:55 +00:00
|
|
|
|
|
|
|
|
2002-02-01 10:33:06 +00:00
|
|
|
MathUndersetInset::MathUndersetInset()
|
|
|
|
{}
|
|
|
|
|
|
|
|
|
2003-07-25 17:11:25 +00:00
|
|
|
auto_ptr<InsetBase> MathUndersetInset::clone() const
|
2002-03-21 17:42:56 +00:00
|
|
|
{
|
2003-07-25 17:11:25 +00:00
|
|
|
return auto_ptr<InsetBase>(new MathUndersetInset(*this));
|
2002-02-01 10:33:06 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2003-06-02 10:03:27 +00:00
|
|
|
void MathUndersetInset::metrics(MetricsInfo & mi, Dimension & dim) const
|
2002-02-01 10:33:06 +00:00
|
|
|
{
|
2002-08-02 14:29:42 +00:00
|
|
|
cell(1).metrics(mi);
|
2003-03-21 14:20:48 +00:00
|
|
|
FracChanger dummy(mi.base);
|
2002-08-02 14:29:42 +00:00
|
|
|
cell(0).metrics(mi);
|
2003-05-27 13:55:03 +00:00
|
|
|
dim_.wid = max(cell(0).width(), cell(1).width()) + 4;
|
|
|
|
dim_.asc = cell(1).ascent();
|
|
|
|
dim_.des = cell(1).descent() + cell(0).height() + 4;
|
2003-06-02 10:03:27 +00:00
|
|
|
dim = dim_;
|
2002-02-01 10:33:06 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2003-03-21 14:20:48 +00:00
|
|
|
void MathUndersetInset::draw(PainterInfo & pi, int x, int y) const
|
2002-02-01 10:33:06 +00:00
|
|
|
{
|
2003-05-28 13:22:36 +00:00
|
|
|
int m = x + pi.width / 2;
|
2002-08-02 14:29:42 +00:00
|
|
|
int yo = y + cell(1).descent() + cell(0).ascent() + 1;
|
|
|
|
cell(1).draw(pi, m - cell(1).width() / 2, y);
|
2003-03-21 14:20:48 +00:00
|
|
|
FracChanger dummy(pi.base);
|
2002-08-02 14:29:42 +00:00
|
|
|
cell(0).draw(pi, m - cell(0).width() / 2, yo);
|
2002-02-01 10:33:06 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
void MathUndersetInset::write(WriteStream & os) const
|
|
|
|
{
|
|
|
|
os << "\\underset{" << cell(0) << "}{" << cell(1) << '}';
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
void MathUndersetInset::normalize(NormalStream & os) const
|
|
|
|
{
|
|
|
|
os << "[underset " << cell(0) << ' ' << cell(1) << ']';
|
|
|
|
}
|