]>
Commit | Line | Data |
---|---|---|
c801d85f | 1 | ///////////////////////////////////////////////////////////////////////////// |
409d5a58 | 2 | // Name: gtk/font.cpp |
c801d85f KB |
3 | // Purpose: |
4 | // Author: Robert Roebling | |
a81258be | 5 | // Id: $Id$ |
c801d85f | 6 | // Copyright: (c) 1998 Robert Roebling, Julian Smart and Markus Holzem |
0c5d3e1c | 7 | // Licence: wxWindows licence |
c801d85f KB |
8 | ///////////////////////////////////////////////////////////////////////////// |
9 | ||
0c5d3e1c VZ |
10 | // ============================================================================ |
11 | // declarations | |
12 | // ============================================================================ | |
13 | ||
14 | // ---------------------------------------------------------------------------- | |
15 | // headers | |
16 | // ---------------------------------------------------------------------------- | |
17 | ||
c801d85f | 18 | #ifdef __GNUG__ |
0c5d3e1c | 19 | #pragma implementation "font.h" |
c801d85f KB |
20 | #endif |
21 | ||
22 | #include "wx/font.h" | |
7beba2fc VZ |
23 | #include "wx/fontutil.h" |
24 | #include "wx/cmndata.h" | |
c801d85f | 25 | #include "wx/utils.h" |
5705323e | 26 | #include "wx/log.h" |
4cb122de | 27 | #include "wx/gdicmn.h" |
8636aed8 | 28 | #include "wx/tokenzr.h" |
c7985368 | 29 | #include "wx/settings.h" |
0c5d3e1c | 30 | |
c801d85f KB |
31 | #include <strings.h> |
32 | ||
9e691f46 | 33 | #include "wx/gtk/private.h" |
d06b34a7 | 34 | #include <gdk/gdkprivate.h> |
83624f79 | 35 | |
409d5a58 VZ |
36 | // ---------------------------------------------------------------------------- |
37 | // constants | |
38 | // ---------------------------------------------------------------------------- | |
39 | ||
40 | // the default size (in points) for the fonts | |
41 | static const int wxDEFAULT_FONT_SIZE = 12; | |
42 | ||
43 | // ---------------------------------------------------------------------------- | |
011ba5ed | 44 | // wxScaledFontList: maps the font sizes to the GDK fonts for the given font |
409d5a58 VZ |
45 | // ---------------------------------------------------------------------------- |
46 | ||
011ba5ed VZ |
47 | WX_DECLARE_HASH_MAP(int, GdkFont *, wxIntegerHash, wxIntegerEqual, |
48 | wxScaledFontList); | |
409d5a58 | 49 | |
0c5d3e1c VZ |
50 | // ---------------------------------------------------------------------------- |
51 | // wxFontRefData | |
52 | // ---------------------------------------------------------------------------- | |
53 | ||
54 | class wxFontRefData : public wxObjectRefData | |
c801d85f | 55 | { |
8bbe427f | 56 | public: |
409d5a58 VZ |
57 | // from broken down font parameters, also default ctor |
58 | wxFontRefData(int size = -1, | |
59 | int family = wxFONTFAMILY_DEFAULT, | |
60 | int style = wxFONTSTYLE_NORMAL, | |
61 | int weight = wxFONTWEIGHT_NORMAL, | |
0c5d3e1c VZ |
62 | bool underlined = FALSE, |
63 | const wxString& faceName = wxEmptyString, | |
7826e2dd | 64 | wxFontEncoding encoding = wxFONTENCODING_DEFAULT); |
409d5a58 VZ |
65 | |
66 | // from XFLD | |
67 | wxFontRefData(const wxString& fontname); | |
68 | ||
69 | // copy ctor | |
358fc25c | 70 | wxFontRefData( const wxFontRefData& data ); |
409d5a58 | 71 | |
0c5d3e1c VZ |
72 | virtual ~wxFontRefData(); |
73 | ||
409d5a58 VZ |
74 | // do we have the native font info? |
75 | bool HasNativeFont() const | |
76 | { | |
db16cab4 | 77 | #ifdef __WXGTK20__ |
011ba5ed VZ |
78 | // we always have a Pango font description |
79 | return TRUE; | |
80 | #else // GTK 1.x | |
81 | // only use m_nativeFontInfo if it had been initialized | |
409d5a58 | 82 | return !m_nativeFontInfo.IsDefault(); |
011ba5ed | 83 | #endif // GTK 2.0/1.x |
409d5a58 VZ |
84 | } |
85 | ||
86 | // setters: all of them also take care to modify m_nativeFontInfo if we | |
87 | // have it so as to not lose the information not carried by our fields | |
88 | void SetPointSize(int pointSize); | |
89 | void SetFamily(int family); | |
90 | void SetStyle(int style); | |
91 | void SetWeight(int weight); | |
92 | void SetUnderlined(bool underlined); | |
93 | void SetFaceName(const wxString& facename); | |
94 | void SetEncoding(wxFontEncoding encoding); | |
95 | ||
2b5f62a0 VZ |
96 | void SetNoAntiAliasing( bool no = TRUE ) { m_noAA = no; } |
97 | bool GetNoAntiAliasing() { return m_noAA; } | |
cd9a673c | 98 | |
011ba5ed VZ |
99 | // and this one also modifies all the other font data fields |
100 | void SetNativeFontInfo(const wxNativeFontInfo& info); | |
101 | ||
409d5a58 VZ |
102 | // debugger helper: shows what the font really is |
103 | // | |
104 | // VZ: I need this as my gdb either shows wildly wrong values or crashes | |
105 | // when I ask it to "p fontRefData" :-( | |
db16cab4 | 106 | #if defined(__WXDEBUG__) && !defined(__WXGTK20__) |
409d5a58 VZ |
107 | void Dump() const |
108 | { | |
109 | wxPrintf(_T("%s-%s-%s-%d-%d\n"), | |
110 | m_faceName.c_str(), | |
111 | m_weight == wxFONTWEIGHT_NORMAL | |
112 | ? _T("normal") | |
113 | : m_weight == wxFONTWEIGHT_BOLD | |
114 | ? _T("bold") | |
115 | : _T("light"), | |
116 | m_style == wxFONTSTYLE_NORMAL ? _T("regular") : _T("italic"), | |
117 | m_pointSize, | |
118 | m_encoding); | |
119 | } | |
120 | #endif // Debug | |
121 | ||
0c5d3e1c VZ |
122 | protected: |
123 | // common part of all ctors | |
124 | void Init(int pointSize, | |
125 | int family, | |
126 | int style, | |
127 | int weight, | |
128 | bool underlined, | |
129 | const wxString& faceName, | |
7826e2dd | 130 | wxFontEncoding encoding); |
0c5d3e1c | 131 | |
011ba5ed VZ |
132 | // set all fields from (already initialized and valid) m_nativeFontInfo |
133 | void InitFromNative(); | |
134 | ||
0c5d3e1c | 135 | private: |
2b5f62a0 | 136 | // clear m_scaled_xfonts if any |
011ba5ed VZ |
137 | void ClearGdkFonts(); |
138 | ||
2b5f62a0 | 139 | #ifndef __WXGTK20__ |
409d5a58 VZ |
140 | // the map of font sizes to "GdkFont *" |
141 | wxScaledFontList m_scaled_xfonts; | |
011ba5ed | 142 | #endif // GTK 2.0/1.x |
409d5a58 | 143 | |
f35c2659 RR |
144 | int m_pointSize; |
145 | int m_family, | |
146 | m_style, | |
147 | m_weight; | |
148 | bool m_underlined; | |
149 | wxString m_faceName; | |
db16cab4 | 150 | wxFontEncoding m_encoding; // Unused under GTK 2.0 |
2b5f62a0 | 151 | bool m_noAA; // No anti-aliasing |
7826e2dd | 152 | |
db16cab4 RR |
153 | // The native font info, basicly an XFLD under GTK 1.2 and |
154 | // the pango font description under GTK 2.0. | |
30764ab5 | 155 | wxNativeFontInfo m_nativeFontInfo; |
8bbe427f | 156 | |
f6bcfd97 | 157 | friend class wxFont; |
c801d85f KB |
158 | }; |
159 | ||
0c5d3e1c | 160 | // ---------------------------------------------------------------------------- |
cd9a673c | 161 | // wxFontRefData |
0c5d3e1c VZ |
162 | // ---------------------------------------------------------------------------- |
163 | ||
164 | void wxFontRefData::Init(int pointSize, | |
165 | int family, | |
166 | int style, | |
167 | int weight, | |
168 | bool underlined, | |
169 | const wxString& faceName, | |
7826e2dd | 170 | wxFontEncoding encoding) |
8bbe427f | 171 | { |
409d5a58 | 172 | m_family = family == wxFONTFAMILY_DEFAULT ? wxFONTFAMILY_SWISS : family; |
0c5d3e1c VZ |
173 | |
174 | m_faceName = faceName; | |
175 | ||
409d5a58 VZ |
176 | // we accept both wxDEFAULT and wxNORMAL here - should we? |
177 | m_style = style == wxDEFAULT ? wxFONTSTYLE_NORMAL : style; | |
178 | m_weight = weight == wxDEFAULT ? wxFONTWEIGHT_NORMAL : weight; | |
0c5d3e1c | 179 | |
409d5a58 VZ |
180 | // and here, do we really want to forbid creation of the font of the size |
181 | // 90 (the value of wxDEFAULT)?? | |
011ba5ed VZ |
182 | m_pointSize = pointSize == wxDEFAULT || pointSize == -1 |
183 | ? wxDEFAULT_FONT_SIZE | |
184 | : pointSize; | |
0c5d3e1c VZ |
185 | |
186 | m_underlined = underlined; | |
187 | m_encoding = encoding; | |
cd9a673c | 188 | |
2b5f62a0 | 189 | m_noAA = FALSE; |
011ba5ed VZ |
190 | |
191 | #ifdef __WXGTK20__ | |
46eed000 RR |
192 | // Create native font info |
193 | m_nativeFontInfo.description = pango_font_description_new(); | |
194 | ||
011ba5ed | 195 | // And set its values |
2b5f62a0 VZ |
196 | if (!m_faceName.empty()) |
197 | { | |
198 | pango_font_description_set_family( m_nativeFontInfo.description, wxGTK_CONV(m_faceName) ); | |
199 | } | |
200 | else | |
201 | { | |
202 | switch (m_family) | |
203 | { | |
204 | case wxFONTFAMILY_MODERN: | |
205 | case wxFONTFAMILY_TELETYPE: | |
206 | pango_font_description_set_family( m_nativeFontInfo.description, "monospace" ); | |
207 | break; | |
208 | case wxFONTFAMILY_ROMAN: | |
209 | pango_font_description_set_family( m_nativeFontInfo.description, "serif" ); | |
210 | break; | |
211 | case wxFONTFAMILY_SWISS: | |
212 | // SWISS = sans serif | |
213 | default: | |
214 | pango_font_description_set_family( m_nativeFontInfo.description, "sans" ); | |
215 | break; | |
216 | } | |
46eed000 | 217 | } |
cd9a673c | 218 | |
46eed000 RR |
219 | SetStyle( m_style ); |
220 | SetPointSize( m_pointSize ); | |
221 | SetWeight( m_weight ); | |
011ba5ed | 222 | #endif // GTK 2.0 |
358fc25c RR |
223 | } |
224 | ||
011ba5ed | 225 | void wxFontRefData::InitFromNative() |
409d5a58 | 226 | { |
2b5f62a0 VZ |
227 | m_noAA = FALSE; |
228 | ||
db16cab4 | 229 | #ifdef __WXGTK20__ |
db16cab4 RR |
230 | // Get native info |
231 | PangoFontDescription *desc = m_nativeFontInfo.description; | |
011ba5ed | 232 | |
db16cab4 RR |
233 | // init fields |
234 | m_faceName = wxGTK_CONV_BACK( pango_font_description_get_family( desc ) ); | |
011ba5ed | 235 | |
db16cab4 | 236 | m_pointSize = pango_font_description_get_size( desc ) / PANGO_SCALE; |
011ba5ed | 237 | |
db16cab4 RR |
238 | switch (pango_font_description_get_style( desc )) |
239 | { | |
240 | case PANGO_STYLE_NORMAL: | |
241 | m_style = wxFONTSTYLE_NORMAL; | |
242 | break; | |
243 | case PANGO_STYLE_ITALIC: | |
244 | m_style = wxFONTSTYLE_ITALIC; | |
245 | break; | |
246 | case PANGO_STYLE_OBLIQUE: | |
247 | m_style = wxFONTSTYLE_SLANT; | |
248 | break; | |
249 | } | |
250 | ||
251 | switch (pango_font_description_get_weight( desc )) | |
252 | { | |
253 | case PANGO_WEIGHT_ULTRALIGHT: | |
254 | m_weight = wxFONTWEIGHT_LIGHT; | |
255 | break; | |
256 | case PANGO_WEIGHT_LIGHT: | |
257 | m_weight = wxFONTWEIGHT_LIGHT; | |
258 | break; | |
259 | case PANGO_WEIGHT_NORMAL: | |
260 | m_weight = wxFONTWEIGHT_NORMAL; | |
261 | break; | |
262 | case PANGO_WEIGHT_BOLD: | |
263 | m_weight = wxFONTWEIGHT_BOLD; | |
264 | break; | |
265 | case PANGO_WEIGHT_ULTRABOLD: | |
266 | m_weight = wxFONTWEIGHT_BOLD; | |
267 | break; | |
268 | case PANGO_WEIGHT_HEAVY: | |
269 | m_weight = wxFONTWEIGHT_BOLD; | |
270 | break; | |
271 | } | |
011ba5ed | 272 | |
a732ef91 | 273 | if (m_faceName == wxT("monospace")) |
db16cab4 RR |
274 | { |
275 | m_family = wxFONTFAMILY_TELETYPE; | |
276 | } | |
277 | else if (m_faceName == wxT("sans")) | |
278 | { | |
279 | m_family = wxFONTFAMILY_SWISS; | |
280 | } | |
2b5f62a0 VZ |
281 | else if (m_faceName == wxT("serif")) |
282 | { | |
283 | m_family = wxFONTFAMILY_ROMAN; | |
284 | } | |
db16cab4 RR |
285 | else |
286 | { | |
287 | m_family = wxFONTFAMILY_UNKNOWN; | |
288 | } | |
289 | ||
290 | // Pango description are never underlined (?) | |
291 | m_underlined = FALSE; | |
292 | ||
293 | // Cannot we choose that | |
294 | m_encoding = wxFONTENCODING_SYSTEM; | |
011ba5ed | 295 | #else // GTK 1.x |
409d5a58 VZ |
296 | // get the font parameters from the XLFD |
297 | // ------------------------------------- | |
298 | ||
299 | m_faceName = m_nativeFontInfo.GetXFontComponent(wxXLFD_FAMILY); | |
300 | ||
301 | m_weight = wxFONTWEIGHT_NORMAL; | |
302 | ||
303 | wxString w = m_nativeFontInfo.GetXFontComponent(wxXLFD_WEIGHT).Upper(); | |
304 | if ( !w.empty() && w != _T('*') ) | |
305 | { | |
306 | // the test below catches all of BOLD, EXTRABOLD, DEMIBOLD, ULTRABOLD | |
307 | // and BLACK | |
fab591c5 RR |
308 | if ( ((w[0u] == _T('B') && (!wxStrcmp(w.c_str() + 1, wxT("OLD")) || |
309 | !wxStrcmp(w.c_str() + 1, wxT("LACK"))))) || | |
310 | wxStrstr(w.c_str() + 1, _T("BOLD")) ) | |
409d5a58 VZ |
311 | { |
312 | m_weight = wxFONTWEIGHT_BOLD; | |
313 | } | |
314 | else if ( w == _T("LIGHT") || w == _T("THIN") ) | |
315 | { | |
316 | m_weight = wxFONTWEIGHT_LIGHT; | |
317 | } | |
318 | } | |
319 | ||
320 | switch ( wxToupper(*m_nativeFontInfo. | |
321 | GetXFontComponent(wxXLFD_SLANT).c_str()) ) | |
322 | { | |
323 | case _T('I'): // italique | |
324 | m_style = wxFONTSTYLE_ITALIC; | |
325 | break; | |
326 | ||
327 | case _T('O'): // oblique | |
328 | m_style = wxFONTSTYLE_SLANT; | |
329 | break; | |
330 | ||
331 | default: | |
332 | m_style = wxFONTSTYLE_NORMAL; | |
333 | } | |
334 | ||
335 | long ptSize; | |
336 | if ( m_nativeFontInfo.GetXFontComponent(wxXLFD_POINTSIZE).ToLong(&ptSize) ) | |
337 | { | |
338 | // size in XLFD is in 10 point units | |
339 | m_pointSize = (int)(ptSize / 10); | |
340 | } | |
341 | else | |
342 | { | |
343 | m_pointSize = wxDEFAULT_FONT_SIZE; | |
344 | } | |
345 | ||
346 | // examine the spacing: if the font is monospaced, assume wxTELETYPE | |
347 | // family for compatibility with the old code which used it instead of | |
348 | // IsFixedWidth() | |
349 | if ( m_nativeFontInfo.GetXFontComponent(wxXLFD_SPACING).Upper() == _T('M') ) | |
350 | { | |
351 | m_family = wxFONTFAMILY_TELETYPE; | |
352 | } | |
353 | else // not monospaceed | |
354 | { | |
355 | // don't even try guessing it, it doesn't work for too many fonts | |
356 | // anyhow | |
357 | m_family = wxFONTFAMILY_UNKNOWN; | |
358 | } | |
359 | ||
360 | // X fonts are never underlined... | |
361 | m_underlined = FALSE; | |
362 | ||
363 | // deal with font encoding | |
364 | wxString | |
365 | registry = m_nativeFontInfo.GetXFontComponent(wxXLFD_REGISTRY).Upper(), | |
366 | encoding = m_nativeFontInfo.GetXFontComponent(wxXLFD_ENCODING).Upper(); | |
367 | ||
368 | if ( registry == _T("ISO8859") ) | |
369 | { | |
370 | int cp; | |
371 | if ( wxSscanf(encoding, wxT("%d"), &cp) == 1 ) | |
372 | { | |
373 | m_encoding = (wxFontEncoding)(wxFONTENCODING_ISO8859_1 + cp - 1); | |
374 | } | |
375 | } | |
376 | else if ( registry == _T("MICROSOFT") ) | |
377 | { | |
378 | int cp; | |
379 | if ( wxSscanf(encoding, wxT("cp125%d"), &cp) == 1 ) | |
380 | { | |
381 | m_encoding = (wxFontEncoding)(wxFONTENCODING_CP1250 + cp); | |
382 | } | |
383 | } | |
384 | else if ( registry == _T("KOI8") ) | |
385 | { | |
386 | m_encoding = wxFONTENCODING_KOI8; | |
387 | } | |
388 | else // unknown encoding | |
389 | { | |
011ba5ed | 390 | // may be give a warning here? or use wxFontMapper? |
409d5a58 VZ |
391 | m_encoding = wxFONTENCODING_SYSTEM; |
392 | } | |
011ba5ed | 393 | #endif // GTK 2.0/1.x |
409d5a58 VZ |
394 | } |
395 | ||
011ba5ed VZ |
396 | wxFontRefData::wxFontRefData( const wxFontRefData& data ) |
397 | : wxObjectRefData() | |
398 | { | |
399 | m_pointSize = data.m_pointSize; | |
400 | m_family = data.m_family; | |
401 | m_style = data.m_style; | |
402 | m_weight = data.m_weight; | |
403 | ||
404 | m_underlined = data.m_underlined; | |
405 | ||
406 | m_faceName = data.m_faceName; | |
407 | m_encoding = data.m_encoding; | |
408 | ||
2b5f62a0 | 409 | m_noAA = data.m_noAA; |
cd9a673c RD |
410 | |
411 | // Forces a copy of the internal data. wxNativeFontInfo should probably | |
412 | // have a copy ctor and assignment operator to fix this properly but that | |
413 | // would break binary compatibility... | |
414 | m_nativeFontInfo.FromString(data.m_nativeFontInfo.ToString()); | |
011ba5ed VZ |
415 | } |
416 | ||
417 | wxFontRefData::wxFontRefData(int size, int family, int style, | |
418 | int weight, bool underlined, | |
419 | const wxString& faceName, | |
420 | wxFontEncoding encoding) | |
421 | { | |
422 | Init(size, family, style, weight, underlined, faceName, encoding); | |
423 | } | |
424 | ||
425 | wxFontRefData::wxFontRefData(const wxString& fontname) | |
8bbe427f | 426 | { |
011ba5ed VZ |
427 | // VZ: FromString() should really work in both cases, doesn't it? |
428 | #ifdef __WXGTK20__ | |
429 | m_nativeFontInfo.FromString( fontname ); | |
430 | #else // GTK 1.x | |
431 | m_nativeFontInfo.SetXFontName(fontname); | |
432 | #endif // GTK 2.0/1.x | |
433 | ||
434 | InitFromNative(); | |
435 | } | |
436 | ||
011ba5ed VZ |
437 | void wxFontRefData::ClearGdkFonts() |
438 | { | |
2b5f62a0 | 439 | #ifndef __WXGTK20__ |
011ba5ed VZ |
440 | for ( wxScaledFontList::iterator i = m_scaled_xfonts.begin(); |
441 | i != m_scaled_xfonts.end(); | |
442 | ++i ) | |
8bbe427f | 443 | { |
011ba5ed | 444 | GdkFont *font = i->second; |
8bbe427f | 445 | gdk_font_unref( font ); |
8bbe427f | 446 | } |
011ba5ed VZ |
447 | |
448 | m_scaled_xfonts.clear(); | |
011ba5ed | 449 | #endif // GTK 1.x |
2b5f62a0 | 450 | } |
011ba5ed VZ |
451 | |
452 | wxFontRefData::~wxFontRefData() | |
453 | { | |
454 | ClearGdkFonts(); | |
0c5d3e1c | 455 | } |
c801d85f | 456 | |
0c5d3e1c | 457 | // ---------------------------------------------------------------------------- |
409d5a58 | 458 | // wxFontRefData SetXXX() |
0c5d3e1c | 459 | // ---------------------------------------------------------------------------- |
c801d85f | 460 | |
409d5a58 | 461 | void wxFontRefData::SetPointSize(int pointSize) |
c801d85f | 462 | { |
409d5a58 | 463 | m_pointSize = pointSize; |
c801d85f | 464 | |
db16cab4 RR |
465 | #ifdef __WXGTK20__ |
466 | // Get native info | |
467 | PangoFontDescription *desc = m_nativeFontInfo.description; | |
011ba5ed | 468 | |
db16cab4 RR |
469 | pango_font_description_set_size( desc, m_pointSize * PANGO_SCALE ); |
470 | #else | |
409d5a58 VZ |
471 | if ( HasNativeFont() ) |
472 | { | |
473 | wxString size; | |
474 | if ( pointSize == -1 ) | |
475 | size = _T('*'); | |
476 | else | |
477 | size.Printf(_T("%d"), 10*pointSize); | |
7826e2dd | 478 | |
409d5a58 VZ |
479 | m_nativeFontInfo.SetXFontComponent(wxXLFD_POINTSIZE, size); |
480 | } | |
db16cab4 | 481 | #endif |
7826e2dd VZ |
482 | } |
483 | ||
409d5a58 | 484 | void wxFontRefData::SetFamily(int family) |
7826e2dd | 485 | { |
409d5a58 | 486 | m_family = family; |
30764ab5 | 487 | |
409d5a58 | 488 | // TODO: what are we supposed to do with m_nativeFontInfo here? |
30764ab5 VZ |
489 | } |
490 | ||
409d5a58 | 491 | void wxFontRefData::SetStyle(int style) |
c801d85f | 492 | { |
409d5a58 VZ |
493 | m_style = style; |
494 | ||
db16cab4 RR |
495 | #ifdef __WXGTK20__ |
496 | // Get native info | |
497 | PangoFontDescription *desc = m_nativeFontInfo.description; | |
011ba5ed | 498 | |
db16cab4 RR |
499 | switch ( style ) |
500 | { | |
501 | case wxFONTSTYLE_ITALIC: | |
502 | pango_font_description_set_style( desc, PANGO_STYLE_ITALIC ); | |
503 | break; | |
504 | case wxFONTSTYLE_SLANT: | |
505 | pango_font_description_set_style( desc, PANGO_STYLE_OBLIQUE ); | |
506 | break; | |
507 | default: | |
508 | wxFAIL_MSG( _T("unknown font style") ); | |
509 | // fall through | |
510 | case wxFONTSTYLE_NORMAL: | |
511 | pango_font_description_set_style( desc, PANGO_STYLE_NORMAL ); | |
512 | break; | |
513 | } | |
514 | #else | |
409d5a58 | 515 | if ( HasNativeFont() ) |
30764ab5 | 516 | { |
409d5a58 VZ |
517 | wxString slant; |
518 | switch ( style ) | |
519 | { | |
520 | case wxFONTSTYLE_ITALIC: | |
521 | slant = _T('i'); | |
522 | break; | |
523 | ||
524 | case wxFONTSTYLE_SLANT: | |
525 | slant = _T('o'); | |
526 | break; | |
527 | ||
528 | default: | |
529 | wxFAIL_MSG( _T("unknown font style") ); | |
530 | // fall through | |
531 | ||
532 | case wxFONTSTYLE_NORMAL: | |
533 | slant = _T('r'); | |
534 | } | |
535 | ||
536 | m_nativeFontInfo.SetXFontComponent(wxXLFD_SLANT, slant); | |
30764ab5 | 537 | } |
db16cab4 | 538 | #endif |
409d5a58 | 539 | } |
7beba2fc | 540 | |
409d5a58 VZ |
541 | void wxFontRefData::SetWeight(int weight) |
542 | { | |
543 | m_weight = weight; | |
8bbe427f | 544 | |
2b5f62a0 VZ |
545 | #ifdef __WXGTK20__ |
546 | PangoFontDescription *desc = m_nativeFontInfo.description; | |
547 | switch ( weight ) | |
548 | { | |
549 | case wxFONTWEIGHT_BOLD: | |
550 | pango_font_description_set_weight(desc, PANGO_WEIGHT_BOLD); | |
551 | break; | |
552 | ||
553 | case wxFONTWEIGHT_LIGHT: | |
554 | pango_font_description_set_weight(desc, PANGO_WEIGHT_LIGHT); | |
555 | break; | |
556 | ||
557 | default: | |
558 | wxFAIL_MSG( _T("unknown font weight") ); | |
559 | // fall through | |
560 | ||
561 | case wxFONTWEIGHT_NORMAL: | |
562 | // unspecified | |
563 | pango_font_description_set_weight(desc, PANGO_WEIGHT_NORMAL); | |
564 | } | |
565 | #else //!__WXGTK20__ | |
409d5a58 VZ |
566 | if ( HasNativeFont() ) |
567 | { | |
568 | wxString boldness; | |
569 | switch ( weight ) | |
570 | { | |
571 | case wxFONTWEIGHT_BOLD: | |
572 | boldness = _T("bold"); | |
573 | break; | |
30764ab5 | 574 | |
409d5a58 VZ |
575 | case wxFONTWEIGHT_LIGHT: |
576 | boldness = _T("light"); | |
577 | break; | |
284b4c88 | 578 | |
409d5a58 VZ |
579 | default: |
580 | wxFAIL_MSG( _T("unknown font weight") ); | |
581 | // fall through | |
284b4c88 | 582 | |
409d5a58 VZ |
583 | case wxFONTWEIGHT_NORMAL: |
584 | // unspecified | |
585 | boldness = _T("medium"); | |
586 | } | |
284b4c88 | 587 | |
409d5a58 VZ |
588 | m_nativeFontInfo.SetXFontComponent(wxXLFD_WEIGHT, boldness); |
589 | } | |
db16cab4 | 590 | #endif |
409d5a58 | 591 | } |
30764ab5 | 592 | |
409d5a58 VZ |
593 | void wxFontRefData::SetUnderlined(bool underlined) |
594 | { | |
595 | m_underlined = underlined; | |
8636aed8 | 596 | |
409d5a58 VZ |
597 | // the XLFD doesn't have "underlined" field anyhow |
598 | } | |
30760ce7 | 599 | |
409d5a58 VZ |
600 | void wxFontRefData::SetFaceName(const wxString& facename) |
601 | { | |
602 | m_faceName = facename; | |
7beba2fc | 603 | |
db16cab4 | 604 | #ifndef __WXGTK20__ |
409d5a58 VZ |
605 | if ( HasNativeFont() ) |
606 | { | |
607 | m_nativeFontInfo.SetXFontComponent(wxXLFD_FAMILY, facename); | |
608 | } | |
db16cab4 | 609 | #endif |
409d5a58 | 610 | } |
284b4c88 | 611 | |
409d5a58 VZ |
612 | void wxFontRefData::SetEncoding(wxFontEncoding encoding) |
613 | { | |
614 | m_encoding = encoding; | |
284b4c88 | 615 | |
db16cab4 | 616 | #ifndef __WXGTK20__ |
409d5a58 | 617 | if ( HasNativeFont() ) |
d06b34a7 | 618 | { |
409d5a58 VZ |
619 | wxNativeEncodingInfo info; |
620 | if ( wxGetNativeFontEncoding(encoding, &info) ) | |
621 | { | |
622 | m_nativeFontInfo.SetXFontComponent(wxXLFD_REGISTRY, info.xregistry); | |
623 | m_nativeFontInfo.SetXFontComponent(wxXLFD_ENCODING, info.xencoding); | |
624 | } | |
d06b34a7 | 625 | } |
db16cab4 | 626 | #endif |
409d5a58 | 627 | } |
284b4c88 | 628 | |
011ba5ed VZ |
629 | void wxFontRefData::SetNativeFontInfo(const wxNativeFontInfo& info) |
630 | { | |
631 | // previously cached fonts shouldn't be used | |
632 | ClearGdkFonts(); | |
633 | ||
634 | m_nativeFontInfo = info; | |
635 | ||
636 | // set all the other font parameters from the native font info | |
637 | InitFromNative(); | |
638 | } | |
639 | ||
409d5a58 VZ |
640 | // ---------------------------------------------------------------------------- |
641 | // wxFont creation | |
642 | // ---------------------------------------------------------------------------- | |
36f210c8 | 643 | |
409d5a58 | 644 | IMPLEMENT_DYNAMIC_CLASS(wxFont, wxGDIObject) |
36f210c8 | 645 | |
409d5a58 VZ |
646 | void wxFont::Init() |
647 | { | |
648 | } | |
36f210c8 | 649 | |
409d5a58 VZ |
650 | wxFont::wxFont(const wxNativeFontInfo& info) |
651 | { | |
652 | Init(); | |
653 | ||
db16cab4 | 654 | #ifdef __WXGTK20__ |
011ba5ed | 655 | Create( info.GetPointSize(), |
db16cab4 RR |
656 | info.GetFamily(), |
657 | info.GetStyle(), | |
658 | info.GetWeight(), | |
659 | info.GetUnderlined(), | |
660 | info.GetFaceName(), | |
661 | info.GetEncoding() ); | |
662 | #else | |
2b5f62a0 | 663 | (void) Create(info.GetXFontName()); |
db16cab4 | 664 | #endif |
409d5a58 VZ |
665 | } |
666 | ||
667 | bool wxFont::Create( int pointSize, | |
668 | int family, | |
669 | int style, | |
670 | int weight, | |
671 | bool underlined, | |
672 | const wxString& face, | |
673 | wxFontEncoding encoding) | |
674 | { | |
2b5f62a0 VZ |
675 | UnRef(); |
676 | ||
409d5a58 VZ |
677 | m_refData = new wxFontRefData(pointSize, family, style, weight, |
678 | underlined, face, encoding); | |
679 | ||
680 | return TRUE; | |
681 | } | |
682 | ||
683 | bool wxFont::Create(const wxString& fontname) | |
684 | { | |
685 | // VZ: does this really happen? | |
686 | if ( fontname.empty() ) | |
36f210c8 | 687 | { |
409d5a58 | 688 | *this = wxSystemSettings::GetFont(wxSYS_DEFAULT_GUI_FONT); |
7beba2fc | 689 | |
409d5a58 | 690 | return TRUE; |
36f210c8 | 691 | } |
409d5a58 VZ |
692 | |
693 | m_refData = new wxFontRefData(fontname); | |
694 | ||
0c5d3e1c | 695 | return TRUE; |
ff7b1510 | 696 | } |
c801d85f | 697 | |
0c5d3e1c | 698 | void wxFont::Unshare() |
8bbe427f | 699 | { |
0c5d3e1c VZ |
700 | if (!m_refData) |
701 | { | |
702 | m_refData = new wxFontRefData(); | |
703 | } | |
704 | else | |
705 | { | |
706 | wxFontRefData* ref = new wxFontRefData(*(wxFontRefData*)m_refData); | |
707 | UnRef(); | |
708 | m_refData = ref; | |
709 | } | |
ff7b1510 | 710 | } |
c801d85f | 711 | |
8bbe427f | 712 | wxFont::~wxFont() |
c801d85f | 713 | { |
ff7b1510 | 714 | } |
c801d85f | 715 | |
0c5d3e1c VZ |
716 | // ---------------------------------------------------------------------------- |
717 | // accessors | |
718 | // ---------------------------------------------------------------------------- | |
c801d85f | 719 | |
8bbe427f | 720 | int wxFont::GetPointSize() const |
c801d85f | 721 | { |
223d09f6 | 722 | wxCHECK_MSG( Ok(), 0, wxT("invalid font") ); |
8bbe427f VZ |
723 | |
724 | return M_FONTDATA->m_pointSize; | |
ff7b1510 | 725 | } |
c801d85f | 726 | |
8bbe427f | 727 | wxString wxFont::GetFaceName() const |
c801d85f | 728 | { |
223d09f6 | 729 | wxCHECK_MSG( Ok(), wxT(""), wxT("invalid font") ); |
8bbe427f | 730 | |
36b3b54a | 731 | return M_FONTDATA->m_faceName; |
ff7b1510 | 732 | } |
c801d85f | 733 | |
8bbe427f | 734 | int wxFont::GetFamily() const |
c801d85f | 735 | { |
223d09f6 | 736 | wxCHECK_MSG( Ok(), 0, wxT("invalid font") ); |
8bbe427f VZ |
737 | |
738 | return M_FONTDATA->m_family; | |
ff7b1510 | 739 | } |
c801d85f | 740 | |
8bbe427f | 741 | int wxFont::GetStyle() const |
c801d85f | 742 | { |
223d09f6 | 743 | wxCHECK_MSG( Ok(), 0, wxT("invalid font") ); |
d84eb083 | 744 | |
8bbe427f | 745 | return M_FONTDATA->m_style; |
ff7b1510 | 746 | } |
c801d85f | 747 | |
8bbe427f | 748 | int wxFont::GetWeight() const |
c801d85f | 749 | { |
223d09f6 | 750 | wxCHECK_MSG( Ok(), 0, wxT("invalid font") ); |
8bbe427f VZ |
751 | |
752 | return M_FONTDATA->m_weight; | |
753 | } | |
754 | ||
8bbe427f VZ |
755 | bool wxFont::GetUnderlined() const |
756 | { | |
223d09f6 | 757 | wxCHECK_MSG( Ok(), FALSE, wxT("invalid font") ); |
8bbe427f VZ |
758 | |
759 | return M_FONTDATA->m_underlined; | |
ff7b1510 | 760 | } |
c801d85f | 761 | |
0c5d3e1c | 762 | wxFontEncoding wxFont::GetEncoding() const |
358fc25c | 763 | { |
223d09f6 | 764 | wxCHECK_MSG( Ok(), wxFONTENCODING_DEFAULT, wxT("invalid font") ); |
0c5d3e1c VZ |
765 | |
766 | return M_FONTDATA->m_encoding; | |
358fc25c RR |
767 | } |
768 | ||
2b5f62a0 VZ |
769 | bool wxFont::GetNoAntiAliasing() |
770 | { | |
771 | wxCHECK_MSG( Ok(), wxFONTENCODING_DEFAULT, wxT("invalid font") ); | |
772 | ||
773 | return M_FONTDATA->m_noAA; | |
774 | } | |
775 | ||
7826e2dd | 776 | wxNativeFontInfo *wxFont::GetNativeFontInfo() const |
30764ab5 | 777 | { |
7826e2dd | 778 | wxCHECK_MSG( Ok(), (wxNativeFontInfo *)NULL, wxT("invalid font") ); |
30764ab5 | 779 | |
cfcc3932 | 780 | #ifndef __WXGTK20__ |
409d5a58 | 781 | if ( M_FONTDATA->m_nativeFontInfo.GetXFontName().empty() ) |
30764ab5 | 782 | GetInternalFont(); |
db16cab4 | 783 | #endif |
7826e2dd VZ |
784 | |
785 | return new wxNativeFontInfo(M_FONTDATA->m_nativeFontInfo); | |
30764ab5 VZ |
786 | } |
787 | ||
53f6aab7 VZ |
788 | bool wxFont::IsFixedWidth() const |
789 | { | |
790 | wxCHECK_MSG( Ok(), FALSE, wxT("invalid font") ); | |
791 | ||
db16cab4 | 792 | #ifndef __WXGTK20__ |
409d5a58 | 793 | if ( M_FONTDATA->HasNativeFont() ) |
53f6aab7 VZ |
794 | { |
795 | // the monospace fonts are supposed to have "M" in the spacing field | |
796 | wxString spacing = M_FONTDATA-> | |
797 | m_nativeFontInfo.GetXFontComponent(wxXLFD_SPACING); | |
798 | ||
799 | return spacing.Upper() == _T('M'); | |
800 | } | |
db16cab4 | 801 | #endif |
53f6aab7 VZ |
802 | |
803 | return wxFontBase::IsFixedWidth(); | |
804 | } | |
30764ab5 | 805 | |
0c5d3e1c VZ |
806 | // ---------------------------------------------------------------------------- |
807 | // change font attributes | |
808 | // ---------------------------------------------------------------------------- | |
809 | ||
358fc25c RR |
810 | void wxFont::SetPointSize(int pointSize) |
811 | { | |
812 | Unshare(); | |
011ba5ed | 813 | |
409d5a58 | 814 | M_FONTDATA->SetPointSize(pointSize); |
358fc25c RR |
815 | } |
816 | ||
817 | void wxFont::SetFamily(int family) | |
818 | { | |
819 | Unshare(); | |
820 | ||
409d5a58 | 821 | M_FONTDATA->SetFamily(family); |
358fc25c RR |
822 | } |
823 | ||
824 | void wxFont::SetStyle(int style) | |
825 | { | |
826 | Unshare(); | |
827 | ||
409d5a58 | 828 | M_FONTDATA->SetStyle(style); |
358fc25c RR |
829 | } |
830 | ||
831 | void wxFont::SetWeight(int weight) | |
832 | { | |
833 | Unshare(); | |
834 | ||
409d5a58 | 835 | M_FONTDATA->SetWeight(weight); |
358fc25c RR |
836 | } |
837 | ||
838 | void wxFont::SetFaceName(const wxString& faceName) | |
839 | { | |
840 | Unshare(); | |
841 | ||
409d5a58 | 842 | M_FONTDATA->SetFaceName(faceName); |
358fc25c RR |
843 | } |
844 | ||
845 | void wxFont::SetUnderlined(bool underlined) | |
846 | { | |
847 | Unshare(); | |
848 | ||
409d5a58 | 849 | M_FONTDATA->SetUnderlined(underlined); |
358fc25c RR |
850 | } |
851 | ||
0c5d3e1c VZ |
852 | void wxFont::SetEncoding(wxFontEncoding encoding) |
853 | { | |
854 | Unshare(); | |
c801d85f | 855 | |
409d5a58 | 856 | M_FONTDATA->SetEncoding(encoding); |
30764ab5 VZ |
857 | } |
858 | ||
2b5f62a0 VZ |
859 | void wxFont::SetNativeFontInfo( const wxNativeFontInfo& info ) |
860 | { | |
861 | Unshare(); | |
862 | ||
863 | M_FONTDATA->SetNativeFontInfo( info ); | |
864 | } | |
865 | ||
866 | void wxFont::SetNoAntiAliasing( bool no ) | |
30764ab5 VZ |
867 | { |
868 | Unshare(); | |
869 | ||
2b5f62a0 | 870 | M_FONTDATA->SetNoAntiAliasing( no ); |
0c5d3e1c VZ |
871 | } |
872 | ||
873 | // ---------------------------------------------------------------------------- | |
874 | // get internal representation of font | |
875 | // ---------------------------------------------------------------------------- | |
c801d85f | 876 | |
cfcc3932 | 877 | #ifndef __WXGTK20__ |
c7985368 RR |
878 | static GdkFont *g_systemDefaultGuiFont = (GdkFont*) NULL; |
879 | ||
409d5a58 VZ |
880 | // this is also used from tbargtk.cpp and tooltip.cpp, hence extern |
881 | extern GdkFont *GtkGetDefaultGuiFont() | |
c7985368 RR |
882 | { |
883 | if (!g_systemDefaultGuiFont) | |
884 | { | |
885 | GtkWidget *widget = gtk_button_new(); | |
886 | GtkStyle *def = gtk_rc_get_style( widget ); | |
e6527f9d RR |
887 | if (def) |
888 | { | |
9e691f46 | 889 | g_systemDefaultGuiFont = gdk_font_ref( GET_STYLE_FONT(def) ); |
e6527f9d RR |
890 | } |
891 | else | |
892 | { | |
893 | def = gtk_widget_get_default_style(); | |
894 | if (def) | |
9e691f46 | 895 | g_systemDefaultGuiFont = gdk_font_ref( GET_STYLE_FONT(def) ); |
e6527f9d | 896 | } |
c7985368 RR |
897 | gtk_widget_destroy( widget ); |
898 | } | |
b1d1dc51 VZ |
899 | else |
900 | { | |
901 | // already have it, but ref it once more before returning | |
902 | gdk_font_ref(g_systemDefaultGuiFont); | |
903 | } | |
904 | ||
c7985368 RR |
905 | return g_systemDefaultGuiFont; |
906 | } | |
907 | ||
36b3b54a | 908 | GdkFont *wxFont::GetInternalFont( float scale ) const |
c801d85f | 909 | { |
409d5a58 | 910 | GdkFont *font = (GdkFont *) NULL; |
0c5d3e1c | 911 | |
409d5a58 | 912 | wxCHECK_MSG( Ok(), font, wxT("invalid font") ) |
8bbe427f | 913 | |
db16cab4 | 914 | long int_scale = long(scale * 100.0 + 0.5); // key for fontlist |
b02da6b1 | 915 | int point_scale = (int)((M_FONTDATA->m_pointSize * 10 * int_scale) / 100); |
8bbe427f | 916 | |
011ba5ed VZ |
917 | wxScaledFontList& list = M_FONTDATA->m_scaled_xfonts; |
918 | wxScaledFontList::iterator i = list.find(int_scale); | |
919 | if ( i != list.end() ) | |
8bbe427f | 920 | { |
011ba5ed | 921 | font = i->second; |
8bbe427f | 922 | } |
409d5a58 | 923 | else // we don't have this font in this size yet |
8bbe427f | 924 | { |
a756f210 | 925 | if (*this == wxSystemSettings::GetFont( wxSYS_DEFAULT_GUI_FONT)) |
8bbe427f | 926 | { |
c7985368 | 927 | font = GtkGetDefaultGuiFont(); |
8bbe427f | 928 | } |
409d5a58 VZ |
929 | |
930 | if ( !font ) | |
8bbe427f | 931 | { |
409d5a58 VZ |
932 | // do we have the XLFD? |
933 | if ( M_FONTDATA->HasNativeFont() ) | |
934 | { | |
935 | font = wxLoadFont(M_FONTDATA->m_nativeFontInfo.GetXFontName()); | |
936 | } | |
937 | ||
938 | // no XLFD of no exact match - try the approximate one now | |
939 | if ( !font ) | |
940 | { | |
941 | wxString xfontname; | |
942 | font = wxLoadQueryNearestFont( point_scale, | |
943 | M_FONTDATA->m_family, | |
944 | M_FONTDATA->m_style, | |
945 | M_FONTDATA->m_weight, | |
946 | M_FONTDATA->m_underlined, | |
947 | M_FONTDATA->m_faceName, | |
948 | M_FONTDATA->m_encoding, | |
949 | &xfontname); | |
950 | if ( font ) | |
951 | { | |
952 | M_FONTDATA->m_nativeFontInfo.SetXFontName(xfontname); | |
953 | } | |
954 | } | |
8bbe427f | 955 | } |
0c5d3e1c | 956 | |
409d5a58 VZ |
957 | if ( font ) |
958 | { | |
011ba5ed | 959 | list[int_scale] = font; |
409d5a58 | 960 | } |
8bbe427f | 961 | } |
284b4c88 | 962 | |
7beba2fc VZ |
963 | // it's quite useless to make it a wxCHECK because we're going to crash |
964 | // anyhow... | |
965 | wxASSERT_MSG( font, wxT("could not load any font?") ); | |
284b4c88 | 966 | |
8bbe427f | 967 | return font; |
ff7b1510 | 968 | } |
cfcc3932 | 969 | #endif // not GTK 2.0 |
c801d85f | 970 |