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