mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-11-23 10:18:50 +00:00
1829cdef6a
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@6555 a592a061-630c-0410-9148-cb99ea01b6c8
51 lines
1.0 KiB
C
51 lines
1.0 KiB
C
|
|
#include "math_undersetinset.h"
|
|
#include "math_mathmlstream.h"
|
|
#include "math_support.h"
|
|
|
|
|
|
using std::max;
|
|
|
|
|
|
MathUndersetInset::MathUndersetInset()
|
|
{}
|
|
|
|
|
|
MathInset * MathUndersetInset::clone() const
|
|
{
|
|
return new MathUndersetInset(*this);
|
|
}
|
|
|
|
|
|
void MathUndersetInset::metrics(MetricsInfo & mi) const
|
|
{
|
|
cell(1).metrics(mi);
|
|
FracChanger dummy(mi.base);
|
|
cell(0).metrics(mi);
|
|
dim_.w = max(cell(0).width(), cell(1).width()) + 4;
|
|
dim_.a = cell(1).ascent();
|
|
dim_.d = cell(1).descent() + cell(0).height() + 4;
|
|
}
|
|
|
|
|
|
void MathUndersetInset::draw(PainterInfo & pi, int x, int y) const
|
|
{
|
|
int m = x + width() / 2;
|
|
int yo = y + cell(1).descent() + cell(0).ascent() + 1;
|
|
cell(1).draw(pi, m - cell(1).width() / 2, y);
|
|
FracChanger dummy(pi.base);
|
|
cell(0).draw(pi, m - cell(0).width() / 2, yo);
|
|
}
|
|
|
|
|
|
void MathUndersetInset::write(WriteStream & os) const
|
|
{
|
|
os << "\\underset{" << cell(0) << "}{" << cell(1) << '}';
|
|
}
|
|
|
|
|
|
void MathUndersetInset::normalize(NormalStream & os) const
|
|
{
|
|
os << "[underset " << cell(0) << ' ' << cell(1) << ']';
|
|
}
|