]> git.lyx.org Git - lyx.git/blob - src/mathed/InsetMathStackrel.cpp
Fulfill promise to Andre: TextClass_ptr --> TextClassPtr.
[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 bool 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         if (dim_ == dim)
40                 return false;
41         dim_ = dim;
42         return true;
43 }
44
45
46 void InsetMathStackrel::draw(PainterInfo & pi, int x, int y) const
47 {
48         int m  = x + dim_.width() / 2;
49         int yo = y - cell(1).ascent() - cell(0).descent() - 1;
50         cell(1).draw(pi, m - cell(1).width() / 2, y);
51         FracChanger dummy(pi.base);
52         cell(0).draw(pi, m - cell(0).width() / 2, yo);
53         drawMarkers(pi, x, y);
54 }
55
56
57 void InsetMathStackrel::write(WriteStream & os) const
58 {
59         os << "\\stackrel{" << cell(0) << "}{" << cell(1) << '}';
60 }
61
62
63 void InsetMathStackrel::normalize(NormalStream & os) const
64 {
65         os << "[stackrel " << cell(0) << ' ' << cell(1) << ']';
66 }
67
68
69 } // namespace lyx