]> git.lyx.org Git - lyx.git/blob - src/frontends/qt4/GuiFontLoader.cpp
shuffle stuff around; minor coding style issues
[lyx.git] / src / frontends / qt4 / GuiFontLoader.cpp
1 /**
2  * \file GuiFontLoader.cpp
3  * This file is part of LyX, the document processor.
4  * Licence details can be found in the file COPYING.
5  *
6  * \author Asger Alstrup
7  * \author John Levon
8  *
9  * Full author contact details are available in file CREDITS.
10  */
11
12 #include <config.h>
13
14 #include "GuiFontLoader.h"
15 #include "qt_helpers.h"
16
17 #include "debug.h"
18 #include "LyXRC.h"
19
20 #include "support/convert.h"
21 #include "support/filetools.h"
22 #include "support/lstrings.h"
23 #include "support/Systemcall.h"
24 #include "support/Package.h"
25 #include "support/os.h"
26
27 #include <boost/tuple/tuple.hpp>
28
29 #include <QFontInfo>
30 #include <QFontDatabase>
31
32 using lyx::support::contains;
33 using lyx::support::package;
34 using lyx::support::addPath;
35 using lyx::support::addName;
36
37 using std::endl;
38 using std::make_pair;
39
40 using std::pair;
41 using std::vector;
42 using std::string;
43
44 #if QT_VERSION >= 0x040200
45 string const math_fonts[] = {"cmex10", "cmmi10", "cmr10", "cmsy10",
46         "eufm10", "msam10", "msbm10", "wasy10", "esint10"};
47 int const num_math_fonts = sizeof(math_fonts) / sizeof(*math_fonts);
48 #endif
49
50
51 namespace lyx {
52 namespace frontend {
53
54 namespace {
55
56 struct symbol_font {
57         Font::FONT_FAMILY lyx_family;
58         string family;
59         string xlfd;
60 };
61
62 symbol_font symbol_fonts[] = {
63         { Font::SYMBOL_FAMILY,
64                 "symbol",
65                 "-*-symbol-*-*-*-*-*-*-*-*-*-*-adobe-fontspecific" },
66
67         { Font::CMR_FAMILY,
68                 "cmr10",
69                 "-*-cmr10-medium-*-*-*-*-*-*-*-*-*-*-*" },
70
71         { Font::CMSY_FAMILY,
72                 "cmsy10",
73                 "-*-cmsy10-*-*-*-*-*-*-*-*-*-*-*-*" },
74
75         { Font::CMM_FAMILY,
76                 "cmmi10",
77                 "-*-cmmi10-medium-*-*-*-*-*-*-*-*-*-*-*" },
78
79         { Font::CMEX_FAMILY,
80                 "cmex10",
81                 "-*-cmex10-*-*-*-*-*-*-*-*-*-*-*-*" },
82
83         { Font::MSA_FAMILY,
84                 "msam10",
85                 "-*-msam10-*-*-*-*-*-*-*-*-*-*-*-*" },
86
87         { Font::MSB_FAMILY,
88                 "msbm10",
89                 "-*-msbm10-*-*-*-*-*-*-*-*-*-*-*-*" },
90
91         { Font::EUFRAK_FAMILY,
92                 "eufm10",
93                 "-*-eufm10-medium-*-*-*-*-*-*-*-*-*-*-*" },
94
95         { Font::WASY_FAMILY,
96                 "wasy10",
97                 "-*-wasy10-medium-*-*-*-*-*-*-*-*-*-*-*" },
98
99         { Font::ESINT_FAMILY,
100                 "esint10",
101                 "-*-esint10-medium-*-*-*-*-*-*-*-*-*-*-*" }
102 };
103
104 size_t const nr_symbol_fonts = sizeof(symbol_fonts) / sizeof(symbol_font);
105
106
107 string getRawName(string const & family)
108 {
109         for (size_t i = 0; i < nr_symbol_fonts; ++i)
110                 if (family == symbol_fonts[i].family)
111                         return symbol_fonts[i].xlfd;
112
113         LYXERR(Debug::FONT) << "BUG: family not found !" << endl;
114         return string();
115 }
116
117
118 string const symbolFamily(Font::FONT_FAMILY family)
119 {
120         for (size_t i = 0; i < nr_symbol_fonts; ++i) {
121                 if (family == symbol_fonts[i].lyx_family)
122                         return symbol_fonts[i].family;
123         }
124         return string();
125 }
126
127
128 bool isSymbolFamily(Font::FONT_FAMILY family)
129 {
130         return family >= Font::SYMBOL_FAMILY &&
131                family <= Font::ESINT_FAMILY;
132 }
133
134
135 bool isChosenFont(QFont & font, string const & family)
136 {
137         // QFontInfo won't find a font that has only a few glyphs at unusual
138         // positions, e.g. the original esint10 font.
139         // The workaround is to add dummy glyphs at least at all ASCII
140         // positions.
141         QFontInfo fi(font);
142
143         LYXERR(Debug::FONT) << "got: " << fromqstr(fi.family()) << endl;
144
145         if (contains(fromqstr(fi.family()), family)) {
146                 LYXERR(Debug::FONT) << " got it ";
147                 return true;
148         }
149
150         return false;
151 }
152
153
154 pair<QFont, bool> const getSymbolFont(string const & family)
155 {
156         LYXERR(Debug::FONT) << "Looking for font family "
157                 << family << " ... ";
158         string upper = family;
159         upper[0] = toupper(family[0]);
160
161         QFont font;
162         font.setKerning(false);
163         font.setFamily(toqstr(family));
164
165         if (isChosenFont(font, family)) {
166                 LYXERR(Debug::FONT) << "normal!" << endl;
167                 return make_pair<QFont, bool>(font, true);
168         }
169
170         LYXERR(Debug::FONT) << "Trying " << upper << " ... ";
171         font.setFamily(toqstr(upper));
172
173         if (isChosenFont(font, upper)) {
174                 LYXERR(Debug::FONT) << "upper!" << endl;
175                 return make_pair<QFont, bool>(font, true);
176         }
177
178         // A simple setFamily() fails on Qt 2
179
180         string const rawName = getRawName(family);
181         LYXERR(Debug::FONT) << "Trying " << rawName << " ... ";
182         font.setRawName(toqstr(rawName));
183
184         if (isChosenFont(font, family)) {
185                 LYXERR(Debug::FONT) << "raw version!" << endl;
186                 return make_pair<QFont, bool>(font, true);
187         }
188
189         LYXERR(Debug::FONT) << " FAILED :-(" << endl;
190         return make_pair<QFont, bool>(font, false);
191 }
192
193 } // namespace anon
194
195
196 GuiFontLoader::GuiFontLoader()
197 {
198 #if QT_VERSION >= 0x040200
199         string const fonts_dir =
200                 addPath(package().system_support().absFilename(), "fonts");
201
202         for (int i = 0 ; i < num_math_fonts; ++i) {
203                 string const font_file = lyx::support::os::external_path(
204                                 addName(fonts_dir, math_fonts[i] + ".ttf"));
205                 int fontID = QFontDatabase::addApplicationFont(toqstr(font_file));
206
207                 LYXERR(Debug::FONT) << "Adding font " << font_file
208                                     << static_cast<const char *>
209                                         (fontID < 0 ? " FAIL" : " OK")
210                                     << endl;
211         }
212 #endif
213
214         for (int i1 = 0; i1 < Font::NUM_FAMILIES; ++i1)
215                 for (int i2 = 0; i2 < 2; ++i2)
216                         for (int i3 = 0; i3 < 4; ++i3)
217                                 for (int i4 = 0; i4 < 10; ++i4)
218                                         fontinfo_[i1][i2][i3][i4] = 0;
219 }
220
221
222 void GuiFontLoader::update()
223 {
224         for (int i1 = 0; i1 < Font::NUM_FAMILIES; ++i1) {
225                 for (int i2 = 0; i2 < 2; ++i2)
226                         for (int i3 = 0; i3 < 4; ++i3)
227                                 for (int i4 = 0; i4 < 10; ++i4) {
228                                         delete fontinfo_[i1][i2][i3][i4];
229                                         fontinfo_[i1][i2][i3][i4] = 0;
230                                 }
231         }
232 }
233
234
235 /////////////////////////////////////////////////
236
237
238 static QString makeFontName(string const & family, string const & foundry)
239 {
240         QString res = toqstr(family);
241         if (!foundry.empty())
242                 res += " [" + toqstr(foundry) + ']';
243         return res;
244 }
245
246
247 QLFontInfo::QLFontInfo(Font const & f)
248 {
249         font.setKerning(false);
250         string const pat = symbolFamily(f.family());
251         if (!pat.empty()) {
252                 bool tmp;
253                 boost::tie(font, tmp) = getSymbolFont(pat);
254         } else {
255                 switch (f.family()) {
256                 case Font::ROMAN_FAMILY: {
257                         QString family = makeFontName(lyxrc.roman_font_name,
258                                                                                                                                                  lyxrc.roman_font_foundry); 
259                         font.setFamily(family);
260 #ifdef Q_WS_MACX
261 #if QT_VERSION >= 0x040300
262                         // Workaround for a Qt bug, see http://bugzilla.lyx.org/show_bug.cgi?id=3684
263                         // It is reported to Trolltech at 02/06/07 against 4.3 final.
264                         // FIXME: Add an upper version limit as soon as the bug is fixed in Qt.
265                         if (family == "Times" && !font.exactMatch())
266                                 font.setFamily(QString::fromLatin1("Times New Roman"));
267 #endif
268 #endif
269                         break;
270                 }
271                 case Font::SANS_FAMILY:
272                         font.setFamily(makeFontName(lyxrc.sans_font_name,
273                                                     lyxrc.sans_font_foundry));
274                         break;
275                 case Font::TYPEWRITER_FAMILY:
276                         font.setFamily(makeFontName(lyxrc.typewriter_font_name,
277                                                     lyxrc.typewriter_font_foundry));
278                         break;
279                 default:
280                         break;
281                 }
282         }
283
284         switch (f.series()) {
285                 case Font::MEDIUM_SERIES:
286                         font.setWeight(QFont::Normal);
287                         break;
288                 case Font::BOLD_SERIES:
289                         font.setWeight(QFont::Bold);
290                         break;
291                 default:
292                         break;
293         }
294
295         switch (f.realShape()) {
296                 case Font::ITALIC_SHAPE:
297                 case Font::SLANTED_SHAPE:
298                         font.setItalic(true);
299                         break;
300                 default:
301                         break;
302         }
303
304         LYXERR(Debug::FONT) << "Font '" << to_utf8(f.stateText(0))
305                 << "' matched by\n" << fromqstr(font.family()) << endl;
306
307         // Is this an exact match?
308         if (font.exactMatch())
309                 LYXERR(Debug::FONT) << "This font is an exact match" << endl;
310         else
311                 LYXERR(Debug::FONT) << "This font is NOT an exact match"
312                                     << endl;
313
314         LYXERR(Debug::FONT) << "XFLD: " << fromqstr(font.rawName()) << endl;
315
316         font.setPointSizeF(convert<double>(lyxrc.font_sizes[f.size()])
317                                * lyxrc.zoom / 100.0);
318
319         LYXERR(Debug::FONT) << "The font has size: "
320                             << font.pointSizeF() << endl;
321
322         if (f.realShape() != Font::SMALLCAPS_SHAPE) {
323                 metrics.reset(new GuiFontMetrics(font));
324         }
325         else {
326                 // handle small caps ourselves ...
327                 Font smallfont = f;
328                 smallfont.decSize().decSize().setShape(Font::UP_SHAPE);
329                 QFont font2(font);
330                 font2.setKerning(false);
331                 font2.setPointSizeF(convert<double>(lyxrc.font_sizes[smallfont.size()])
332                                * lyxrc.zoom / 100.0);
333
334                 metrics.reset(new GuiFontMetrics(font, font2));
335         }
336
337 }
338
339
340 bool GuiFontLoader::available(Font const & f)
341 {
342         static vector<int> cache_set(Font::NUM_FAMILIES, false);
343         static vector<int> cache(Font::NUM_FAMILIES, false);
344
345         Font::FONT_FAMILY family = f.family();
346         if (cache_set[family])
347                 return cache[family];
348         cache_set[family] = true;
349
350         string const pat = symbolFamily(family);
351         if (pat.empty())
352                 // We don't care about non-symbol fonts
353                 return false;
354
355         pair<QFont, bool> tmp = getSymbolFont(pat);
356         if (!tmp.second)
357                 return false;
358
359         cache[family] = true;
360         return true;
361 }
362
363 } // namespace frontend
364 } // namespace lyx