]> git.lyx.org Git - lyx.git/blob - src/mathed/math_stackrelinset.C
rename the members of Dimension
[lyx.git] / src / mathed / math_stackrelinset.C
1
2 #include "math_stackrelinset.h"
3 #include "math_mathmlstream.h"
4 #include "math_support.h"
5
6
7 using std::max;
8
9
10 MathStackrelInset::MathStackrelInset()
11 {}
12
13
14 MathInset * MathStackrelInset::clone() const
15 {
16         return new MathStackrelInset(*this);
17 }
18
19
20 void MathStackrelInset::metrics(MetricsInfo & mi) const
21 {
22         cell(1).metrics(mi);
23         FracChanger dummy(mi.base);
24         cell(0).metrics(mi);
25         dim_.wid = max(cell(0).width(), cell(1).width()) + 4;
26         dim_.asc = cell(1).ascent() + cell(0).height() + 4;
27         dim_.des = cell(1).descent();
28 }
29
30
31 void MathStackrelInset::draw(PainterInfo & pi, int x, int y) const
32 {
33         int m  = x + width() / 2;
34         int yo = y - cell(1).ascent() - cell(0).descent() - 1;
35         cell(1).draw(pi, m - cell(1).width() / 2, y);
36         FracChanger dummy(pi.base);
37         cell(0).draw(pi, m - cell(0).width() / 2, yo);
38 }
39
40
41 void MathStackrelInset::write(WriteStream & os) const
42 {
43         os << "\\stackrel{" << cell(0) << "}{" << cell(1) << '}';
44 }
45
46
47 void MathStackrelInset::normalize(NormalStream & os) const
48 {
49         os << "[stackrel " << cell(0) << ' ' << cell(1) << ']';
50 }