]> git.lyx.org Git - lyx.git/blob - src/mathed/InsetMathFont.cpp
Get rid of Inset::setPosCache
[lyx.git] / src / mathed / InsetMathFont.cpp
1 /**
2  * \file InsetMathFont.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 "InsetMathFont.h"
14
15 #include "LaTeXFeatures.h"
16 #include "MathData.h"
17 #include "MathStream.h"
18 #include "MathParser.h"
19 #include "MetricsInfo.h"
20
21 #include "support/gettext.h"
22 #include "support/lassert.h"
23 #include "support/lstrings.h"
24
25 #include <ostream>
26
27 using namespace lyx::support;
28
29 namespace lyx {
30
31 InsetMathFont::InsetMathFont(Buffer * buf, latexkeys const * key)
32         : InsetMathNest(buf, 1), key_(key)
33 {}
34
35
36 Inset * InsetMathFont::clone() const
37 {
38         return new InsetMathFont(*this);
39 }
40
41
42 std::string InsetMathFont::font() const
43 {
44         LASSERT(isAscii(key_->name), return "mathnormal");
45         return to_ascii(key_->name);
46 }
47
48
49 InsetMath::mode_type InsetMathFont::currentMode() const
50 {
51         if (key_->extra == "mathmode")
52                 return MATH_MODE;
53         if (key_->extra == "textmode")
54                 return TEXT_MODE;
55         return UNDECIDED_MODE;
56 }
57
58
59 bool InsetMathFont::lockedMode() const
60 {
61         if (key_->extra == "forcetext")
62                 return true;
63         return false;
64 }
65
66
67 void InsetMathFont::write(WriteStream & os) const
68 {
69         // Close the mode changing command inserted during export if
70         // we are going to output another mode changing command that
71         // actually doesn't change mode. This avoids exporting things
72         // such as \ensuremath{a\mathit{b}} or \textit{a\text{b}} and
73         // produce instead \ensuremath{a}\mathit{b} and \textit{a}\text{b}.
74         if (os.pendingBrace()
75             && ((currentMode() == TEXT_MODE && os.textMode())
76                     || (currentMode() == MATH_MODE && !os.textMode()))) {
77                 os.os() << '}';
78                 os.pendingBrace(false);
79                 os.textMode(!os.textMode());
80         }
81         InsetMathNest::write(os);
82 }
83
84
85 void InsetMathFont::metrics(MetricsInfo & mi, Dimension & dim) const
86 {
87         Changer dummy = mi.base.changeFontSet(font());
88         cell(0).metrics(mi, dim);
89         metricsMarkers(mi, dim);
90 }
91
92
93 void InsetMathFont::draw(PainterInfo & pi, int x, int y) const
94 {
95         Changer dummy = pi.base.changeFontSet(font());
96         cell(0).draw(pi, x + 1, y);
97         drawMarkers(pi, x, y);
98 }
99
100
101 void InsetMathFont::metricsT(TextMetricsInfo const & mi, Dimension &) const
102 {
103         // FIXME: BROKEN!
104         Dimension dim;
105         cell(0).metricsT(mi, dim);
106 }
107
108
109 void InsetMathFont::drawT(TextPainter & pain, int x, int y) const
110 {
111         cell(0).drawT(pain, x, y);
112 }
113
114
115 docstring InsetMathFont::name() const
116 {
117         return key_->name;
118 }
119
120
121 void InsetMathFont::validate(LaTeXFeatures & features) const
122 {
123         InsetMathNest::validate(features);
124         std::string fontname = font();
125         if (features.runparams().isLaTeX()) {
126                 // Make sure amssymb is put in preamble if Blackboard Bold or
127                 // Fraktur used:
128                 if (fontname == "mathfrak" || fontname == "mathbb")
129                         features.require("amssymb");
130                 if (fontname == "text" || fontname == "textnormal"
131                     || (fontname.length() == 6 && fontname.substr(0, 4) == "text"))
132                         features.require("amstext");
133                 if (fontname == "mathscr")
134                         features.require("mathrsfs");
135                 if (fontname == "textipa")
136                         features.require("tipa");
137                 if (fontname == "ce" || fontname == "cf")
138                         features.require("mhchem");
139         } else if (features.runparams().math_flavor == OutputParams::MathAsHTML) {
140                 features.addCSSSnippet(
141                         "span.normal{font: normal normal normal inherit serif;}\n"
142                         "span.fraktur{font: normal normal normal inherit cursive;}\n"
143                         "span.bold{font: normal normal bold inherit serif;}\n"
144                         "span.script{font: normal normal normal inherit cursive;}\n"
145                         "span.italic{font: italic normal normal inherit serif;}\n"
146                         "span.sans{font: normal normal normal inherit sans-serif;}\n"
147                         "span.monospace{font: normal normal normal inherit monospace;}\n"
148                         "span.noun{font: normal small-caps normal inherit normal;}");
149         }
150 }
151
152
153 // The fonts we want to support are listed in lib/symbols
154 void InsetMathFont::htmlize(HtmlStream & os) const
155 {
156         // FIXME These are not quite right, because they do not nest
157         // correctly. A proper fix would presumably involve tracking
158         // the fonts already in effect.
159         std::string variant;
160         docstring const & tag = key_->name;
161         if (tag == "mathnormal" || tag == "mathrm"
162             || tag == "text" || tag == "textnormal"
163             || tag == "textrm" || tag == "textup"
164             || tag == "textmd")
165                 variant = "normal";
166         else if (tag == "frak" || tag == "mathfrak")
167                 variant = "fraktur";
168         else if (tag == "mathbb" || tag == "mathbf"
169                  || tag == "textbf")
170                 variant = "bold";
171         else if (tag == "mathcal")
172                 variant = "script";
173         else if (tag == "mathit" || tag == "textsl"
174                  || tag == "emph" || tag == "textit")
175                 variant = "italic";
176         else if (tag == "mathsf" || tag == "textsf")
177                 variant = "sans";
178         else if (tag == "mathtt" || tag == "texttt")
179                 variant = "monospace";
180         else if (tag == "textipa" || tag == "textsc" || tag == "noun")
181                 variant = "noun";
182
183         docstring const beg = (tag.size() < 4) ? from_ascii("") : tag.substr(0, 4);
184         if (!variant.empty()) {
185                 os << MTag("span", "class='" + variant + "'")
186                    << cell(0)
187                    << ETag("span");
188         } else
189                 os << cell(0);
190 }
191
192
193 // The fonts we want to support are listed in lib/symbols
194 void InsetMathFont::mathmlize(MathStream & os) const
195 {
196         // FIXME These are not quite right, because they do not nest
197         // correctly. A proper fix would presumably involve tracking
198         // the fonts already in effect.
199         std::string variant;
200         docstring const & tag = key_->name;
201         if (tag == "mathnormal" || tag == "mathrm"
202             || tag == "text" || tag == "textnormal"
203             || tag == "textrm" || tag == "textup"
204             || tag == "textmd")
205                 variant = "normal";
206         else if (tag == "frak" || tag == "mathfrak")
207                 variant = "fraktur";
208         else if (tag == "mathbb" || tag == "mathbf"
209                  || tag == "textbf")
210                 variant = "bold";
211         else if (tag == "mathcal")
212                 variant = "script";
213         else if (tag == "mathit" || tag == "textsl"
214                  || tag == "emph" || tag == "textit")
215                 variant = "italic";
216         else if (tag == "mathsf" || tag == "textsf")
217                 variant = "sans-serif";
218         else if (tag == "mathtt" || tag == "texttt")
219                 variant = "monospace";
220         // no support at present for textipa, textsc, noun
221
222         if (!variant.empty()) {
223                 if (tag == "mathbb") {
224                         os << MTag("mstyle", "class='mathbb' mathvariant='" + variant + "'")
225                            << cell(0)
226                            << ETag("mstyle");
227                 } else {
228                         os << MTag("mstyle", "mathvariant='" + variant + "'")
229                                  << cell(0)
230                                  << ETag("mstyle");
231                 }
232         } else
233                 os << cell(0);
234 }
235
236
237 void InsetMathFont::infoize(odocstream & os) const
238 {
239         os << bformat(_("Font: %1$s"), key_->name);
240 }
241
242
243 } // namespace lyx