]> git.lyx.org Git - lyx.git/blob - src/mathed/InsetMathUnderset.cpp
Put MathData on a diet: transfer dimension cache to BufferView' CoordCache along...
[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 void InsetMathUnderset::metrics(MetricsInfo & mi, Dimension & dim) const
30 {
31         Dimension dim1;
32         cell(1).metrics(mi, dim1);
33         FracChanger dummy(mi.base);
34         Dimension dim0;
35         cell(0).metrics(mi, dim0);
36         dim.wid = std::max(dim0.width(), dim1.width()) + 4;
37         dim.asc = dim1.ascent();
38         dim.des = dim1.descent() + dim0.height() + 4;
39         metricsMarkers(dim);
40         // Cache the inset dimension. 
41         setDimCache(mi, dim);
42 }
43
44
45 void InsetMathUnderset::draw(PainterInfo & pi, int x, int y) const
46 {
47         Dimension const dim = dimension(*pi.base.bv);
48         Dimension const & dim0 = cell(0).dimension(*pi.base.bv);
49         Dimension const & dim1 = cell(1).dimension(*pi.base.bv);
50         int m  = x + dim.wid / 2;
51         int yo = y + dim1.descent() + dim0.ascent() + 1;
52         cell(1).draw(pi, m - dim1.width() / 2, y);
53         FracChanger dummy(pi.base);
54         cell(0).draw(pi, m - dim0.width() / 2, yo);
55         drawMarkers(pi, x, y);
56 }
57
58
59 bool InsetMathUnderset::idxFirst(Cursor & cur) const
60 {
61         cur.idx() = 1;
62         cur.pos() = 0;
63         return true;
64 }
65
66
67 bool InsetMathUnderset::idxLast(Cursor & cur) const
68 {
69         cur.idx() = 1;
70         cur.pos() = cur.lastpos();
71         return true;
72 }
73
74
75 bool InsetMathUnderset::idxUpDown(Cursor & cur, bool up) const
76 {
77         idx_type target = up; // up ? 1 : 0, since upper cell has idx 1
78         if (cur.idx() == target)
79                 return false;
80         cur.idx() = target;
81         cur.pos() = cur.cell().x2pos(cur.x_target());
82         return true;
83 }
84
85
86 void InsetMathUnderset::write(WriteStream & os) const
87 {
88         os << "\\underset{" << cell(0) << "}{" << cell(1) << '}';
89 }
90
91
92 void InsetMathUnderset::normalize(NormalStream & os) const
93 {
94         os << "[underset " << cell(0) << ' ' << cell(1) << ']';
95 }
96
97
98 void InsetMathUnderset::validate(LaTeXFeatures & features) const
99 {
100         features.require("amsmath");
101         InsetMathNest::validate(features);
102 }
103
104
105 } // namespace lyx