]> git.saurik.com Git - wxWidgets.git/blame - src/common/fontcmn.cpp
Get wxMediaCtrl stub impl. going for OS X Cocoa.
[wxWidgets.git] / src / common / fontcmn.cpp
CommitLineData
8f7fa6f8 1/////////////////////////////////////////////////////////////////////////////
da80ae71 2// Name: src/common/fontcmn.cpp
0c5d3e1c
VZ
3// Purpose: implementation of wxFontBase methods
4// Author: Vadim Zeitlin
5// Modified by:
6// Created: 20.09.99
7// RCS-ID: $Id$
77ffb593 8// Copyright: (c) wxWidgets team
65571936 9// Licence: wxWindows licence
0c5d3e1c
VZ
10/////////////////////////////////////////////////////////////////////////////
11
12// ============================================================================
13// declarations
14// ============================================================================
15
16// ----------------------------------------------------------------------------
17// headers
18// ----------------------------------------------------------------------------
19
20// For compilers that support precompilation, includes "wx.h".
21#include "wx/wxprec.h"
22
23#ifdef __BORLANDC__
da80ae71 24 #pragma hdrstop
0c5d3e1c
VZ
25#endif
26
da80ae71
WS
27#include "wx/font.h"
28
0c5d3e1c 29#ifndef WX_PRECOMP
452aa069 30 #include "wx/dc.h"
9342fdbe
VZ
31 #include "wx/intl.h"
32 #include "wx/dcscreen.h"
8d3ba63b 33 #include "wx/log.h"
dd05139a 34 #include "wx/gdicmn.h"
0c5d3e1c
VZ
35#endif // WX_PRECOMP
36
82ef81ed 37#if defined(__WXMSW__)
7bd236e6
WS
38 #include "wx/msw/private.h" // includes windows.h for LOGFONT
39 #include "wx/msw/winundef.h"
1c193821
JS
40#endif
41
76e23cdb 42#include "wx/fontutil.h" // for wxNativeFontInfo
ab5fe833 43#include "wx/fontmap.h"
85ab460e 44#include "wx/fontenum.h"
76e23cdb 45
30764ab5
VZ
46#include "wx/tokenzr.h"
47
0c5d3e1c
VZ
48// ============================================================================
49// implementation
50// ============================================================================
51
544229d1
VZ
52// ----------------------------------------------------------------------------
53// helper functions
54// ----------------------------------------------------------------------------
55
8093538c 56static void AdjustFontSize(wxFont& font, wxDC& dc, const wxSize& pixelSize)
544229d1 57{
d141b218 58 int currentSize = 0;
8093538c
VZ
59 int largestGood = 0;
60 int smallestBad = 0;
544229d1
VZ
61
62 bool initialGoodFound = false;
63 bool initialBadFound = false;
64
d141b218
DS
65 // NB: this assignment was separated from the variable definition
66 // in order to fix a gcc v3.3.3 compiler crash
bf26e9e0 67 currentSize = font.GetPointSize();
544229d1
VZ
68 while (currentSize > 0)
69 {
70 dc.SetFont(font);
71
72 // if currentSize (in points) results in a font that is smaller
73 // than required by pixelSize it is considered a good size
74 if (dc.GetCharHeight() <= pixelSize.GetHeight() &&
75 (!pixelSize.GetWidth() ||
76 dc.GetCharWidth() <= pixelSize.GetWidth()))
77 {
78 largestGood = currentSize;
79 initialGoodFound = true;
80 }
81 else
82 {
83 smallestBad = currentSize;
84 initialBadFound = true;
85 }
86 if (!initialGoodFound)
87 {
88 currentSize /= 2;
89 }
90 else if (!initialBadFound)
91 {
92 currentSize *= 2;
93 }
94 else
95 {
96 int distance = smallestBad - largestGood;
97 if (distance == 1)
98 break;
99
100 currentSize = largestGood + distance / 2;
101 }
102
103 font.SetPointSize(currentSize);
104 }
105
106 if (currentSize != largestGood)
107 font.SetPointSize(largestGood);
108}
109
0c5d3e1c
VZ
110// ----------------------------------------------------------------------------
111// wxFontBase
112// ----------------------------------------------------------------------------
113
114wxFontEncoding wxFontBase::ms_encodingDefault = wxFONTENCODING_SYSTEM;
115
cafbf6fb
VZ
116/* static */
117void wxFontBase::SetDefaultEncoding(wxFontEncoding encoding)
118{
119 // GetDefaultEncoding() should return something != wxFONTENCODING_DEFAULT
120 // and, besides, using this value here doesn't make any sense
121 wxCHECK_RET( encoding != wxFONTENCODING_DEFAULT,
122 _T("can't set default encoding to wxFONTENCODING_DEFAULT") );
123
124 ms_encodingDefault = encoding;
125}
126
799ea011
GD
127wxFontBase::~wxFontBase()
128{
129 // this destructor is required for Darwin
130}
131
7beba2fc 132/* static */
0c5d3e1c
VZ
133wxFont *wxFontBase::New(int size,
134 int family,
135 int style,
136 int weight,
137 bool underlined,
138 const wxString& face,
139 wxFontEncoding encoding)
140{
141 return new wxFont(size, family, style, weight, underlined, face, encoding);
142}
143
544229d1 144static inline int flags2Style(int flags)
01cb1c26 145{
544229d1 146 return flags & wxFONTFLAG_ITALIC
01cb1c26
VZ
147 ? wxFONTSTYLE_ITALIC
148 : flags & wxFONTFLAG_SLANT
149 ? wxFONTSTYLE_SLANT
544229d1
VZ
150 : wxFONTSTYLE_NORMAL;
151}
152
153static inline int flags2Weight(int flags)
154{
155 return flags & wxFONTFLAG_LIGHT
01cb1c26
VZ
156 ? wxFONTWEIGHT_LIGHT
157 : flags & wxFONTFLAG_BOLD
158 ? wxFONTWEIGHT_BOLD
544229d1
VZ
159 : wxFONTWEIGHT_NORMAL;
160}
161
162static inline bool flags2Underlined(int flags)
163{
164 return (flags & wxFONTFLAG_UNDERLINED) != 0;
165}
166
167/* static */
168wxFont *wxFontBase::New(int pointSize,
169 wxFontFamily family,
170 int flags,
171 const wxString& face,
172 wxFontEncoding encoding)
173{
174 return New(pointSize, family, flags2Style(flags), flags2Weight(flags),
175 flags2Underlined(flags), face, encoding);
176}
177
178/* static */
179wxFont *wxFontBase::New(const wxSize& pixelSize,
180 int family,
181 int style,
182 int weight,
183 bool underlined,
184 const wxString& face,
185 wxFontEncoding encoding)
186{
187#if defined(__WXMSW__)
188 return new wxFont(pixelSize, family, style, weight, underlined,
189 face, encoding);
190#else
9342fdbe 191 wxFont *self = New(10, family, style, weight, underlined, face, encoding);
544229d1 192 wxScreenDC dc;
9342fdbe
VZ
193 AdjustFontSize(*(wxFont *)self, dc, pixelSize);
194 return self;
544229d1
VZ
195#endif
196}
197
198/* static */
199wxFont *wxFontBase::New(const wxSize& pixelSize,
200 wxFontFamily family,
201 int flags,
202 const wxString& face,
203 wxFontEncoding encoding)
204{
205 return New(pixelSize, family, flags2Style(flags), flags2Weight(flags),
206 flags2Underlined(flags), face, encoding);
207}
208
209wxSize wxFontBase::GetPixelSize() const
210{
211 wxScreenDC dc;
212 dc.SetFont(*(wxFont *)this);
213 return wxSize(dc.GetCharWidth(), dc.GetCharHeight());
214}
215
216bool wxFontBase::IsUsingSizeInPixels() const
217{
218 return false;
219}
220
221void wxFontBase::SetPixelSize( const wxSize& pixelSize )
222{
223 wxScreenDC dc;
224 AdjustFontSize(*(wxFont *)this, dc, pixelSize);
01cb1c26
VZ
225}
226
30764ab5
VZ
227/* static */
228wxFont *wxFontBase::New(const wxNativeFontInfo& info)
229{
230 return new wxFont(info);
231}
232
7826e2dd
VZ
233/* static */
234wxFont *wxFontBase::New(const wxString& strNativeFontDesc)
30764ab5 235{
30764ab5 236 wxNativeFontInfo fontInfo;
7826e2dd 237 if ( !fontInfo.FromString(strNativeFontDesc) )
09fcd889 238 return new wxFont(*wxNORMAL_FONT);
7826e2dd
VZ
239
240 return New(fontInfo);
241}
242
53f6aab7
VZ
243bool wxFontBase::IsFixedWidth() const
244{
245 return GetFamily() == wxFONTFAMILY_TELETYPE;
246}
247
9045ad9d 248void wxFontBase::DoSetNativeFontInfo(const wxNativeFontInfo& info)
30764ab5 249{
ab5fe833 250#ifdef wxNO_NATIVE_FONTINFO
30764ab5
VZ
251 SetPointSize(info.pointSize);
252 SetFamily(info.family);
253 SetStyle(info.style);
254 SetWeight(info.weight);
255 SetUnderlined(info.underlined);
256 SetFaceName(info.faceName);
257 SetEncoding(info.encoding);
33ac7e6f 258#else
1e6feb95 259 (void)info;
30764ab5
VZ
260#endif
261}
262
7826e2dd
VZ
263wxString wxFontBase::GetNativeFontInfoDesc() const
264{
265 wxString fontDesc;
3bf5a59b 266 const wxNativeFontInfo *fontInfo = GetNativeFontInfo();
7826e2dd
VZ
267 if ( fontInfo )
268 {
269 fontDesc = fontInfo->ToString();
dd05139a 270 wxASSERT_MSG(!fontDesc.empty(), wxT("This should be a non-empty string!"));
85ab460e
VZ
271 }
272 else
273 {
7bd236e6 274 wxFAIL_MSG(wxT("Derived class should have created the wxNativeFontInfo!"));
7826e2dd
VZ
275 }
276
277 return fontDesc;
278}
279
ab5fe833
VZ
280wxString wxFontBase::GetNativeFontInfoUserDesc() const
281{
282 wxString fontDesc;
3bf5a59b 283 const wxNativeFontInfo *fontInfo = GetNativeFontInfo();
ab5fe833
VZ
284 if ( fontInfo )
285 {
286 fontDesc = fontInfo->ToUserString();
dd05139a 287 wxASSERT_MSG(!fontDesc.empty(), wxT("This should be a non-empty string!"));
85ab460e
VZ
288 }
289 else
290 {
7456f382 291 wxFAIL_MSG(wxT("Derived class should have created the wxNativeFontInfo!"));
ab5fe833
VZ
292 }
293
294 return fontDesc;
295}
296
85ab460e 297bool wxFontBase::SetNativeFontInfo(const wxString& info)
31d1b66e
VZ
298{
299 wxNativeFontInfo fontInfo;
300 if ( !info.empty() && fontInfo.FromString(info) )
301 {
302 SetNativeFontInfo(fontInfo);
85ab460e 303 return true;
31d1b66e 304 }
85ab460e 305
85ab460e 306 return false;
31d1b66e
VZ
307}
308
85ab460e 309bool wxFontBase::SetNativeFontInfoUserDesc(const wxString& info)
ab5fe833
VZ
310{
311 wxNativeFontInfo fontInfo;
312 if ( !info.empty() && fontInfo.FromUserString(info) )
313 {
314 SetNativeFontInfo(fontInfo);
85ab460e 315 return true;
ab5fe833 316 }
85ab460e 317
85ab460e 318 return false;
ab5fe833
VZ
319}
320
0c5d3e1c
VZ
321bool wxFontBase::operator==(const wxFont& font) const
322{
8bf30fe9
VZ
323 // either it is the same font, i.e. they share the same common data or they
324 // have different ref datas but still describe the same font
a38cd629 325 return IsSameAs(font) ||
8bf30fe9
VZ
326 (
327 Ok() == font.Ok() &&
328 GetPointSize() == font.GetPointSize() &&
82d0e7fe
VZ
329 // in wxGTK1 GetPixelSize() calls GetInternalFont() which uses
330 // operator==() resulting in infinite recursion so we can't use it
331 // in that port
332#if !defined(__WXGTK__) || defined(__WXGTK20__)
cc3de8a3 333 GetPixelSize() == font.GetPixelSize() &&
82d0e7fe 334#endif
8bf30fe9
VZ
335 GetFamily() == font.GetFamily() &&
336 GetStyle() == font.GetStyle() &&
e6adf058 337 GetWeight() == font.GetWeight() &&
8bf30fe9 338 GetUnderlined() == font.GetUnderlined() &&
85ab460e 339 GetFaceName().IsSameAs(font.GetFaceName(), false) &&
8bf30fe9
VZ
340 GetEncoding() == font.GetEncoding()
341 );
0c5d3e1c
VZ
342}
343
0c5d3e1c
VZ
344wxString wxFontBase::GetFamilyString() const
345{
223d09f6 346 wxCHECK_MSG( Ok(), wxT("wxDEFAULT"), wxT("invalid font") );
0c5d3e1c
VZ
347
348 switch ( GetFamily() )
349 {
223d09f6
KB
350 case wxDECORATIVE: return wxT("wxDECORATIVE");
351 case wxROMAN: return wxT("wxROMAN");
352 case wxSCRIPT: return wxT("wxSCRIPT");
353 case wxSWISS: return wxT("wxSWISS");
354 case wxMODERN: return wxT("wxMODERN");
355 case wxTELETYPE: return wxT("wxTELETYPE");
356 default: return wxT("wxDEFAULT");
0c5d3e1c
VZ
357 }
358}
359
360wxString wxFontBase::GetStyleString() const
361{
223d09f6 362 wxCHECK_MSG( Ok(), wxT("wxDEFAULT"), wxT("invalid font") );
0c5d3e1c
VZ
363
364 switch ( GetStyle() )
365 {
223d09f6
KB
366 case wxNORMAL: return wxT("wxNORMAL");
367 case wxSLANT: return wxT("wxSLANT");
368 case wxITALIC: return wxT("wxITALIC");
369 default: return wxT("wxDEFAULT");
0c5d3e1c
VZ
370 }
371}
372
373wxString wxFontBase::GetWeightString() const
374{
223d09f6 375 wxCHECK_MSG( Ok(), wxT("wxDEFAULT"), wxT("invalid font") );
0c5d3e1c
VZ
376
377 switch ( GetWeight() )
378 {
223d09f6
KB
379 case wxNORMAL: return wxT("wxNORMAL");
380 case wxBOLD: return wxT("wxBOLD");
381 case wxLIGHT: return wxT("wxLIGHT");
382 default: return wxT("wxDEFAULT");
0c5d3e1c
VZ
383 }
384}
385
ff427585 386bool wxFontBase::SetFaceName(const wxString& facename)
85ab460e 387{
ff427585 388#if wxUSE_FONTENUM
85ab460e
VZ
389 if (!wxFontEnumerator::IsValidFacename(facename))
390 {
391 UnRef(); // make Ok() return false
392 return false;
393 }
ff427585
VZ
394#else // !wxUSE_FONTENUM
395 wxUnusedVar(facename);
396#endif // wxUSE_FONTENUM/!wxUSE_FONTENUM
85ab460e
VZ
397
398 return true;
399}
400
401
30764ab5
VZ
402// ----------------------------------------------------------------------------
403// wxNativeFontInfo
404// ----------------------------------------------------------------------------
405
85ab460e 406// Up to now, there are no native implementations of this function:
ff427585 407void wxNativeFontInfo::SetFaceName(const wxArrayString& facenames)
85ab460e 408{
ff427585 409#if wxUSE_FONTENUM
85ab460e
VZ
410 for (size_t i=0; i < facenames.GetCount(); i++)
411 {
412 if (wxFontEnumerator::IsValidFacename(facenames[i]))
413 {
414 SetFaceName(facenames[i]);
415 return;
416 }
417 }
418
419 // set the first valid facename we can find on this system
420 wxString validfacename = wxFontEnumerator::GetFacenames().Item(0);
421 wxLogTrace(wxT("font"), wxT("Falling back to '%s'"), validfacename.c_str());
422 SetFaceName(validfacename);
ff427585
VZ
423#else // !wxUSE_FONTENUM
424 SetFaceName(facenames[0]);
425#endif // wxUSE_FONTENUM/!wxUSE_FONTENUM
85ab460e
VZ
426}
427
428
ab5fe833
VZ
429#ifdef wxNO_NATIVE_FONTINFO
430
30764ab5
VZ
431// These are the generic forms of FromString()/ToString.
432//
433// convert to/from the string representation: format is
09fcd889 434// version;pointsize;family;style;weight;underlined;facename;encoding
30764ab5
VZ
435
436bool wxNativeFontInfo::FromString(const wxString& s)
437{
438 long l;
439
440 wxStringTokenizer tokenizer(s, _T(";"));
441
442 wxString token = tokenizer.GetNextToken();
09fcd889
VZ
443 //
444 // Ignore the version for now
445 //
33ac7e6f 446
09fcd889 447 token = tokenizer.GetNextToken();
30764ab5 448 if ( !token.ToLong(&l) )
a62848fd 449 return false;
30764ab5
VZ
450 pointSize = (int)l;
451
452 token = tokenizer.GetNextToken();
453 if ( !token.ToLong(&l) )
a62848fd 454 return false;
f7b301fa 455 family = (wxFontFamily)l;
30764ab5
VZ
456
457 token = tokenizer.GetNextToken();
458 if ( !token.ToLong(&l) )
a62848fd 459 return false;
ab5fe833 460 style = (wxFontStyle)l;
30764ab5
VZ
461
462 token = tokenizer.GetNextToken();
463 if ( !token.ToLong(&l) )
a62848fd 464 return false;
ab5fe833 465 weight = (wxFontWeight)l;
30764ab5
VZ
466
467 token = tokenizer.GetNextToken();
468 if ( !token.ToLong(&l) )
a62848fd 469 return false;
189e08b4 470 underlined = l != 0;
30764ab5
VZ
471
472 faceName = tokenizer.GetNextToken();
0a9f0ef7
JS
473
474#ifndef __WXMAC__
30764ab5 475 if( !faceName )
a62848fd 476 return false;
0a9f0ef7 477#endif
30764ab5
VZ
478
479 token = tokenizer.GetNextToken();
480 if ( !token.ToLong(&l) )
a62848fd 481 return false;
30764ab5
VZ
482 encoding = (wxFontEncoding)l;
483
a62848fd 484 return true;
30764ab5
VZ
485}
486
487wxString wxNativeFontInfo::ToString() const
488{
489 wxString s;
490
09fcd889
VZ
491 s.Printf(_T("%d;%d;%d;%d;%d;%d;%s;%d"),
492 0, // version
30764ab5
VZ
493 pointSize,
494 family,
ab5fe833
VZ
495 (int)style,
496 (int)weight,
30764ab5
VZ
497 underlined,
498 faceName.GetData(),
499 (int)encoding);
500
501 return s;
502}
503
ab5fe833
VZ
504void wxNativeFontInfo::Init()
505{
3bf5a59b 506 pointSize = 0;
ab5fe833
VZ
507 family = wxFONTFAMILY_DEFAULT;
508 style = wxFONTSTYLE_NORMAL;
509 weight = wxFONTWEIGHT_NORMAL;
a62848fd 510 underlined = false;
ab5fe833
VZ
511 faceName.clear();
512 encoding = wxFONTENCODING_DEFAULT;
513}
514
515int wxNativeFontInfo::GetPointSize() const
516{
517 return pointSize;
518}
519
520wxFontStyle wxNativeFontInfo::GetStyle() const
521{
522 return style;
523}
524
525wxFontWeight wxNativeFontInfo::GetWeight() const
526{
527 return weight;
528}
529
530bool wxNativeFontInfo::GetUnderlined() const
531{
532 return underlined;
533}
534
535wxString wxNativeFontInfo::GetFaceName() const
536{
537 return faceName;
538}
539
7936354d
VZ
540wxFontFamily wxNativeFontInfo::GetFamily() const
541{
542 return family;
543}
544
ab5fe833
VZ
545wxFontEncoding wxNativeFontInfo::GetEncoding() const
546{
547 return encoding;
548}
549
550void wxNativeFontInfo::SetPointSize(int pointsize)
551{
552 pointSize = pointsize;
553}
554
555void wxNativeFontInfo::SetStyle(wxFontStyle style_)
556{
557 style = style_;
558}
559
560void wxNativeFontInfo::SetWeight(wxFontWeight weight_)
561{
562 weight = weight_;
563}
564
565void wxNativeFontInfo::SetUnderlined(bool underlined_)
566{
567 underlined = underlined_;
568}
569
85ab460e 570bool wxNativeFontInfo::SetFaceName(const wxString& facename_)
ab5fe833 571{
f7b301fa 572 faceName = facename_;
85ab460e 573 return true;
ab5fe833
VZ
574}
575
3f1d1373 576void wxNativeFontInfo::SetFamily(wxFontFamily family_)
7936354d
VZ
577{
578 family = family_;
579}
580
ab5fe833
VZ
581void wxNativeFontInfo::SetEncoding(wxFontEncoding encoding_)
582{
583 encoding = encoding_;
584}
585
7826e2dd 586#endif // generic wxNativeFontInfo implementation
30764ab5 587
ab5fe833
VZ
588// conversion to/from user-readable string: this is used in the generic
589// versions and under MSW as well because there is no standard font description
590// format there anyhow (but there is a well-defined standard for X11 fonts used
591// by wxGTK and wxMotif)
592
0eb529d9 593#if defined(wxNO_NATIVE_FONTINFO) || defined(__WXMSW__) || defined (__WXPM__)
ab5fe833
VZ
594
595wxString wxNativeFontInfo::ToUserString() const
596{
597 wxString desc;
598
599 // first put the adjectives, if any - this is English-centric, of course,
600 // but what else can we do?
601 if ( GetUnderlined() )
602 {
85ab460e 603 desc << _("underlined");
ab5fe833
VZ
604 }
605
606 switch ( GetWeight() )
607 {
608 default:
609 wxFAIL_MSG( _T("unknown font weight") );
610 // fall through
611
612 case wxFONTWEIGHT_NORMAL:
613 break;
614
615 case wxFONTWEIGHT_LIGHT:
85ab460e 616 desc << _(" light");
ab5fe833
VZ
617 break;
618
619 case wxFONTWEIGHT_BOLD:
85ab460e 620 desc << _(" bold");
ab5fe833
VZ
621 break;
622 }
623
624 switch ( GetStyle() )
625 {
626 default:
627 wxFAIL_MSG( _T("unknown font style") );
628 // fall through
629
630 case wxFONTSTYLE_NORMAL:
631 break;
632
633 // we don't distinguish between the two for now anyhow...
634 case wxFONTSTYLE_ITALIC:
635 case wxFONTSTYLE_SLANT:
85ab460e 636 desc << _(" italic");
ab5fe833
VZ
637 break;
638 }
639
a9249b2e
VZ
640 wxString face = GetFaceName();
641 if ( !face.empty() )
ab5fe833 642 {
a9249b2e 643 desc << _T(' ') << face;
ab5fe833
VZ
644 }
645
a9249b2e
VZ
646 int size = GetPointSize();
647 if ( size != wxNORMAL_FONT->GetPointSize() )
ab5fe833 648 {
a9249b2e 649 desc << _T(' ') << size;
ab5fe833 650 }
a9249b2e 651
e7e52b6d 652#if wxUSE_FONTMAP
a9249b2e
VZ
653 wxFontEncoding enc = GetEncoding();
654 if ( enc != wxFONTENCODING_DEFAULT && enc != wxFONTENCODING_SYSTEM )
655 {
2a1f999f 656 desc << _T(' ') << wxFontMapper::GetEncodingName(enc);
a9249b2e 657 }
e7e52b6d 658#endif // wxUSE_FONTMAP
a9249b2e 659
85ab460e 660 return desc.Strip(wxString::both).MakeLower();
ab5fe833
VZ
661}
662
663bool wxNativeFontInfo::FromUserString(const wxString& s)
664{
665 // reset to the default state
666 Init();
667
668 // parse a more or less free form string
669 //
670 // TODO: we should handle at least the quoted facenames
671 wxStringTokenizer tokenizer(s, _T(";, "), wxTOKEN_STRTOK);
672
673 wxString face;
674 unsigned long size;
77f15ffe
VS
675 bool weightfound = false, pointsizefound = false;
676#if wxUSE_FONTMAP
677 bool encodingfound = false;
678#endif
ab5fe833
VZ
679
680 while ( tokenizer.HasMoreTokens() )
681 {
682 wxString token = tokenizer.GetNextToken();
683
684 // normalize it
a62848fd 685 token.Trim(true).Trim(false).MakeLower();
ab5fe833
VZ
686
687 // look for the known tokens
688 if ( token == _T("underlined") || token == _("underlined") )
689 {
a62848fd 690 SetUnderlined(true);
ab5fe833
VZ
691 }
692 else if ( token == _T("light") || token == _("light") )
693 {
694 SetWeight(wxFONTWEIGHT_LIGHT);
85ab460e 695 weightfound = true;
ab5fe833
VZ
696 }
697 else if ( token == _T("bold") || token == _("bold") )
698 {
699 SetWeight(wxFONTWEIGHT_BOLD);
85ab460e 700 weightfound = true;
ab5fe833
VZ
701 }
702 else if ( token == _T("italic") || token == _("italic") )
703 {
704 SetStyle(wxFONTSTYLE_ITALIC);
705 }
706 else if ( token.ToULong(&size) )
707 {
a9249b2e 708 SetPointSize(size);
85ab460e 709 pointsizefound = true;
ab5fe833 710 }
85ab460e
VZ
711 else
712 {
e7e52b6d 713#if wxUSE_FONTMAP
85ab460e
VZ
714 // try to interpret this as an encoding
715 wxFontEncoding encoding = wxFontMapper::Get()->CharsetToEncoding(token, false);
716 if ( encoding != wxFONTENCODING_DEFAULT &&
717 encoding != wxFONTENCODING_SYSTEM ) // returned when the recognition failed
ab5fe833
VZ
718 {
719 SetEncoding(encoding);
85ab460e 720 encodingfound = true;
ab5fe833 721 }
85ab460e 722 else
ab5fe833 723 {
85ab460e
VZ
724#endif // wxUSE_FONTMAP
725
726 // assume it is the face name
ab5fe833
VZ
727 if ( !face.empty() )
728 {
729 face += _T(' ');
730 }
731
732 face += token;
733
734 // skip the code which resets face below
735 continue;
85ab460e
VZ
736
737#if wxUSE_FONTMAP
738 }
739#endif // wxUSE_FONTMAP
ab5fe833
VZ
740 }
741
742 // if we had had the facename, we shouldn't continue appending tokens
743 // to it (i.e. "foo bold bar" shouldn't result in the facename "foo
744 // bar")
745 if ( !face.empty() )
746 {
85ab460e
VZ
747 // NB: the check on the facename is implemented in wxFontBase::SetFaceName
748 // and not in wxNativeFontInfo::SetFaceName thus we need to explicitely
749 // call here wxFontEnumerator::IsValidFacename
ff427585
VZ
750 if (
751#if wxUSE_FONTENUM
752 !wxFontEnumerator::IsValidFacename(face) ||
753#endif // wxUSE_FONTENUM
754 !SetFaceName(face) )
755 {
85ab460e 756 SetFaceName(wxNORMAL_FONT->GetFaceName());
ff427585
VZ
757 }
758
ab5fe833
VZ
759 face.clear();
760 }
761 }
762
763 // we might not have flushed it inside the loop
764 if ( !face.empty() )
765 {
85ab460e
VZ
766 // NB: the check on the facename is implemented in wxFontBase::SetFaceName
767 // and not in wxNativeFontInfo::SetFaceName thus we need to explicitely
768 // call here wxFontEnumerator::IsValidFacename
ff427585
VZ
769 if (
770#if wxUSE_FONTENUM
771 !wxFontEnumerator::IsValidFacename(face) ||
772#endif // wxUSE_FONTENUM
773 !SetFaceName(face) )
774 {
775 SetFaceName(wxNORMAL_FONT->GetFaceName());
776 }
ab5fe833
VZ
777 }
778
85ab460e
VZ
779 // set point size to default value if size was not given
780 if ( !pointsizefound )
781 SetPointSize(wxNORMAL_FONT->GetPointSize());
782
783 // set font weight to default value if weight was not given
784 if ( !weightfound )
785 SetWeight(wxFONTWEIGHT_NORMAL);
786
787#if wxUSE_FONTMAP
788 // set font encoding to default value if encoding was not given
789 if ( !encodingfound )
790 SetEncoding(wxFONTENCODING_SYSTEM);
791#endif // wxUSE_FONTMAP
792
a62848fd 793 return true;
ab5fe833
VZ
794}
795
0eb529d9 796#endif // generic or wxMSW or wxOS2
fc9361e3
VZ
797
798
799// wxFont <-> wxString utilities, used by wxConfig
800wxString wxToString(const wxFontBase& font)
801{
802 return font.IsOk() ? font.GetNativeFontInfoDesc()
803 : wxString();
804}
805
806bool wxFromString(const wxString& str, wxFontBase *font)
807{
808 wxCHECK_MSG( font, false, _T("NULL output parameter") );
809
810 if ( str.empty() )
811 {
812 *font = wxNullFont;
813 return true;
814 }
815
816 return font->SetNativeFontInfo(str);
817}
818
819