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