1 /////////////////////////////////////////////////////////////////////////////
2 // Name: src/common/fontcmn.cpp
3 // Purpose: implementation of wxFontBase methods
4 // Author: Vadim Zeitlin
8 // Copyright: (c) wxWidgets team
9 // Licence: wxWindows licence
10 /////////////////////////////////////////////////////////////////////////////
12 // ============================================================================
14 // ============================================================================
16 // ----------------------------------------------------------------------------
18 // ----------------------------------------------------------------------------
20 // For compilers that support precompilation, includes "wx.h".
21 #include "wx/wxprec.h"
32 #include "wx/dcscreen.h"
34 #include "wx/gdicmn.h"
37 #if defined(__WXMSW__)
38 #include "wx/msw/private.h" // includes windows.h for LOGFONT
39 #include "wx/msw/winundef.h"
42 #include "wx/fontutil.h" // for wxNativeFontInfo
43 #include "wx/fontmap.h"
44 #include "wx/fontenum.h"
46 #include "wx/tokenzr.h"
48 // debugger helper: this function can be called from a debugger to show what
50 extern const char *wxDumpFont(const wxFont
*font
)
54 const wxFontWeight weight
= font
->GetWeight();
57 s
.Printf(wxS("%s-%s-%s-%d-%d"),
59 weight
== wxFONTWEIGHT_NORMAL
61 : weight
== wxFONTWEIGHT_BOLD
64 font
->GetStyle() == wxFONTSTYLE_NORMAL
70 wxStrlcpy(buf
, s
.mb_str(), WXSIZEOF(buf
));
74 // ----------------------------------------------------------------------------
76 // ----------------------------------------------------------------------------
78 wxBEGIN_ENUM( wxFontFamily
)
79 wxENUM_MEMBER( wxFONTFAMILY_DEFAULT
)
80 wxENUM_MEMBER( wxFONTFAMILY_DECORATIVE
)
81 wxENUM_MEMBER( wxFONTFAMILY_ROMAN
)
82 wxENUM_MEMBER( wxFONTFAMILY_SCRIPT
)
83 wxENUM_MEMBER( wxFONTFAMILY_SWISS
)
84 wxENUM_MEMBER( wxFONTFAMILY_MODERN
)
85 wxENUM_MEMBER( wxFONTFAMILY_TELETYPE
)
86 wxEND_ENUM( wxFontFamily
)
88 wxBEGIN_ENUM( wxFontStyle
)
89 wxENUM_MEMBER( wxFONTSTYLE_NORMAL
)
90 wxENUM_MEMBER( wxFONTSTYLE_ITALIC
)
91 wxENUM_MEMBER( wxFONTSTYLE_SLANT
)
92 wxEND_ENUM( wxFontStyle
)
94 wxBEGIN_ENUM( wxFontWeight
)
95 wxENUM_MEMBER( wxFONTWEIGHT_NORMAL
)
96 wxENUM_MEMBER( wxFONTWEIGHT_LIGHT
)
97 wxENUM_MEMBER( wxFONTWEIGHT_BOLD
)
98 wxEND_ENUM( wxFontWeight
)
100 wxIMPLEMENT_DYNAMIC_CLASS_WITH_COPY_XTI(wxFont
, wxGDIObject
, "wx/font.h")
102 //WX_IMPLEMENT_ANY_VALUE_TYPE(wxAnyValueTypeImpl<wxFont>)
104 wxBEGIN_PROPERTIES_TABLE(wxFont
)
105 wxPROPERTY( Size
,int, SetPointSize
, GetPointSize
, 12, 0 /*flags*/, \
106 wxT("Helpstring"), wxT("group"))
107 wxPROPERTY( Family
, wxFontFamily
, SetFamily
, GetFamily
, (wxFontFamily
)wxDEFAULT
, \
108 0 /*flags*/, wxT("Helpstring"), wxT("group")) // wxFontFamily
109 wxPROPERTY( Style
, wxFontStyle
, SetStyle
, GetStyle
, (wxFontStyle
)wxNORMAL
, 0 /*flags*/, \
110 wxT("Helpstring"), wxT("group")) // wxFontStyle
111 wxPROPERTY( Weight
, wxFontWeight
, SetWeight
, GetWeight
, (wxFontWeight
)wxNORMAL
, 0 /*flags*/, \
112 wxT("Helpstring"), wxT("group")) // wxFontWeight
113 wxPROPERTY( Underlined
, bool, SetUnderlined
, GetUnderlined
, false, 0 /*flags*/, \
114 wxT("Helpstring"), wxT("group"))
115 wxPROPERTY( Face
, wxString
, SetFaceName
, GetFaceName
, wxEMPTY_PARAMETER_VALUE
, \
116 0 /*flags*/, wxT("Helpstring"), wxT("group"))
117 wxPROPERTY( Encoding
, wxFontEncoding
, SetEncoding
, GetEncoding
, \
118 wxFONTENCODING_DEFAULT
, 0 /*flags*/, wxT("Helpstring"), wxT("group"))
119 wxEND_PROPERTIES_TABLE()
121 wxCONSTRUCTOR_6( wxFont
, int, Size
, wxFontFamily
, Family
, wxFontStyle
, Style
, wxFontWeight
, Weight
, \
122 bool, Underlined
, wxString
, Face
)
124 wxEMPTY_HANDLERS_TABLE(wxFont
)
126 // ============================================================================
128 // ============================================================================
130 // ----------------------------------------------------------------------------
132 // ----------------------------------------------------------------------------
134 static inline int flags2Style(int flags
)
136 return flags
& wxFONTFLAG_ITALIC
138 : flags
& wxFONTFLAG_SLANT
140 : wxFONTSTYLE_NORMAL
;
143 static inline int flags2Weight(int flags
)
145 return flags
& wxFONTFLAG_LIGHT
147 : flags
& wxFONTFLAG_BOLD
149 : wxFONTWEIGHT_NORMAL
;
152 static inline bool flags2Underlined(int flags
)
154 return (flags
& wxFONTFLAG_UNDERLINED
) != 0;
157 // ----------------------------------------------------------------------------
159 // ----------------------------------------------------------------------------
161 wxFontEncoding
wxFontBase::ms_encodingDefault
= wxFONTENCODING_SYSTEM
;
164 void wxFontBase::SetDefaultEncoding(wxFontEncoding encoding
)
166 // GetDefaultEncoding() should return something != wxFONTENCODING_DEFAULT
167 // and, besides, using this value here doesn't make any sense
168 wxCHECK_RET( encoding
!= wxFONTENCODING_DEFAULT
,
169 wxT("can't set default encoding to wxFONTENCODING_DEFAULT") );
171 ms_encodingDefault
= encoding
;
174 wxFontBase::~wxFontBase()
176 // this destructor is required for Darwin
180 wxFont
*wxFontBase::New(int size
,
185 const wxString
& face
,
186 wxFontEncoding encoding
)
188 return new wxFont(size
, family
, style
, weight
, underlined
, face
, encoding
);
192 wxFont
*wxFontBase::New(const wxSize
& pixelSize
,
197 const wxString
& face
,
198 wxFontEncoding encoding
)
200 return new wxFont(pixelSize
, family
, style
, weight
, underlined
,
205 wxFont
*wxFontBase::New(int pointSize
,
208 const wxString
& face
,
209 wxFontEncoding encoding
)
211 return New(pointSize
, family
, flags2Style(flags
), flags2Weight(flags
),
212 flags2Underlined(flags
), face
, encoding
);
216 wxFont
*wxFontBase::New(const wxSize
& pixelSize
,
219 const wxString
& face
,
220 wxFontEncoding encoding
)
222 return New(pixelSize
, family
, flags2Style(flags
), flags2Weight(flags
),
223 flags2Underlined(flags
), face
, encoding
);
227 wxFont
*wxFontBase::New(const wxNativeFontInfo
& info
)
229 return new wxFont(info
);
233 wxFont
*wxFontBase::New(const wxString
& strNativeFontDesc
)
235 wxNativeFontInfo fontInfo
;
236 if ( !fontInfo
.FromString(strNativeFontDesc
) )
237 return new wxFont(*wxNORMAL_FONT
);
239 return New(fontInfo
);
242 bool wxFontBase::IsFixedWidth() const
244 return GetFamily() == wxFONTFAMILY_TELETYPE
;
247 wxSize
wxFontBase::GetPixelSize() const
250 dc
.SetFont(*(wxFont
*)this);
251 return wxSize(dc
.GetCharWidth(), dc
.GetCharHeight());
254 bool wxFontBase::IsUsingSizeInPixels() const
259 void wxFontBase::SetPixelSize( const wxSize
& pixelSize
)
261 wxCHECK_RET( pixelSize
.GetWidth() >= 0 && pixelSize
.GetHeight() > 0,
262 "Negative values for the pixel size or zero pixel height are not allowed" );
266 // NOTE: this algorithm for adjusting the font size is used by all
267 // implementations of wxFont except under wxMSW and wxGTK where
268 // native support to font creation using pixel-size is provided.
273 bool initialGoodFound
= false;
274 bool initialBadFound
= false;
276 // NB: this assignment was separated from the variable definition
277 // in order to fix a gcc v3.3.3 compiler crash
278 int currentSize
= GetPointSize();
279 while (currentSize
> 0)
281 dc
.SetFont(*static_cast<wxFont
*>(this));
283 // if currentSize (in points) results in a font that is smaller
284 // than required by pixelSize it is considered a good size
285 // NOTE: the pixel size width may be zero
286 if (dc
.GetCharHeight() <= pixelSize
.GetHeight() &&
287 (pixelSize
.GetWidth() == 0 ||
288 dc
.GetCharWidth() <= pixelSize
.GetWidth()))
290 largestGood
= currentSize
;
291 initialGoodFound
= true;
295 smallestBad
= currentSize
;
296 initialBadFound
= true;
298 if (!initialGoodFound
)
302 else if (!initialBadFound
)
308 int distance
= smallestBad
- largestGood
;
312 currentSize
= largestGood
+ distance
/ 2;
315 SetPointSize(currentSize
);
318 if (currentSize
!= largestGood
)
319 SetPointSize(largestGood
);
322 void wxFontBase::DoSetNativeFontInfo(const wxNativeFontInfo
& info
)
324 #ifdef wxNO_NATIVE_FONTINFO
325 SetPointSize(info
.pointSize
);
326 SetFamily(info
.family
);
327 SetStyle(info
.style
);
328 SetWeight(info
.weight
);
329 SetUnderlined(info
.underlined
);
330 SetFaceName(info
.faceName
);
331 SetEncoding(info
.encoding
);
337 wxString
wxFontBase::GetNativeFontInfoDesc() const
339 wxCHECK_MSG( IsOk(), wxEmptyString
, wxT("invalid font") );
342 const wxNativeFontInfo
*fontInfo
= GetNativeFontInfo();
345 fontDesc
= fontInfo
->ToString();
346 wxASSERT_MSG(!fontDesc
.empty(), wxT("This should be a non-empty string!"));
350 wxFAIL_MSG(wxT("Derived class should have created the wxNativeFontInfo!"));
356 wxString
wxFontBase::GetNativeFontInfoUserDesc() const
358 wxCHECK_MSG( IsOk(), wxEmptyString
, wxT("invalid font") );
361 const wxNativeFontInfo
*fontInfo
= GetNativeFontInfo();
364 fontDesc
= fontInfo
->ToUserString();
365 wxASSERT_MSG(!fontDesc
.empty(), wxT("This should be a non-empty string!"));
369 wxFAIL_MSG(wxT("Derived class should have created the wxNativeFontInfo!"));
375 bool wxFontBase::SetNativeFontInfo(const wxString
& info
)
377 wxNativeFontInfo fontInfo
;
378 if ( !info
.empty() && fontInfo
.FromString(info
) )
380 SetNativeFontInfo(fontInfo
);
387 bool wxFontBase::SetNativeFontInfoUserDesc(const wxString
& info
)
389 wxNativeFontInfo fontInfo
;
390 if ( !info
.empty() && fontInfo
.FromUserString(info
) )
392 SetNativeFontInfo(fontInfo
);
399 bool wxFontBase::operator==(const wxFont
& font
) const
401 // either it is the same font, i.e. they share the same common data or they
402 // have different ref datas but still describe the same font
403 return IsSameAs(font
) ||
405 IsOk() == font
.IsOk() &&
406 GetPointSize() == font
.GetPointSize() &&
407 // in wxGTK1 GetPixelSize() calls GetInternalFont() which uses
408 // operator==() resulting in infinite recursion so we can't use it
410 #if !defined(__WXGTK__) || defined(__WXGTK20__)
411 GetPixelSize() == font
.GetPixelSize() &&
413 GetFamily() == font
.GetFamily() &&
414 GetStyle() == font
.GetStyle() &&
415 GetWeight() == font
.GetWeight() &&
416 GetUnderlined() == font
.GetUnderlined() &&
417 GetFaceName().IsSameAs(font
.GetFaceName(), false) &&
418 GetEncoding() == font
.GetEncoding()
422 wxFontFamily
wxFontBase::GetFamily() const
424 wxCHECK_MSG( IsOk(), wxFONTFAMILY_UNKNOWN
, wxS("invalid font") );
426 // Don't return wxFONTFAMILY_UNKNOWN from here because it prevents the code
427 // like wxFont(size, wxNORMAL_FONT->GetFamily(), ...) from working (see
428 // #12330). This is really just a hack but it allows to keep compatibility
429 // and doesn't really have any bad drawbacks so do this until someone comes
430 // up with a better idea.
431 const wxFontFamily family
= DoGetFamily();
433 return family
== wxFONTFAMILY_UNKNOWN
? wxFONTFAMILY_DEFAULT
: family
;
436 wxString
wxFontBase::GetFamilyString() const
438 wxCHECK_MSG( IsOk(), "wxFONTFAMILY_DEFAULT", "invalid font" );
440 switch ( GetFamily() )
442 case wxFONTFAMILY_DECORATIVE
: return "wxFONTFAMILY_DECORATIVE";
443 case wxFONTFAMILY_ROMAN
: return "wxFONTFAMILY_ROMAN";
444 case wxFONTFAMILY_SCRIPT
: return "wxFONTFAMILY_SCRIPT";
445 case wxFONTFAMILY_SWISS
: return "wxFONTFAMILY_SWISS";
446 case wxFONTFAMILY_MODERN
: return "wxFONTFAMILY_MODERN";
447 case wxFONTFAMILY_TELETYPE
: return "wxFONTFAMILY_TELETYPE";
448 case wxFONTFAMILY_UNKNOWN
: return "wxFONTFAMILY_UNKNOWN";
449 default: return "wxFONTFAMILY_DEFAULT";
453 wxString
wxFontBase::GetStyleString() const
455 wxCHECK_MSG( IsOk(), "wxFONTSTYLE_DEFAULT", "invalid font" );
457 switch ( GetStyle() )
459 case wxFONTSTYLE_NORMAL
: return "wxFONTSTYLE_NORMAL";
460 case wxFONTSTYLE_SLANT
: return "wxFONTSTYLE_SLANT";
461 case wxFONTSTYLE_ITALIC
: return "wxFONTSTYLE_ITALIC";
462 default: return "wxFONTSTYLE_DEFAULT";
466 wxString
wxFontBase::GetWeightString() const
468 wxCHECK_MSG( IsOk(), "wxFONTWEIGHT_DEFAULT", "invalid font" );
470 switch ( GetWeight() )
472 case wxFONTWEIGHT_NORMAL
: return "wxFONTWEIGHT_NORMAL";
473 case wxFONTWEIGHT_BOLD
: return "wxFONTWEIGHT_BOLD";
474 case wxFONTWEIGHT_LIGHT
: return "wxFONTWEIGHT_LIGHT";
475 default: return "wxFONTWEIGHT_DEFAULT";
479 bool wxFontBase::SetFaceName(const wxString
& facename
)
482 if (!wxFontEnumerator::IsValidFacename(facename
))
484 UnRef(); // make IsOk() return false
487 #else // !wxUSE_FONTENUM
488 wxUnusedVar(facename
);
489 #endif // wxUSE_FONTENUM/!wxUSE_FONTENUM
494 wxFont
& wxFont::MakeBold()
496 SetWeight(wxFONTWEIGHT_BOLD
);
500 wxFont
wxFont::Bold() const
507 wxFont
& wxFont::MakeItalic()
509 SetStyle(wxFONTSTYLE_ITALIC
);
513 wxFont
wxFont::Italic() const
520 wxFont
& wxFont::MakeUnderlined()
526 wxFont
wxFont::Underlined() const
529 font
.MakeUnderlined();
533 wxFont
& wxFont::Scale(float x
)
535 SetPointSize(int(x
*GetPointSize() + 0.5));
539 wxFont
wxFont::Scaled(float x
) const
546 // ----------------------------------------------------------------------------
548 // ----------------------------------------------------------------------------
550 // Up to now, there are no native implementations of this function:
551 void wxNativeFontInfo::SetFaceName(const wxArrayString
& facenames
)
554 for (size_t i
=0; i
< facenames
.GetCount(); i
++)
556 if (wxFontEnumerator::IsValidFacename(facenames
[i
]))
558 SetFaceName(facenames
[i
]);
563 // set the first valid facename we can find on this system
564 wxString validfacename
= wxFontEnumerator::GetFacenames().Item(0);
565 wxLogTrace(wxT("font"), wxT("Falling back to '%s'"), validfacename
.c_str());
566 SetFaceName(validfacename
);
567 #else // !wxUSE_FONTENUM
568 SetFaceName(facenames
[0]);
569 #endif // wxUSE_FONTENUM/!wxUSE_FONTENUM
573 #ifdef wxNO_NATIVE_FONTINFO
575 // These are the generic forms of FromString()/ToString.
577 // convert to/from the string representation: format is
578 // version;pointsize;family;style;weight;underlined;facename;encoding
580 bool wxNativeFontInfo::FromString(const wxString
& s
)
584 wxStringTokenizer
tokenizer(s
, wxT(";"));
586 wxString token
= tokenizer
.GetNextToken();
588 // Ignore the version for now
591 token
= tokenizer
.GetNextToken();
592 if ( !token
.ToLong(&l
) )
596 token
= tokenizer
.GetNextToken();
597 if ( !token
.ToLong(&l
) )
599 family
= (wxFontFamily
)l
;
601 token
= tokenizer
.GetNextToken();
602 if ( !token
.ToLong(&l
) )
604 style
= (wxFontStyle
)l
;
606 token
= tokenizer
.GetNextToken();
607 if ( !token
.ToLong(&l
) )
609 weight
= (wxFontWeight
)l
;
611 token
= tokenizer
.GetNextToken();
612 if ( !token
.ToLong(&l
) )
616 faceName
= tokenizer
.GetNextToken();
623 token
= tokenizer
.GetNextToken();
624 if ( !token
.ToLong(&l
) )
626 encoding
= (wxFontEncoding
)l
;
631 wxString
wxNativeFontInfo::ToString() const
635 s
.Printf(wxT("%d;%d;%d;%d;%d;%d;%s;%d"),
648 void wxNativeFontInfo::Init()
651 family
= wxFONTFAMILY_DEFAULT
;
652 style
= wxFONTSTYLE_NORMAL
;
653 weight
= wxFONTWEIGHT_NORMAL
;
656 encoding
= wxFONTENCODING_DEFAULT
;
659 int wxNativeFontInfo::GetPointSize() const
664 wxFontStyle
wxNativeFontInfo::GetStyle() const
669 wxFontWeight
wxNativeFontInfo::GetWeight() const
674 bool wxNativeFontInfo::GetUnderlined() const
679 wxString
wxNativeFontInfo::GetFaceName() const
684 wxFontFamily
wxNativeFontInfo::GetFamily() const
689 wxFontEncoding
wxNativeFontInfo::GetEncoding() const
694 void wxNativeFontInfo::SetPointSize(int pointsize
)
696 pointSize
= pointsize
;
699 void wxNativeFontInfo::SetStyle(wxFontStyle style_
)
704 void wxNativeFontInfo::SetWeight(wxFontWeight weight_
)
709 void wxNativeFontInfo::SetUnderlined(bool underlined_
)
711 underlined
= underlined_
;
714 bool wxNativeFontInfo::SetFaceName(const wxString
& facename_
)
716 faceName
= facename_
;
720 void wxNativeFontInfo::SetFamily(wxFontFamily family_
)
725 void wxNativeFontInfo::SetEncoding(wxFontEncoding encoding_
)
727 encoding
= encoding_
;
730 #endif // generic wxNativeFontInfo implementation
732 // conversion to/from user-readable string: this is used in the generic
733 // versions and under MSW as well because there is no standard font description
734 // format there anyhow (but there is a well-defined standard for X11 fonts used
735 // by wxGTK and wxMotif)
737 #if defined(wxNO_NATIVE_FONTINFO) || defined(__WXMSW__) || defined (__WXPM__) || defined(__WXOSX__)
739 wxString
wxNativeFontInfo::ToUserString() const
743 // first put the adjectives, if any - this is English-centric, of course,
744 // but what else can we do?
745 if ( GetUnderlined() )
747 desc
<< _("underlined");
750 switch ( GetWeight() )
753 wxFAIL_MSG( wxT("unknown font weight") );
756 case wxFONTWEIGHT_NORMAL
:
759 case wxFONTWEIGHT_LIGHT
:
763 case wxFONTWEIGHT_BOLD
:
768 switch ( GetStyle() )
771 wxFAIL_MSG( wxT("unknown font style") );
774 case wxFONTSTYLE_NORMAL
:
777 // we don't distinguish between the two for now anyhow...
778 case wxFONTSTYLE_ITALIC
:
779 case wxFONTSTYLE_SLANT
:
780 desc
<< _(" italic");
784 wxString face
= GetFaceName();
787 if (face
.Contains(' ') || face
.Contains(';') || face
.Contains(','))
789 face
.Replace("'", "");
790 // eventually remove quote characters: most systems do not
791 // allow them in a facename anyway so this usually does nothing
793 // make it possible for FromUserString() function to understand
794 // that the different words which compose this facename are
795 // not different adjectives or other data but rather all parts
797 desc
<< wxT(" '") << face
<< _("'");
800 desc
<< wxT(' ') << face
;
802 else // no face name specified
806 switch ( GetFamily() )
808 case wxFONTFAMILY_DECORATIVE
:
809 familyStr
= "decorative";
812 case wxFONTFAMILY_ROMAN
:
816 case wxFONTFAMILY_SCRIPT
:
817 familyStr
= "script";
820 case wxFONTFAMILY_SWISS
:
824 case wxFONTFAMILY_MODERN
:
825 familyStr
= "modern";
828 case wxFONTFAMILY_TELETYPE
:
829 familyStr
= "teletype";
832 case wxFONTFAMILY_DEFAULT
:
833 case wxFONTFAMILY_UNKNOWN
:
837 wxFAIL_MSG( "unknown font family" );
840 if ( !familyStr
.empty() )
841 desc
<< " '" << familyStr
<< " family'";
844 int size
= GetPointSize();
845 if ( size
!= wxNORMAL_FONT
->GetPointSize() )
847 desc
<< wxT(' ') << size
;
851 wxFontEncoding enc
= GetEncoding();
852 if ( enc
!= wxFONTENCODING_DEFAULT
&& enc
!= wxFONTENCODING_SYSTEM
)
854 desc
<< wxT(' ') << wxFontMapper::GetEncodingName(enc
);
856 #endif // wxUSE_FONTMAP
858 return desc
.Strip(wxString::both
).MakeLower();
861 bool wxNativeFontInfo::FromUserString(const wxString
& s
)
863 // reset to the default state
866 // ToUserString() will quote the facename if it contains spaces, commas
867 // or semicolons: we must be able to understand that quoted text is
871 // parse a more or less free form string
872 wxStringTokenizer
tokenizer(toparse
, wxT(";, "), wxTOKEN_STRTOK
);
876 bool weightfound
= false, pointsizefound
= false;
878 bool encodingfound
= false;
880 bool insideQuotes
= false;
882 while ( tokenizer
.HasMoreTokens() )
884 wxString token
= tokenizer
.GetNextToken();
887 token
.Trim(true).Trim(false).MakeLower();
890 if (token
.StartsWith("'") ||
893 insideQuotes
= false;
895 // add this last token to the facename:
898 // normalize facename:
899 face
= face
.Trim(true).Trim(false);
900 face
.Replace("'", "");
907 if (token
.StartsWith("'"))
911 // look for the known tokens
914 // only the facename may be quoted:
918 if ( token
== wxT("underlined") || token
== _("underlined") )
922 else if ( token
== wxT("light") || token
== _("light") )
924 SetWeight(wxFONTWEIGHT_LIGHT
);
927 else if ( token
== wxT("bold") || token
== _("bold") )
929 SetWeight(wxFONTWEIGHT_BOLD
);
932 else if ( token
== wxT("italic") || token
== _("italic") )
934 SetStyle(wxFONTSTYLE_ITALIC
);
936 else if ( token
.ToULong(&size
) )
939 pointsizefound
= true;
944 // try to interpret this as an encoding
945 wxFontEncoding encoding
= wxFontMapper::Get()->CharsetToEncoding(token
, false);
946 if ( encoding
!= wxFONTENCODING_DEFAULT
&&
947 encoding
!= wxFONTENCODING_SYSTEM
) // returned when the recognition failed
949 SetEncoding(encoding
);
950 encodingfound
= true;
954 #endif // wxUSE_FONTMAP
956 // assume it is the face name
964 // skip the code which resets face below
969 #endif // wxUSE_FONTMAP
972 // if we had had the facename, we shouldn't continue appending tokens
973 // to it (i.e. "foo bold bar" shouldn't result in the facename "foo
978 if ( face
.EndsWith(" family", &familyStr
) )
980 // it's not a facename but rather a font family
982 if ( familyStr
== "decorative" )
983 family
= wxFONTFAMILY_DECORATIVE
;
984 else if ( familyStr
== "roman" )
985 family
= wxFONTFAMILY_ROMAN
;
986 else if ( familyStr
== "script" )
987 family
= wxFONTFAMILY_SCRIPT
;
988 else if ( familyStr
== "swiss" )
989 family
= wxFONTFAMILY_SWISS
;
990 else if ( familyStr
== "modern" )
991 family
= wxFONTFAMILY_MODERN
;
992 else if ( familyStr
== "teletype" )
993 family
= wxFONTFAMILY_TELETYPE
;
999 // NB: the check on the facename is implemented in wxFontBase::SetFaceName
1000 // and not in wxNativeFontInfo::SetFaceName thus we need to explicitely
1001 // call here wxFontEnumerator::IsValidFacename
1004 !wxFontEnumerator::IsValidFacename(face
) ||
1005 #endif // wxUSE_FONTENUM
1006 !SetFaceName(face
) )
1008 SetFaceName(wxNORMAL_FONT
->GetFaceName());
1015 // we might not have flushed it inside the loop
1016 if ( !face
.empty() )
1018 // NB: the check on the facename is implemented in wxFontBase::SetFaceName
1019 // and not in wxNativeFontInfo::SetFaceName thus we need to explicitely
1020 // call here wxFontEnumerator::IsValidFacename
1023 !wxFontEnumerator::IsValidFacename(face
) ||
1024 #endif // wxUSE_FONTENUM
1025 !SetFaceName(face
) )
1027 SetFaceName(wxNORMAL_FONT
->GetFaceName());
1031 // set point size to default value if size was not given
1032 if ( !pointsizefound
)
1033 SetPointSize(wxNORMAL_FONT
->GetPointSize());
1035 // set font weight to default value if weight was not given
1037 SetWeight(wxFONTWEIGHT_NORMAL
);
1040 // set font encoding to default value if encoding was not given
1041 if ( !encodingfound
)
1042 SetEncoding(wxFONTENCODING_SYSTEM
);
1043 #endif // wxUSE_FONTMAP
1048 #endif // generic or wxMSW or wxOS2
1051 // wxFont <-> wxString utilities, used by wxConfig
1052 wxString
wxToString(const wxFontBase
& font
)
1054 return font
.IsOk() ? font
.GetNativeFontInfoDesc()
1058 bool wxFromString(const wxString
& str
, wxFontBase
*font
)
1060 wxCHECK_MSG( font
, false, wxT("NULL output parameter") );
1068 return font
->SetNativeFontInfo(str
);