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"
35 #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"
45 #include "wx/tokenzr.h"
47 // ============================================================================
49 // ============================================================================
51 // ----------------------------------------------------------------------------
53 // ----------------------------------------------------------------------------
55 static void AdjustFontSize(wxFont
& font
, wxDC
& dc
, const wxSize
& pixelSize
)
61 bool initialGoodFound
= false;
62 bool initialBadFound
= false;
64 // NB: this assignment was separated from the variable definition
65 // in order to fix a gcc v3.3.3 compiler crash
66 currentSize
= font
.GetPointSize();
67 while (currentSize
> 0)
71 // if currentSize (in points) results in a font that is smaller
72 // than required by pixelSize it is considered a good size
73 if (dc
.GetCharHeight() <= pixelSize
.GetHeight() &&
74 (!pixelSize
.GetWidth() ||
75 dc
.GetCharWidth() <= pixelSize
.GetWidth()))
77 largestGood
= currentSize
;
78 initialGoodFound
= true;
82 smallestBad
= currentSize
;
83 initialBadFound
= true;
85 if (!initialGoodFound
)
89 else if (!initialBadFound
)
95 int distance
= smallestBad
- largestGood
;
99 currentSize
= largestGood
+ distance
/ 2;
102 font
.SetPointSize(currentSize
);
105 if (currentSize
!= largestGood
)
106 font
.SetPointSize(largestGood
);
109 // ----------------------------------------------------------------------------
111 // ----------------------------------------------------------------------------
113 wxFontEncoding
wxFontBase::ms_encodingDefault
= wxFONTENCODING_SYSTEM
;
116 void wxFontBase::SetDefaultEncoding(wxFontEncoding encoding
)
118 // GetDefaultEncoding() should return something != wxFONTENCODING_DEFAULT
119 // and, besides, using this value here doesn't make any sense
120 wxCHECK_RET( encoding
!= wxFONTENCODING_DEFAULT
,
121 _T("can't set default encoding to wxFONTENCODING_DEFAULT") );
123 ms_encodingDefault
= encoding
;
126 wxFontBase::~wxFontBase()
128 // this destructor is required for Darwin
132 wxFont
*wxFontBase::New(int size
,
137 const wxString
& face
,
138 wxFontEncoding encoding
)
140 return new wxFont(size
, family
, style
, weight
, underlined
, face
, encoding
);
143 static inline int flags2Style(int flags
)
145 return flags
& wxFONTFLAG_ITALIC
147 : flags
& wxFONTFLAG_SLANT
149 : wxFONTSTYLE_NORMAL
;
152 static inline int flags2Weight(int flags
)
154 return flags
& wxFONTFLAG_LIGHT
156 : flags
& wxFONTFLAG_BOLD
158 : wxFONTWEIGHT_NORMAL
;
161 static inline bool flags2Underlined(int flags
)
163 return (flags
& wxFONTFLAG_UNDERLINED
) != 0;
167 wxFont
*wxFontBase::New(int pointSize
,
170 const wxString
& face
,
171 wxFontEncoding encoding
)
173 return New(pointSize
, family
, flags2Style(flags
), flags2Weight(flags
),
174 flags2Underlined(flags
), face
, encoding
);
178 wxFont
*wxFontBase::New(const wxSize
& pixelSize
,
183 const wxString
& face
,
184 wxFontEncoding encoding
)
186 #if defined(__WXMSW__)
187 return new wxFont(pixelSize
, family
, style
, weight
, underlined
,
190 wxFont
*self
= New(10, family
, style
, weight
, underlined
, face
, encoding
);
192 AdjustFontSize(*(wxFont
*)self
, dc
, pixelSize
);
198 wxFont
*wxFontBase::New(const wxSize
& pixelSize
,
201 const wxString
& face
,
202 wxFontEncoding encoding
)
204 return New(pixelSize
, family
, flags2Style(flags
), flags2Weight(flags
),
205 flags2Underlined(flags
), face
, encoding
);
208 wxSize
wxFontBase::GetPixelSize() const
211 dc
.SetFont(*(wxFont
*)this);
212 return wxSize(dc
.GetCharWidth(), dc
.GetCharHeight());
215 bool wxFontBase::IsUsingSizeInPixels() const
220 void wxFontBase::SetPixelSize( const wxSize
& pixelSize
)
223 AdjustFontSize(*(wxFont
*)this, dc
, pixelSize
);
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 void wxFontBase::DoSetNativeFontInfo(const wxNativeFontInfo
& info
)
249 #ifdef wxNO_NATIVE_FONTINFO
250 SetPointSize(info
.pointSize
);
251 SetFamily(info
.family
);
252 SetStyle(info
.style
);
253 SetWeight(info
.weight
);
254 SetUnderlined(info
.underlined
);
255 SetFaceName(info
.faceName
);
256 SetEncoding(info
.encoding
);
262 wxString
wxFontBase::GetNativeFontInfoDesc() const
265 const wxNativeFontInfo
*fontInfo
= GetNativeFontInfo();
268 fontDesc
= fontInfo
->ToString();
274 wxString
wxFontBase::GetNativeFontInfoUserDesc() const
277 const wxNativeFontInfo
*fontInfo
= GetNativeFontInfo();
280 fontDesc
= fontInfo
->ToUserString();
286 void wxFontBase::SetNativeFontInfo(const wxString
& info
)
288 wxNativeFontInfo fontInfo
;
289 if ( !info
.empty() && fontInfo
.FromString(info
) )
291 SetNativeFontInfo(fontInfo
);
295 void wxFontBase::SetNativeFontInfoUserDesc(const wxString
& info
)
297 wxNativeFontInfo fontInfo
;
298 if ( !info
.empty() && fontInfo
.FromUserString(info
) )
300 SetNativeFontInfo(fontInfo
);
304 bool wxFontBase::operator==(const wxFont
& font
) const
306 // either it is the same font, i.e. they share the same common data or they
307 // have different ref datas but still describe the same font
308 return GetFontData() == font
.GetFontData() ||
311 GetPointSize() == font
.GetPointSize() &&
312 GetFamily() == font
.GetFamily() &&
313 GetStyle() == font
.GetStyle() &&
314 GetWeight() == font
.GetWeight() &&
315 GetUnderlined() == font
.GetUnderlined() &&
316 GetFaceName() == font
.GetFaceName() &&
317 GetEncoding() == font
.GetEncoding()
321 bool wxFontBase::operator!=(const wxFont
& font
) const
323 return !(*this == font
);
326 wxString
wxFontBase::GetFamilyString() const
328 wxCHECK_MSG( Ok(), wxT("wxDEFAULT"), wxT("invalid font") );
330 switch ( GetFamily() )
332 case wxDECORATIVE
: return wxT("wxDECORATIVE");
333 case wxROMAN
: return wxT("wxROMAN");
334 case wxSCRIPT
: return wxT("wxSCRIPT");
335 case wxSWISS
: return wxT("wxSWISS");
336 case wxMODERN
: return wxT("wxMODERN");
337 case wxTELETYPE
: return wxT("wxTELETYPE");
338 default: return wxT("wxDEFAULT");
342 wxString
wxFontBase::GetStyleString() const
344 wxCHECK_MSG( Ok(), wxT("wxDEFAULT"), wxT("invalid font") );
346 switch ( GetStyle() )
348 case wxNORMAL
: return wxT("wxNORMAL");
349 case wxSLANT
: return wxT("wxSLANT");
350 case wxITALIC
: return wxT("wxITALIC");
351 default: return wxT("wxDEFAULT");
355 wxString
wxFontBase::GetWeightString() const
357 wxCHECK_MSG( Ok(), wxT("wxDEFAULT"), wxT("invalid font") );
359 switch ( GetWeight() )
361 case wxNORMAL
: return wxT("wxNORMAL");
362 case wxBOLD
: return wxT("wxBOLD");
363 case wxLIGHT
: return wxT("wxLIGHT");
364 default: return wxT("wxDEFAULT");
368 // ----------------------------------------------------------------------------
370 // ----------------------------------------------------------------------------
372 #ifdef wxNO_NATIVE_FONTINFO
374 // These are the generic forms of FromString()/ToString.
376 // convert to/from the string representation: format is
377 // version;pointsize;family;style;weight;underlined;facename;encoding
379 bool wxNativeFontInfo::FromString(const wxString
& s
)
383 wxStringTokenizer
tokenizer(s
, _T(";"));
385 wxString token
= tokenizer
.GetNextToken();
387 // Ignore the version for now
390 token
= tokenizer
.GetNextToken();
391 if ( !token
.ToLong(&l
) )
395 token
= tokenizer
.GetNextToken();
396 if ( !token
.ToLong(&l
) )
398 family
= (wxFontFamily
)l
;
400 token
= tokenizer
.GetNextToken();
401 if ( !token
.ToLong(&l
) )
403 style
= (wxFontStyle
)l
;
405 token
= tokenizer
.GetNextToken();
406 if ( !token
.ToLong(&l
) )
408 weight
= (wxFontWeight
)l
;
410 token
= tokenizer
.GetNextToken();
411 if ( !token
.ToLong(&l
) )
415 faceName
= tokenizer
.GetNextToken();
422 token
= tokenizer
.GetNextToken();
423 if ( !token
.ToLong(&l
) )
425 encoding
= (wxFontEncoding
)l
;
430 wxString
wxNativeFontInfo::ToString() const
434 s
.Printf(_T("%d;%d;%d;%d;%d;%d;%s;%d"),
447 void wxNativeFontInfo::Init()
450 family
= wxFONTFAMILY_DEFAULT
;
451 style
= wxFONTSTYLE_NORMAL
;
452 weight
= wxFONTWEIGHT_NORMAL
;
455 encoding
= wxFONTENCODING_DEFAULT
;
458 int wxNativeFontInfo::GetPointSize() const
463 wxFontStyle
wxNativeFontInfo::GetStyle() const
468 wxFontWeight
wxNativeFontInfo::GetWeight() const
473 bool wxNativeFontInfo::GetUnderlined() const
478 wxString
wxNativeFontInfo::GetFaceName() const
483 wxFontFamily
wxNativeFontInfo::GetFamily() const
488 wxFontEncoding
wxNativeFontInfo::GetEncoding() const
493 void wxNativeFontInfo::SetPointSize(int pointsize
)
495 pointSize
= pointsize
;
498 void wxNativeFontInfo::SetStyle(wxFontStyle style_
)
503 void wxNativeFontInfo::SetWeight(wxFontWeight weight_
)
508 void wxNativeFontInfo::SetUnderlined(bool underlined_
)
510 underlined
= underlined_
;
513 void wxNativeFontInfo::SetFaceName(const wxString
& facename_
)
515 faceName
= facename_
;
518 void wxNativeFontInfo::SetFamily(wxFontFamily family_
)
523 void wxNativeFontInfo::SetEncoding(wxFontEncoding encoding_
)
525 encoding
= encoding_
;
528 #endif // generic wxNativeFontInfo implementation
530 // conversion to/from user-readable string: this is used in the generic
531 // versions and under MSW as well because there is no standard font description
532 // format there anyhow (but there is a well-defined standard for X11 fonts used
533 // by wxGTK and wxMotif)
535 #if defined(wxNO_NATIVE_FONTINFO) || defined(__WXMSW__) || defined (__WXPM__)
537 wxString
wxNativeFontInfo::ToUserString() const
541 // first put the adjectives, if any - this is English-centric, of course,
542 // but what else can we do?
543 if ( GetUnderlined() )
545 desc
<< _("underlined ");
548 switch ( GetWeight() )
551 wxFAIL_MSG( _T("unknown font weight") );
554 case wxFONTWEIGHT_NORMAL
:
557 case wxFONTWEIGHT_LIGHT
:
561 case wxFONTWEIGHT_BOLD
:
566 switch ( GetStyle() )
569 wxFAIL_MSG( _T("unknown font style") );
572 case wxFONTSTYLE_NORMAL
:
575 // we don't distinguish between the two for now anyhow...
576 case wxFONTSTYLE_ITALIC
:
577 case wxFONTSTYLE_SLANT
:
582 wxString face
= GetFaceName();
585 desc
<< _T(' ') << face
;
588 int size
= GetPointSize();
589 if ( size
!= wxNORMAL_FONT
->GetPointSize() )
591 desc
<< _T(' ') << size
;
595 wxFontEncoding enc
= GetEncoding();
596 if ( enc
!= wxFONTENCODING_DEFAULT
&& enc
!= wxFONTENCODING_SYSTEM
)
598 desc
<< _T(' ') << wxFontMapper::GetEncodingName(enc
);
600 #endif // wxUSE_FONTMAP
605 bool wxNativeFontInfo::FromUserString(const wxString
& s
)
607 // reset to the default state
610 // parse a more or less free form string
612 // TODO: we should handle at least the quoted facenames
613 wxStringTokenizer
tokenizer(s
, _T(";, "), wxTOKEN_STRTOK
);
619 wxFontEncoding encoding
;
620 #endif // wxUSE_FONTMAP
622 while ( tokenizer
.HasMoreTokens() )
624 wxString token
= tokenizer
.GetNextToken();
627 token
.Trim(true).Trim(false).MakeLower();
629 // look for the known tokens
630 if ( token
== _T("underlined") || token
== _("underlined") )
634 else if ( token
== _T("light") || token
== _("light") )
636 SetWeight(wxFONTWEIGHT_LIGHT
);
638 else if ( token
== _T("bold") || token
== _("bold") )
640 SetWeight(wxFONTWEIGHT_BOLD
);
642 else if ( token
== _T("italic") || token
== _("italic") )
644 SetStyle(wxFONTSTYLE_ITALIC
);
646 else if ( token
.ToULong(&size
) )
651 else if ( (encoding
= wxFontMapper::Get()->CharsetToEncoding(token
, false))
652 != wxFONTENCODING_DEFAULT
)
654 SetEncoding(encoding
);
656 #endif // wxUSE_FONTMAP
657 else // assume it is the face name
666 // skip the code which resets face below
670 // if we had had the facename, we shouldn't continue appending tokens
671 // to it (i.e. "foo bold bar" shouldn't result in the facename "foo
680 // we might not have flushed it inside the loop
689 #endif // generic or wxMSW or wxOS2