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