]> git.lyx.org Git - lyx.git/blob - src/mathed/math_stackrelinset.C
Strip out redundant #includes
[lyx.git] / src / mathed / math_stackrelinset.C
1 /**
2  * \file math_stackrelinset.C
3  * This file is part of LyX, the document processor.
4  * Licence details can be found in the file COPYING.
5  *
6  * \author André Pönitz
7  *
8  * Full author contact details are available in file CREDITS.
9  */
10
11 #include <config.h>
12
13 #include "math_stackrelinset.h"
14 #include "math_mathmlstream.h"
15
16
17 using std::max;
18 using std::auto_ptr;
19
20
21 MathStackrelInset::MathStackrelInset()
22 {}
23
24
25 auto_ptr<InsetBase> MathStackrelInset::clone() const
26 {
27         return auto_ptr<InsetBase>(new MathStackrelInset(*this));
28 }
29
30
31 void MathStackrelInset::metrics(MetricsInfo & mi, Dimension & dim) const
32 {
33         cell(1).metrics(mi);
34         FracChanger dummy(mi.base);
35         cell(0).metrics(mi);
36         dim_.wid = max(cell(0).width(), cell(1).width()) + 4;
37         dim_.asc = cell(1).ascent() + cell(0).height() + 4;
38         dim_.des = cell(1).descent();
39         metricsMarkers();
40         dim = dim_;
41 }
42
43
44 void MathStackrelInset::draw(PainterInfo & pi, int x, int y) const
45 {
46         int m  = x + dim_.width() / 2;
47         int yo = y - cell(1).ascent() - cell(0).descent() - 1;
48         cell(1).draw(pi, m - cell(1).width() / 2, y);
49         FracChanger dummy(pi.base);
50         cell(0).draw(pi, m - cell(0).width() / 2, yo);
51         drawMarkers(pi, x, y);
52 }
53
54
55 void MathStackrelInset::write(WriteStream & os) const
56 {
57         os << "\\stackrel{" << cell(0) << "}{" << cell(1) << '}';
58 }
59
60
61 void MathStackrelInset::normalize(NormalStream & os) const
62 {
63         os << "[stackrel " << cell(0) << ' ' << cell(1) << ']';
64 }