]> git.lyx.org Git - lyx.git/blob - src/mathed/InsetMathRoot.cpp
Skip drawing of markers in non-editable math data
[lyx.git] / src / mathed / InsetMathRoot.cpp
1 /**
2  * \file InsetMathRoot.cpp
3  * This file is part of LyX, the document processor.
4  * Licence details can be found in the file COPYING.
5  *
6  * \author Alejandro Aguilar Sierra
7  * \author André Pönitz
8  *
9  * Full author contact details are available in file CREDITS.
10  */
11
12 #include <config.h>
13
14 #include "InsetMathRoot.h"
15
16 #include "MathData.h"
17 #include "MathStream.h"
18
19 #include "Cursor.h"
20 #include "LaTeXFeatures.h"
21 #include "MetricsInfo.h"
22
23 #include "frontends/Painter.h"
24
25
26 using namespace std;
27
28 namespace lyx {
29
30
31 InsetMathRoot::InsetMathRoot(Buffer * buf)
32         : InsetMathNest(buf, 2)
33 {}
34
35
36 Inset * InsetMathRoot::clone() const
37 {
38         return new InsetMathRoot(*this);
39 }
40
41
42 void InsetMathRoot::metrics(MetricsInfo & mi, Dimension & dim) const
43 {
44         InsetMathNest::metrics(mi);
45         Dimension const & dim0 = cell(0).dimension(*mi.base.bv);
46         Dimension const & dim1 = cell(1).dimension(*mi.base.bv);
47         dim.asc = max(dim0.ascent()  + 5, dim1.ascent())  + 2;
48         dim.des = max(dim0.descent() - 5, dim1.descent()) + 2;
49         dim.wid = dim0.width() + dim1.width() + 10;
50         metricsMarkers(mi, dim);
51 }
52
53
54 void InsetMathRoot::draw(PainterInfo & pi, int x, int y) const
55 {
56         Dimension const & dim0 = cell(0).dimension(*pi.base.bv);
57         int const w = dim0.width();
58         // the "exponent"
59         cell(0).draw(pi, x, y - 5 - dim0.descent());
60         // the "base"
61         cell(1).draw(pi, x + w + 8, y);
62         Dimension const dim = dimension(*pi.base.bv);
63         int const a = dim.ascent();
64         int const d = dim.descent();
65         int xp[4];
66         int yp[4];
67         pi.pain.line(x + dim.width(), y - a + 1,
68                                 x + w + 4, y - a + 1, pi.base.font.color());
69         xp[0] = x + w + 4;         yp[0] = y - a + 1;
70         xp[1] = x + w;             yp[1] = y + d;
71         xp[2] = x + w - 2;         yp[2] = y + (d - a)/2 + 2;
72         xp[3] = x + w - 5;         yp[3] = y + (d - a)/2 + 4;
73         pi.pain.lines(xp, yp, 4, pi.base.font.color());
74         drawMarkers(pi, x, y);
75 }
76
77
78 void InsetMathRoot::write(WriteStream & os) const
79 {
80         MathEnsurer ensurer(os);
81         os << "\\sqrt[" << cell(0) << "]{" << cell(1) << '}';
82 }
83
84
85 void InsetMathRoot::normalize(NormalStream & os) const
86 {
87         os << "[root " << cell(0) << ' ' << cell(1) << ']';
88 }
89
90
91 bool InsetMathRoot::idxUpDown(Cursor & cur, bool up) const
92 {
93         Cursor::idx_type const target = up ? 0 : 1;
94         if (cur.idx() == target)
95                 return false;
96         cur.idx() = target;
97         cur.pos() = up ? cur.lastpos() : 0;
98         return true;
99 }
100
101
102 void InsetMathRoot::maple(MapleStream & os) const
103 {
104         os << '(' << cell(1) << ")^(1/(" << cell(0) <<"))";
105 }
106
107
108 void InsetMathRoot::mathematica(MathematicaStream & os) const
109 {
110         os << '(' << cell(1) << ")^(1/(" << cell(0) <<"))";
111 }
112
113
114 void InsetMathRoot::octave(OctaveStream & os) const
115 {
116         os << '(' << cell(1) << ")^(1/(" << cell(0) <<"))";
117 }
118
119
120 void InsetMathRoot::mathmlize(MathStream & os) const
121 {
122         os << MTag("mroot") << cell(1) << cell(0) << ETag("mroot");
123 }
124
125
126 void InsetMathRoot::htmlize(HtmlStream & os) const
127 {
128         os << MTag("span", "class='root'")
129            << MTag("sup") << cell(0) << ETag("sup")
130            << from_ascii("&radic;") 
131            << MTag("span", "class='rootof'")    << cell(1) << ETag("span") 
132                  << ETag("span");
133 }
134
135
136 void InsetMathRoot::validate(LaTeXFeatures & features) const
137 {
138         if (features.runparams().math_flavor == OutputParams::MathAsHTML)
139                 features.addCSSSnippet(
140                         "span.rootof{border-top: thin solid black;}\n"
141                         "span.root sup{font-size: 75%;}");
142         InsetMathNest::validate(features);
143 }
144
145 } // namespace lyx