]> git.saurik.com Git - wxWidgets.git/blame - src/gtk1/font.cpp
Restore stock item labels mistakenly removed by r68641.
[wxWidgets.git] / src / gtk1 / font.cpp
CommitLineData
c801d85f 1/////////////////////////////////////////////////////////////////////////////
dd05139a 2// Name: src/gtk1/font.cpp
c801d85f
KB
3// Purpose:
4// Author: Robert Roebling
a81258be 5// Id: $Id$
6c9a19aa 6// Copyright: (c) 1998 Robert Roebling and Julian Smart
65571936 7// Licence: wxWindows licence
c801d85f
KB
8/////////////////////////////////////////////////////////////////////////////
9
0c5d3e1c
VZ
10// ============================================================================
11// declarations
12// ============================================================================
13
14// ----------------------------------------------------------------------------
15// headers
16// ----------------------------------------------------------------------------
17
14f355c2
VS
18// For compilers that support precompilation, includes "wx.h".
19#include "wx/wxprec.h"
20
c801d85f 21#include "wx/font.h"
e4db172a
WS
22
23#ifndef WX_PRECOMP
24 #include "wx/log.h"
9eddec69 25 #include "wx/settings.h"
dd05139a 26 #include "wx/gdicmn.h"
bf3ed077 27 #include "wx/encinfo.h"
e4db172a
WS
28#endif
29
7beba2fc 30#include "wx/fontutil.h"
c801d85f 31#include "wx/utils.h"
8636aed8 32#include "wx/tokenzr.h"
0c5d3e1c 33
c801d85f
KB
34#include <strings.h>
35
3cbab641 36#include "wx/gtk1/private.h"
d06b34a7 37#include <gdk/gdkprivate.h>
83624f79 38
409d5a58
VZ
39// ----------------------------------------------------------------------------
40// constants
41// ----------------------------------------------------------------------------
42
43// the default size (in points) for the fonts
44static const int wxDEFAULT_FONT_SIZE = 12;
45
46// ----------------------------------------------------------------------------
011ba5ed 47// wxScaledFontList: maps the font sizes to the GDK fonts for the given font
409d5a58
VZ
48// ----------------------------------------------------------------------------
49
011ba5ed
VZ
50WX_DECLARE_HASH_MAP(int, GdkFont *, wxIntegerHash, wxIntegerEqual,
51 wxScaledFontList);
409d5a58 52
0c5d3e1c
VZ
53// ----------------------------------------------------------------------------
54// wxFontRefData
55// ----------------------------------------------------------------------------
56
8f884a0d 57class wxFontRefData : public wxGDIRefData
c801d85f 58{
8bbe427f 59public:
409d5a58
VZ
60 // from broken down font parameters, also default ctor
61 wxFontRefData(int size = -1,
0c14b6c3
FM
62 wxFontFamily family = wxFONTFAMILY_DEFAULT,
63 wxFontStyle style = wxFONTSTYLE_NORMAL,
64 wxFontWeight weight = wxFONTWEIGHT_NORMAL,
9eddec69 65 bool underlined = false,
0c5d3e1c 66 const wxString& faceName = wxEmptyString,
7826e2dd 67 wxFontEncoding encoding = wxFONTENCODING_DEFAULT);
409d5a58
VZ
68
69 // from XFLD
70 wxFontRefData(const wxString& fontname);
71
72 // copy ctor
358fc25c 73 wxFontRefData( const wxFontRefData& data );
409d5a58 74
0c5d3e1c
VZ
75 virtual ~wxFontRefData();
76
409d5a58
VZ
77 // do we have the native font info?
78 bool HasNativeFont() const
79 {
011ba5ed 80 // only use m_nativeFontInfo if it had been initialized
409d5a58
VZ
81 return !m_nativeFontInfo.IsDefault();
82 }
83
84 // setters: all of them also take care to modify m_nativeFontInfo if we
85 // have it so as to not lose the information not carried by our fields
86 void SetPointSize(int pointSize);
0c14b6c3
FM
87 void SetFamily(wxFontFamily family);
88 void SetStyle(wxFontStyle style);
89 void SetWeight(wxFontWeight weight);
409d5a58 90 void SetUnderlined(bool underlined);
85ab460e 91 bool SetFaceName(const wxString& facename);
409d5a58
VZ
92 void SetEncoding(wxFontEncoding encoding);
93
011ba5ed
VZ
94 // and this one also modifies all the other font data fields
95 void SetNativeFontInfo(const wxNativeFontInfo& info);
96
0c5d3e1c
VZ
97protected:
98 // common part of all ctors
99 void Init(int pointSize,
0c14b6c3
FM
100 wxFontFamily family,
101 wxFontStyle style,
102 wxFontWeight weight,
0c5d3e1c
VZ
103 bool underlined,
104 const wxString& faceName,
7826e2dd 105 wxFontEncoding encoding);
0c5d3e1c 106
011ba5ed
VZ
107 // set all fields from (already initialized and valid) m_nativeFontInfo
108 void InitFromNative();
109
0c5d3e1c 110private:
2b5f62a0 111 // clear m_scaled_xfonts if any
011ba5ed
VZ
112 void ClearGdkFonts();
113
409d5a58
VZ
114 // the map of font sizes to "GdkFont *"
115 wxScaledFontList m_scaled_xfonts;
116
f35c2659 117 int m_pointSize;
0c14b6c3
FM
118 wxFontFamily m_family;
119 wxFontStyle m_style;
120 wxFontWeight m_weight;
f35c2659
RR
121 bool m_underlined;
122 wxString m_faceName;
db16cab4 123 wxFontEncoding m_encoding; // Unused under GTK 2.0
7826e2dd 124
db16cab4
RR
125 // The native font info, basicly an XFLD under GTK 1.2 and
126 // the pango font description under GTK 2.0.
30764ab5 127 wxNativeFontInfo m_nativeFontInfo;
8bbe427f 128
f6bcfd97 129 friend class wxFont;
c801d85f
KB
130};
131
68c95704 132#define M_FONTDATA ((wxFontRefData*)m_refData)
873fd4af 133
0c5d3e1c 134// ----------------------------------------------------------------------------
cd9a673c 135// wxFontRefData
0c5d3e1c
VZ
136// ----------------------------------------------------------------------------
137
138void wxFontRefData::Init(int pointSize,
0c14b6c3
FM
139 wxFontFamily family,
140 wxFontStyle style,
141 wxFontWeight weight,
0c5d3e1c
VZ
142 bool underlined,
143 const wxString& faceName,
7826e2dd 144 wxFontEncoding encoding)
8bbe427f 145{
409d5a58 146 m_family = family == wxFONTFAMILY_DEFAULT ? wxFONTFAMILY_SWISS : family;
0c5d3e1c
VZ
147
148 m_faceName = faceName;
149
409d5a58
VZ
150 // we accept both wxDEFAULT and wxNORMAL here - should we?
151 m_style = style == wxDEFAULT ? wxFONTSTYLE_NORMAL : style;
152 m_weight = weight == wxDEFAULT ? wxFONTWEIGHT_NORMAL : weight;
0c5d3e1c 153
409d5a58
VZ
154 // and here, do we really want to forbid creation of the font of the size
155 // 90 (the value of wxDEFAULT)??
011ba5ed
VZ
156 m_pointSize = pointSize == wxDEFAULT || pointSize == -1
157 ? wxDEFAULT_FONT_SIZE
158 : pointSize;
0c5d3e1c
VZ
159
160 m_underlined = underlined;
161 m_encoding = encoding;
358fc25c
RR
162}
163
011ba5ed 164void wxFontRefData::InitFromNative()
409d5a58 165{
409d5a58
VZ
166 // get the font parameters from the XLFD
167 // -------------------------------------
168
169 m_faceName = m_nativeFontInfo.GetXFontComponent(wxXLFD_FAMILY);
170
171 m_weight = wxFONTWEIGHT_NORMAL;
172
173 wxString w = m_nativeFontInfo.GetXFontComponent(wxXLFD_WEIGHT).Upper();
9a83f860 174 if ( !w.empty() && w != wxT('*') )
409d5a58
VZ
175 {
176 // the test below catches all of BOLD, EXTRABOLD, DEMIBOLD, ULTRABOLD
177 // and BLACK
9a83f860 178 if ( ((w[0u] == wxT('B') && (!wxStrcmp(w.c_str() + 1, wxT("OLD")) ||
fab591c5 179 !wxStrcmp(w.c_str() + 1, wxT("LACK"))))) ||
9a83f860 180 wxStrstr(w.c_str() + 1, wxT("BOLD")) )
409d5a58
VZ
181 {
182 m_weight = wxFONTWEIGHT_BOLD;
183 }
9a83f860 184 else if ( w == wxT("LIGHT") || w == wxT("THIN") )
409d5a58
VZ
185 {
186 m_weight = wxFONTWEIGHT_LIGHT;
187 }
188 }
189
63415a83
VS
190 switch ( wxToupper(m_nativeFontInfo.
191 GetXFontComponent(wxXLFD_SLANT)[0u]).GetValue() )
409d5a58 192 {
9a83f860 193 case wxT('I'): // italique
409d5a58
VZ
194 m_style = wxFONTSTYLE_ITALIC;
195 break;
196
9a83f860 197 case wxT('O'): // oblique
409d5a58
VZ
198 m_style = wxFONTSTYLE_SLANT;
199 break;
200
201 default:
202 m_style = wxFONTSTYLE_NORMAL;
203 }
204
205 long ptSize;
206 if ( m_nativeFontInfo.GetXFontComponent(wxXLFD_POINTSIZE).ToLong(&ptSize) )
207 {
208 // size in XLFD is in 10 point units
209 m_pointSize = (int)(ptSize / 10);
210 }
211 else
212 {
213 m_pointSize = wxDEFAULT_FONT_SIZE;
214 }
215
216 // examine the spacing: if the font is monospaced, assume wxTELETYPE
217 // family for compatibility with the old code which used it instead of
218 // IsFixedWidth()
9a83f860 219 if ( m_nativeFontInfo.GetXFontComponent(wxXLFD_SPACING).Upper() == wxT('M') )
409d5a58
VZ
220 {
221 m_family = wxFONTFAMILY_TELETYPE;
222 }
223 else // not monospaceed
224 {
225 // don't even try guessing it, it doesn't work for too many fonts
226 // anyhow
227 m_family = wxFONTFAMILY_UNKNOWN;
228 }
229
230 // X fonts are never underlined...
9eddec69 231 m_underlined = false;
409d5a58
VZ
232
233 // deal with font encoding
234 wxString
235 registry = m_nativeFontInfo.GetXFontComponent(wxXLFD_REGISTRY).Upper(),
236 encoding = m_nativeFontInfo.GetXFontComponent(wxXLFD_ENCODING).Upper();
237
9a83f860 238 if ( registry == wxT("ISO8859") )
409d5a58
VZ
239 {
240 int cp;
241 if ( wxSscanf(encoding, wxT("%d"), &cp) == 1 )
242 {
243 m_encoding = (wxFontEncoding)(wxFONTENCODING_ISO8859_1 + cp - 1);
244 }
245 }
9a83f860 246 else if ( registry == wxT("MICROSOFT") )
409d5a58
VZ
247 {
248 int cp;
249 if ( wxSscanf(encoding, wxT("cp125%d"), &cp) == 1 )
250 {
251 m_encoding = (wxFontEncoding)(wxFONTENCODING_CP1250 + cp);
252 }
253 }
9a83f860 254 else if ( registry == wxT("KOI8") )
409d5a58
VZ
255 {
256 m_encoding = wxFONTENCODING_KOI8;
257 }
258 else // unknown encoding
259 {
011ba5ed 260 // may be give a warning here? or use wxFontMapper?
409d5a58
VZ
261 m_encoding = wxFONTENCODING_SYSTEM;
262 }
263}
264
011ba5ed 265wxFontRefData::wxFontRefData( const wxFontRefData& data )
8f884a0d 266 : wxGDIRefData()
011ba5ed
VZ
267{
268 m_pointSize = data.m_pointSize;
269 m_family = data.m_family;
270 m_style = data.m_style;
271 m_weight = data.m_weight;
272
273 m_underlined = data.m_underlined;
274
275 m_faceName = data.m_faceName;
276 m_encoding = data.m_encoding;
277
cd9a673c
RD
278 // Forces a copy of the internal data. wxNativeFontInfo should probably
279 // have a copy ctor and assignment operator to fix this properly but that
280 // would break binary compatibility...
281 m_nativeFontInfo.FromString(data.m_nativeFontInfo.ToString());
011ba5ed
VZ
282}
283
0c14b6c3
FM
284wxFontRefData::wxFontRefData(int size, wxFontFamily family, wxFontStyle style,
285 wxFontWeight weight, bool underlined,
011ba5ed
VZ
286 const wxString& faceName,
287 wxFontEncoding encoding)
288{
289 Init(size, family, style, weight, underlined, faceName, encoding);
290}
291
292wxFontRefData::wxFontRefData(const wxString& fontname)
8bbe427f 293{
3cbab641 294 // FromString() should really work in GTK1 too, doesn't it?
011ba5ed 295 m_nativeFontInfo.SetXFontName(fontname);
011ba5ed
VZ
296
297 InitFromNative();
298}
299
011ba5ed
VZ
300void wxFontRefData::ClearGdkFonts()
301{
302 for ( wxScaledFontList::iterator i = m_scaled_xfonts.begin();
303 i != m_scaled_xfonts.end();
304 ++i )
8bbe427f 305 {
011ba5ed 306 GdkFont *font = i->second;
8bbe427f 307 gdk_font_unref( font );
8bbe427f 308 }
011ba5ed
VZ
309
310 m_scaled_xfonts.clear();
2b5f62a0 311}
011ba5ed
VZ
312
313wxFontRefData::~wxFontRefData()
314{
315 ClearGdkFonts();
0c5d3e1c 316}
c801d85f 317
0c5d3e1c 318// ----------------------------------------------------------------------------
409d5a58 319// wxFontRefData SetXXX()
0c5d3e1c 320// ----------------------------------------------------------------------------
c801d85f 321
409d5a58 322void wxFontRefData::SetPointSize(int pointSize)
c801d85f 323{
409d5a58 324 m_pointSize = pointSize;
c801d85f 325
409d5a58
VZ
326 if ( HasNativeFont() )
327 {
328 wxString size;
329 if ( pointSize == -1 )
9a83f860 330 size = wxT('*');
409d5a58 331 else
9a83f860 332 size.Printf(wxT("%d"), 10*pointSize);
7826e2dd 333
409d5a58
VZ
334 m_nativeFontInfo.SetXFontComponent(wxXLFD_POINTSIZE, size);
335 }
7826e2dd
VZ
336}
337
0c14b6c3 338void wxFontRefData::SetFamily(wxFontFamily family)
7826e2dd 339{
409d5a58 340 m_family = family;
30764ab5 341
409d5a58 342 // TODO: what are we supposed to do with m_nativeFontInfo here?
30764ab5
VZ
343}
344
0c14b6c3 345void wxFontRefData::SetStyle(wxFontStyle style)
c801d85f 346{
409d5a58
VZ
347 m_style = style;
348
349 if ( HasNativeFont() )
30764ab5 350 {
409d5a58
VZ
351 wxString slant;
352 switch ( style )
353 {
354 case wxFONTSTYLE_ITALIC:
9a83f860 355 slant = wxT('i');
409d5a58
VZ
356 break;
357
358 case wxFONTSTYLE_SLANT:
9a83f860 359 slant = wxT('o');
409d5a58
VZ
360 break;
361
362 default:
9a83f860 363 wxFAIL_MSG( wxT("unknown font style") );
409d5a58
VZ
364 // fall through
365
366 case wxFONTSTYLE_NORMAL:
9a83f860 367 slant = wxT('r');
409d5a58
VZ
368 }
369
370 m_nativeFontInfo.SetXFontComponent(wxXLFD_SLANT, slant);
30764ab5 371 }
409d5a58 372}
7beba2fc 373
0c14b6c3 374void wxFontRefData::SetWeight(wxFontWeight weight)
409d5a58
VZ
375{
376 m_weight = weight;
8bbe427f 377
409d5a58
VZ
378 if ( HasNativeFont() )
379 {
380 wxString boldness;
381 switch ( weight )
382 {
383 case wxFONTWEIGHT_BOLD:
9a83f860 384 boldness = wxT("bold");
409d5a58 385 break;
30764ab5 386
409d5a58 387 case wxFONTWEIGHT_LIGHT:
9a83f860 388 boldness = wxT("light");
409d5a58 389 break;
284b4c88 390
409d5a58 391 default:
9a83f860 392 wxFAIL_MSG( wxT("unknown font weight") );
409d5a58 393 // fall through
284b4c88 394
409d5a58
VZ
395 case wxFONTWEIGHT_NORMAL:
396 // unspecified
9a83f860 397 boldness = wxT("medium");
409d5a58 398 }
284b4c88 399
409d5a58
VZ
400 m_nativeFontInfo.SetXFontComponent(wxXLFD_WEIGHT, boldness);
401 }
402}
30764ab5 403
409d5a58
VZ
404void wxFontRefData::SetUnderlined(bool underlined)
405{
406 m_underlined = underlined;
8636aed8 407
409d5a58
VZ
408 // the XLFD doesn't have "underlined" field anyhow
409}
30760ce7 410
85ab460e 411bool wxFontRefData::SetFaceName(const wxString& facename)
409d5a58
VZ
412{
413 m_faceName = facename;
7beba2fc 414
409d5a58
VZ
415 if ( HasNativeFont() )
416 {
417 m_nativeFontInfo.SetXFontComponent(wxXLFD_FAMILY, facename);
418 }
85ab460e
VZ
419
420 return true;
409d5a58 421}
284b4c88 422
409d5a58
VZ
423void wxFontRefData::SetEncoding(wxFontEncoding encoding)
424{
425 m_encoding = encoding;
284b4c88 426
409d5a58 427 if ( HasNativeFont() )
d06b34a7 428 {
409d5a58
VZ
429 wxNativeEncodingInfo info;
430 if ( wxGetNativeFontEncoding(encoding, &info) )
431 {
432 m_nativeFontInfo.SetXFontComponent(wxXLFD_REGISTRY, info.xregistry);
433 m_nativeFontInfo.SetXFontComponent(wxXLFD_ENCODING, info.xencoding);
434 }
d06b34a7 435 }
409d5a58 436}
284b4c88 437
011ba5ed
VZ
438void wxFontRefData::SetNativeFontInfo(const wxNativeFontInfo& info)
439{
440 // previously cached fonts shouldn't be used
441 ClearGdkFonts();
442
443 m_nativeFontInfo = info;
444
445 // set all the other font parameters from the native font info
446 InitFromNative();
447}
448
409d5a58
VZ
449// ----------------------------------------------------------------------------
450// wxFont creation
451// ----------------------------------------------------------------------------
36f210c8 452
409d5a58
VZ
453wxFont::wxFont(const wxNativeFontInfo& info)
454{
2b5f62a0 455 (void) Create(info.GetXFontName());
409d5a58
VZ
456}
457
458bool wxFont::Create( int pointSize,
0c14b6c3
FM
459 wxFontFamily family,
460 wxFontStyle style,
461 wxFontWeight weight,
409d5a58
VZ
462 bool underlined,
463 const wxString& face,
464 wxFontEncoding encoding)
465{
2b5f62a0
VZ
466 UnRef();
467
409d5a58
VZ
468 m_refData = new wxFontRefData(pointSize, family, style, weight,
469 underlined, face, encoding);
470
9eddec69 471 return true;
409d5a58
VZ
472}
473
474bool wxFont::Create(const wxString& fontname)
475{
476 // VZ: does this really happen?
477 if ( fontname.empty() )
36f210c8 478 {
409d5a58 479 *this = wxSystemSettings::GetFont(wxSYS_DEFAULT_GUI_FONT);
7beba2fc 480
9eddec69 481 return true;
36f210c8 482 }
409d5a58
VZ
483
484 m_refData = new wxFontRefData(fontname);
485
9eddec69 486 return true;
ff7b1510 487}
c801d85f 488
0c5d3e1c 489void wxFont::Unshare()
8bbe427f 490{
0c5d3e1c
VZ
491 if (!m_refData)
492 {
493 m_refData = new wxFontRefData();
494 }
495 else
496 {
497 wxFontRefData* ref = new wxFontRefData(*(wxFontRefData*)m_refData);
498 UnRef();
499 m_refData = ref;
500 }
ff7b1510 501}
c801d85f 502
8bbe427f 503wxFont::~wxFont()
c801d85f 504{
ff7b1510 505}
c801d85f 506
8f884a0d
VZ
507wxGDIRefData *wxFont::CreateGDIRefData() const
508{
509 return new wxFontRefData;
510}
511
512wxGDIRefData *wxFont::CloneGDIRefData(const wxGDIRefData *data) const
513{
5c33522f 514 return new wxFontRefData(*static_cast<const wxFontRefData *>(data));
8f884a0d
VZ
515}
516
0c5d3e1c
VZ
517// ----------------------------------------------------------------------------
518// accessors
519// ----------------------------------------------------------------------------
c801d85f 520
8bbe427f 521int wxFont::GetPointSize() const
c801d85f 522{
a1b806b9 523 wxCHECK_MSG( IsOk(), 0, wxT("invalid font") );
8bbe427f
VZ
524
525 return M_FONTDATA->m_pointSize;
ff7b1510 526}
c801d85f 527
8bbe427f 528wxString wxFont::GetFaceName() const
c801d85f 529{
a1b806b9 530 wxCHECK_MSG( IsOk(), wxEmptyString, wxT("invalid font") );
8bbe427f 531
36b3b54a 532 return M_FONTDATA->m_faceName;
ff7b1510 533}
c801d85f 534
59b7da02 535wxFontFamily wxFont::DoGetFamily() const
c801d85f 536{
8bbe427f 537 return M_FONTDATA->m_family;
ff7b1510 538}
c801d85f 539
0c14b6c3 540wxFontStyle wxFont::GetStyle() const
c801d85f 541{
a1b806b9 542 wxCHECK_MSG( IsOk(), wxFONTSTYLE_MAX, wxT("invalid font") );
d84eb083 543
8bbe427f 544 return M_FONTDATA->m_style;
ff7b1510 545}
c801d85f 546
0c14b6c3 547wxFontWeight wxFont::GetWeight() const
c801d85f 548{
a1b806b9 549 wxCHECK_MSG( IsOk(), wxFONTWEIGHT_MAX, wxT("invalid font") );
8bbe427f
VZ
550
551 return M_FONTDATA->m_weight;
552}
553
8bbe427f
VZ
554bool wxFont::GetUnderlined() const
555{
a1b806b9 556 wxCHECK_MSG( IsOk(), false, wxT("invalid font") );
8bbe427f
VZ
557
558 return M_FONTDATA->m_underlined;
ff7b1510 559}
c801d85f 560
0c5d3e1c 561wxFontEncoding wxFont::GetEncoding() const
358fc25c 562{
a1b806b9 563 wxCHECK_MSG( IsOk(), wxFONTENCODING_DEFAULT, wxT("invalid font") );
0c5d3e1c 564
02d9204c 565 // m_encoding is unused in wxGTK2, return encoding that the user set.
0c5d3e1c 566 return M_FONTDATA->m_encoding;
358fc25c
RR
567}
568
3bf5a59b 569const wxNativeFontInfo *wxFont::GetNativeFontInfo() const
30764ab5 570{
a1b806b9 571 wxCHECK_MSG( IsOk(), NULL, wxT("invalid font") );
30764ab5 572
38de9427
VS
573 if ( !M_FONTDATA->HasNativeFont() )
574 {
575 // NB: this call has important side-effect: it not only finds
576 // GdkFont representation, it also initializes m_nativeFontInfo
577 // by calling its SetXFontName method
30764ab5 578 GetInternalFont();
38de9427 579 }
7826e2dd 580
3bf5a59b 581 return &(M_FONTDATA->m_nativeFontInfo);
30764ab5
VZ
582}
583
53f6aab7
VZ
584bool wxFont::IsFixedWidth() const
585{
a1b806b9 586 wxCHECK_MSG( IsOk(), false, wxT("invalid font") );
53f6aab7 587
409d5a58 588 if ( M_FONTDATA->HasNativeFont() )
53f6aab7
VZ
589 {
590 // the monospace fonts are supposed to have "M" in the spacing field
591 wxString spacing = M_FONTDATA->
592 m_nativeFontInfo.GetXFontComponent(wxXLFD_SPACING);
593
9a83f860 594 return spacing.Upper() == wxT('M');
53f6aab7
VZ
595 }
596
597 return wxFontBase::IsFixedWidth();
598}
30764ab5 599
0c5d3e1c
VZ
600// ----------------------------------------------------------------------------
601// change font attributes
602// ----------------------------------------------------------------------------
603
358fc25c
RR
604void wxFont::SetPointSize(int pointSize)
605{
606 Unshare();
011ba5ed 607
409d5a58 608 M_FONTDATA->SetPointSize(pointSize);
358fc25c
RR
609}
610
0c14b6c3 611void wxFont::SetFamily(wxFontFamily family)
358fc25c
RR
612{
613 Unshare();
614
409d5a58 615 M_FONTDATA->SetFamily(family);
358fc25c
RR
616}
617
0c14b6c3 618void wxFont::SetStyle(wxFontStyle style)
358fc25c
RR
619{
620 Unshare();
621
409d5a58 622 M_FONTDATA->SetStyle(style);
358fc25c
RR
623}
624
0c14b6c3 625void wxFont::SetWeight(wxFontWeight weight)
358fc25c
RR
626{
627 Unshare();
628
409d5a58 629 M_FONTDATA->SetWeight(weight);
358fc25c
RR
630}
631
85ab460e 632bool wxFont::SetFaceName(const wxString& faceName)
358fc25c
RR
633{
634 Unshare();
635
85ab460e
VZ
636 return M_FONTDATA->SetFaceName(faceName) &&
637 wxFontBase::SetFaceName(faceName);
358fc25c
RR
638}
639
640void wxFont::SetUnderlined(bool underlined)
641{
642 Unshare();
643
409d5a58 644 M_FONTDATA->SetUnderlined(underlined);
358fc25c
RR
645}
646
0c5d3e1c
VZ
647void wxFont::SetEncoding(wxFontEncoding encoding)
648{
649 Unshare();
c801d85f 650
409d5a58 651 M_FONTDATA->SetEncoding(encoding);
30764ab5
VZ
652}
653
9045ad9d 654void wxFont::DoSetNativeFontInfo( const wxNativeFontInfo& info )
2b5f62a0
VZ
655{
656 Unshare();
657
658 M_FONTDATA->SetNativeFontInfo( info );
659}
660
0c5d3e1c
VZ
661// ----------------------------------------------------------------------------
662// get internal representation of font
663// ----------------------------------------------------------------------------
c801d85f 664
d3b9f782 665static GdkFont *g_systemDefaultGuiFont = NULL;
c7985368 666
0b83552a 667// this is also used from toolbar.cpp and tooltip.cpp, hence extern
409d5a58 668extern GdkFont *GtkGetDefaultGuiFont()
c7985368
RR
669{
670 if (!g_systemDefaultGuiFont)
671 {
672 GtkWidget *widget = gtk_button_new();
673 GtkStyle *def = gtk_rc_get_style( widget );
e6527f9d
RR
674 if (def)
675 {
464f1a1d 676 g_systemDefaultGuiFont = gdk_font_ref( def->font );
e6527f9d
RR
677 }
678 else
679 {
680 def = gtk_widget_get_default_style();
681 if (def)
464f1a1d 682 g_systemDefaultGuiFont = gdk_font_ref( def->font );
e6527f9d 683 }
c7985368
RR
684 gtk_widget_destroy( widget );
685 }
b1d1dc51
VZ
686 else
687 {
688 // already have it, but ref it once more before returning
689 gdk_font_ref(g_systemDefaultGuiFont);
690 }
691
c7985368
RR
692 return g_systemDefaultGuiFont;
693}
694
36b3b54a 695GdkFont *wxFont::GetInternalFont( float scale ) const
c801d85f 696{
d3b9f782 697 GdkFont *font = NULL;
0c5d3e1c 698
a1b806b9 699 wxCHECK_MSG( IsOk(), font, wxT("invalid font") );
8bbe427f 700
db16cab4 701 long int_scale = long(scale * 100.0 + 0.5); // key for fontlist
b02da6b1 702 int point_scale = (int)((M_FONTDATA->m_pointSize * 10 * int_scale) / 100);
8bbe427f 703
011ba5ed
VZ
704 wxScaledFontList& list = M_FONTDATA->m_scaled_xfonts;
705 wxScaledFontList::iterator i = list.find(int_scale);
706 if ( i != list.end() )
8bbe427f 707 {
011ba5ed 708 font = i->second;
8bbe427f 709 }
409d5a58 710 else // we don't have this font in this size yet
8bbe427f 711 {
a756f210 712 if (*this == wxSystemSettings::GetFont( wxSYS_DEFAULT_GUI_FONT))
8bbe427f 713 {
c7985368 714 font = GtkGetDefaultGuiFont();
8bbe427f 715 }
409d5a58
VZ
716
717 if ( !font )
8bbe427f 718 {
409d5a58 719 // do we have the XLFD?
38de9427 720 if ( int_scale == 100 && M_FONTDATA->HasNativeFont() )
409d5a58
VZ
721 {
722 font = wxLoadFont(M_FONTDATA->m_nativeFontInfo.GetXFontName());
723 }
724
725 // no XLFD of no exact match - try the approximate one now
726 if ( !font )
727 {
728 wxString xfontname;
729 font = wxLoadQueryNearestFont( point_scale,
730 M_FONTDATA->m_family,
731 M_FONTDATA->m_style,
732 M_FONTDATA->m_weight,
733 M_FONTDATA->m_underlined,
734 M_FONTDATA->m_faceName,
735 M_FONTDATA->m_encoding,
736 &xfontname);
0f6858b6 737 // NB: wxFont::GetNativeFontInfo relies on this
38de9427
VS
738 // side-effect of GetInternalFont
739 if ( int_scale == 100 )
740 M_FONTDATA->m_nativeFontInfo.SetXFontName(xfontname);
409d5a58 741 }
8bbe427f 742 }
0c5d3e1c 743
409d5a58
VZ
744 if ( font )
745 {
011ba5ed 746 list[int_scale] = font;
409d5a58 747 }
8bbe427f 748 }
284b4c88 749
7beba2fc
VZ
750 // it's quite useless to make it a wxCHECK because we're going to crash
751 // anyhow...
752 wxASSERT_MSG( font, wxT("could not load any font?") );
284b4c88 753
8bbe427f 754 return font;
ff7b1510 755}