]> git.lyx.org Git - lyx.git/blob - src/mathed/InsetMathSymbol.cpp
0bd61d9b5f70fef9da99193e38b5afa27011d976
[lyx.git] / src / mathed / InsetMathSymbol.cpp
1 /**
2  * \file InsetMathSymbol.cpp
3  * This file is part of LyX, the document processor.
4  * Licence details can be found in the file COPYING.
5  *
6  * \author André Pönitz
7  *
8  * Full author contact details are available in file CREDITS.
9  */
10
11 #include <config.h>
12
13 #include "InsetMathSymbol.h"
14
15 #include "Dimension.h"
16 #include "LaTeXFeatures.h"
17 #include "MathAtom.h"
18 #include "MathParser.h"
19 #include "MathStream.h"
20 #include "MathSupport.h"
21
22 #include "support/debug.h"
23 #include "support/docstream.h"
24 #include "support/textutils.h"
25
26 #include <boost/scoped_ptr.hpp>
27
28
29 namespace lyx {
30
31 InsetMathSymbol::InsetMathSymbol(latexkeys const * l)
32         : sym_(l), h_(0), kerning_(0), scriptable_(false)
33 {}
34
35
36 InsetMathSymbol::InsetMathSymbol(char const * name)
37         : sym_(in_word_set(from_ascii(name))), h_(0),
38           kerning_(0), scriptable_(false)
39 {}
40
41
42 InsetMathSymbol::InsetMathSymbol(docstring const & name)
43         : sym_(in_word_set(name)), h_(0), kerning_(0), scriptable_(false)
44 {}
45
46
47 Inset * InsetMathSymbol::clone() const
48 {
49         return new InsetMathSymbol(*this);
50 }
51
52
53 docstring InsetMathSymbol::name() const
54 {
55         return sym_->name;
56 }
57
58
59 void InsetMathSymbol::metrics(MetricsInfo & mi, Dimension & dim) const
60 {
61         //lyxerr << "metrics: symbol: '" << sym_->name
62         //      << "' in font: '" << sym_->inset
63         //      << "' drawn as: '" << sym_->draw
64         //      << "'" << endl;
65
66         bool const italic_upcase_greek = sym_->inset == "cmr" &&
67                                          sym_->extra == "mathalpha" &&
68                                          mi.base.fontname == "mathit";
69         std::string const font = italic_upcase_greek ? "cmm" : sym_->inset;
70         int const em = mathed_char_width(mi.base.font, 'M');
71         FontSetChanger dummy(mi.base, from_ascii(font));
72         mathed_string_dim(mi.base.font, sym_->draw, dim);
73         docstring::const_reverse_iterator rit = sym_->draw.rbegin();
74         kerning_ = mathed_char_kerning(mi.base.font, *rit);
75         // correct height for broken cmex and wasy font
76         if (sym_->inset == "cmex" || sym_->inset == "wasy") {
77                 h_ = 4 * dim.des / 5;
78                 dim.asc += h_;
79                 dim.des -= h_;
80         }
81         // seperate things a bit
82         if (isRelOp())
83                 dim.wid += static_cast<int>(0.5 * em + 0.5);
84         else
85                 dim.wid += static_cast<int>(0.1667 * em + 0.5);
86
87         scriptable_ = false;
88         if (mi.base.style == LM_ST_DISPLAY)
89                 if (sym_->inset == "cmex" || sym_->inset == "esint" ||
90                     sym_->extra == "funclim")
91                         scriptable_ = true;
92 }
93
94
95 void InsetMathSymbol::draw(PainterInfo & pi, int x, int y) const
96 {
97         //lyxerr << "metrics: symbol: '" << sym_->name
98         //      << "' in font: '" << sym_->inset
99         //      << "' drawn as: '" << sym_->draw
100         //      << "'" << endl;
101
102         bool const italic_upcase_greek = sym_->inset == "cmr" &&
103                                          sym_->extra == "mathalpha" &&
104                                          pi.base.fontname == "mathit";
105         std::string const font = italic_upcase_greek ? "cmm" : sym_->inset;
106         int const em = mathed_char_width(pi.base.font, 'M');
107         if (isRelOp())
108                 x += static_cast<int>(0.25*em+0.5);
109         else
110                 x += static_cast<int>(0.0833*em+0.5);
111
112         FontSetChanger dummy(pi.base, from_ascii(font));
113         pi.draw(x, y - h_, sym_->draw);
114 }
115
116
117 InsetMath::mode_type InsetMathSymbol::currentMode() const
118 {
119         return sym_->extra == "textmode" ? TEXT_MODE : MATH_MODE;
120 }
121
122
123 bool InsetMathSymbol::isRelOp() const
124 {
125         return sym_->extra == "mathrel";
126 }
127
128
129 bool InsetMathSymbol::isOrdAlpha() const
130 {
131         return sym_->extra == "mathord" || sym_->extra == "mathalpha";
132 }
133
134
135 bool InsetMathSymbol::isScriptable() const
136 {
137         return scriptable_;
138 }
139
140
141 bool InsetMathSymbol::takesLimits() const
142 {
143         return
144                 sym_->inset == "cmex" ||
145                 sym_->inset == "lyxboldsymb" ||
146                 sym_->inset == "esint" ||
147                 sym_->extra == "funclim";
148 }
149
150
151 void InsetMathSymbol::normalize(NormalStream & os) const
152 {
153         os << "[symbol " << name() << ']';
154 }
155
156
157 void InsetMathSymbol::maple(MapleStream & os) const
158 {
159         if (name() == "cdot")
160                 os << '*';
161         else if (name() == "infty")
162                 os << "infinity";
163         else
164                 os << name();
165 }
166
167 void InsetMathSymbol::maxima(MaximaStream & os) const
168 {
169         if (name() == "cdot")
170                 os << '*';
171         else if (name() == "infty")
172                 os << "inf";
173         else if (name() == "pi")
174                 os << "%pi";
175         else
176                 os << name();
177 }
178
179
180 void InsetMathSymbol::mathematica(MathematicaStream & os) const
181 {
182         if ( name() == "pi")    { os << "Pi"; return;}
183         if ( name() == "infty") { os << "Infinity"; return;}
184         if ( name() == "cdot")  { os << '*'; return;}
185         os << name();
186 }
187
188
189 void InsetMathSymbol::mathmlize(MathStream & os) const
190 {
191         // FIXME We may need to do more interesting things
192         // with MathMLtype.
193         char const * type = sym_->MathMLtype();
194         os << '<' << type << "> ";
195         if (sym_->xmlname == "x")
196                 // unknown so far
197                 os << name();
198         else
199                 os << sym_->xmlname;
200         os << " </" << type << '>';
201 }
202
203
204 void InsetMathSymbol::htmlize(HtmlStream & os, bool spacing) const
205 {
206         // FIXME We may need to do more interesting things
207         // with MathMLtype.
208         char const * type = sym_->MathMLtype();
209         bool op = (std::string(type) == "mo");
210
211         if (sym_->xmlname == "x")
212                 // unknown so far
213                 os << ' ' << name() << ' ';
214         else if (op && spacing)
215                 os << ' ' << sym_->xmlname << ' ';
216         else
217                 os << sym_->xmlname;
218 }
219
220
221 void InsetMathSymbol::htmlize(HtmlStream & os) const
222 {
223         htmlize(os, true);
224 }
225
226
227 void InsetMathSymbol::octave(OctaveStream & os) const
228 {
229         if (name() == "cdot")
230                 os << '*';
231         else
232                 os << name();
233 }
234
235
236 void InsetMathSymbol::write(WriteStream & os) const
237 {
238         boost::scoped_ptr<MathEnsurer> ensurer;
239         if (currentMode() != TEXT_MODE)
240                 ensurer.reset(new MathEnsurer(os));
241         os << '\\' << name();
242
243         // $,#, etc. In theory the restriction based on catcodes, but then
244         // we do not handle catcodes very well, let alone cat code changes,
245         // so being outside the alpha range is good enough.
246         if (name().size() == 1 && !isAlphaASCII(name()[0]))
247                 return;
248
249         os.pendingSpace(true);
250 }
251
252
253 void InsetMathSymbol::infoize2(odocstream & os) const
254 {
255         os << from_ascii("Symbol: ") << name();
256 }
257
258
259 void InsetMathSymbol::validate(LaTeXFeatures & features) const
260 {
261         // this is not really the ideal place to do this, but we can't
262         // validate in InsetMathExInt.
263         if (features.runparams().math_flavor == OutputParams::MathAsHTML
264             && sym_->name == from_ascii("int")) {
265                 features.addCSSSnippet(
266                         "span.limits{display: inline-block; vertical-align: middle; text-align:center; font-size: 75%;}\n"
267                         "span.limits span{display: block;}\n"
268                         "span.intsym{font-size: 150%;}\n"
269                         "sub.limit{font-size: 75%;}\n"
270                         "sup.limit{font-size: 75%;}");
271         } else {
272                 if (!sym_->requires.empty())
273                         features.require(sym_->requires);
274         }
275 }
276
277 } // namespace lyx