]> git.lyx.org Git - lyx.git/blob - src/mathed/math_undersetinset.C
6d1f34ecd4069f32588a93d031c7fafcf77df0ca
[lyx.git] / src / mathed / math_undersetinset.C
1 /**
2  * \file math_undersetinset.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 "math_undersetinset.h"
14 #include "math_data.h"
15 #include "math_mathmlstream.h"
16
17
18 using std::max;
19 using std::auto_ptr;
20
21
22 auto_ptr<InsetBase> MathUndersetInset::clone() const
23 {
24         return auto_ptr<InsetBase>(new MathUndersetInset(*this));
25 }
26
27
28 void MathUndersetInset::metrics(MetricsInfo & mi, Dimension & dim) const
29 {
30         cell(1).metrics(mi);
31         FracChanger dummy(mi.base);
32         cell(0).metrics(mi);
33         dim_.wid = max(cell(0).width(), cell(1).width()) + 4;
34         dim_.asc = cell(1).ascent();
35         dim_.des = cell(1).descent() + cell(0).height() + 4;
36         dim = dim_;
37 }
38
39
40 void MathUndersetInset::draw(PainterInfo & pi, int x, int y) const
41 {
42         int m  = x + pi.width / 2;
43         int yo = y + cell(1).descent() + cell(0).ascent() + 1;
44         cell(1).draw(pi, m - cell(1).width() / 2, y);
45         FracChanger dummy(pi.base);
46         cell(0).draw(pi, m - cell(0).width() / 2, yo);
47 }
48
49
50 bool MathUndersetInset::idxFirst(LCursor & cur) const
51 {
52         cur.idx() = 1;
53         cur.pos() = 0;
54         return true;
55 }
56
57
58 bool MathUndersetInset::idxLast(LCursor & cur) const
59 {
60         cur.idx() = 1;
61         cur.pos() = cur.lastpos();
62         return true;
63 }
64
65
66 bool MathUndersetInset::idxUpDown(LCursor & cur, bool up, int targetx) const
67 {
68         idx_type target = up; // up ? 1 : 0, since upper cell has idx 1
69         if (cur.idx() == target)
70                 return false;
71         cur.idx() = target;
72         cur.pos() = cur.cell().x2pos(targetx);
73         return true;
74 }
75
76
77 void MathUndersetInset::write(WriteStream & os) const
78 {
79         os << "\\underset{" << cell(0) << "}{" << cell(1) << '}';
80 }
81
82
83 void MathUndersetInset::normalize(NormalStream & os) const
84 {
85         os << "[underset " << cell(0) << ' ' << cell(1) << ']';
86 }