1 /////////////////////////////////////////////////////////////////////////////
2 // Name: src/msw/font.cpp
3 // Purpose: wxFont class
4 // Author: Julian Smart
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"
34 #include "wx/encinfo.h"
37 #include "wx/msw/private.h"
39 #include "wx/fontutil.h"
40 #include "wx/fontmap.h"
43 #include "wx/sysopt.h"
46 #include "wx/tokenzr.h"
48 #if wxUSE_EXTENDED_RTTI
50 wxBEGIN_ENUM( wxFontFamily
)
51 wxENUM_MEMBER( wxDEFAULT
)
52 wxENUM_MEMBER( wxDECORATIVE
)
53 wxENUM_MEMBER( wxROMAN
)
54 wxENUM_MEMBER( wxSCRIPT
)
55 wxENUM_MEMBER( wxSWISS
)
56 wxENUM_MEMBER( wxMODERN
)
57 wxENUM_MEMBER( wxTELETYPE
)
58 wxEND_ENUM( wxFontFamily
)
60 wxBEGIN_ENUM( wxFontStyle
)
61 wxENUM_MEMBER( wxNORMAL
)
62 wxENUM_MEMBER( wxITALIC
)
63 wxENUM_MEMBER( wxSLANT
)
64 wxEND_ENUM( wxFontStyle
)
66 wxBEGIN_ENUM( wxFontWeight
)
67 wxENUM_MEMBER( wxNORMAL
)
68 wxENUM_MEMBER( wxLIGHT
)
69 wxENUM_MEMBER( wxBOLD
)
70 wxEND_ENUM( wxFontWeight
)
72 IMPLEMENT_DYNAMIC_CLASS_WITH_COPY_XTI(wxFont
, wxGDIObject
,"wx/font.h")
74 wxBEGIN_PROPERTIES_TABLE(wxFont
)
75 wxPROPERTY( Size
,int, SetPointSize
, GetPointSize
, 12 , 0 /*flags*/ , wxT("Helpstring") , wxT("group"))
76 wxPROPERTY( Family
, int , SetFamily
, GetFamily
, (int)wxDEFAULT
, 0 /*flags*/ , wxT("Helpstring") , wxT("group")) // wxFontFamily
77 wxPROPERTY( Style
, int , SetStyle
, GetStyle
, (int)wxNORMAL
, 0 /*flags*/ , wxT("Helpstring") , wxT("group")) // wxFontStyle
78 wxPROPERTY( Weight
, int , SetWeight
, GetWeight
, (int)wxNORMAL
, 0 /*flags*/ , wxT("Helpstring") , wxT("group")) // wxFontWeight
79 wxPROPERTY( Underlined
, bool , SetUnderlined
, GetUnderlined
, false , 0 /*flags*/ , wxT("Helpstring") , wxT("group"))
80 wxPROPERTY( Face
, wxString
, SetFaceName
, GetFaceName
, EMPTY_MACROVALUE
, 0 /*flags*/ , wxT("Helpstring") , wxT("group"))
81 wxPROPERTY( Encoding
, wxFontEncoding
, SetEncoding
, GetEncoding
, wxFONTENCODING_DEFAULT
, 0 /*flags*/ , wxT("Helpstring") , wxT("group"))
82 wxEND_PROPERTIES_TABLE()
84 wxCONSTRUCTOR_6( wxFont
, int , Size
, int , Family
, int , Style
, int , Weight
, bool , Underlined
, wxString
, Face
)
86 wxBEGIN_HANDLERS_TABLE(wxFont
)
87 wxEND_HANDLERS_TABLE()
90 IMPLEMENT_DYNAMIC_CLASS(wxFont
, wxGDIObject
)
94 // ----------------------------------------------------------------------------
96 // ----------------------------------------------------------------------------
98 // the mask used to extract the pitch from LOGFONT::lfPitchAndFamily field
99 static const int PITCH_MASK
= FIXED_PITCH
| VARIABLE_PITCH
;
101 // ----------------------------------------------------------------------------
102 // wxFontRefData - the internal description of the font
103 // ----------------------------------------------------------------------------
105 class WXDLLEXPORT wxFontRefData
: public wxGDIRefData
111 Init(-1, wxSize(0,0), false, wxFONTFAMILY_DEFAULT
, wxFONTSTYLE_NORMAL
,
112 wxFONTWEIGHT_NORMAL
, false, wxEmptyString
,
113 wxFONTENCODING_DEFAULT
);
116 wxFontRefData(int size
,
117 const wxSize
& pixelSize
,
118 bool sizeUsingPixels
,
123 const wxString
& faceName
,
124 wxFontEncoding encoding
)
126 Init(size
, pixelSize
, sizeUsingPixels
, family
, style
, weight
,
127 underlined
, faceName
, encoding
);
130 wxFontRefData(const wxNativeFontInfo
& info
, WXHFONT hFont
= 0)
135 wxFontRefData(const wxFontRefData
& data
) : wxGDIRefData()
137 if ( data
.m_nativeFontInfoOk
)
139 Init(data
.m_nativeFontInfo
);
143 Init(data
.m_pointSize
, data
.m_pixelSize
, data
.m_sizeUsingPixels
,
144 data
.m_family
, data
.m_style
, data
.m_weight
,
145 data
.m_underlined
, data
.m_faceName
, data
.m_encoding
);
149 virtual ~wxFontRefData();
152 bool Alloc(const wxFont
*font
);
156 // all wxFont accessors
157 int GetPointSize() const
159 return m_nativeFontInfoOk
? m_nativeFontInfo
.GetPointSize()
163 wxSize
GetPixelSize() const
165 return m_nativeFontInfoOk
? m_nativeFontInfo
.GetPixelSize()
169 bool IsUsingSizeInPixels() const
171 return m_nativeFontInfoOk
? true : m_sizeUsingPixels
;
174 wxFontFamily
GetFamily() const
179 wxFontStyle
GetStyle() const
181 return m_nativeFontInfoOk
? m_nativeFontInfo
.GetStyle()
185 wxFontWeight
GetWeight() const
187 return m_nativeFontInfoOk
? m_nativeFontInfo
.GetWeight()
191 bool GetUnderlined() const
193 return m_nativeFontInfoOk
? m_nativeFontInfo
.GetUnderlined()
197 wxString
GetFaceName() const
200 if ( m_nativeFontInfoOk
)
201 s
= m_nativeFontInfo
.GetFaceName();
208 wxFontEncoding
GetEncoding() const
210 return m_nativeFontInfoOk
? m_nativeFontInfo
.GetEncoding()
214 WXHFONT
GetHFONT(const wxFont
*font
) const
217 const_cast<wxFontRefData
*>(this)->Alloc(font
);
219 return (WXHFONT
)m_hFont
;
222 bool HasHFONT() const
227 // ... and setters: notice that all of them invalidate the currently
228 // allocated HFONT, if any, so that the next call to GetHFONT() recreates a
230 void SetPointSize(int pointSize
)
234 if ( m_nativeFontInfoOk
)
236 m_nativeFontInfo
.SetPointSize(pointSize
);
240 m_pointSize
= pointSize
;
241 m_sizeUsingPixels
= false;
245 void SetPixelSize(const wxSize
& pixelSize
)
249 if ( m_nativeFontInfoOk
)
251 m_nativeFontInfo
.SetPixelSize(pixelSize
);
255 m_pixelSize
= pixelSize
;
256 m_sizeUsingPixels
= true;
260 void SetFamily(wxFontFamily family
)
267 void SetStyle(wxFontStyle style
)
271 if ( m_nativeFontInfoOk
)
272 m_nativeFontInfo
.SetStyle((wxFontStyle
)style
);
277 void SetWeight(wxFontWeight weight
)
281 if ( m_nativeFontInfoOk
)
282 m_nativeFontInfo
.SetWeight((wxFontWeight
)weight
);
287 bool SetFaceName(const wxString
& faceName
)
291 if ( m_nativeFontInfoOk
)
292 return m_nativeFontInfo
.SetFaceName(faceName
);
294 m_faceName
= faceName
;
298 void SetUnderlined(bool underlined
)
302 if ( m_nativeFontInfoOk
)
303 m_nativeFontInfo
.SetUnderlined(underlined
);
305 m_underlined
= underlined
;
308 void SetEncoding(wxFontEncoding encoding
)
312 if ( m_nativeFontInfoOk
)
313 m_nativeFontInfo
.SetEncoding(encoding
);
315 m_encoding
= encoding
;
319 bool HasNativeFontInfo() const { return m_nativeFontInfoOk
; }
321 const wxNativeFontInfo
& GetNativeFontInfo() const
322 { return m_nativeFontInfo
; }
324 void SetNativeFontInfo(const wxNativeFontInfo
& nativeFontInfo
)
328 m_nativeFontInfo
= nativeFontInfo
;
329 m_nativeFontInfoOk
= true;
333 // common part of all ctors
335 const wxSize
& pixelSize
,
336 bool sizeUsingPixels
,
341 const wxString
& faceName
,
342 wxFontEncoding encoding
);
344 void Init(const wxNativeFontInfo
& info
, WXHFONT hFont
= 0);
346 // font characteristics
349 bool m_sizeUsingPixels
;
350 wxFontFamily m_family
;
352 wxFontWeight m_weight
;
355 wxFontEncoding m_encoding
;
357 // Windows font handle, created on demand in GetHFONT()
361 wxNativeFontInfo m_nativeFontInfo
;
362 bool m_nativeFontInfoOk
;
365 #define M_FONTDATA ((wxFontRefData*)m_refData)
367 // ============================================================================
369 // ============================================================================
371 // ----------------------------------------------------------------------------
373 // ----------------------------------------------------------------------------
375 void wxFontRefData::Init(int pointSize
,
376 const wxSize
& pixelSize
,
377 bool sizeUsingPixels
,
382 const wxString
& faceName
,
383 wxFontEncoding encoding
)
386 m_pointSize
= pointSize
== -1 ? wxNORMAL_FONT
->GetPointSize() : pointSize
;
387 m_pixelSize
= pixelSize
;
388 m_sizeUsingPixels
= sizeUsingPixels
;
392 m_underlined
= underlined
;
393 m_faceName
= faceName
;
394 m_encoding
= encoding
;
398 m_nativeFontInfoOk
= false;
401 void wxFontRefData::Init(const wxNativeFontInfo
& info
, WXHFONT hFont
)
403 // hFont may be zero, or it be passed in case we really want to
404 // use the exact font created in the underlying system
405 // (for example where we can't guarantee conversion from HFONT
406 // to LOGFONT back to HFONT)
407 m_hFont
= (HFONT
)hFont
;
409 m_nativeFontInfoOk
= true;
410 m_nativeFontInfo
= info
;
411 // This is the best we can do since we don't have the
412 // correct information at this point.
413 m_family
= wxFONTFAMILY_SWISS
;
416 wxFontRefData::~wxFontRefData()
421 bool wxFontRefData::Alloc(const wxFont
*font
)
423 if ( !m_nativeFontInfoOk
)
425 wxFillLogFont(&m_nativeFontInfo
.lf
, font
);
426 m_nativeFontInfoOk
= true;
429 m_hFont
= ::CreateFontIndirect(&m_nativeFontInfo
.lf
);
432 wxLogLastError(wxT("CreateFont"));
439 void wxFontRefData::Free()
443 if ( !::DeleteObject(m_hFont
) )
445 wxLogLastError(wxT("DeleteObject(font)"));
452 // ----------------------------------------------------------------------------
454 // ----------------------------------------------------------------------------
456 void wxNativeFontInfo::Init()
460 // we get better font quality if we use PROOF_QUALITY instead of
461 // DEFAULT_QUALITY but some fonts (e.g. "Terminal 6pt") are not available
462 // then so we allow to set a global option to choose between quality and
463 // wider font selection
465 lf
.lfQuality
= CLEARTYPE_QUALITY
;
467 lf
.lfQuality
= wxSystemOptions::GetOptionInt(_T("msw.font.no-proof-quality"))
473 int wxNativeFontInfo::GetPointSize() const
475 // FIXME: using the screen here results in incorrect font size calculation
477 const int ppInch
= ::GetDeviceCaps(ScreenHDC(), LOGPIXELSY
);
479 // BC++ 2007 doesn't provide abs(long) overload, hence the cast
480 return (int) (((72.0*abs((int)lf
.lfHeight
)) / (double) ppInch
) + 0.5);
483 wxSize
wxNativeFontInfo::GetPixelSize() const
486 ret
.SetHeight(abs((int)lf
.lfHeight
));
487 ret
.SetWidth(lf
.lfWidth
);
491 wxFontStyle
wxNativeFontInfo::GetStyle() const
493 return lf
.lfItalic
? wxFONTSTYLE_ITALIC
: wxFONTSTYLE_NORMAL
;
496 wxFontWeight
wxNativeFontInfo::GetWeight() const
498 if ( lf
.lfWeight
<= 300 )
499 return wxFONTWEIGHT_LIGHT
;
501 if ( lf
.lfWeight
>= 600 )
502 return wxFONTWEIGHT_BOLD
;
504 return wxFONTWEIGHT_NORMAL
;
507 bool wxNativeFontInfo::GetUnderlined() const
509 return lf
.lfUnderline
!= 0;
512 wxString
wxNativeFontInfo::GetFaceName() const
514 return lf
.lfFaceName
;
517 wxFontFamily
wxNativeFontInfo::GetFamily() const
521 // extract family from pitch-and-family
522 switch ( lf
.lfPitchAndFamily
& ~PITCH_MASK
)
525 family
= wxFONTFAMILY_ROMAN
;
529 wxFAIL_MSG( _T("unknown LOGFONT::lfFamily value") );
533 family
= wxFONTFAMILY_SWISS
;
537 family
= wxFONTFAMILY_SCRIPT
;
541 family
= wxFONTFAMILY_MODERN
;
545 family
= wxFONTFAMILY_DECORATIVE
;
552 wxFontEncoding
wxNativeFontInfo::GetEncoding() const
554 return wxGetFontEncFromCharSet(lf
.lfCharSet
);
557 void wxNativeFontInfo::SetPointSize(int pointsize
)
559 // FIXME: using the screen here results in incorrect font size calculation
561 const int ppInch
= ::GetDeviceCaps(ScreenHDC(), LOGPIXELSY
);
563 lf
.lfHeight
= -(int)((pointsize
*((double)ppInch
)/72.0) + 0.5);
566 void wxNativeFontInfo::SetPixelSize(const wxSize
& pixelSize
)
568 lf
.lfHeight
= pixelSize
.GetHeight();
569 lf
.lfWidth
= pixelSize
.GetWidth();
573 void wxNativeFontInfo::SetStyle(wxFontStyle style
)
578 wxFAIL_MSG( _T("unknown font style") );
581 case wxFONTSTYLE_NORMAL
:
585 case wxFONTSTYLE_ITALIC
:
586 case wxFONTSTYLE_SLANT
:
592 void wxNativeFontInfo::SetWeight(wxFontWeight weight
)
597 wxFAIL_MSG( _T("unknown font weight") );
600 case wxFONTWEIGHT_NORMAL
:
601 lf
.lfWeight
= FW_NORMAL
;
604 case wxFONTWEIGHT_LIGHT
:
605 lf
.lfWeight
= FW_LIGHT
;
608 case wxFONTWEIGHT_BOLD
:
609 lf
.lfWeight
= FW_BOLD
;
614 void wxNativeFontInfo::SetUnderlined(bool underlined
)
616 lf
.lfUnderline
= underlined
;
619 bool wxNativeFontInfo::SetFaceName(const wxString
& facename
)
621 wxStrlcpy(lf
.lfFaceName
, facename
.c_str(), WXSIZEOF(lf
.lfFaceName
));
625 void wxNativeFontInfo::SetFamily(wxFontFamily family
)
628 wxArrayString facename
;
630 // the list of fonts associated with a family was partially
631 // taken from http://www.codestyle.org/css/font-family
636 ff_family
= FF_SCRIPT
;
637 facename
.Add(_T("Script"));
638 facename
.Add(_T("Brush Script MT"));
639 facename
.Add(_T("Comic Sans MS"));
640 facename
.Add(_T("Lucida Handwriting"));
644 ff_family
= FF_DECORATIVE
;
645 facename
.Add(_T("Old English Text MT"));
646 facename
.Add(_T("Comic Sans MS"));
647 facename
.Add(_T("Lucida Handwriting"));
651 ff_family
= FF_ROMAN
;
652 facename
.Add(_T("Times New Roman"));
653 facename
.Add(_T("Georgia"));
654 facename
.Add(_T("Garamond"));
655 facename
.Add(_T("Bookman Old Style"));
656 facename
.Add(_T("Book Antiqua"));
661 ff_family
= FF_MODERN
;
662 facename
.Add(_T("Courier New"));
663 facename
.Add(_T("Lucida Console"));
664 facename
.Add(_T("Andale Mono"));
665 facename
.Add(_T("OCR A Extended"));
666 facename
.Add(_T("Terminal"));
670 ff_family
= FF_SWISS
;
671 facename
.Add(_T("Arial"));
672 facename
.Add(_T("Century Gothic"));
673 facename
.Add(_T("Lucida Sans Unicode"));
674 facename
.Add(_T("Tahoma"));
675 facename
.Add(_T("Trebuchet MS"));
676 facename
.Add(_T("Verdana"));
682 // We want Windows 2000 or later to have new fonts even MS Shell Dlg
683 // is returned as default GUI font for compatibility
685 ff_family
= FF_SWISS
;
686 if(wxGetOsVersion(&verMaj
) == wxOS_WINDOWS_NT
&& verMaj
>= 5)
687 facename
.Add(_T("MS Shell Dlg 2"));
689 facename
.Add(_T("MS Shell Dlg"));
692 // "MS Shell Dlg is a mapping mechanism that enables
693 // U.S. English Microsoft Windows NT, and Microsoft Windows 2000 to
694 // support locales that have characters that are not contained in code
695 // page 1252. It is not a font but a face name for a nonexistent font."
699 lf
.lfPitchAndFamily
= (BYTE
)(DEFAULT_PITCH
) | ff_family
;
701 if ( !wxStrlen(lf
.lfFaceName
) )
703 SetFaceName(facename
);
707 void wxNativeFontInfo::SetEncoding(wxFontEncoding encoding
)
709 wxNativeEncodingInfo info
;
710 if ( !wxGetNativeFontEncoding(encoding
, &info
) )
713 if ( wxFontMapper::Get()->GetAltForEncoding(encoding
, &info
) )
715 if ( !info
.facename
.empty() )
717 // if we have this encoding only in some particular facename, use
718 // the facename - it is better to show the correct characters in a
719 // wrong facename than unreadable text in a correct one
720 SetFaceName(info
.facename
);
724 #endif // wxUSE_FONTMAP
726 // unsupported encoding, replace with the default
727 info
.charset
= DEFAULT_CHARSET
;
731 lf
.lfCharSet
= (BYTE
)info
.charset
;
734 bool wxNativeFontInfo::FromString(const wxString
& s
)
738 wxStringTokenizer
tokenizer(s
, _T(";"));
741 wxString token
= tokenizer
.GetNextToken();
742 if ( token
!= _T('0') )
745 token
= tokenizer
.GetNextToken();
746 if ( !token
.ToLong(&l
) )
750 token
= tokenizer
.GetNextToken();
751 if ( !token
.ToLong(&l
) )
755 token
= tokenizer
.GetNextToken();
756 if ( !token
.ToLong(&l
) )
760 token
= tokenizer
.GetNextToken();
761 if ( !token
.ToLong(&l
) )
763 lf
.lfOrientation
= l
;
765 token
= tokenizer
.GetNextToken();
766 if ( !token
.ToLong(&l
) )
770 token
= tokenizer
.GetNextToken();
771 if ( !token
.ToLong(&l
) )
773 lf
.lfItalic
= (BYTE
)l
;
775 token
= tokenizer
.GetNextToken();
776 if ( !token
.ToLong(&l
) )
778 lf
.lfUnderline
= (BYTE
)l
;
780 token
= tokenizer
.GetNextToken();
781 if ( !token
.ToLong(&l
) )
783 lf
.lfStrikeOut
= (BYTE
)l
;
785 token
= tokenizer
.GetNextToken();
786 if ( !token
.ToLong(&l
) )
788 lf
.lfCharSet
= (BYTE
)l
;
790 token
= tokenizer
.GetNextToken();
791 if ( !token
.ToLong(&l
) )
793 lf
.lfOutPrecision
= (BYTE
)l
;
795 token
= tokenizer
.GetNextToken();
796 if ( !token
.ToLong(&l
) )
798 lf
.lfClipPrecision
= (BYTE
)l
;
800 token
= tokenizer
.GetNextToken();
801 if ( !token
.ToLong(&l
) )
803 lf
.lfQuality
= (BYTE
)l
;
805 token
= tokenizer
.GetNextToken();
806 if ( !token
.ToLong(&l
) )
808 lf
.lfPitchAndFamily
= (BYTE
)l
;
810 token
= tokenizer
.GetNextToken();
813 wxStrcpy(lf
.lfFaceName
, token
.c_str());
818 wxString
wxNativeFontInfo::ToString() const
822 s
.Printf(_T("%d;%ld;%ld;%ld;%ld;%ld;%d;%d;%d;%d;%d;%d;%d;%d;%s"),
823 0, // version, in case we want to change the format later
837 (const wxChar
*)lf
.lfFaceName
);
842 // ----------------------------------------------------------------------------
844 // ----------------------------------------------------------------------------
846 bool wxFont::Create(const wxNativeFontInfo
& info
, WXHFONT hFont
)
850 m_refData
= new wxFontRefData(info
, hFont
);
852 return RealizeResource();
855 wxFont::wxFont(const wxString
& fontdesc
)
857 wxNativeFontInfo info
;
858 if ( info
.FromString(fontdesc
) )
862 bool wxFont::DoCreate(int pointSize
,
863 const wxSize
& pixelSize
,
864 bool sizeUsingPixels
,
869 const wxString
& faceName
,
870 wxFontEncoding encoding
)
874 // wxDEFAULT is a valid value for the font size too so we must treat it
875 // specially here (otherwise the size would be 70 == wxDEFAULT value)
876 if ( pointSize
== wxDEFAULT
)
878 pointSize
= wxNORMAL_FONT
->GetPointSize();
881 m_refData
= new wxFontRefData(pointSize
, pixelSize
, sizeUsingPixels
,
882 family
, style
, weight
,
883 underlined
, faceName
, encoding
);
885 return RealizeResource();
892 // ----------------------------------------------------------------------------
893 // real implementation
894 // ----------------------------------------------------------------------------
896 wxGDIRefData
*wxFont::CreateGDIRefData() const
898 return new wxFontRefData();
901 wxGDIRefData
*wxFont::CloneGDIRefData(const wxGDIRefData
*data
) const
903 return new wxFontRefData(*static_cast<const wxFontRefData
*>(data
));
906 bool wxFont::RealizeResource()
908 // don't do anything if we already have a valid font
912 return M_FONTDATA
->Alloc(this);
915 bool wxFont::FreeResource(bool WXUNUSED(force
))
925 WXHANDLE
wxFont::GetResourceHandle() const
927 return (WXHANDLE
)GetHFONT();
930 WXHFONT
wxFont::GetHFONT() const
932 return M_FONTDATA
? M_FONTDATA
->GetHFONT(this) : 0;
935 bool wxFont::IsFree() const
937 return M_FONTDATA
&& !M_FONTDATA
->HasHFONT();
940 // ----------------------------------------------------------------------------
941 // change font attribute: we recreate font when doing it
942 // ----------------------------------------------------------------------------
944 void wxFont::SetPointSize(int pointSize
)
949 M_FONTDATA
->SetPointSize(pointSize
);
952 void wxFont::SetPixelSize(const wxSize
& pixelSize
)
956 M_FONTDATA
->SetPixelSize(pixelSize
);
959 void wxFont::SetFamily(wxFontFamily family
)
963 M_FONTDATA
->SetFamily(family
);
966 void wxFont::SetStyle(wxFontStyle style
)
970 M_FONTDATA
->SetStyle(style
);
973 void wxFont::SetWeight(wxFontWeight weight
)
977 M_FONTDATA
->SetWeight(weight
);
980 bool wxFont::SetFaceName(const wxString
& faceName
)
984 if ( !M_FONTDATA
->SetFaceName(faceName
) )
987 // NB: using win32's GetObject() API on M_FONTDATA->GetHFONT()
988 // to retrieve a LOGFONT and then compare lf.lfFaceName
989 // with given facename is not reliable at all:
990 // Windows copies the facename given to ::CreateFontIndirect()
991 // without any validity check.
992 // Thus we use wxFontBase::SetFaceName to check if facename
994 return wxFontBase::SetFaceName(faceName
);
997 void wxFont::SetUnderlined(bool underlined
)
1001 M_FONTDATA
->SetUnderlined(underlined
);
1004 void wxFont::SetEncoding(wxFontEncoding encoding
)
1008 M_FONTDATA
->SetEncoding(encoding
);
1011 void wxFont::DoSetNativeFontInfo(const wxNativeFontInfo
& info
)
1015 M_FONTDATA
->SetNativeFontInfo(info
);
1018 // ----------------------------------------------------------------------------
1020 // ----------------------------------------------------------------------------
1022 int wxFont::GetPointSize() const
1024 wxCHECK_MSG( Ok(), 0, wxT("invalid font") );
1026 return M_FONTDATA
->GetPointSize();
1029 wxSize
wxFont::GetPixelSize() const
1031 wxCHECK_MSG( Ok(), wxDefaultSize
, wxT("invalid font") );
1033 return M_FONTDATA
->GetPixelSize();
1036 bool wxFont::IsUsingSizeInPixels() const
1038 wxCHECK_MSG( Ok(), 0, wxT("invalid font") );
1040 return M_FONTDATA
->IsUsingSizeInPixels();
1043 wxFontFamily
wxFont::GetFamily() const
1045 wxCHECK_MSG( Ok(), wxFONTFAMILY_MAX
, wxT("invalid font") );
1047 return M_FONTDATA
->GetFamily();
1050 wxFontStyle
wxFont::GetStyle() const
1052 wxCHECK_MSG( Ok(), wxFONTSTYLE_MAX
, wxT("invalid font") );
1054 return M_FONTDATA
->GetStyle();
1057 wxFontWeight
wxFont::GetWeight() const
1059 wxCHECK_MSG( Ok(), wxFONTWEIGHT_MAX
, wxT("invalid font") );
1061 return M_FONTDATA
->GetWeight();
1064 bool wxFont::GetUnderlined() const
1066 wxCHECK_MSG( Ok(), false, wxT("invalid font") );
1068 return M_FONTDATA
->GetUnderlined();
1071 wxString
wxFont::GetFaceName() const
1073 wxCHECK_MSG( Ok(), wxEmptyString
, wxT("invalid font") );
1075 return M_FONTDATA
->GetFaceName();
1078 wxFontEncoding
wxFont::GetEncoding() const
1080 wxCHECK_MSG( Ok(), wxFONTENCODING_DEFAULT
, wxT("invalid font") );
1082 return M_FONTDATA
->GetEncoding();
1085 const wxNativeFontInfo
*wxFont::GetNativeFontInfo() const
1087 return Ok() && M_FONTDATA
->HasNativeFontInfo() ? &(M_FONTDATA
->GetNativeFontInfo())
1091 wxString
wxFont::GetNativeFontInfoDesc() const
1093 wxCHECK_MSG( Ok(), wxEmptyString
, wxT("invalid font") );
1095 // be sure we have an HFONT associated...
1096 wxConstCast(this, wxFont
)->RealizeResource();
1097 return wxFontBase::GetNativeFontInfoDesc();
1100 wxString
wxFont::GetNativeFontInfoUserDesc() const
1102 wxCHECK_MSG( Ok(), wxEmptyString
, wxT("invalid font") );
1104 // be sure we have an HFONT associated...
1105 wxConstCast(this, wxFont
)->RealizeResource();
1106 return wxFontBase::GetNativeFontInfoUserDesc();
1109 bool wxFont::IsFixedWidth() const
1111 if ( M_FONTDATA
->HasNativeFontInfo() )
1113 // the two low-order bits specify the pitch of the font, the rest is
1116 (BYTE
)(M_FONTDATA
->GetNativeFontInfo().lf
.lfPitchAndFamily
& PITCH_MASK
);
1118 return pitch
== FIXED_PITCH
;
1121 return wxFontBase::IsFixedWidth();