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