]> git.lyx.org Git - lyx.git/blob - src/mathed/math_stackrelinset.C
to much stuff for my liking...
[lyx.git] / src / mathed / math_stackrelinset.C
1 #ifdef __GNUG__
2 #pragma implementation
3 #endif
4
5 #include "math_stackrelinset.h"
6 #include "math_mathmlstream.h"
7 #include "math_support.h"
8
9
10 using std::max;
11
12
13 MathStackrelInset::MathStackrelInset()
14 {}
15
16
17 MathInset * MathStackrelInset::clone() const
18 {   
19         return new MathStackrelInset(*this);
20 }
21
22
23 void MathStackrelInset::metrics(MathMetricsInfo const & mi) const
24 {
25         MathMetricsInfo m = mi;
26         smallerStyleFrac(m);
27         xcell(0).metrics(m);
28         xcell(1).metrics(mi);
29         width_   = max(xcell(0).width(), xcell(1).width()) + 4; 
30         ascent_  = xcell(1).ascent() + xcell(0).height() + 4;
31         descent_ = xcell(1).descent();
32 }
33
34
35 void MathStackrelInset::draw(Painter & pain, int x, int y) const
36 {
37         int m  = x + width() / 2;
38         int yo = y - xcell(1).ascent() - xcell(0).descent() - 1;
39         xcell(0).draw(pain, m - xcell(0).width() / 2, yo);
40         xcell(1).draw(pain, m - xcell(1).width() / 2, y);
41 }
42
43
44 void MathStackrelInset::write(WriteStream & os) const
45 {
46         os << "\\stackrel{" << cell(0) << "}{" << cell(1) << '}';
47 }
48
49
50 void MathStackrelInset::normalize(NormalStream & os) const
51 {
52         os << "[stackrel " << cell(0) << ' ' << cell(1) << ']';
53 }