]> git.lyx.org Git - lyx.git/blob - src/mathed/InsetMathChar.cpp
Support the mathbbm font.
[lyx.git] / src / mathed / InsetMathChar.cpp
1 /**
2  * \file InsetMathChar.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 "InsetMathChar.h"
15
16 #include "MathParser.h"
17 #include "MathSupport.h"
18 #include "MathStream.h"
19 #include "MetricsInfo.h"
20
21 #include "Dimension.h"
22 #include "BufferEncodings.h"
23 #include "LaTeXFeatures.h"
24 #include "TextPainter.h"
25
26 #include "frontends/FontMetrics.h"
27
28 #include "support/debug.h"
29 #include "support/lstrings.h"
30 #include "support/textutils.h"
31
32 #include <algorithm>
33
34 using namespace std;
35
36
37 namespace lyx {
38
39 extern bool has_math_fonts;
40
41
42 namespace {
43 latexkeys const * makeSubstitute(char_type c)
44 {
45         std::string name;
46         switch (c) {
47         // Latex replaces ', *, -, and : with specific symbols. With unicode-math,
48         // these symbols are replaced respectively by ^U+2032, U+2217, U+2212 and
49         // U+2236 (the latter substitution can be turned off with a package
50         // option). Unicode-math also replaces ` with \backprime.
51                 // prime needs to be placed in superscript unless an opentype font is used.
52                 //case '\'':
53                 //name = "prime";
54                 //break;
55         case '*':
56                 name = "ast";
57                 break;
58         case '-':
59                 name = "lyxminus";// unicode-math: "minus"
60                 break;
61         case ':':
62                 name = "ordinarycolon";// unicode-math: "mathratio"
63                 break;
64         // The remaining replacements are not real character substitutions (from a
65         // unicode point of view) but are done here: 1. for cosmetic reasons, in the
66         // context of being stuck with CM fonts at the moment, to ensure consistency
67         // with related symbols: -, \leq, \geq, etc.  2. to get the proper spacing
68         // as defined in lib/symbols.
69         case '+':
70                 name = "lyxplus";//unicode-math: "mathplus"
71                 break;
72         case '>':
73                 name = "lyxgt";//unicode-math: "greater"
74                 break;
75         case '<':
76                 name = "lyxlt";//unicode-math: "less"
77                 break;
78         case '=':
79                 name = "lyxeqrel";//unicode-math: "equal"
80                 break;
81         //case ','://unicode-math: "mathcomma"
82         //case ';'://unicode-math: "mathsemicolon"
83         default:
84                 return nullptr;
85         }
86         return in_word_set(from_ascii(name));
87 }
88
89 } //anonymous namespace
90
91
92 static bool slanted(char_type c)
93 {
94         return isAlphaASCII(c) || Encodings::isMathAlpha(c);
95 }
96
97
98 InsetMathChar::InsetMathChar(char_type c)
99         : char_(c), kerning_(0), subst_(makeSubstitute(c))
100 {}
101
102
103
104 Inset * InsetMathChar::clone() const
105 {
106         return new InsetMathChar(*this);
107 }
108
109
110 void InsetMathChar::metrics(MetricsInfo & mi, Dimension & dim) const
111 {
112         string const & f = mi.base.fontname;
113         if (isMathFont(f) && subst_) {
114                 // If the char has a substitute, draw the replacement symbol
115                 // instead, but only in math mode.
116                 kerning_ = mathedSymbolDim(mi.base, dim, subst_);
117         } else if (!slanted(char_) && f == "mathnormal") {
118                 Changer dummy = mi.base.font.changeShape(UP_SHAPE);
119                 dim = theFontMetrics(mi.base.font).dimension(char_);
120                 kerning_ = 0;
121         } else {
122                 frontend::FontMetrics const & fm = theFontMetrics(mi.base.font);
123                 dim = fm.dimension(char_);
124                 kerning_ = mathed_char_kerning(mi.base.font, char_);
125                 // cmmi has almost no left bearing: simulate this
126                 if (f == "mathnormal") {
127                         dim.wid += max(-fm.lbearing(char_), 0);
128                 }
129                 // Rule 17 from Appendix G
130                 // These are the fonts with fontdimen(2)==0.
131                 // To properly handle the case fontdimen(2)!=0 (that is for all other
132                 // math fonts), where the italic correction must also be converted into
133                 // kerning but only at the end of strings of characters with the same
134                 // font, one would need a more elaborate implementation in MathRow. For
135                 // now the case fontdimen(2)==0 is the most important.
136                 if (f == "mathnormal" || f == "mathscr" || f == "mathcal") {
137                         dim.wid += kerning_;
138                         // We use a negative value to tell InsetMathScript to move the
139                         // subscript leftwards instead of the superscript rightwards
140                         kerning_ = -kerning_;
141                 }
142         }
143 }
144
145
146 void InsetMathChar::draw(PainterInfo & pi, int x, int y) const
147 {
148         //lyxerr << "drawing '" << char_ << "' font: " << pi.base.fontname << std::endl;
149         if (isMathFont(pi.base.fontname)) {
150                 if (subst_) {
151                         // If the char has a substitute, draw the replacement symbol
152                         // instead, but only in math mode.
153                         mathedSymbolDraw(pi, x, y, subst_);
154                         return;
155                 } else if (!slanted(char_) && pi.base.fontname == "mathnormal") {
156                         Changer dummy = pi.base.font.changeShape(UP_SHAPE);
157                         pi.draw(x, y, char_);
158                         return;
159                 }
160         }
161         // cmmi has almost no left bearing: simulate this
162         if (pi.base.fontname == "mathnormal") {
163                 x += max(-theFontMetrics(pi.base.font).lbearing(char_), 0);
164         }
165         pi.draw(x, y, char_);
166 }
167
168
169 void InsetMathChar::metricsT(TextMetricsInfo const &, Dimension & dim) const
170 {
171         dim.wid = 1;
172         dim.asc = 1;
173         dim.des = 0;
174 }
175
176
177 void InsetMathChar::drawT(TextPainter & pain, int x, int y) const
178 {
179         //lyxerr << "drawing text '" << char_ << "' code: " << code_ << endl;
180         pain.draw(x, y, char_);
181 }
182
183
184 void InsetMathChar::write(WriteStream & os) const
185 {
186         os.os().put(char_);
187 }
188
189
190 void InsetMathChar::validate(LaTeXFeatures & features) const
191 {
192         if (!isASCII(char_))
193                 BufferEncodings::validate(char_, features, true);
194 }
195
196
197 void InsetMathChar::normalize(NormalStream & os) const
198 {
199         os << "[char ";
200         os.os().put(char_);
201         os << " mathalpha]";
202 }
203
204
205 void InsetMathChar::octave(OctaveStream & os) const
206 {
207         os.os().put(char_);
208 }
209
210
211 // We have a bit of a problem here. MathML wants to know whether the
212 // character represents an "identifier" or an "operator", and we have
213 // no general way of telling. So we shall guess: If it's alpha or
214 // mathalpha, then we'll treat it as an identifier, otherwise as an
215 // operator.
216 // Worst case: We get bad spacing, or bad italics.
217 void InsetMathChar::mathmlize(MathStream & ms) const
218 {
219         std::string entity;
220         switch (char_) {
221                 case '<': entity = "&lt;"; break;
222                 case '>': entity = "&gt;"; break;
223                 case '&': entity = "&amp;"; break;
224                 case ' ': {
225                         if (ms.xmlMode())
226                                 ms << from_ascii("&#0160;");
227                         else
228                                 ms << from_ascii("&nbsp;");
229                         return;
230                 }
231                 default: break;
232         }
233
234         if (ms.inText()) {
235                 if (entity.empty())
236                         ms.os().put(char_);
237                 else
238                         ms << from_ascii(entity);
239                 return;
240         }
241
242         if (!entity.empty()) {
243                 ms << "<" << from_ascii(ms.namespacedTag("mo")) << ">"
244                    << from_ascii(entity)
245                    << "</" << from_ascii(ms.namespacedTag("mo")) << ">";
246                 return;
247         }
248
249         char const * type =
250                 (isAlphaASCII(char_) || Encodings::isMathAlpha(char_))
251                         ? "mi" : "mo";
252         // we don't use MTag and ETag because we do not want the spacing before the end tag.
253         docstring tag = from_ascii(ms.namespacedTag(type));
254         ms << "<" << tag << ">" << char_type(char_) << "</" << tag << ">";
255 }
256
257
258 void InsetMathChar::htmlize(HtmlStream & ms) const
259 {
260         std::string entity;
261         // Not taking subst_ into account here because the MathML output of
262         // <>=+-* looks correct as it is. FIXME: ' is not output as ^\prime
263         switch (char_) {
264                 case '<': entity = "&lt;"; break;
265                 case '>': entity = "&gt;"; break;
266                 case '&': entity = "&amp;"; break;
267                 case ' ': entity = "&nbsp;"; break;
268                 default: break;
269         }
270
271         bool have_entity = !entity.empty();
272
273         if (ms.inText()) {
274                 if (have_entity)
275                         ms << from_ascii(entity);
276                 else
277                         ms.os().put(char_);
278                 return;
279         }
280
281         if (have_entity) {
282                 // an operator, so give some space
283                 ms << ' ' << from_ascii(entity) << ' ';
284                 return;
285         }
286
287         if (isAlphaASCII(char_) || Encodings::isMathAlpha(char_))
288                 // we don't use MTag and ETag because we do not want the spacing
289                 ms << MTag("i") << char_type(char_) << ETag("i");
290         else
291                 // an operator, so give some space
292                 ms << " " << char_type(char_) << " ";
293 }
294
295
296 MathClass InsetMathChar::mathClass() const
297 {
298         // this information comes from fontmath.ltx in LaTeX source.
299         char const ch = static_cast<char>(char_);
300         if (subst_)
301                 return string_to_class(subst_->extra);
302         else if (support::contains(",;", ch))
303                 return MC_PUNCT;
304         else if (support::contains("([", ch))
305                 return MC_OPEN;
306         else if (support::contains(")]!?", ch))
307                 return MC_CLOSE;
308         else return MC_ORD;
309 }
310
311
312 } // namespace lyx