]> git.lyx.org Git - features.git/blob - src/mathed/math_factory.C
several small fixes for mathed
[features.git] / src / mathed / math_factory.C
1 /**
2  * \file math_factory.C
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 "math_factory.h"
14 #include "math_parser.h"
15 #include "math_arrayinset.h"
16 #include "math_amsarrayinset.h"
17 #include "math_binominset.h"
18 #include "math_boxinset.h"
19 #include "math_boldsymbolinset.h"
20 #include "math_casesinset.h"
21 #include "math_colorinset.h"
22 #include "math_decorationinset.h"
23 #include "math_dfracinset.h"
24 #include "math_dotsinset.h"
25 #include "math_ertinset.h"
26 #include "math_fboxinset.h"
27 #include "math_frameboxinset.h"
28 #include "math_fontinset.h"
29 #include "math_fontoldinset.h"
30 #include "math_fracinset.h"
31 #include "math_kerninset.h"
32 #include "math_lefteqninset.h"
33 #include "math_macro.h"
34 #include "math_macroarg.h"
35 #include "math_macrotable.h"
36 #include "math_macrotemplate.h"
37 #include "math_makeboxinset.h"
38 #include "math_oversetinset.h"
39 #include "math_parboxinset.h"
40 #include "math_rootinset.h"
41 #include "math_sizeinset.h"
42 #include "math_spaceinset.h"
43 #include "math_splitinset.h"
44 #include "math_sqrtinset.h"
45 #include "math_stackrelinset.h"
46 #include "math_substackinset.h"
47 #include "math_symbolinset.h"
48 #include "math_tabularinset.h"
49 #include "math_undersetinset.h"
50 #include "math_unknowninset.h"
51 #include "math_xarrowinset.h"
52
53 //#include "insets/insetref.h"
54 #include "ref_inset.h"
55
56 #include "debug.h"
57 #include "math_support.h"
58
59 #include "support/std_sstream.h"
60 #include "support/filetools.h" // LibFileSearch
61 #include "support/lstrings.h"
62
63 #include "frontends/lyx_gui.h"
64
65 #include <fstream>
66
67 using lyx::support::LibFileSearch;
68 using lyx::support::split;
69
70 using std::string;
71 using std::endl;
72 using std::istringstream;
73
74 bool has_math_fonts;
75
76
77 namespace {
78
79 // file scope
80 typedef std::map<string, latexkeys> WordList;
81 WordList theWordList;
82
83
84 bool math_font_available(string & name)
85 {
86         LyXFont f;
87         augmentFont(f, name);
88
89         // Do we have the font proper?
90         if (lyx_gui::font_available(f))
91                 return true;
92
93         // can we fake it?
94         if (name == "eufrak") {
95                 name = "lyxfakefrak";
96                 return true;
97         }
98
99         lyxerr[Debug::MATHED]
100                 << "font " << name << " not available and I can't fake it"
101                 << endl;
102         return false;
103 }
104
105
106 void initSymbols()
107 {
108         string const filename = LibFileSearch(string(), "symbols");
109         lyxerr[Debug::MATHED] << "read symbols from " << filename << endl;
110         if (filename.empty()) {
111                 lyxerr << "Could not find symbols file" << endl;
112                 return;
113         }
114
115         std::ifstream fs(filename.c_str());
116         string line;
117         bool skip = false;
118         while (getline(fs, line)) {
119                 int charid     = 0;
120                 int fallbackid = 0;
121                 if (!line.empty() && line[0] == '#')
122                         continue;
123
124                 // special case of iffont/else/endif
125                 if (line.size() >= 7 && line.substr(0, 6) == "iffont") {
126                         istringstream is(line);
127                         string tmp;
128                         is >> tmp;
129                         is >> tmp;
130                         skip = !math_font_available(tmp);
131                         continue;
132                 } else if (line.size() >= 4 && line.substr(0, 4) == "else") {
133                         skip = !skip;
134                 } else if (line.size() >= 5 && line.substr(0, 5) == "endif") {
135                         skip = false;
136                         continue;
137                 } else if (skip)
138                         continue;
139
140                 // special case of pre-defined macros
141                 if (line.size() > 8 && line.substr(0, 5) == "\\def\\") {
142                         //lyxerr << "defining: '" << line << '\'' << endl;
143                         istringstream is(line);
144                         MathMacroTable::create(MathAtom(new MathMacroTemplate(is)));
145                         continue;
146                 }
147
148                 istringstream is(line);
149                 latexkeys tmp;
150                 is >> tmp.name >> tmp.inset;
151                 if (isFontName(tmp.inset))
152                         is >> charid >> fallbackid >> tmp.extra >> tmp.xmlname;
153                 else
154                         is >> tmp.extra;
155                 if (!is) {
156                         lyxerr[Debug::MATHED] << "skipping line '" << line << '\'' << endl;
157                         lyxerr[Debug::MATHED]
158                                 << tmp.name << ' ' << tmp.inset << ' ' << tmp.extra << endl;
159                         continue;
160                 }
161
162                 if (isFontName(tmp.inset)) {
163                         // tmp.inset _is_ the fontname here.
164                         // create fallbacks if necessary
165
166                         // symbol font is not available sometimes
167                         string symbol_font = "lyxsymbol";
168
169                         if (tmp.extra == "func" || tmp.extra == "funclim" || tmp.extra == "special") {
170                                 lyxerr[Debug::MATHED] << "symbol abuse for " << tmp.name << endl;
171                                 tmp.draw = tmp.name;
172                         } else if (math_font_available(tmp.inset)) {
173                                 lyxerr[Debug::MATHED] << "symbol available for " << tmp.name << endl;
174                                 tmp.draw += char(charid);
175                         } else if (fallbackid && math_font_available(symbol_font)) {
176                                 if (tmp.inset == "cmex")
177                                         tmp.inset  = "lyxsymbol";
178                                 else
179                                         tmp.inset  = "lyxboldsymbol";
180                                 lyxerr[Debug::MATHED] << "symbol fallback for " << tmp.name << endl;
181                                 tmp.draw += char(fallbackid);
182                         } else {
183                                 lyxerr[Debug::MATHED] << "faking " << tmp.name << endl;
184                                 tmp.draw = tmp.name;
185                                 tmp.inset = "lyxtex";
186                         }
187                 } else {
188                         // it's a proper inset
189                         lyxerr[Debug::MATHED] << "inset " << tmp.inset
190                                               << " used for " << tmp.name
191                                               << endl;
192                 }
193
194                 if (theWordList.find(tmp.name) != theWordList.end())
195                         lyxerr[Debug::MATHED]
196                                 << "readSymbols: inset " << tmp.name
197                                 << " already exists." << endl;
198                 else
199                         theWordList[tmp.name] = tmp;
200
201                 lyxerr[Debug::MATHED]
202                         << "read symbol '" << tmp.name
203                         << "  inset: " << tmp.inset
204                         << "  draw: " << int(tmp.draw.empty() ? 0 : tmp.draw[0])
205                         << "  extra: " << tmp.extra
206                         << '\'' << endl;
207         }
208         string tmp = "cmm";
209         string tmp2 = "cmsy";
210         has_math_fonts = math_font_available(tmp) && math_font_available(tmp2);
211 }
212
213
214 } // namespace anon
215
216
217 void initMath()
218 {
219         static bool initialized = false;
220         if (!initialized) {
221                 initSymbols();
222                 initialized = true;
223         }
224 }
225
226
227 latexkeys const * in_word_set(string const & str)
228 {
229         WordList::iterator it = theWordList.find(str);
230         //lyxerr << "looking up '" << str << "' found: "
231         // << (it != theWordList.end()) << endl;
232         return (it != theWordList.end()) ? &(it->second) : 0;
233 }
234
235
236 MathAtom createMathInset(string const & s)
237 {
238         //lyxerr << "creating inset with name: '" << s << '\'' << endl;;
239         latexkeys const * l = in_word_set(s);
240         if (l) {
241                 string const & inset = l->inset;
242                 //lyxerr << " found inset: '" << inset << '\'' << endl;
243                 if (inset == "ref")
244                         return MathAtom(new RefInset(l->name));
245                 if (inset == "overset")
246                         return MathAtom(new MathOversetInset);
247                 if (inset == "underset")
248                         return MathAtom(new MathUndersetInset);
249                 if (inset == "decoration")
250                         return MathAtom(new MathDecorationInset(l));
251                 if (inset == "space")
252                         return MathAtom(new MathSpaceInset(l->name));
253                 if (inset == "dots")
254                         return MathAtom(new MathDotsInset(l));
255                 if (inset == "mbox")
256                         return MathAtom(new MathBoxInset(l->name));
257                 if (inset == "parbox")
258                         return MathAtom(new MathParboxInset);
259                 if (inset == "fbox")
260                         return MathAtom(new MathFboxInset(l));
261                 if (inset == "style")
262                         return MathAtom(new MathSizeInset(l));
263                 if (inset == "font")
264                         return MathAtom(new MathFontInset(l));
265                 if (inset == "oldfont")
266                         return MathAtom(new MathFontOldInset(l));
267                 if (inset == "matrix")
268                         return MathAtom(new MathAMSArrayInset(s));
269                 return MathAtom(new MathSymbolInset(l));
270         }
271
272         if (s.size() == 2 && s[0] == '#' && s[1] >= '1' && s[1] <= '9')
273                 return MathAtom(new MathMacroArgument(s[1] - '0'));
274         if (s.size() == 3 && s[0] == '\\' && s[1] == '#'
275                         && s[2] >= '1' && s[2] <= '9')
276                 return MathAtom(new MathMacroArgument(s[2] - '0'));
277         if (s == "framebox")
278                 return MathAtom(new MathFrameboxInset);
279         if (s == "makebox")
280                 return MathAtom(new MathMakeboxInset);
281         if (s == "kern")
282                 return MathAtom(new MathKernInset);
283         if (s == "xrightarrow" || s == "xleftarrow")
284                 return MathAtom(new MathXArrowInset(s));
285         if (s == "split" || s == "gathered" || s == "aligned")
286                 return MathAtom(new MathSplitInset(s));
287         if (s == "cases")
288                 return MathAtom(new MathCasesInset);
289         if (s == "substack")
290                 return MathAtom(new MathSubstackInset);
291         if (s == "subarray" || s == "array")
292                 return MathAtom(new MathArrayInset(s, 1, 1));
293         if (s == "sqrt")
294                 return MathAtom(new MathSqrtInset);
295         if (s == "root")
296                 return MathAtom(new MathRootInset);
297         if (s == "tabular")
298                 return MathAtom(new MathTabularInset(s, 1, 1));
299         if (s == "stackrel")
300                 return MathAtom(new MathStackrelInset);
301         if (s == "binom" || s == "choose")
302                 return MathAtom(new MathBinomInset(s == "choose"));
303         if (s == "over" || s == "frac")
304                 return MathAtom(new MathFracInset);
305         //if (s == "infer")
306         //      return MathAtom(new MathInferInset);
307         if (s == "atop")
308                 return MathAtom(new MathFracInset(true));
309         if (s == "lefteqn")
310                 return MathAtom(new MathLefteqnInset);
311         if (s == "lyxert")
312                 return MathAtom(new MathErtInset);
313         if (s == "boldsymbol")
314                 return MathAtom(new MathBoldsymbolInset);
315         if (s == "color")
316                 return MathAtom(new MathColorInset(true));
317         if (s == "textcolor")
318                 return MathAtom(new MathColorInset(false));
319         if (s == "dfrac")
320                 return MathAtom(new MathDfracInset);
321
322         if (MathMacroTable::has(s))
323                 return MathAtom(new MathMacro(s));
324
325         //lyxerr << "creating inset 2 with name: '" << s << '\'' << endl;
326         return MathAtom(new MathUnknownInset(s));
327 }
328
329
330 bool createMathInset_fromDialogStr(string const & str, MathArray & ar)
331 {
332         // An example str:
333         // "ref LatexCommand \\ref{sec:Title}\n\\end_inset\n\n";
334         string name;
335         string body = split(str, name, ' ');
336
337         if (name != "ref" )
338                 return false;
339
340         // body comes with a head "LatexCommand " and a
341         // tail "\nend_inset\n\n". Strip them off.
342         string trimmed;
343         body = split(body, trimmed, ' ');
344         split(body, trimmed, '\n');
345
346         mathed_parse_cell(ar, trimmed);
347         if (ar.size() != 1)
348                 return false;
349
350         return ar[0].nucleus();
351 }