]> git.lyx.org Git - lyx.git/blob - src/mathed/math_rootinset.C
bc8e60b3cfe76f195e3896f61f985416f7ff4d35
[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 }
44
45
46 void MathRootInset::draw(MathPainterInfo & pi, int x, int y) const
47 {
48         int const w = xcell(0).width();
49         // the "exponent"
50         xcell(0).draw(pi, x, y - 5 - xcell(0).descent());
51         // the "base"
52         xcell(1).draw(pi, x + w + 8, y);
53         int const a = ascent();
54         int const d = descent();
55         int xp[5];
56         int yp[5];
57         xp[0] = x + width();  yp[0] = y - a + 1;
58         xp[1] = x + w + 4;    yp[1] = y - a + 1;
59         xp[2] = x + w;        yp[2] = y + d;
60         xp[3] = x + w - 2;    yp[3] = y + (d - a)/2 + 2;
61         xp[4] = x;            yp[4] = y + (d - a)/2 + 2;
62         pi.pain.lines(xp, yp, 5, LColor::math);
63 }
64
65
66 void MathRootInset::write(WriteStream & os) const
67 {
68         os << "\\sqrt[" << cell(0) << "]{" << cell(1) << '}';
69 }
70
71
72 void MathRootInset::normalize(NormalStream & os) const
73 {
74         os << "[root " << cell(0) << ' ' << cell(1) << ']';
75 }
76
77
78 bool MathRootInset::idxUpDown(idx_type & idx, pos_type &, bool up) const
79 {
80         bool target = !up; // up ? 0 : 1;
81         if (idx == target)
82                 return false;
83         idx = target;
84         return true;
85 }
86
87
88 void MathRootInset::octavize(OctaveStream & os) const
89 {
90         os << "root(" << cell(1) << ',' << cell(0) <<')';
91 }
92
93
94 void MathRootInset::mathmlize(MathMLStream & os) const
95 {
96         os << MTag("mroot") << cell(1) << cell(0) << ETag("mroot");
97 }