]> git.lyx.org Git - lyx.git/blob - src/mathed/math_rootinset.C
architectural changes to tex2lyx
[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
15 #include "math_rootinset.h"
16 #include "math_mathmlstream.h"
17 #include "frontends/Painter.h"
18
19
20 using std::max;
21 using std::auto_ptr;
22
23
24 MathRootInset::MathRootInset()
25         : MathNestInset(2)
26 {}
27
28
29 auto_ptr<InsetBase> MathRootInset::clone() const
30 {
31         return auto_ptr<InsetBase>(new MathRootInset(*this));
32 }
33
34
35 void MathRootInset::metrics(MetricsInfo & mi, Dimension & dim) const
36 {
37         MathNestInset::metrics(mi);
38         dim_.asc = max(cell(0).ascent()  + 5, cell(1).ascent())  + 2;
39         dim_.des = max(cell(1).descent() + 5, cell(0).descent()) + 2;
40         dim_.wid = cell(0).width() + cell(1).width() + 10;
41         metricsMarkers(1);
42         dim = dim_;
43 }
44
45
46 void MathRootInset::draw(PainterInfo & pi, int x, int y) const
47 {
48         int const w = cell(0).width();
49         // the "exponent"
50         cell(0).draw(pi, x, y - 5 - cell(0).descent());
51         // the "base"
52         cell(1).draw(pi, x + w + 8, y);
53         int const a = dim_.ascent();
54         int const d = dim_.descent();
55         int xp[5];
56         int yp[5];
57         xp[0] = x + dim_.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         xp[4] = x + w - 5;         yp[4] = y + (d - a)/2 + 4;
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::maple(MapleStream & os) const
92 {
93         os << '(' << cell(1) << ")^(1/(" << cell(0) <<"))";
94 }
95
96
97 void MathRootInset::octave(OctaveStream & os) const
98 {
99         os << "root(" << cell(1) << ',' << cell(0) << ')';
100 }
101
102
103 void MathRootInset::mathmlize(MathMLStream & os) const
104 {
105         os << MTag("mroot") << cell(1) << cell(0) << ETag("mroot");
106 }