]> git.lyx.org Git - lyx.git/blob - src/mathed/InsetMathUnderset.cpp
8a2f4bf02b606973d49a621d9c931814cdda63fd
[lyx.git] / src / mathed / InsetMathUnderset.cpp
1 /**
2  * \file InsetMathUnderset.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 "InsetMathUnderset.h"
14 #include "MathData.h"
15 #include "MathStream.h"
16
17 #include "Cursor.h"
18 #include "LaTeXFeatures.h"
19
20
21 namespace lyx {
22
23 Inset * InsetMathUnderset::clone() const
24 {
25         return new InsetMathUnderset(*this);
26 }
27
28
29 bool InsetMathUnderset::metrics(MetricsInfo & mi, Dimension & dim) const
30 {
31         cell(1).metrics(mi);
32         FracChanger dummy(mi.base);
33         cell(0).metrics(mi);
34         dim.wid = std::max(cell(0).width(), cell(1).width()) + 4;
35         dim.asc = cell(1).ascent();
36         dim.des = cell(1).descent() + cell(0).height() + 4;
37         metricsMarkers(dim);
38         if (dim_ == dim)
39                 return false;
40         dim_ = dim;
41         return true;
42 }
43
44
45 void InsetMathUnderset::draw(PainterInfo & pi, int x, int y) const
46 {
47         int m  = x + width() / 2;
48         int yo = y + cell(1).descent() + cell(0).ascent() + 1;
49         cell(1).draw(pi, m - cell(1).width() / 2, y);
50         FracChanger dummy(pi.base);
51         cell(0).draw(pi, m - cell(0).width() / 2, yo);
52         drawMarkers(pi, x, y);
53 }
54
55
56 bool InsetMathUnderset::idxFirst(Cursor & cur) const
57 {
58         cur.idx() = 1;
59         cur.pos() = 0;
60         return true;
61 }
62
63
64 bool InsetMathUnderset::idxLast(Cursor & cur) const
65 {
66         cur.idx() = 1;
67         cur.pos() = cur.lastpos();
68         return true;
69 }
70
71
72 bool InsetMathUnderset::idxUpDown(Cursor & cur, bool up) const
73 {
74         idx_type target = up; // up ? 1 : 0, since upper cell has idx 1
75         if (cur.idx() == target)
76                 return false;
77         cur.idx() = target;
78         cur.pos() = cur.cell().x2pos(cur.x_target());
79         return true;
80 }
81
82
83 void InsetMathUnderset::write(WriteStream & os) const
84 {
85         os << "\\underset{" << cell(0) << "}{" << cell(1) << '}';
86 }
87
88
89 void InsetMathUnderset::normalize(NormalStream & os) const
90 {
91         os << "[underset " << cell(0) << ' ' << cell(1) << ']';
92 }
93
94
95 void InsetMathUnderset::validate(LaTeXFeatures & features) const
96 {
97         features.require("amsmath");
98         InsetMathNest::validate(features);
99 }
100
101
102 } // namespace lyx