]> git.lyx.org Git - lyx.git/blob - src/mathed/math_rootinset.C
the up/down stuff reworked
[lyx.git] / src / mathed / math_rootinset.C
1 /*
2  *  File:        math_root.C
3  *  Purpose:     Implementation of the root object
4  *  Author:      Alejandro Aguilar Sierra <asierra@servidor.unam.mx>
5  *  Created:     January 1999
6  *  Description: Root math object
7  *
8  *  Copyright: 1999 Alejandro Aguilar Sierra
9  *
10  *   You are free to use and modify this code under the terms of
11  *   the GNU General Public Licence version 2 or later.
12  */
13
14 #ifdef __GNUG__
15 #pragma implementation
16 #endif
17
18 #include "math_rootinset.h"
19 #include "math_mathmlstream.h"
20 #include "frontends/Painter.h"
21
22
23 using std::max;
24
25
26 MathRootInset::MathRootInset()
27         : MathNestInset(2)
28 {}
29
30
31 MathInset * MathRootInset::clone() const
32 {
33         return new MathRootInset(*this);
34 }
35
36
37 void MathRootInset::metrics(MathMetricsInfo & mi) const
38 {
39         MathNestInset::metrics(mi);
40         dim_.a = max(xcell(0).ascent()  + 5, xcell(1).ascent())  + 2;
41         dim_.d = max(xcell(1).descent() + 5, xcell(0).descent()) + 2;
42         dim_.w = xcell(0).width() + xcell(1).width() + 10;
43         metricsMarkers();
44 }
45
46
47 void MathRootInset::draw(MathPainterInfo & pi, int x, int y) const
48 {
49         int const w = xcell(0).width();
50         // the "exponent"
51         xcell(0).draw(pi, x, y - 5 - xcell(0).descent());
52         // the "base"
53         xcell(1).draw(pi, x + w + 8, y);
54         int const a = ascent();
55         int const d = descent();
56         int xp[5];
57         int yp[5];
58         xp[0] = x + width();  yp[0] = y - a + 1;
59         xp[1] = x + w + 4;    yp[1] = y - a + 1;
60         xp[2] = x + w;        yp[2] = y + d;
61         xp[3] = x + w - 2;    yp[3] = y + (d - a)/2 + 2;
62         xp[4] = x;            yp[4] = y + (d - a)/2 + 2;
63         pi.pain.lines(xp, yp, 5, LColor::math);
64         drawMarkers(pi, x, y);
65 }
66
67
68 void MathRootInset::write(WriteStream & os) const
69 {
70         os << "\\sqrt[" << cell(0) << "]{" << cell(1) << '}';
71 }
72
73
74 void MathRootInset::normalize(NormalStream & os) const
75 {
76         os << "[root " << cell(0) << ' ' << cell(1) << ']';
77 }
78
79
80 bool MathRootInset::idxUpDown(idx_type & idx, pos_type & pos, bool up, int) const
81 {
82         bool target = !up; // up ? 0 : 1;
83         if (idx == target)
84                 return false;
85         idx = target;
86         pos = target ? 0 : cell(0).size();
87         return true;
88 }
89
90
91 void MathRootInset::octavize(OctaveStream & os) const
92 {
93         os << "root(" << cell(1) << ',' << cell(0) <<')';
94 }
95
96
97 void MathRootInset::mathmlize(MathMLStream & os) const
98 {
99         os << MTag("mroot") << cell(1) << cell(0) << ETag("mroot");
100 }