1 /////////////////////////////////////////////////////////////////////////////
2 // Name: unix/fontutil.cpp
3 // Purpose: Font helper functions for X11 (GDK/X)
4 // Author: Vadim Zeitlin
8 // Copyright: (c) Vadim Zeitlin
9 // Licence: wxWindows license
10 /////////////////////////////////////////////////////////////////////////////
12 // ============================================================================
14 // ============================================================================
16 // ----------------------------------------------------------------------------
18 // ----------------------------------------------------------------------------
21 #pragma implementation "fontutil.h"
24 // For compilers that support precompilation, includes "wx.h".
25 #include "wx/wxprec.h"
36 #pragma message disable nosimpint
40 #pragma message enable nosimpint
43 #include "wx/utils.h" // for wxGetDisplay()
44 #elif defined(__WXGTK__)
48 #include "wx/fontutil.h"
49 #include "wx/fontmap.h"
50 #include "wx/tokenzr.h"
52 // ----------------------------------------------------------------------------
54 // ----------------------------------------------------------------------------
56 // define the functions to create and destroy native fonts for this toolkit
58 static inline wxNativeFont
wxLoadFont(const wxString
& fontSpec
)
60 return XLoadQueryFont((Display
*)wxGetDisplay(), fontSpec
);
63 static inline void wxFreeFont(wxNativeFont font
)
65 XFreeFont((Display
*)wxGetDisplay(), (XFontStruct
*)font
);
67 #elif defined(__WXGTK__)
68 static inline wxNativeFont
wxLoadFont(const wxString
& fontSpec
)
70 return gdk_font_load( wxConvertWX2MB(fontSpec
) );
73 static inline void wxFreeFont(wxNativeFont font
)
78 #error "Unknown GUI toolkit"
81 static bool wxTestFontSpec(const wxString
& fontspec
);
83 static wxNativeFont
wxLoadQueryFont(int pointSize
,
88 const wxString
& facename
,
89 const wxString
& xregistry
,
90 const wxString
& xencoding
);
92 // ============================================================================
94 // ============================================================================
96 // ----------------------------------------------------------------------------
97 // wxNativeEncodingInfo
98 // ----------------------------------------------------------------------------
100 // convert to/from the string representation: format is
101 // registry-encoding[-facename]
102 bool wxNativeEncodingInfo::FromString(const wxString
& s
)
104 wxStringTokenizer
tokenizer(s
, _T("-"));
106 xregistry
= tokenizer
.GetNextToken();
110 xencoding
= tokenizer
.GetNextToken();
115 facename
= tokenizer
.GetNextToken();
120 wxString
wxNativeEncodingInfo::ToString() const
123 s
<< xregistry
<< _T('-') << xencoding
;
126 s
<< _T('-') << facename
;
132 // ----------------------------------------------------------------------------
134 // ----------------------------------------------------------------------------
136 bool wxGetNativeFontEncoding(wxFontEncoding encoding
,
137 wxNativeEncodingInfo
*info
)
139 wxCHECK_MSG( info
, FALSE
, _T("bad pointer in wxGetNativeFontEncoding") );
141 if ( encoding
== wxFONTENCODING_DEFAULT
)
143 encoding
= wxFont::GetDefaultEncoding();
148 case wxFONTENCODING_ISO8859_1
:
149 case wxFONTENCODING_ISO8859_2
:
150 case wxFONTENCODING_ISO8859_3
:
151 case wxFONTENCODING_ISO8859_4
:
152 case wxFONTENCODING_ISO8859_5
:
153 case wxFONTENCODING_ISO8859_6
:
154 case wxFONTENCODING_ISO8859_7
:
155 case wxFONTENCODING_ISO8859_8
:
156 case wxFONTENCODING_ISO8859_9
:
157 case wxFONTENCODING_ISO8859_10
:
158 case wxFONTENCODING_ISO8859_11
:
159 case wxFONTENCODING_ISO8859_13
:
160 case wxFONTENCODING_ISO8859_14
:
161 case wxFONTENCODING_ISO8859_15
:
163 int cp
= encoding
- wxFONTENCODING_ISO8859_1
+ 1;
164 info
->xregistry
= wxT("iso8859");
165 info
->xencoding
.Printf(wxT("%d"), cp
);
169 case wxFONTENCODING_KOI8
:
170 info
->xregistry
= wxT("koi8");
172 // we don't make distinction between koi8-r and koi8-u (so far)
173 info
->xencoding
= wxT("*");
176 case wxFONTENCODING_CP1250
:
177 case wxFONTENCODING_CP1251
:
178 case wxFONTENCODING_CP1252
:
179 case wxFONTENCODING_CP1253
:
180 case wxFONTENCODING_CP1254
:
181 case wxFONTENCODING_CP1255
:
182 case wxFONTENCODING_CP1256
:
183 case wxFONTENCODING_CP1257
:
185 int cp
= encoding
- wxFONTENCODING_CP1250
+ 1250;
186 info
->xregistry
= wxT("microsoft");
187 info
->xencoding
.Printf(wxT("cp%d"), cp
);
191 case wxFONTENCODING_SYSTEM
:
193 info
->xencoding
= wxT("*");
197 // don't know how to translate this encoding into X fontspec
204 bool wxTestFontEncoding(const wxNativeEncodingInfo
& info
)
207 fontspec
.Printf(_T("-*-%s-*-*-*-*-*-*-*-*-*-*-%s-%s"),
208 !info
.facename
? _T("*") : info
.facename
.c_str(),
209 info
.xregistry
.c_str(),
210 info
.xencoding
.c_str());
212 return wxTestFontSpec(fontspec
);
215 // ----------------------------------------------------------------------------
216 // X-specific functions
217 // ----------------------------------------------------------------------------
219 wxNativeFont
wxLoadQueryNearestFont(int pointSize
,
224 const wxString
&facename
,
225 wxFontEncoding encoding
)
227 if ( encoding
== wxFONTENCODING_DEFAULT
)
229 encoding
= wxFont::GetDefaultEncoding();
232 // first determine the encoding - if the font doesn't exist at all in this
233 // encoding, it's useless to do all other approximations (i.e. size,
234 // family &c don't matter much)
235 wxNativeEncodingInfo info
;
236 if ( encoding
== wxFONTENCODING_SYSTEM
)
238 // This will always work so we don't test to save time
239 wxGetNativeFontEncoding(wxFONTENCODING_SYSTEM
, &info
);
243 if ( !wxGetNativeFontEncoding(encoding
, &info
) ||
244 !wxTestFontEncoding(info
) )
246 if ( !wxTheFontMapper
->GetAltForEncoding(encoding
, &info
) )
248 // unspported encoding - replace it with the default
250 // NB: we can't just return 0 from here because wxGTK code doesn't
251 // check for it (i.e. it supposes that we'll always succeed),
252 // so it would provoke a crash
253 wxGetNativeFontEncoding(wxFONTENCODING_SYSTEM
, &info
);
258 // OK, we have the correct xregistry/xencoding in info structure
259 wxNativeFont font
= wxLoadQueryFont( pointSize
, family
, style
, weight
,
260 underlined
, facename
,
261 info
.xregistry
, info
.xencoding
);
265 // search up and down by stepsize 10
266 int max_size
= pointSize
+ 20 * (1 + (pointSize
/180));
267 int min_size
= pointSize
- 20 * (1 + (pointSize
/180));
271 // Search for smaller size (approx.)
272 for ( i
= pointSize
- 10; !font
&& i
>= 10 && i
>= min_size
; i
-= 10 )
274 font
= wxLoadQueryFont(i
, family
, style
, weight
, underlined
,
275 facename
, info
.xregistry
, info
.xencoding
);
278 // Search for larger size (approx.)
279 for ( i
= pointSize
+ 10; !font
&& i
<= max_size
; i
+= 10 )
281 font
= wxLoadQueryFont(i
, family
, style
, weight
, underlined
,
282 facename
, info
.xregistry
, info
.xencoding
);
285 // Try default family
286 if ( !font
&& family
!= wxDEFAULT
)
288 font
= wxLoadQueryFont(pointSize
, wxDEFAULT
, style
, weight
,
289 underlined
, facename
,
290 info
.xregistry
, info
.xencoding
);
296 font
= wxLoadQueryFont(120, wxDEFAULT
, wxNORMAL
, wxNORMAL
,
297 underlined
, facename
,
298 info
.xregistry
, info
.xencoding
);
304 font
= wxLoadQueryFont(120, wxDEFAULT
, wxNORMAL
, wxNORMAL
,
305 underlined
, wxEmptyString
,
306 info
.xregistry
, info
.xencoding
);
313 // ----------------------------------------------------------------------------
315 // ----------------------------------------------------------------------------
317 // returns TRUE if there are any fonts matching this font spec
318 static bool wxTestFontSpec(const wxString
& fontspec
)
320 // some X servers will fail to load this font because there are too many
321 // matches so we must test explicitly for this
322 if ( fontspec
== _T("-*-*-*-*-*-*-*-*-*-*-*-*-*-*") )
327 wxNativeFont test
= wxLoadFont(fontspec
);
340 static wxNativeFont
wxLoadQueryFont(int pointSize
,
344 bool WXUNUSED(underlined
),
345 const wxString
& facename
,
346 const wxString
& xregistry
,
347 const wxString
& xencoding
)
352 case wxDECORATIVE
: xfamily
= wxT("lucida"); break;
353 case wxROMAN
: xfamily
= wxT("times"); break;
354 case wxMODERN
: xfamily
= wxT("courier"); break;
355 case wxSWISS
: xfamily
= wxT("helvetica"); break;
356 case wxTELETYPE
: xfamily
= wxT("lucidatypewriter"); break;
357 case wxSCRIPT
: xfamily
= wxT("utopia"); break;
358 default: xfamily
= wxT("*");
362 if (!facename
.IsEmpty())
364 fontSpec
.Printf(wxT("-*-%s-*-*-normal-*-*-*-*-*-*-*-*-*"),
367 if ( wxTestFontSpec(fontSpec
) )
371 //else: no such family, use default one instead
377 case wxITALIC
: xstyle
= wxT("i"); break;
378 case wxSLANT
: xstyle
= wxT("o"); break;
379 case wxNORMAL
: xstyle
= wxT("r"); break;
380 default: xstyle
= wxT("*"); break;
388 fontSpec
.Printf(wxT("-*-%s-bold-*-*-*-*-*-*-*-*-*-*-*"),
390 if ( wxTestFontSpec(fontSpec
) )
392 xweight
= wxT("bold");
395 fontSpec
.Printf(wxT("-*-%s-heavy-*-*-*-*-*-*-*-*-*-*-*"),
397 if ( wxTestFontSpec(fontSpec
) )
399 xweight
= wxT("heavy");
402 fontSpec
.Printf(wxT("-*-%s-extrabold-*-*-*-*-*-*-*-*-*-*-*"),
404 if ( wxTestFontSpec(fontSpec
) )
406 xweight
= wxT("extrabold");
409 fontSpec
.Printf(wxT("-*-%s-demibold-*-*-*-*-*-*-*-*-*-*-*"),
411 if ( wxTestFontSpec(fontSpec
) )
413 xweight
= wxT("demibold");
416 fontSpec
.Printf(wxT("-*-%s-black-*-*-*-*-*-*-*-*-*-*-*"),
418 if ( wxTestFontSpec(fontSpec
) )
420 xweight
= wxT("black");
423 fontSpec
.Printf(wxT("-*-%s-ultrablack-*-*-*-*-*-*-*-*-*-*-*"),
425 if ( wxTestFontSpec(fontSpec
) )
427 xweight
= wxT("ultrablack");
434 fontSpec
.Printf(wxT("-*-%s-light-*-*-*-*-*-*-*-*-*-*-*"),
436 if ( wxTestFontSpec(fontSpec
) )
438 xweight
= wxT("light");
441 fontSpec
.Printf(wxT("-*-%s-thin-*-*-*-*-*-*-*-*-*-*-*"),
443 if ( wxTestFontSpec(fontSpec
) )
445 xweight
= wxT("thin");
452 fontSpec
.Printf(wxT("-*-%s-medium-*-*-*-*-*-*-*-*-*-*-*"),
454 if ( wxTestFontSpec(fontSpec
) )
456 xweight
= wxT("medium");
459 fontSpec
.Printf(wxT("-*-%s-normal-*-*-*-*-*-*-*-*-*-*-*"),
461 if ( wxTestFontSpec(fontSpec
) )
463 xweight
= wxT("normal");
466 fontSpec
.Printf(wxT("-*-%s-regular-*-*-*-*-*-*-*-*-*-*-*"),
468 if ( wxTestFontSpec(fontSpec
) )
470 xweight
= wxT("regular");
476 default: xweight
= wxT("*"); break;
479 // construct the X font spec from our data
480 fontSpec
.Printf(wxT("-*-%s-%s-%s-normal-*-*-%d-*-*-*-*-%s-%s"),
481 xfamily
.c_str(), xweight
.c_str(), xstyle
.c_str(),
482 pointSize
, xregistry
.c_str(), xencoding
.c_str());
484 return wxLoadFont(fontSpec
);