replaced T() makro with wxT() due to namespace probs, _T() exists, too
[wxWidgets.git] / src / common / fontcmn.cpp
1 /////////////////////////////////////////////////////////////////////////////
2 // Name: common/fontcmn.cpp
3 // Purpose: implementation of wxFontBase methods
4 // Author: Vadim Zeitlin
5 // Modified by:
6 // Created: 20.09.99
7 // RCS-ID: $Id$
8 // Copyright: (c) wxWindows team
9 // Licence: wxWindows license
10 /////////////////////////////////////////////////////////////////////////////
11
12 // ============================================================================
13 // declarations
14 // ============================================================================
15
16 // ----------------------------------------------------------------------------
17 // headers
18 // ----------------------------------------------------------------------------
19
20 // For compilers that support precompilation, includes "wx.h".
21 #include "wx/wxprec.h"
22
23 #ifdef __BORLANDC__
24 #pragma hdrstop
25 #endif
26
27 #ifndef WX_PRECOMP
28 #include "wx/font.h"
29 #endif // WX_PRECOMP
30
31 // ============================================================================
32 // implementation
33 // ============================================================================
34
35 // ----------------------------------------------------------------------------
36 // wxFontBase
37 // ----------------------------------------------------------------------------
38
39 wxFontEncoding wxFontBase::ms_encodingDefault = wxFONTENCODING_SYSTEM;
40
41 wxFont *wxFontBase::New(int size,
42 int family,
43 int style,
44 int weight,
45 bool underlined,
46 const wxString& face,
47 wxFontEncoding encoding)
48 {
49 return new wxFont(size, family, style, weight, underlined, face, encoding);
50 }
51
52 wxFont& wxFont::operator=(const wxFont& font)
53 {
54 if ( this != &font )
55 Ref(font);
56
57 return (wxFont &)*this;
58 }
59
60 // VZ: is it correct to compare pointers and not the contents? (FIXME)
61 bool wxFontBase::operator==(const wxFont& font) const
62 {
63 return GetFontData() == font.GetFontData();
64 }
65
66 bool wxFontBase::operator!=(const wxFont& font) const
67 {
68 return GetFontData() != font.GetFontData();
69 }
70
71 wxString wxFontBase::GetFamilyString() const
72 {
73 wxCHECK_MSG( Ok(), wxT("wxDEFAULT"), wxT("invalid font") );
74
75 switch ( GetFamily() )
76 {
77 case wxDECORATIVE: return wxT("wxDECORATIVE");
78 case wxROMAN: return wxT("wxROMAN");
79 case wxSCRIPT: return wxT("wxSCRIPT");
80 case wxSWISS: return wxT("wxSWISS");
81 case wxMODERN: return wxT("wxMODERN");
82 case wxTELETYPE: return wxT("wxTELETYPE");
83 default: return wxT("wxDEFAULT");
84 }
85 }
86
87 wxString wxFontBase::GetStyleString() const
88 {
89 wxCHECK_MSG( Ok(), wxT("wxDEFAULT"), wxT("invalid font") );
90
91 switch ( GetStyle() )
92 {
93 case wxNORMAL: return wxT("wxNORMAL");
94 case wxSLANT: return wxT("wxSLANT");
95 case wxITALIC: return wxT("wxITALIC");
96 default: return wxT("wxDEFAULT");
97 }
98 }
99
100 wxString wxFontBase::GetWeightString() const
101 {
102 wxCHECK_MSG( Ok(), wxT("wxDEFAULT"), wxT("invalid font") );
103
104 switch ( GetWeight() )
105 {
106 case wxNORMAL: return wxT("wxNORMAL");
107 case wxBOLD: return wxT("wxBOLD");
108 case wxLIGHT: return wxT("wxLIGHT");
109 default: return wxT("wxDEFAULT");
110 }
111 }
112