1 /////////////////////////////////////////////////////////////////////////////
2 // Name: src/x11/font.cpp
3 // Purpose: wxFont class
4 // Author: Julian Smart
8 // Copyright: (c) Julian Smart
9 // Licence: wxWindows licence
10 /////////////////////////////////////////////////////////////////////////////
12 // for compilers that support precompilation, includes "wx.h".
13 #include "wx/wxprec.h"
15 // ============================================================================
17 // ============================================================================
19 // ----------------------------------------------------------------------------
21 // ----------------------------------------------------------------------------
24 #pragma message disable nosimpint
25 #include "wx/vms_x_fix.h"
29 #pragma message enable nosimpint
35 #include "wx/string.h"
36 #include "wx/utils.h" // for wxGetDisplay()
37 #include "wx/settings.h"
38 #include "wx/gdicmn.h"
41 #include "wx/fontutil.h" // for wxNativeFontInfo
42 #include "wx/tokenzr.h"
44 #include "wx/x11/private.h"
46 IMPLEMENT_DYNAMIC_CLASS(wxFont
, wxGDIObject
)
48 // ----------------------------------------------------------------------------
50 // ----------------------------------------------------------------------------
52 // the default size (in points) for the fonts
53 static const int wxDEFAULT_FONT_SIZE
= 12;
58 // ----------------------------------------------------------------------------
60 // ----------------------------------------------------------------------------
62 // For every wxFont, there must be a font for each display and scale requested.
63 // So these objects are stored in wxFontRefData::m_fonts
64 class wxXFont
: public wxObject
70 WXFontStructPtr m_fontStruct
; // XFontStruct
71 WXDisplay
* m_display
; // XDisplay
72 int m_scale
; // Scale * 100
77 m_fontStruct
= (WXFontStructPtr
) 0;
78 m_display
= (WXDisplay
*) 0;
84 // Freeing the font used to produce a segv, but
85 // appears to be OK now (bug fix in X11?)
86 XFontStruct
* fontStruct
= (XFontStruct
*) m_fontStruct
;
87 XFreeFont((Display
*) m_display
, fontStruct
);
91 // ----------------------------------------------------------------------------
93 // ----------------------------------------------------------------------------
95 class wxFontRefData
: public wxObjectRefData
100 wxFontRefData(int size
= wxDEFAULT
,
101 int family
= wxDEFAULT
,
102 int style
= wxDEFAULT
,
103 int weight
= wxDEFAULT
,
104 bool underlined
= false,
105 const wxString
& faceName
= wxEmptyString
,
106 wxFontEncoding encoding
= wxFONTENCODING_DEFAULT
);
109 wxFontRefData(const wxFontRefData
& data
);
112 wxFontRefData(const wxString
& fontname
);
115 virtual ~wxFontRefData();
117 // setters: all of them also take care to modify m_nativeFontInfo if we
118 // have it so as to not lose the information not carried by our fields
119 void SetPointSize(int pointSize
);
120 void SetFamily(int family
);
121 void SetStyle(int style
);
122 void SetWeight(int weight
);
123 void SetUnderlined(bool underlined
);
124 bool SetFaceName(const wxString
& facename
);
125 void SetEncoding(wxFontEncoding encoding
);
127 void SetNoAntiAliasing( bool no
= true ) { m_noAA
= no
; }
128 bool GetNoAntiAliasing() const { return m_noAA
; }
130 // and this one also modifies all the other font data fields
131 void SetNativeFontInfo(const wxNativeFontInfo
& info
);
134 // common part of all ctors
140 const wxString
& faceName
,
141 wxFontEncoding encoding
);
143 // set all fields from (already initialized and valid) m_nativeFontInfo
144 void InitFromNative();
153 wxFontEncoding m_encoding
; // Unused in Unicode mode
154 bool m_noAA
; // No anti-aliasing
156 wxNativeFontInfo m_nativeFontInfo
;
158 void ClearX11Fonts();
162 // A list of wxXFonts
167 // ----------------------------------------------------------------------------
169 // ----------------------------------------------------------------------------
171 void wxFontRefData::Init(int pointSize
,
176 const wxString
& faceName
,
177 wxFontEncoding encoding
)
179 m_family
= family
== wxFONTFAMILY_DEFAULT
? wxFONTFAMILY_SWISS
: family
;
181 m_faceName
= faceName
;
183 // we accept both wxDEFAULT and wxNORMAL here - should we?
184 m_style
= style
== wxDEFAULT
? wxFONTSTYLE_NORMAL
: style
;
185 m_weight
= weight
== wxDEFAULT
? wxFONTWEIGHT_NORMAL
: weight
;
187 // and here, do we really want to forbid creation of the font of the size
188 // 90 (the value of wxDEFAULT)??
189 m_pointSize
= pointSize
== wxDEFAULT
|| pointSize
== -1
190 ? wxDEFAULT_FONT_SIZE
193 m_underlined
= underlined
;
194 m_encoding
= encoding
;
197 // Create native font info
198 m_nativeFontInfo
.description
= pango_font_description_new();
200 // And set its values
203 case wxFONTFAMILY_MODERN
:
204 case wxFONTFAMILY_TELETYPE
:
205 pango_font_description_set_family( m_nativeFontInfo
.description
, "monospace" );
207 case wxFONTFAMILY_ROMAN
:
208 pango_font_description_set_family( m_nativeFontInfo
.description
, "serif" );
211 pango_font_description_set_family( m_nativeFontInfo
.description
, "sans" );
215 SetPointSize( m_pointSize
);
216 SetWeight( m_weight
);
220 void wxFontRefData::InitFromNative()
226 PangoFontDescription
*desc
= m_nativeFontInfo
.description
;
229 m_faceName
= wxGTK_CONV_BACK( pango_font_description_get_family( desc
) );
231 m_pointSize
= pango_font_description_get_size( desc
) / PANGO_SCALE
;
233 switch (pango_font_description_get_style( desc
))
235 case PANGO_STYLE_NORMAL
:
236 m_style
= wxFONTSTYLE_NORMAL
;
238 case PANGO_STYLE_ITALIC
:
239 m_style
= wxFONTSTYLE_ITALIC
;
241 case PANGO_STYLE_OBLIQUE
:
242 m_style
= wxFONTSTYLE_SLANT
;
246 // Not defined in some Pango versions
247 #define wxPANGO_WEIGHT_SEMIBOLD 600
249 switch (pango_font_description_get_weight( desc
))
251 case PANGO_WEIGHT_ULTRALIGHT
:
252 case PANGO_WEIGHT_LIGHT
:
253 m_weight
= wxFONTWEIGHT_LIGHT
;
257 wxFAIL_MSG(_T("unknown Pango font weight"));
260 case PANGO_WEIGHT_NORMAL
:
261 m_weight
= wxFONTWEIGHT_NORMAL
;
264 case wxPANGO_WEIGHT_SEMIBOLD
:
265 case PANGO_WEIGHT_BOLD
:
266 case PANGO_WEIGHT_ULTRABOLD
:
267 case PANGO_WEIGHT_HEAVY
:
268 m_weight
= wxFONTWEIGHT_BOLD
;
272 if (m_faceName
== wxT("monospace"))
274 m_family
= wxFONTFAMILY_TELETYPE
;
276 else if (m_faceName
== wxT("sans"))
278 m_family
= wxFONTFAMILY_SWISS
;
282 m_family
= wxFONTFAMILY_UNKNOWN
;
285 // Pango description are never underlined (?)
286 m_underlined
= false;
288 // Cannot we choose that
289 m_encoding
= wxFONTENCODING_SYSTEM
;
291 // get the font parameters from the XLFD
292 // -------------------------------------
294 m_faceName
= m_nativeFontInfo
.GetXFontComponent(wxXLFD_FAMILY
);
296 m_weight
= wxFONTWEIGHT_NORMAL
;
298 wxString w
= m_nativeFontInfo
.GetXFontComponent(wxXLFD_WEIGHT
).Upper();
299 if ( !w
.empty() && w
!= _T('*') )
301 // the test below catches all of BOLD, EXTRABOLD, DEMIBOLD, ULTRABOLD
303 if ( ((w
[0u] == _T('B') && (!wxStrcmp(w
.c_str() + 1, wxT("OLD")) ||
304 !wxStrcmp(w
.c_str() + 1, wxT("LACK"))))) ||
305 wxStrstr(w
.c_str() + 1, _T("BOLD")) )
307 m_weight
= wxFONTWEIGHT_BOLD
;
309 else if ( w
== _T("LIGHT") || w
== _T("THIN") )
311 m_weight
= wxFONTWEIGHT_LIGHT
;
315 switch ( wxToupper(*m_nativeFontInfo
.
316 GetXFontComponent(wxXLFD_SLANT
).c_str()) )
318 case _T('I'): // italique
319 m_style
= wxFONTSTYLE_ITALIC
;
322 case _T('O'): // oblique
323 m_style
= wxFONTSTYLE_SLANT
;
327 m_style
= wxFONTSTYLE_NORMAL
;
331 if ( m_nativeFontInfo
.GetXFontComponent(wxXLFD_POINTSIZE
).ToLong(&ptSize
) )
333 // size in XLFD is in 10 point units
334 m_pointSize
= (int)(ptSize
/ 10);
338 m_pointSize
= wxDEFAULT_FONT_SIZE
;
341 // examine the spacing: if the font is monospaced, assume wxTELETYPE
342 // family for compatibility with the old code which used it instead of
344 if ( m_nativeFontInfo
.GetXFontComponent(wxXLFD_SPACING
).Upper() == _T('M') )
346 m_family
= wxFONTFAMILY_TELETYPE
;
348 else // not monospaceed
350 // don't even try guessing it, it doesn't work for too many fonts
352 m_family
= wxFONTFAMILY_UNKNOWN
;
355 // X fonts are never underlined...
356 m_underlined
= false;
358 // deal with font encoding
360 registry
= m_nativeFontInfo
.GetXFontComponent(wxXLFD_REGISTRY
).Upper(),
361 encoding
= m_nativeFontInfo
.GetXFontComponent(wxXLFD_ENCODING
).Upper();
363 if ( registry
== _T("ISO8859") )
366 if ( wxSscanf(encoding
, wxT("%d"), &cp
) == 1 )
368 m_encoding
= (wxFontEncoding
)(wxFONTENCODING_ISO8859_1
+ cp
- 1);
371 else if ( registry
== _T("MICROSOFT") )
374 if ( wxSscanf(encoding
, wxT("cp125%d"), &cp
) == 1 )
376 m_encoding
= (wxFontEncoding
)(wxFONTENCODING_CP1250
+ cp
);
379 else if ( registry
== _T("KOI8") )
381 m_encoding
= wxFONTENCODING_KOI8
;
383 else // unknown encoding
385 // may be give a warning here? or use wxFontMapper?
386 m_encoding
= wxFONTENCODING_SYSTEM
;
391 wxFontRefData::wxFontRefData( const wxFontRefData
& data
)
394 m_pointSize
= data
.m_pointSize
;
395 m_family
= data
.m_family
;
396 m_style
= data
.m_style
;
397 m_weight
= data
.m_weight
;
399 m_underlined
= data
.m_underlined
;
401 m_faceName
= data
.m_faceName
;
402 m_encoding
= data
.m_encoding
;
404 m_noAA
= data
.m_noAA
;
406 m_nativeFontInfo
= data
.m_nativeFontInfo
;
409 wxFontRefData::wxFontRefData(int size
, int family
, int style
,
410 int weight
, bool underlined
,
411 const wxString
& faceName
,
412 wxFontEncoding encoding
)
414 Init(size
, family
, style
, weight
, underlined
, faceName
, encoding
);
417 wxFontRefData::wxFontRefData(const wxString
& fontname
)
419 // VZ: FromString() should really work in both cases, doesn't it?
421 m_nativeFontInfo
.FromString( fontname
);
423 m_nativeFontInfo
.SetXFontName(fontname
);
429 void wxFontRefData::ClearX11Fonts()
433 wxList::compatibility_iterator node
= m_fonts
.GetFirst();
436 wxXFont
* f
= (wxXFont
*) node
->GetData();
438 node
= node
->GetNext();
444 wxFontRefData::~wxFontRefData()
449 // ----------------------------------------------------------------------------
450 // wxFontRefData SetXXX()
451 // ----------------------------------------------------------------------------
453 void wxFontRefData::SetPointSize(int pointSize
)
455 m_pointSize
= pointSize
;
459 PangoFontDescription
*desc
= m_nativeFontInfo
.description
;
461 pango_font_description_set_size( desc
, m_pointSize
* PANGO_SCALE
);
465 void wxFontRefData::SetFamily(int family
)
469 // TODO: what are we supposed to do with m_nativeFontInfo here?
472 void wxFontRefData::SetStyle(int style
)
478 PangoFontDescription
*desc
= m_nativeFontInfo
.description
;
482 case wxFONTSTYLE_ITALIC
:
483 pango_font_description_set_style( desc
, PANGO_STYLE_ITALIC
);
485 case wxFONTSTYLE_SLANT
:
486 pango_font_description_set_style( desc
, PANGO_STYLE_OBLIQUE
);
489 wxFAIL_MSG( _T("unknown font style") );
491 case wxFONTSTYLE_NORMAL
:
492 pango_font_description_set_style( desc
, PANGO_STYLE_NORMAL
);
498 void wxFontRefData::SetWeight(int weight
)
503 void wxFontRefData::SetUnderlined(bool underlined
)
505 m_underlined
= underlined
;
507 // the XLFD doesn't have "underlined" field anyhow
510 bool wxFontRefData::SetFaceName(const wxString
& facename
)
512 m_faceName
= facename
;
516 void wxFontRefData::SetEncoding(wxFontEncoding encoding
)
518 m_encoding
= encoding
;
521 void wxFontRefData::SetNativeFontInfo(const wxNativeFontInfo
& info
)
523 // previously cached fonts shouldn't be used
526 m_nativeFontInfo
= info
;
528 // set all the other font parameters from the native font info
532 // ----------------------------------------------------------------------------
534 // ----------------------------------------------------------------------------
536 wxFont::wxFont(const wxNativeFontInfo
& info
)
539 Create( info
.GetPointSize(),
543 info
.GetUnderlined(),
545 info
.GetEncoding() );
547 (void) Create(info
.GetXFontName());
551 bool wxFont::Create(int pointSize
,
556 const wxString
& faceName
,
557 wxFontEncoding encoding
)
561 m_refData
= new wxFontRefData(pointSize
, family
, style
, weight
,
562 underlined
, faceName
, encoding
);
569 bool wxFont::Create(const wxString
& fontname
, wxFontEncoding enc
)
573 *this = wxSystemSettings::GetFont( wxSYS_DEFAULT_GUI_FONT
);
577 m_refData
= new wxFontRefData();
579 M_FONTDATA
->m_nativeFontInfo
.SetXFontName(fontname
); // X font name
583 wxStringTokenizer
tn( fontname
, wxT("-") );
585 tn
.GetNextToken(); // skip initial empty token
586 tn
.GetNextToken(); // foundry
589 M_FONTDATA
->m_faceName
= tn
.GetNextToken(); // family
591 tmp
= tn
.GetNextToken().MakeUpper(); // weight
592 if (tmp
== wxT("BOLD")) M_FONTDATA
->m_weight
= wxBOLD
;
593 if (tmp
== wxT("BLACK")) M_FONTDATA
->m_weight
= wxBOLD
;
594 if (tmp
== wxT("EXTRABOLD")) M_FONTDATA
->m_weight
= wxBOLD
;
595 if (tmp
== wxT("DEMIBOLD")) M_FONTDATA
->m_weight
= wxBOLD
;
596 if (tmp
== wxT("ULTRABOLD")) M_FONTDATA
->m_weight
= wxBOLD
;
598 if (tmp
== wxT("LIGHT")) M_FONTDATA
->m_weight
= wxLIGHT
;
599 if (tmp
== wxT("THIN")) M_FONTDATA
->m_weight
= wxLIGHT
;
601 tmp
= tn
.GetNextToken().MakeUpper(); // slant
602 if (tmp
== wxT("I")) M_FONTDATA
->m_style
= wxITALIC
;
603 if (tmp
== wxT("O")) M_FONTDATA
->m_style
= wxITALIC
;
605 tn
.GetNextToken(); // set width
606 tn
.GetNextToken(); // add. style
607 tn
.GetNextToken(); // pixel size
609 tmp
= tn
.GetNextToken(); // pointsize
612 long num
= wxStrtol (tmp
.c_str(), (wxChar
**) NULL
, 10);
613 M_FONTDATA
->m_pointSize
= (int)(num
/ 10);
616 tn
.GetNextToken(); // x-res
617 tn
.GetNextToken(); // y-res
619 tmp
= tn
.GetNextToken().MakeUpper(); // spacing
622 M_FONTDATA
->m_family
= wxMODERN
;
623 else if (M_FONTDATA
->m_faceName
== wxT("TIMES"))
624 M_FONTDATA
->m_family
= wxROMAN
;
625 else if (M_FONTDATA
->m_faceName
== wxT("HELVETICA"))
626 M_FONTDATA
->m_family
= wxSWISS
;
627 else if (M_FONTDATA
->m_faceName
== wxT("LUCIDATYPEWRITER"))
628 M_FONTDATA
->m_family
= wxTELETYPE
;
629 else if (M_FONTDATA
->m_faceName
== wxT("LUCIDA"))
630 M_FONTDATA
->m_family
= wxDECORATIVE
;
631 else if (M_FONTDATA
->m_faceName
== wxT("UTOPIA"))
632 M_FONTDATA
->m_family
= wxSCRIPT
;
634 tn
.GetNextToken(); // avg width
636 // deal with font encoding
637 M_FONTDATA
->m_encoding
= enc
;
638 if ( M_FONTDATA
->m_encoding
== wxFONTENCODING_SYSTEM
)
640 wxString registry
= tn
.GetNextToken().MakeUpper(),
641 encoding
= tn
.GetNextToken().MakeUpper();
643 if ( registry
== _T("ISO8859") )
646 if ( wxSscanf(encoding
, wxT("%d"), &cp
) == 1 )
648 M_FONTDATA
->m_encoding
=
649 (wxFontEncoding
)(wxFONTENCODING_ISO8859_1
+ cp
- 1);
652 else if ( registry
== _T("MICROSOFT") )
655 if ( wxSscanf(encoding
, wxT("cp125%d"), &cp
) == 1 )
657 M_FONTDATA
->m_encoding
=
658 (wxFontEncoding
)(wxFONTENCODING_CP1250
+ cp
);
661 else if ( registry
== _T("KOI8") )
663 M_FONTDATA
->m_encoding
= wxFONTENCODING_KOI8
;
665 //else: unknown encoding - may be give a warning here?
671 #endif // !wxUSE_UNICODE
677 // ----------------------------------------------------------------------------
678 // change the font attributes
679 // ----------------------------------------------------------------------------
681 void wxFont::Unshare()
683 // Don't change shared data
686 m_refData
= new wxFontRefData();
690 wxFontRefData
* ref
= new wxFontRefData(*(wxFontRefData
*)m_refData
);
696 // ----------------------------------------------------------------------------
698 // ----------------------------------------------------------------------------
700 int wxFont::GetPointSize() const
702 wxCHECK_MSG( Ok(), 0, wxT("invalid font") );
704 return M_FONTDATA
->m_pointSize
;
707 wxString
wxFont::GetFaceName() const
709 wxCHECK_MSG( Ok(), wxEmptyString
, wxT("invalid font") );
711 return M_FONTDATA
->m_faceName
;
714 int wxFont::GetFamily() const
716 wxCHECK_MSG( Ok(), 0, wxT("invalid font") );
718 return M_FONTDATA
->m_family
;
721 int wxFont::GetStyle() const
723 wxCHECK_MSG( Ok(), 0, wxT("invalid font") );
725 return M_FONTDATA
->m_style
;
728 int wxFont::GetWeight() const
730 wxCHECK_MSG( Ok(), 0, wxT("invalid font") );
732 return M_FONTDATA
->m_weight
;
735 bool wxFont::GetUnderlined() const
737 wxCHECK_MSG( Ok(), false, wxT("invalid font") );
739 return M_FONTDATA
->m_underlined
;
742 wxFontEncoding
wxFont::GetEncoding() const
744 wxCHECK_MSG( Ok(), wxFONTENCODING_DEFAULT
, wxT("invalid font") );
746 return M_FONTDATA
->m_encoding
;
749 bool wxFont::GetNoAntiAliasing() const
751 wxCHECK_MSG( Ok(), wxFONTENCODING_DEFAULT
, wxT("invalid font") );
753 return M_FONTDATA
->m_noAA
;
756 const wxNativeFontInfo
*wxFont::GetNativeFontInfo() const
758 wxCHECK_MSG( Ok(), (wxNativeFontInfo
*)NULL
, wxT("invalid font") );
762 if ( M_FONTDATA
->m_nativeFontInfo
.GetXFontName().empty() )
766 return &(M_FONTDATA
->m_nativeFontInfo
);
769 bool wxFont::IsFixedWidth() const
771 wxCHECK_MSG( Ok(), false, wxT("invalid font") );
774 return wxFontBase::IsFixedWidth();
776 // Robert, is this right? HasNativeFont doesn't exist.
778 // if ( M_FONTDATA->HasNativeFont() )
780 // the monospace fonts are supposed to have "M" in the spacing field
781 wxString spacing
= M_FONTDATA
->
782 m_nativeFontInfo
.GetXFontComponent(wxXLFD_SPACING
);
784 return spacing
.Upper() == _T('M');
786 // Unreaceable code for now
787 // return wxFontBase::IsFixedWidth();
792 // ----------------------------------------------------------------------------
793 // change font attributes
794 // ----------------------------------------------------------------------------
796 void wxFont::SetPointSize(int pointSize
)
800 M_FONTDATA
->SetPointSize(pointSize
);
803 void wxFont::SetFamily(int family
)
807 M_FONTDATA
->SetFamily(family
);
810 void wxFont::SetStyle(int style
)
814 M_FONTDATA
->SetStyle(style
);
817 void wxFont::SetWeight(int weight
)
821 M_FONTDATA
->SetWeight(weight
);
824 bool wxFont::SetFaceName(const wxString
& faceName
)
828 return M_FONTDATA
->SetFaceName(faceName
) &&
829 wxFontBase::SetFaceName(faceName
);
832 void wxFont::SetUnderlined(bool underlined
)
836 M_FONTDATA
->SetUnderlined(underlined
);
839 void wxFont::SetEncoding(wxFontEncoding encoding
)
843 M_FONTDATA
->SetEncoding(encoding
);
846 void wxFont::DoSetNativeFontInfo( const wxNativeFontInfo
& info
)
850 M_FONTDATA
->SetNativeFontInfo( info
);
853 void wxFont::SetNoAntiAliasing( bool no
)
857 M_FONTDATA
->SetNoAntiAliasing( no
);
863 // ----------------------------------------------------------------------------
864 // X11 implementation
865 // ----------------------------------------------------------------------------
867 // Find an existing, or create a new, XFontStruct
868 // based on this wxFont and the given scale. Append the
869 // font to list in the private data for future reference.
870 wxXFont
* wxFont::GetInternalFont(double scale
, WXDisplay
* display
) const
873 return (wxXFont
*)NULL
;
875 long intScale
= long(scale
* 100.0 + 0.5); // key for wxXFont
876 int pointSize
= (M_FONTDATA
->m_pointSize
* 10 * intScale
) / 100;
878 // search existing fonts first
879 wxList::compatibility_iterator node
= M_FONTDATA
->m_fonts
.GetFirst();
882 wxXFont
* f
= (wxXFont
*) node
->GetData();
883 if ((!display
|| (f
->m_display
== display
)) && (f
->m_scale
== intScale
))
885 node
= node
->GetNext();
888 wxString xFontName
= M_FONTDATA
->m_nativeFontInfo
.GetXFontName();
889 if (xFontName
== "-*-*-*-*-*--*-*-*-*-*-*-*-*")
890 // wxFont constructor not called with native font info parameter => take M_FONTDATA values
893 // not found, create a new one
894 XFontStruct
*font
= (XFontStruct
*)
895 wxLoadQueryNearestFont(pointSize
,
896 M_FONTDATA
->m_family
,
898 M_FONTDATA
->m_weight
,
899 M_FONTDATA
->m_underlined
,
901 M_FONTDATA
->m_encoding
,
906 wxFAIL_MSG( wxT("Could not allocate even a default font -- something is wrong.") );
908 return (wxXFont
*) NULL
;
911 wxXFont
* f
= new wxXFont
;
912 f
->m_fontStruct
= (WXFontStructPtr
)font
;
913 f
->m_display
= ( display
? display
: wxGetDisplay() );
914 f
->m_scale
= intScale
;
915 M_FONTDATA
->m_fonts
.Append(f
);
920 WXFontStructPtr
wxFont::GetFontStruct(double scale
, WXDisplay
* display
) const
922 wxXFont
* f
= GetInternalFont(scale
, display
);
924 return (f
? f
->m_fontStruct
: (WXFontStructPtr
) 0);