]> git.lyx.org Git - lyx.git/blob - src/mathed/InsetMathDecoration.cpp
Merge branch 'master' of git.lyx.org:lyx
[lyx.git] / src / mathed / InsetMathDecoration.cpp
1 /**
2  * \file InsetMathDecoration.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 "InsetMathDecoration.h"
15
16 #include "MathData.h"
17 #include "MathParser.h"
18 #include "MathSupport.h"
19 #include "MathStream.h"
20 #include "MetricsInfo.h"
21
22 #include "LaTeXFeatures.h"
23
24 #include "support/debug.h"
25 #include "support/docstring.h"
26 #include "support/gettext.h"
27 #include "support/lassert.h"
28 #include "support/lstrings.h"
29
30 #include <ostream>
31
32 using namespace lyx::support;
33
34 using namespace std;
35
36 namespace lyx {
37
38
39 InsetMathDecoration::InsetMathDecoration(Buffer * buf, latexkeys const * key)
40         : InsetMathNest(buf, 1), key_(key), dh_(0), dy_(0), dw_(0)
41 {
42 //      lyxerr << " creating deco " << key->name << endl;
43 }
44
45
46 Inset * InsetMathDecoration::clone() const
47 {
48         return new InsetMathDecoration(*this);
49 }
50
51
52 bool InsetMathDecoration::upper() const
53 {
54         return key_->name.substr(0, 5) != "under" && key_->name != "utilde";
55 }
56
57
58 bool InsetMathDecoration::isScriptable() const
59 {
60         return
61                         key_->name == "overbrace" ||
62                         key_->name == "underbrace";
63 }
64
65
66 bool InsetMathDecoration::protect() const
67 {
68         return
69                         key_->name == "overbrace" ||
70                         key_->name == "underbrace" ||
71                         key_->name == "overleftarrow" ||
72                         key_->name == "overrightarrow" ||
73                         key_->name == "overleftrightarrow" ||
74                         key_->name == "underleftarrow" ||
75                         key_->name == "underrightarrow" ||
76                         key_->name == "underleftrightarrow";
77 }
78
79
80 bool InsetMathDecoration::wide() const
81 {
82         return
83                         key_->name == "overline" ||
84                         key_->name == "underline" ||
85                         key_->name == "overbrace" ||
86                         key_->name == "underbrace" ||
87                         key_->name == "overleftarrow" ||
88                         key_->name == "overrightarrow" ||
89                         key_->name == "overleftrightarrow" ||
90                         key_->name == "widehat" ||
91                         key_->name == "widetilde" ||
92                         key_->name == "underleftarrow" ||
93                         key_->name == "underrightarrow" ||
94                         key_->name == "underleftrightarrow" ||
95                         key_->name == "undertilde" ||
96                         key_->name == "utilde";
97 }
98
99
100 InsetMath::mode_type InsetMathDecoration::currentMode() const
101 {
102         return key_->name == "underbar" ? TEXT_MODE : MATH_MODE;
103 }
104
105
106 void InsetMathDecoration::metrics(MetricsInfo & mi, Dimension & dim) const
107 {
108         bool really_change_font = currentMode() == TEXT_MODE
109                                 && isMathFont(mi.base.fontname);
110         Changer dummy = mi.base.changeFontSet("textnormal", really_change_font);
111
112         cell(0).metrics(mi, dim);
113
114         dh_  = 6; //mathed_char_height(LM_TC_VAR, mi, 'I', ascent_, descent_);
115         dw_  = 6; //mathed_char_width(LM_TC_VAR, mi, 'x');
116
117         if (upper()) {
118                 dy_ = -dim.asc - dh_;
119                 dim.asc += dh_ + 1;
120         } else {
121                 dy_ = dim.des + 1;
122                 dim.des += dh_ + 2;
123         }
124
125         metricsMarkers(dim);
126 }
127
128
129 void InsetMathDecoration::draw(PainterInfo & pi, int x, int y) const
130 {
131         bool really_change_font = currentMode() == TEXT_MODE
132                                       && isMathFont(pi.base.fontname);
133         Changer dummy = pi.base.changeFontSet("textnormal", really_change_font);
134
135         cell(0).draw(pi, x + 1, y);
136         Dimension const & dim0 = cell(0).dimension(*pi.base.bv);
137         if (wide())
138                 mathed_draw_deco(pi, x + 1, y + dy_, dim0.wid, dh_, key_->name);
139         else
140                 mathed_draw_deco(pi, x + 1 + (dim0.wid - dw_) / 2,
141                         y + dy_, dw_, dh_, key_->name);
142         drawMarkers(pi, x, y);
143         setPosCache(pi, x, y);
144 }
145
146
147 void InsetMathDecoration::write(WriteStream & os) const
148 {
149         MathEnsurer ensurer(os);
150         if (os.fragile() && protect())
151                 os << "\\protect";
152         os << '\\' << key_->name << '{';
153         ModeSpecifier specifier(os, currentMode());
154         os << cell(0) << '}';
155 }
156
157
158 void InsetMathDecoration::normalize(NormalStream & os) const
159 {
160         os << "[deco " << key_->name << ' ' <<  cell(0) << ']';
161 }
162
163
164 void InsetMathDecoration::infoize(odocstream & os) const
165 {
166         os << bformat(_("Decoration: %1$s"), key_->name);
167 }
168
169
170 namespace {
171         struct Attributes {
172                 Attributes() : over(false) {}
173                 Attributes(bool o, string t)
174                         : over(o), tag(t) {}
175                 bool over;
176                 string tag;
177         };
178
179         typedef map<string, Attributes> TranslationMap;
180
181         void buildTranslationMap(TranslationMap & t) {
182                 // the decorations we need to support are listed in lib/symbols
183                 t["acute"] = Attributes(true, "&acute;");
184                 t["bar"]   = Attributes(true, "&OverBar;");
185                 t["breve"] = Attributes(true, "&breve;");
186                 t["check"] = Attributes(true, "&caron;");
187                 t["ddddot"] = Attributes(true, "&DotDot;");
188                 t["dddot"] = Attributes(true, "&TripleDot;");
189                 t["ddot"] = Attributes(true, "&Dot;");
190                 t["dot"] = Attributes(true, "&dot;");
191                 t["grave"] = Attributes(true, "&grave;");
192                 t["hat"] = Attributes(true, "&circ;");
193                 t["mathring"] = Attributes(true, "&ring;");
194                 t["overbrace"] = Attributes(true, "&OverBrace;");
195                 t["overleftarrow"] = Attributes(true, "&xlarr;");
196                 t["overleftrightarrow"] = Attributes(true, "&xharr;");
197                 t["overline"] = Attributes(true, "&macr;");
198                 t["overrightarrow"] = Attributes(true, "&xrarr;");
199                 t["tilde"] = Attributes(true, "&tilde;");
200                 t["underbar"] = Attributes(false, "&UnderBar;");
201                 t["underbrace"] = Attributes(false, "&UnderBrace;");
202                 t["underleftarrow"] = Attributes(false, "&xlarr;");
203                 t["underleftrightarrow"] = Attributes(false, "&xharr;");
204                 // this is the macron, again, but it works
205                 t["underline"] = Attributes(false, "&macr;");
206                 t["underrightarrow"] = Attributes(false, "&xrarr;");
207                 t["undertilde"] = Attributes(false, "&Tilde;");
208                 t["utilde"] = Attributes(false, "&Tilde;");
209                 t["vec"] = Attributes(true, "&rarr;");
210                 t["widehat"] = Attributes(true, "&Hat;");
211                 t["widetilde"] = Attributes(true, "&Tilde;");
212         }
213
214         TranslationMap const & translationMap() {
215                 static TranslationMap t;
216                 if (t.empty())
217                         buildTranslationMap(t);
218                 return t;
219         }
220 }
221
222 void InsetMathDecoration::mathmlize(MathStream & os) const
223 {
224         TranslationMap const & t = translationMap();
225         TranslationMap::const_iterator cur = t.find(to_utf8(key_->name));
226         LASSERT(cur != t.end(), return);
227         char const * const outag = cur->second.over ? "mover" : "munder";
228         os << MTag(outag)
229                  << MTag("mrow") << cell(0) << ETag("mrow")
230                  << from_ascii("<mo stretchy=\"true\">" + cur->second.tag + "</mo>")
231                  << ETag(outag);
232 }
233
234
235 void InsetMathDecoration::htmlize(HtmlStream & os) const
236 {
237         string const name = to_utf8(key_->name);
238         if (name == "bar") {
239                 os << MTag("span", "class='overbar'") << cell(0) << ETag("span");
240                 return;
241         }
242
243         if (name == "underbar" || name == "underline") {
244                 os << MTag("span", "class='underbar'") << cell(0) << ETag("span");
245                 return;
246         }
247
248         TranslationMap const & t = translationMap();
249         TranslationMap::const_iterator cur = t.find(name);
250         LASSERT(cur != t.end(), return);
251
252         bool symontop = cur->second.over;
253         string const symclass = symontop ? "symontop" : "symonbot";
254         os << MTag("span", "class='symbolpair " + symclass + "'")
255            << '\n';
256
257         if (symontop)
258                 os << MTag("span", "class='symbol'") << from_ascii(cur->second.tag);
259         else
260                 os << MTag("span", "class='base'") << cell(0);
261         os << ETag("span") << '\n';
262         if (symontop)
263                 os << MTag("span", "class='base'") << cell(0);
264         else
265                 os << MTag("span", "class='symbol'") << from_ascii(cur->second.tag);
266         os << ETag("span") << '\n' << ETag("span") << '\n';
267 }
268
269
270 // ideas borrowed from the eLyXer code
271 void InsetMathDecoration::validate(LaTeXFeatures & features) const
272 {
273         if (features.runparams().math_flavor == OutputParams::MathAsHTML) {
274                 string const name = to_utf8(key_->name);
275                 if (name == "bar") {
276                         features.addCSSSnippet("span.overbar{border-top: thin black solid;}");
277                 } else if (name == "underbar" || name == "underline") {
278                         features.addCSSSnippet("span.underbar{border-bottom: thin black solid;}");
279                 } else {
280                         features.addCSSSnippet(
281                                 "span.symbolpair{display: inline-block; text-align:center;}\n"
282                                 "span.symontop{vertical-align: top;}\n"
283                                 "span.symonbot{vertical-align: bottom;}\n"
284                                 "span.symbolpair span{display: block;}\n"
285                                 "span.symbol{height: 0.5ex;}");
286                 }
287         } else {
288                 if (!key_->requires.empty())
289                         features.require(key_->requires);
290         }
291         InsetMathNest::validate(features);
292 }
293
294 } // namespace lyx