]> git.lyx.org Git - lyx.git/blob - src/mathed/InsetMathStackrel.cpp
7b4fbef5ef80fa6b2a80d21b19df2e1a275ed572
[lyx.git] / src / mathed / InsetMathStackrel.cpp
1 /**
2  * \file InsetMathStackrel.cpp
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 "InsetMathStackrel.h"
14 #include "MathData.h"
15 #include "MathStream.h"
16
17
18 namespace lyx {
19
20 InsetMathStackrel::InsetMathStackrel()
21 {}
22
23
24 Inset * InsetMathStackrel::clone() const
25 {
26         return new InsetMathStackrel(*this);
27 }
28
29
30 void InsetMathStackrel::metrics(MetricsInfo & mi, Dimension & dim) const
31 {
32         cell(1).metrics(mi);
33         FracChanger dummy(mi.base);
34         cell(0).metrics(mi);
35         dim.wid = std::max(cell(0).width(), cell(1).width()) + 4;
36         dim.asc = cell(1).ascent() + cell(0).height() + 4;
37         dim.des = cell(1).descent();
38         metricsMarkers(dim);
39         dim_ = dim;
40 }
41
42
43 void InsetMathStackrel::draw(PainterInfo & pi, int x, int y) const
44 {
45         int m  = x + dim_.width() / 2;
46         int yo = y - cell(1).ascent() - cell(0).descent() - 1;
47         cell(1).draw(pi, m - cell(1).width() / 2, y);
48         FracChanger dummy(pi.base);
49         cell(0).draw(pi, m - cell(0).width() / 2, yo);
50         drawMarkers(pi, x, y);
51 }
52
53
54 void InsetMathStackrel::write(WriteStream & os) const
55 {
56         os << "\\stackrel{" << cell(0) << "}{" << cell(1) << '}';
57 }
58
59
60 void InsetMathStackrel::normalize(NormalStream & os) const
61 {
62         os << "[stackrel " << cell(0) << ' ' << cell(1) << ']';
63 }
64
65
66 } // namespace lyx