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 int GetFamily() const
181 return m_nativeFontInfoOk
? m_nativeFontInfo
.GetStyle()
185 int 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 wx_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(int family
)
267 void SetStyle(int style
)
271 if ( m_nativeFontInfoOk
)
272 m_nativeFontInfo
.SetStyle((wxFontStyle
)style
);
277 void SetWeight(int 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
;
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.
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 return (int) (((72.0*(double)abs(lf
.lfHeight
)) / (double) ppInch
) + 0.5);
482 wxSize
wxNativeFontInfo::GetPixelSize() const
485 ret
.SetHeight(lf
.lfHeight
);
486 ret
.SetWidth(lf
.lfWidth
);
490 wxFontStyle
wxNativeFontInfo::GetStyle() const
492 return lf
.lfItalic
? wxFONTSTYLE_ITALIC
: wxFONTSTYLE_NORMAL
;
495 wxFontWeight
wxNativeFontInfo::GetWeight() const
497 if ( lf
.lfWeight
<= 300 )
498 return wxFONTWEIGHT_LIGHT
;
500 if ( lf
.lfWeight
>= 600 )
501 return wxFONTWEIGHT_BOLD
;
503 return wxFONTWEIGHT_NORMAL
;
506 bool wxNativeFontInfo::GetUnderlined() const
508 return lf
.lfUnderline
!= 0;
511 wxString
wxNativeFontInfo::GetFaceName() const
513 return lf
.lfFaceName
;
516 wxFontFamily
wxNativeFontInfo::GetFamily() const
520 // extract family from pitch-and-family
521 switch ( lf
.lfPitchAndFamily
& ~PITCH_MASK
)
524 family
= wxFONTFAMILY_ROMAN
;
528 wxFAIL_MSG( _T("unknown LOGFONT::lfFamily value") );
532 family
= wxFONTFAMILY_SWISS
;
536 family
= wxFONTFAMILY_SCRIPT
;
540 family
= wxFONTFAMILY_MODERN
;
544 family
= wxFONTFAMILY_DECORATIVE
;
551 wxFontEncoding
wxNativeFontInfo::GetEncoding() const
553 return wxGetFontEncFromCharSet(lf
.lfCharSet
);
556 void wxNativeFontInfo::SetPointSize(int pointsize
)
558 // FIXME: using the screen here results in incorrect font size calculation
560 const int ppInch
= ::GetDeviceCaps(ScreenHDC(), LOGPIXELSY
);
562 lf
.lfHeight
= -(int)((pointsize
*((double)ppInch
)/72.0) + 0.5);
565 void wxNativeFontInfo::SetPixelSize(const wxSize
& pixelSize
)
567 lf
.lfHeight
= pixelSize
.GetHeight();
568 lf
.lfWidth
= pixelSize
.GetWidth();
572 void wxNativeFontInfo::SetStyle(wxFontStyle style
)
577 wxFAIL_MSG( _T("unknown font style") );
580 case wxFONTSTYLE_NORMAL
:
584 case wxFONTSTYLE_ITALIC
:
585 case wxFONTSTYLE_SLANT
:
591 void wxNativeFontInfo::SetWeight(wxFontWeight weight
)
596 wxFAIL_MSG( _T("unknown font weight") );
599 case wxFONTWEIGHT_NORMAL
:
600 lf
.lfWeight
= FW_NORMAL
;
603 case wxFONTWEIGHT_LIGHT
:
604 lf
.lfWeight
= FW_LIGHT
;
607 case wxFONTWEIGHT_BOLD
:
608 lf
.lfWeight
= FW_BOLD
;
613 void wxNativeFontInfo::SetUnderlined(bool underlined
)
615 lf
.lfUnderline
= underlined
;
618 bool wxNativeFontInfo::SetFaceName(const wxString
& facename
)
620 size_t len
= WXSIZEOF(lf
.lfFaceName
);
621 wxStrncpy(lf
.lfFaceName
, facename
, len
);
622 lf
.lfFaceName
[len
- 1] = '\0'; // truncate the face name
626 void wxNativeFontInfo::SetFamily(wxFontFamily family
)
629 wxArrayString facename
;
631 // the list of fonts associated with a family was partially
632 // taken from http://www.codestyle.org/css/font-family
637 ff_family
= FF_SCRIPT
;
638 facename
.Add(_T("Script"));
639 facename
.Add(_T("Brush Script MT"));
640 facename
.Add(_T("Comic Sans MS"));
641 facename
.Add(_T("Lucida Handwriting"));
645 ff_family
= FF_DECORATIVE
;
646 facename
.Add(_T("Old English Text MT"));
647 facename
.Add(_T("Comic Sans MS"));
648 facename
.Add(_T("Lucida Handwriting"));
652 ff_family
= FF_ROMAN
;
653 facename
.Add(_T("Times New Roman"));
654 facename
.Add(_T("Georgia"));
655 facename
.Add(_T("Garamond"));
656 facename
.Add(_T("Bookman Old Style"));
657 facename
.Add(_T("Book Antiqua"));
662 ff_family
= FF_MODERN
;
663 facename
.Add(_T("Courier New"));
664 facename
.Add(_T("Lucida Console"));
665 facename
.Add(_T("Andale Mono"));
666 facename
.Add(_T("OCR A Extended"));
667 facename
.Add(_T("Terminal"));
671 ff_family
= FF_SWISS
;
672 facename
.Add(_T("Arial"));
673 facename
.Add(_T("Century Gothic"));
674 facename
.Add(_T("Lucida Sans Unicode"));
675 facename
.Add(_T("Tahoma"));
676 facename
.Add(_T("Trebuchet MS"));
677 facename
.Add(_T("Verdana"));
683 // We want Windows 2000 or later to have new fonts even MS Shell Dlg
684 // is returned as default GUI font for compatibility
686 ff_family
= FF_SWISS
;
687 if(wxGetOsVersion(&verMaj
) == wxOS_WINDOWS_NT
&& verMaj
>= 5)
688 facename
.Add(_T("MS Shell Dlg 2"));
690 facename
.Add(_T("MS Shell Dlg"));
693 // "MS Shell Dlg is a mapping mechanism that enables
694 // U.S. English Microsoft Windows NT, and Microsoft Windows 2000 to
695 // support locales that have characters that are not contained in code
696 // page 1252. It is not a font but a face name for a nonexistent font."
700 lf
.lfPitchAndFamily
= (BYTE
)(DEFAULT_PITCH
) | ff_family
;
702 if ( !wxStrlen(lf
.lfFaceName
) )
704 SetFaceName(facename
);
708 void wxNativeFontInfo::SetEncoding(wxFontEncoding encoding
)
710 wxNativeEncodingInfo info
;
711 if ( !wxGetNativeFontEncoding(encoding
, &info
) )
714 if ( wxFontMapper::Get()->GetAltForEncoding(encoding
, &info
) )
716 if ( !info
.facename
.empty() )
718 // if we have this encoding only in some particular facename, use
719 // the facename - it is better to show the correct characters in a
720 // wrong facename than unreadable text in a correct one
721 SetFaceName(info
.facename
);
725 #endif // wxUSE_FONTMAP
727 // unsupported encoding, replace with the default
728 info
.charset
= DEFAULT_CHARSET
;
732 lf
.lfCharSet
= (BYTE
)info
.charset
;
735 bool wxNativeFontInfo::FromString(const wxString
& s
)
739 wxStringTokenizer
tokenizer(s
, _T(";"));
742 wxString token
= tokenizer
.GetNextToken();
743 if ( token
!= _T('0') )
746 token
= tokenizer
.GetNextToken();
747 if ( !token
.ToLong(&l
) )
751 token
= tokenizer
.GetNextToken();
752 if ( !token
.ToLong(&l
) )
756 token
= tokenizer
.GetNextToken();
757 if ( !token
.ToLong(&l
) )
761 token
= tokenizer
.GetNextToken();
762 if ( !token
.ToLong(&l
) )
764 lf
.lfOrientation
= l
;
766 token
= tokenizer
.GetNextToken();
767 if ( !token
.ToLong(&l
) )
771 token
= tokenizer
.GetNextToken();
772 if ( !token
.ToLong(&l
) )
774 lf
.lfItalic
= (BYTE
)l
;
776 token
= tokenizer
.GetNextToken();
777 if ( !token
.ToLong(&l
) )
779 lf
.lfUnderline
= (BYTE
)l
;
781 token
= tokenizer
.GetNextToken();
782 if ( !token
.ToLong(&l
) )
784 lf
.lfStrikeOut
= (BYTE
)l
;
786 token
= tokenizer
.GetNextToken();
787 if ( !token
.ToLong(&l
) )
789 lf
.lfCharSet
= (BYTE
)l
;
791 token
= tokenizer
.GetNextToken();
792 if ( !token
.ToLong(&l
) )
794 lf
.lfOutPrecision
= (BYTE
)l
;
796 token
= tokenizer
.GetNextToken();
797 if ( !token
.ToLong(&l
) )
799 lf
.lfClipPrecision
= (BYTE
)l
;
801 token
= tokenizer
.GetNextToken();
802 if ( !token
.ToLong(&l
) )
804 lf
.lfQuality
= (BYTE
)l
;
806 token
= tokenizer
.GetNextToken();
807 if ( !token
.ToLong(&l
) )
809 lf
.lfPitchAndFamily
= (BYTE
)l
;
811 token
= tokenizer
.GetNextToken();
814 wxStrcpy(lf
.lfFaceName
, token
.c_str());
819 wxString
wxNativeFontInfo::ToString() const
823 s
.Printf(_T("%d;%ld;%ld;%ld;%ld;%ld;%d;%d;%d;%d;%d;%d;%d;%d;%s"),
824 0, // version, in case we want to change the format later
838 (const wxChar
*)lf
.lfFaceName
);
843 // ----------------------------------------------------------------------------
845 // ----------------------------------------------------------------------------
847 bool wxFont::Create(const wxNativeFontInfo
& info
, WXHFONT hFont
)
851 m_refData
= new wxFontRefData(info
, hFont
);
853 return RealizeResource();
856 wxFont::wxFont(const wxString
& fontdesc
)
858 wxNativeFontInfo info
;
859 if ( info
.FromString(fontdesc
) )
863 bool wxFont::DoCreate(int pointSize
,
864 const wxSize
& pixelSize
,
865 bool sizeUsingPixels
,
870 const wxString
& faceName
,
871 wxFontEncoding encoding
)
875 // wxDEFAULT is a valid value for the font size too so we must treat it
876 // specially here (otherwise the size would be 70 == wxDEFAULT value)
877 if ( pointSize
== wxDEFAULT
)
879 pointSize
= wxNORMAL_FONT
->GetPointSize();
882 m_refData
= new wxFontRefData(pointSize
, pixelSize
, sizeUsingPixels
,
883 family
, style
, weight
,
884 underlined
, faceName
, encoding
);
886 return RealizeResource();
893 // ----------------------------------------------------------------------------
894 // real implementation
895 // ----------------------------------------------------------------------------
897 wxObjectRefData
*wxFont::CreateRefData() const
899 return new wxFontRefData();
902 wxObjectRefData
*wxFont::CloneRefData(const wxObjectRefData
*data
) const
904 return new wxFontRefData(*wx_static_cast(const wxFontRefData
*, data
));
907 bool wxFont::RealizeResource()
909 // don't do anything if we already have a valid font
913 return M_FONTDATA
->Alloc(this);
916 bool wxFont::FreeResource(bool WXUNUSED(force
))
926 WXHANDLE
wxFont::GetResourceHandle() const
928 return (WXHANDLE
)GetHFONT();
931 WXHFONT
wxFont::GetHFONT() const
933 return M_FONTDATA
? M_FONTDATA
->GetHFONT(this) : 0;
936 bool wxFont::IsFree() const
938 return M_FONTDATA
&& !M_FONTDATA
->HasHFONT();
941 // ----------------------------------------------------------------------------
942 // change font attribute: we recreate font when doing it
943 // ----------------------------------------------------------------------------
945 void wxFont::SetPointSize(int pointSize
)
950 M_FONTDATA
->SetPointSize(pointSize
);
953 void wxFont::SetPixelSize(const wxSize
& pixelSize
)
957 M_FONTDATA
->SetPixelSize(pixelSize
);
960 void wxFont::SetFamily(int family
)
964 M_FONTDATA
->SetFamily(family
);
967 void wxFont::SetStyle(int style
)
971 M_FONTDATA
->SetStyle(style
);
974 void wxFont::SetWeight(int weight
)
978 M_FONTDATA
->SetWeight(weight
);
981 bool wxFont::SetFaceName(const wxString
& faceName
)
985 if ( !M_FONTDATA
->SetFaceName(faceName
) )
988 // NB: using win32's GetObject() API on M_FONTDATA->GetHFONT()
989 // to retrieve a LOGFONT and then compare lf.lfFaceName
990 // with given facename is not reliable at all:
991 // Windows copies the facename given to ::CreateFontIndirect()
992 // without any validity check.
993 // Thus we use wxFontBase::SetFaceName to check if facename
995 return wxFontBase::SetFaceName(faceName
);
998 void wxFont::SetUnderlined(bool underlined
)
1002 M_FONTDATA
->SetUnderlined(underlined
);
1005 void wxFont::SetEncoding(wxFontEncoding encoding
)
1009 M_FONTDATA
->SetEncoding(encoding
);
1012 void wxFont::DoSetNativeFontInfo(const wxNativeFontInfo
& info
)
1016 M_FONTDATA
->SetNativeFontInfo(info
);
1019 // ----------------------------------------------------------------------------
1021 // ----------------------------------------------------------------------------
1023 int wxFont::GetPointSize() const
1025 wxCHECK_MSG( Ok(), 0, wxT("invalid font") );
1027 return M_FONTDATA
->GetPointSize();
1030 wxSize
wxFont::GetPixelSize() const
1032 wxCHECK_MSG( Ok(), wxDefaultSize
, wxT("invalid font") );
1034 return M_FONTDATA
->GetPixelSize();
1037 bool wxFont::IsUsingSizeInPixels() const
1039 wxCHECK_MSG( Ok(), 0, wxT("invalid font") );
1041 return M_FONTDATA
->IsUsingSizeInPixels();
1044 int wxFont::GetFamily() const
1046 wxCHECK_MSG( Ok(), 0, wxT("invalid font") );
1048 return M_FONTDATA
->GetFamily();
1051 int wxFont::GetStyle() const
1053 wxCHECK_MSG( Ok(), 0, wxT("invalid font") );
1055 return M_FONTDATA
->GetStyle();
1058 int wxFont::GetWeight() const
1060 wxCHECK_MSG( Ok(), 0, wxT("invalid font") );
1062 return M_FONTDATA
->GetWeight();
1065 bool wxFont::GetUnderlined() const
1067 wxCHECK_MSG( Ok(), false, wxT("invalid font") );
1069 return M_FONTDATA
->GetUnderlined();
1072 wxString
wxFont::GetFaceName() const
1074 wxCHECK_MSG( Ok(), wxEmptyString
, wxT("invalid font") );
1076 return M_FONTDATA
->GetFaceName();
1079 wxFontEncoding
wxFont::GetEncoding() const
1081 wxCHECK_MSG( Ok(), wxFONTENCODING_DEFAULT
, wxT("invalid font") );
1083 return M_FONTDATA
->GetEncoding();
1086 const wxNativeFontInfo
*wxFont::GetNativeFontInfo() const
1088 return Ok() && M_FONTDATA
->HasNativeFontInfo() ? &(M_FONTDATA
->GetNativeFontInfo())
1092 wxString
wxFont::GetNativeFontInfoDesc() const
1094 wxCHECK_MSG( Ok(), wxEmptyString
, wxT("invalid font") );
1096 // be sure we have an HFONT associated...
1097 wxConstCast(this, wxFont
)->RealizeResource();
1098 return wxFontBase::GetNativeFontInfoDesc();
1101 wxString
wxFont::GetNativeFontInfoUserDesc() const
1103 wxCHECK_MSG( Ok(), wxEmptyString
, wxT("invalid font") );
1105 // be sure we have an HFONT associated...
1106 wxConstCast(this, wxFont
)->RealizeResource();
1107 return wxFontBase::GetNativeFontInfoUserDesc();
1110 bool wxFont::IsFixedWidth() const
1112 if ( M_FONTDATA
->HasNativeFontInfo() )
1114 // the two low-order bits specify the pitch of the font, the rest is
1117 (BYTE
)(M_FONTDATA
->GetNativeFontInfo().lf
.lfPitchAndFamily
& PITCH_MASK
);
1119 return pitch
== FIXED_PITCH
;
1122 return wxFontBase::IsFixedWidth();