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/scopeguard.h"
47 #include "wx/tokenzr.h"
49 #if wxUSE_EXTENDED_RTTI
51 wxBEGIN_ENUM( wxFontFamily
)
52 wxENUM_MEMBER( wxDEFAULT
)
53 wxENUM_MEMBER( wxDECORATIVE
)
54 wxENUM_MEMBER( wxROMAN
)
55 wxENUM_MEMBER( wxSCRIPT
)
56 wxENUM_MEMBER( wxSWISS
)
57 wxENUM_MEMBER( wxMODERN
)
58 wxENUM_MEMBER( wxTELETYPE
)
59 wxEND_ENUM( wxFontFamily
)
61 wxBEGIN_ENUM( wxFontStyle
)
62 wxENUM_MEMBER( wxNORMAL
)
63 wxENUM_MEMBER( wxITALIC
)
64 wxENUM_MEMBER( wxSLANT
)
65 wxEND_ENUM( wxFontStyle
)
67 wxBEGIN_ENUM( wxFontWeight
)
68 wxENUM_MEMBER( wxNORMAL
)
69 wxENUM_MEMBER( wxLIGHT
)
70 wxENUM_MEMBER( wxBOLD
)
71 wxEND_ENUM( wxFontWeight
)
73 IMPLEMENT_DYNAMIC_CLASS_WITH_COPY_XTI(wxFont
, wxGDIObject
,"wx/font.h")
75 wxBEGIN_PROPERTIES_TABLE(wxFont
)
76 wxPROPERTY( Size
,int, SetPointSize
, GetPointSize
, 12 , 0 /*flags*/ , wxT("Helpstring") , wxT("group"))
77 wxPROPERTY( Family
, int , SetFamily
, GetFamily
, (int)wxDEFAULT
, 0 /*flags*/ , wxT("Helpstring") , wxT("group")) // wxFontFamily
78 wxPROPERTY( Style
, int , SetStyle
, GetStyle
, (int)wxNORMAL
, 0 /*flags*/ , wxT("Helpstring") , wxT("group")) // wxFontStyle
79 wxPROPERTY( Weight
, int , SetWeight
, GetWeight
, (int)wxNORMAL
, 0 /*flags*/ , wxT("Helpstring") , wxT("group")) // wxFontWeight
80 wxPROPERTY( Underlined
, bool , SetUnderlined
, GetUnderlined
, false , 0 /*flags*/ , wxT("Helpstring") , wxT("group"))
81 wxPROPERTY( Face
, wxString
, SetFaceName
, GetFaceName
, EMPTY_MACROVALUE
, 0 /*flags*/ , wxT("Helpstring") , wxT("group"))
82 wxPROPERTY( Encoding
, wxFontEncoding
, SetEncoding
, GetEncoding
, wxFONTENCODING_DEFAULT
, 0 /*flags*/ , wxT("Helpstring") , wxT("group"))
83 wxEND_PROPERTIES_TABLE()
85 wxCONSTRUCTOR_6( wxFont
, int , Size
, int , Family
, int , Style
, int , Weight
, bool , Underlined
, wxString
, Face
)
87 wxBEGIN_HANDLERS_TABLE(wxFont
)
88 wxEND_HANDLERS_TABLE()
91 IMPLEMENT_DYNAMIC_CLASS(wxFont
, wxGDIObject
)
95 // ----------------------------------------------------------------------------
97 // ----------------------------------------------------------------------------
99 // the mask used to extract the pitch from LOGFONT::lfPitchAndFamily field
100 static const int PITCH_MASK
= FIXED_PITCH
| VARIABLE_PITCH
;
102 // ----------------------------------------------------------------------------
103 // wxFontRefData - the internal description of the font
104 // ----------------------------------------------------------------------------
106 class WXDLLEXPORT wxFontRefData
: public wxGDIRefData
112 Init(-1, wxSize(0,0), false, wxFONTFAMILY_DEFAULT
, wxFONTSTYLE_NORMAL
,
113 wxFONTWEIGHT_NORMAL
, false, wxEmptyString
,
114 wxFONTENCODING_DEFAULT
);
117 wxFontRefData(int size
,
118 const wxSize
& pixelSize
,
119 bool sizeUsingPixels
,
124 const wxString
& faceName
,
125 wxFontEncoding encoding
)
127 Init(size
, pixelSize
, sizeUsingPixels
, family
, style
, weight
,
128 underlined
, faceName
, encoding
);
131 wxFontRefData(const wxNativeFontInfo
& info
, WXHFONT hFont
= 0)
136 wxFontRefData(const wxFontRefData
& data
) : wxGDIRefData()
138 Init(data
.m_nativeFontInfo
);
141 virtual ~wxFontRefData();
148 // all wxFont accessors
149 int GetPointSize() const
151 return m_nativeFontInfo
.GetPointSize();
154 wxSize
GetPixelSize() const
156 return m_nativeFontInfo
.GetPixelSize();
159 bool IsUsingSizeInPixels() const
161 return m_sizeUsingPixels
;
164 wxFontFamily
GetFamily() const
166 return m_nativeFontInfo
.GetFamily();
169 wxFontStyle
GetStyle() const
171 return m_nativeFontInfo
.GetStyle();
174 wxFontWeight
GetWeight() const
176 return m_nativeFontInfo
.GetWeight();
179 bool GetUnderlined() const
181 return m_nativeFontInfo
.GetUnderlined();
184 wxString
GetFaceName() const
186 wxString facename
= m_nativeFontInfo
.GetFaceName();
187 if ( facename
.empty() )
189 facename
= GetMSWFaceName();
190 if ( !facename
.empty() )
192 // cache the face name, it shouldn't change unless the family
193 // does and wxNativeFontInfo::SetFamily() resets the face name
194 const_cast<wxFontRefData
*>(this)->SetFaceName(facename
);
201 wxFontEncoding
GetEncoding() const
203 return m_nativeFontInfo
.GetEncoding();
206 WXHFONT
GetHFONT() const
209 const_cast<wxFontRefData
*>(this)->Alloc();
211 return (WXHFONT
)m_hFont
;
214 bool HasHFONT() const
219 // ... and setters: notice that all of them invalidate the currently
220 // allocated HFONT, if any, so that the next call to GetHFONT() recreates a
222 void SetPointSize(int pointSize
)
226 m_nativeFontInfo
.SetPointSize(pointSize
);
227 m_sizeUsingPixels
= false;
230 void SetPixelSize(const wxSize
& pixelSize
)
232 wxCHECK_RET( pixelSize
.GetWidth() >= 0, "negative font width" );
233 wxCHECK_RET( pixelSize
.GetHeight() != 0, "zero font height" );
237 m_nativeFontInfo
.SetPixelSize(pixelSize
);
238 m_sizeUsingPixels
= true;
241 void SetFamily(wxFontFamily family
)
245 m_nativeFontInfo
.SetFamily(family
);
248 void SetStyle(wxFontStyle style
)
252 m_nativeFontInfo
.SetStyle(style
);
255 void SetWeight(wxFontWeight weight
)
259 m_nativeFontInfo
.SetWeight(weight
);
262 bool SetFaceName(const wxString
& faceName
)
266 return m_nativeFontInfo
.SetFaceName(faceName
);
269 void SetUnderlined(bool underlined
)
273 m_nativeFontInfo
.SetUnderlined(underlined
);
276 void SetEncoding(wxFontEncoding encoding
)
280 m_nativeFontInfo
.SetEncoding(encoding
);
283 const wxNativeFontInfo
& GetNativeFontInfo() const
284 { return m_nativeFontInfo
; }
286 void SetNativeFontInfo(const wxNativeFontInfo
& nativeFontInfo
)
290 m_nativeFontInfo
= nativeFontInfo
;
294 // common part of all ctors
296 const wxSize
& pixelSize
,
297 bool sizeUsingPixels
,
302 const wxString
& faceName
,
303 wxFontEncoding encoding
);
305 void Init(const wxNativeFontInfo
& info
, WXHFONT hFont
= 0);
307 // retrieve the face name really being used by the font: this is used to
308 // get the face name selected by the system when we don't specify it (but
309 // use just the family for example)
310 wxString
GetMSWFaceName() const
313 SelectInHDC
selectFont(hdc
, m_hFont
);
315 UINT otmSize
= GetOutlineTextMetrics(hdc
, 0, NULL
);
318 wxLogLastError("GetOutlineTextMetrics(NULL)");
322 OUTLINETEXTMETRIC
* const
323 otm
= static_cast<OUTLINETEXTMETRIC
*>(malloc(otmSize
));
324 wxON_BLOCK_EXIT1( free
, otm
);
326 otm
->otmSize
= otmSize
;
327 if ( !GetOutlineTextMetrics(hdc
, otmSize
, otm
) )
329 wxLogLastError("GetOutlineTextMetrics()");
333 // in spite of its type, the otmpFaceName field of OUTLINETEXTMETRIC
334 // gives an offset in _bytes_ of the face name from the struct start
335 // while the name itself is an array of TCHARs
336 return reinterpret_cast<wxChar
*>(otm
) +
337 wxPtrToUInt(otm
->otmpFaceName
)/sizeof(wxChar
);
340 // are we using m_nativeFontInfo.lf.lfHeight for point size or pixel size?
341 bool m_sizeUsingPixels
;
343 // Windows font handle, created on demand in GetHFONT()
347 wxNativeFontInfo m_nativeFontInfo
;
350 #define M_FONTDATA ((wxFontRefData*)m_refData)
352 // ============================================================================
354 // ============================================================================
356 // ----------------------------------------------------------------------------
358 // ----------------------------------------------------------------------------
360 void wxFontRefData::Init(int pointSize
,
361 const wxSize
& pixelSize
,
362 bool sizeUsingPixels
,
367 const wxString
& faceName
,
368 wxFontEncoding encoding
)
372 m_sizeUsingPixels
= sizeUsingPixels
;
373 if ( m_sizeUsingPixels
)
374 SetPixelSize(pixelSize
);
376 SetPointSize(pointSize
);
380 SetUnderlined(underlined
);
382 // set the family/facename
384 if ( !faceName
.empty() )
385 SetFaceName(faceName
);
387 // deal with encoding now (it may override the font family and facename
388 // so do it after setting them)
389 SetEncoding(encoding
);
392 void wxFontRefData::Init(const wxNativeFontInfo
& info
, WXHFONT hFont
)
394 // hFont may be zero, or it be passed in case we really want to
395 // use the exact font created in the underlying system
396 // (for example where we can't guarantee conversion from HFONT
397 // to LOGFONT back to HFONT)
398 m_hFont
= (HFONT
)hFont
;
399 m_nativeFontInfo
= info
;
401 // TODO: m_sizeUsingPixels?
404 wxFontRefData::~wxFontRefData()
409 bool wxFontRefData::Alloc()
411 m_hFont
= ::CreateFontIndirect(&m_nativeFontInfo
.lf
);
414 wxLogLastError(wxT("CreateFont"));
421 void wxFontRefData::Free()
425 if ( !::DeleteObject(m_hFont
) )
427 wxLogLastError(wxT("DeleteObject(font)"));
434 // ----------------------------------------------------------------------------
436 // ----------------------------------------------------------------------------
438 void wxNativeFontInfo::Init()
442 // we get better font quality if we use PROOF_QUALITY instead of
443 // DEFAULT_QUALITY but some fonts (e.g. "Terminal 6pt") are not available
444 // then so we allow to set a global option to choose between quality and
445 // wider font selection
447 lf
.lfQuality
= CLEARTYPE_QUALITY
;
449 lf
.lfQuality
= wxSystemOptions::GetOptionInt("msw.font.no-proof-quality")
455 int wxNativeFontInfo::GetPointSize() const
457 // FIXME: using the screen here results in incorrect font size calculation
459 const int ppInch
= ::GetDeviceCaps(ScreenHDC(), LOGPIXELSY
);
461 // BC++ 2007 doesn't provide abs(long) overload, hence the cast
462 return (int) (((72.0*abs((int)lf
.lfHeight
)) / (double) ppInch
) + 0.5);
465 wxSize
wxNativeFontInfo::GetPixelSize() const
468 ret
.SetHeight(abs((int)lf
.lfHeight
));
469 ret
.SetWidth(lf
.lfWidth
);
473 wxFontStyle
wxNativeFontInfo::GetStyle() const
475 return lf
.lfItalic
? wxFONTSTYLE_ITALIC
: wxFONTSTYLE_NORMAL
;
478 wxFontWeight
wxNativeFontInfo::GetWeight() const
480 if ( lf
.lfWeight
<= 300 )
481 return wxFONTWEIGHT_LIGHT
;
483 if ( lf
.lfWeight
>= 600 )
484 return wxFONTWEIGHT_BOLD
;
486 return wxFONTWEIGHT_NORMAL
;
489 bool wxNativeFontInfo::GetUnderlined() const
491 return lf
.lfUnderline
!= 0;
494 wxString
wxNativeFontInfo::GetFaceName() const
496 return lf
.lfFaceName
;
499 wxFontFamily
wxNativeFontInfo::GetFamily() const
503 // extract family from pitch-and-family
504 switch ( lf
.lfPitchAndFamily
& ~PITCH_MASK
)
507 family
= wxFONTFAMILY_UNKNOWN
;
511 family
= wxFONTFAMILY_ROMAN
;
515 family
= wxFONTFAMILY_SWISS
;
519 family
= wxFONTFAMILY_SCRIPT
;
523 family
= wxFONTFAMILY_MODERN
;
527 family
= wxFONTFAMILY_DECORATIVE
;
531 wxFAIL_MSG( "unknown LOGFONT::lfFamily value" );
532 family
= wxFONTFAMILY_UNKNOWN
;
533 // just to avoid a warning
539 wxFontEncoding
wxNativeFontInfo::GetEncoding() const
541 return wxGetFontEncFromCharSet(lf
.lfCharSet
);
544 void wxNativeFontInfo::SetPointSize(int pointsize
)
546 // FIXME: using the screen here results in incorrect font size calculation
548 const int ppInch
= ::GetDeviceCaps(ScreenHDC(), LOGPIXELSY
);
550 lf
.lfHeight
= -(int)((pointsize
*((double)ppInch
)/72.0) + 0.5);
553 void wxNativeFontInfo::SetPixelSize(const wxSize
& pixelSize
)
555 // MSW accepts both positive and negative heights here but they mean
556 // different things: positive specifies the cell height while negative
557 // specifies the character height. We used to just pass the value to MSW
558 // unchanged but changed the behaviour for positive values in 2.9.1 to
559 // match other ports and, more importantly, the expected behaviour. So now
560 // passing the negative height doesn't make sense at all any more but we
561 // still accept it for compatibility with the existing code which worked
562 // around the wrong interpretation of the height argument in older wxMSW
563 // versions by passing a negative value explicitly itself.
564 lf
.lfHeight
= -abs(pixelSize
.GetHeight());
565 lf
.lfWidth
= pixelSize
.GetWidth();
568 void wxNativeFontInfo::SetStyle(wxFontStyle style
)
573 wxFAIL_MSG( "unknown font style" );
576 case wxFONTSTYLE_NORMAL
:
580 case wxFONTSTYLE_ITALIC
:
581 case wxFONTSTYLE_SLANT
:
587 void wxNativeFontInfo::SetWeight(wxFontWeight weight
)
592 wxFAIL_MSG( "unknown font weight" );
595 case wxFONTWEIGHT_NORMAL
:
596 lf
.lfWeight
= FW_NORMAL
;
599 case wxFONTWEIGHT_LIGHT
:
600 lf
.lfWeight
= FW_LIGHT
;
603 case wxFONTWEIGHT_BOLD
:
604 lf
.lfWeight
= FW_BOLD
;
609 void wxNativeFontInfo::SetUnderlined(bool underlined
)
611 lf
.lfUnderline
= underlined
;
614 bool wxNativeFontInfo::SetFaceName(const wxString
& facename
)
616 wxStrlcpy(lf
.lfFaceName
, facename
.c_str(), WXSIZEOF(lf
.lfFaceName
));
620 void wxNativeFontInfo::SetFamily(wxFontFamily family
)
622 BYTE ff_family
= FF_DONTCARE
;
626 case wxFONTFAMILY_SCRIPT
:
627 ff_family
= FF_SCRIPT
;
630 case wxFONTFAMILY_DECORATIVE
:
631 ff_family
= FF_DECORATIVE
;
634 case wxFONTFAMILY_ROMAN
:
635 ff_family
= FF_ROMAN
;
638 case wxFONTFAMILY_TELETYPE
:
639 case wxFONTFAMILY_MODERN
:
640 ff_family
= FF_MODERN
;
643 case wxFONTFAMILY_SWISS
:
644 case wxFONTFAMILY_DEFAULT
:
645 ff_family
= FF_SWISS
;
649 wxCHECK_RET( ff_family
!= FF_DONTCARE
, "unknown wxFontFamily" );
651 lf
.lfPitchAndFamily
= (BYTE
)(DEFAULT_PITCH
) | ff_family
;
653 // reset the facename so that CreateFontIndirect() will automatically choose a
654 // face name based only on the font family.
655 lf
.lfFaceName
[0] = '\0';
658 void wxNativeFontInfo::SetEncoding(wxFontEncoding encoding
)
660 wxNativeEncodingInfo info
;
661 if ( !wxGetNativeFontEncoding(encoding
, &info
) )
664 if ( wxFontMapper::Get()->GetAltForEncoding(encoding
, &info
) )
666 if ( !info
.facename
.empty() )
668 // if we have this encoding only in some particular facename, use
669 // the facename - it is better to show the correct characters in a
670 // wrong facename than unreadable text in a correct one
671 SetFaceName(info
.facename
);
675 #endif // wxUSE_FONTMAP
677 // unsupported encoding, replace with the default
678 info
.charset
= DEFAULT_CHARSET
;
682 lf
.lfCharSet
= (BYTE
)info
.charset
;
685 bool wxNativeFontInfo::FromString(const wxString
& s
)
689 wxStringTokenizer
tokenizer(s
, wxS(";"), wxTOKEN_RET_EMPTY_ALL
);
692 wxString token
= tokenizer
.GetNextToken();
693 if ( token
!= wxS('0') )
696 token
= tokenizer
.GetNextToken();
697 if ( !token
.ToLong(&l
) )
701 token
= tokenizer
.GetNextToken();
702 if ( !token
.ToLong(&l
) )
706 token
= tokenizer
.GetNextToken();
707 if ( !token
.ToLong(&l
) )
711 token
= tokenizer
.GetNextToken();
712 if ( !token
.ToLong(&l
) )
714 lf
.lfOrientation
= l
;
716 token
= tokenizer
.GetNextToken();
717 if ( !token
.ToLong(&l
) )
721 token
= tokenizer
.GetNextToken();
722 if ( !token
.ToLong(&l
) )
724 lf
.lfItalic
= (BYTE
)l
;
726 token
= tokenizer
.GetNextToken();
727 if ( !token
.ToLong(&l
) )
729 lf
.lfUnderline
= (BYTE
)l
;
731 token
= tokenizer
.GetNextToken();
732 if ( !token
.ToLong(&l
) )
734 lf
.lfStrikeOut
= (BYTE
)l
;
736 token
= tokenizer
.GetNextToken();
737 if ( !token
.ToLong(&l
) )
739 lf
.lfCharSet
= (BYTE
)l
;
741 token
= tokenizer
.GetNextToken();
742 if ( !token
.ToLong(&l
) )
744 lf
.lfOutPrecision
= (BYTE
)l
;
746 token
= tokenizer
.GetNextToken();
747 if ( !token
.ToLong(&l
) )
749 lf
.lfClipPrecision
= (BYTE
)l
;
751 token
= tokenizer
.GetNextToken();
752 if ( !token
.ToLong(&l
) )
754 lf
.lfQuality
= (BYTE
)l
;
756 token
= tokenizer
.GetNextToken();
757 if ( !token
.ToLong(&l
) )
759 lf
.lfPitchAndFamily
= (BYTE
)l
;
761 if ( !tokenizer
.HasMoreTokens() )
764 // the face name may be empty
765 wxStrcpy(lf
.lfFaceName
, tokenizer
.GetNextToken());
770 wxString
wxNativeFontInfo::ToString() const
774 s
.Printf(wxS("%d;%ld;%ld;%ld;%ld;%ld;%d;%d;%d;%d;%d;%d;%d;%d;%s"),
775 0, // version, in case we want to change the format later
794 // ----------------------------------------------------------------------------
796 // ----------------------------------------------------------------------------
798 wxFont::wxFont(const wxString
& fontdesc
)
800 wxNativeFontInfo info
;
801 if ( info
.FromString(fontdesc
) )
805 bool wxFont::Create(const wxNativeFontInfo
& info
, WXHFONT hFont
)
809 m_refData
= new wxFontRefData(info
, hFont
);
811 return RealizeResource();
814 bool wxFont::DoCreate(int pointSize
,
815 const wxSize
& pixelSize
,
816 bool sizeUsingPixels
,
821 const wxString
& faceName
,
822 wxFontEncoding encoding
)
826 // wxDEFAULT is a valid value for the font size too so we must treat it
827 // specially here (otherwise the size would be 70 == wxDEFAULT value)
828 if ( pointSize
== wxDEFAULT
)
830 pointSize
= wxNORMAL_FONT
->GetPointSize();
833 m_refData
= new wxFontRefData(pointSize
, pixelSize
, sizeUsingPixels
,
834 family
, style
, weight
,
835 underlined
, faceName
, encoding
);
837 return RealizeResource();
844 // ----------------------------------------------------------------------------
845 // real implementation
846 // ----------------------------------------------------------------------------
848 wxGDIRefData
*wxFont::CreateGDIRefData() const
850 return new wxFontRefData();
853 wxGDIRefData
*wxFont::CloneGDIRefData(const wxGDIRefData
*data
) const
855 return new wxFontRefData(*static_cast<const wxFontRefData
*>(data
));
858 bool wxFont::RealizeResource()
860 // NOTE: the GetHFONT() call automatically triggers a reallocation of
861 // the HFONT if necessary (will do nothing if we already have the resource);
862 // it returns NULL only if there is a failure in wxFontRefData::Alloc()...
863 return GetHFONT() != NULL
;
866 bool wxFont::FreeResource(bool WXUNUSED(force
))
876 WXHANDLE
wxFont::GetResourceHandle() const
878 return (WXHANDLE
)GetHFONT();
881 WXHFONT
wxFont::GetHFONT() const
883 // NOTE: wxFontRefData::GetHFONT() will automatically call
884 // wxFontRefData::Alloc() if necessary
885 return M_FONTDATA
? M_FONTDATA
->GetHFONT() : 0;
888 bool wxFont::IsFree() const
890 return M_FONTDATA
&& !M_FONTDATA
->HasHFONT();
893 // ----------------------------------------------------------------------------
894 // change font attribute: we recreate font when doing it
895 // ----------------------------------------------------------------------------
897 void wxFont::SetPointSize(int pointSize
)
902 M_FONTDATA
->SetPointSize(pointSize
);
905 void wxFont::SetPixelSize(const wxSize
& pixelSize
)
909 M_FONTDATA
->SetPixelSize(pixelSize
);
912 void wxFont::SetFamily(wxFontFamily family
)
916 M_FONTDATA
->SetFamily(family
);
919 void wxFont::SetStyle(wxFontStyle style
)
923 M_FONTDATA
->SetStyle(style
);
926 void wxFont::SetWeight(wxFontWeight weight
)
930 M_FONTDATA
->SetWeight(weight
);
933 bool wxFont::SetFaceName(const wxString
& faceName
)
937 if ( !M_FONTDATA
->SetFaceName(faceName
) )
940 // NB: using win32's GetObject() API on M_FONTDATA->GetHFONT()
941 // to retrieve a LOGFONT and then compare lf.lfFaceName
942 // with given facename is not reliable at all:
943 // Windows copies the facename given to ::CreateFontIndirect()
944 // without any validity check.
945 // Thus we use wxFontBase::SetFaceName to check if facename
947 return wxFontBase::SetFaceName(faceName
);
950 void wxFont::SetUnderlined(bool underlined
)
954 M_FONTDATA
->SetUnderlined(underlined
);
957 void wxFont::SetEncoding(wxFontEncoding encoding
)
961 M_FONTDATA
->SetEncoding(encoding
);
964 void wxFont::DoSetNativeFontInfo(const wxNativeFontInfo
& info
)
968 M_FONTDATA
->SetNativeFontInfo(info
);
971 // ----------------------------------------------------------------------------
973 // ----------------------------------------------------------------------------
975 int wxFont::GetPointSize() const
977 wxCHECK_MSG( IsOk(), 0, wxT("invalid font") );
979 return M_FONTDATA
->GetPointSize();
982 wxSize
wxFont::GetPixelSize() const
984 wxCHECK_MSG( IsOk(), wxDefaultSize
, wxT("invalid font") );
986 return M_FONTDATA
->GetPixelSize();
989 bool wxFont::IsUsingSizeInPixels() const
991 wxCHECK_MSG( IsOk(), 0, wxT("invalid font") );
993 return M_FONTDATA
->IsUsingSizeInPixels();
996 wxFontFamily
wxFont::GetFamily() const
998 wxCHECK_MSG( IsOk(), wxFONTFAMILY_MAX
, wxT("invalid font") );
1000 return M_FONTDATA
->GetFamily();
1003 wxFontStyle
wxFont::GetStyle() const
1005 wxCHECK_MSG( IsOk(), wxFONTSTYLE_MAX
, wxT("invalid font") );
1007 return M_FONTDATA
->GetStyle();
1010 wxFontWeight
wxFont::GetWeight() const
1012 wxCHECK_MSG( IsOk(), wxFONTWEIGHT_MAX
, wxT("invalid font") );
1014 return M_FONTDATA
->GetWeight();
1017 bool wxFont::GetUnderlined() const
1019 wxCHECK_MSG( IsOk(), false, wxT("invalid font") );
1021 return M_FONTDATA
->GetUnderlined();
1024 wxString
wxFont::GetFaceName() const
1026 wxCHECK_MSG( IsOk(), wxEmptyString
, wxT("invalid font") );
1028 return M_FONTDATA
->GetFaceName();
1031 wxFontEncoding
wxFont::GetEncoding() const
1033 wxCHECK_MSG( IsOk(), wxFONTENCODING_DEFAULT
, wxT("invalid font") );
1035 return M_FONTDATA
->GetEncoding();
1038 const wxNativeFontInfo
*wxFont::GetNativeFontInfo() const
1040 return IsOk() ? &(M_FONTDATA
->GetNativeFontInfo()) : NULL
;
1043 wxString
wxFont::GetNativeFontInfoDesc() const
1045 wxCHECK_MSG( IsOk(), wxEmptyString
, wxT("invalid font") );
1047 // be sure we have an HFONT associated...
1048 const_cast<wxFont
*>(this)->RealizeResource();
1049 return wxFontBase::GetNativeFontInfoDesc();
1052 wxString
wxFont::GetNativeFontInfoUserDesc() const
1054 wxCHECK_MSG( IsOk(), wxEmptyString
, wxT("invalid font") );
1056 // be sure we have an HFONT associated...
1057 const_cast<wxFont
*>(this)->RealizeResource();
1058 return wxFontBase::GetNativeFontInfoUserDesc();
1061 bool wxFont::IsFixedWidth() const
1063 wxCHECK_MSG( IsOk(), false, wxT("invalid font") );
1065 // the two low-order bits specify the pitch of the font, the rest is
1068 (BYTE
)(M_FONTDATA
->GetNativeFontInfo().lf
.lfPitchAndFamily
& PITCH_MASK
);
1070 return pitch
== FIXED_PITCH
;