]>
git.saurik.com Git - wxWidgets.git/blob - src/mac/font.cpp
1 /////////////////////////////////////////////////////////////////////////////
3 // Purpose: wxFont class
8 // Copyright: (c) AUTHOR
9 // Licence: wxWindows licence
10 /////////////////////////////////////////////////////////////////////////////
13 #pragma implementation "font.h"
17 #include "wx/string.h"
19 #include "wx/fontutil.h"
20 #include "wx/gdicmn.h"
23 #include "wx/fontutil.h"
25 #include "wx/mac/private.h"
26 #include "ATSUnicode.h"
28 #if !USE_SHARED_LIBRARIES
29 IMPLEMENT_DYNAMIC_CLASS(wxFont
, wxGDIObject
)
32 // ============================================================================
34 // ============================================================================
36 // ----------------------------------------------------------------------------
38 // ----------------------------------------------------------------------------
40 void wxFontRefData::Init(int pointSize
,
45 const wxString
& faceName
,
46 wxFontEncoding encoding
)
49 m_pointSize
= pointSize
;
53 m_underlined
= underlined
;
54 m_faceName
= faceName
;
55 m_encoding
= encoding
;
63 wxFontRefData::~wxFontRefData()
67 void wxFontRefData::MacFindFont()
69 if( m_faceName
== "" )
74 m_macFontNum
= ::GetAppFont() ;
77 ::GetFNum( "\pTimes" , &m_macFontNum
) ;
80 ::GetFNum( "\pTimes" , &m_macFontNum
) ;
83 ::GetFNum( "\pTimes" , &m_macFontNum
) ;
86 ::GetFNum( "\pGeneva" , &m_macFontNum
) ;
89 ::GetFNum( "\pMonaco" , &m_macFontNum
) ;
95 if ( m_faceName
== "systemfont" )
96 m_macFontNum
= ::GetSysFont() ;
97 else if ( m_faceName
== "applicationfont" )
98 m_macFontNum
= ::GetAppFont() ;
102 c2pstrcpy( (StringPtr
) wxBuffer
, m_faceName
) ;
104 strcpy( (char *) wxBuffer
, m_faceName
) ;
105 c2pstr( (char *) wxBuffer
) ;
107 ::GetFNum( (StringPtr
) wxBuffer
, &m_macFontNum
);
112 if (m_weight
== wxBOLD
)
113 m_macFontStyle
|= bold
;
114 if (m_style
== wxITALIC
|| m_style
== wxSLANT
)
115 m_macFontStyle
|= italic
;
117 m_macFontStyle
|= underline
;
118 m_macFontSize
= m_pointSize
;
120 //TODO:if we supply the style as an additional parameter we must make a testing
121 //sequence in order to degrade gracefully while trying to maintain most of the style
122 //information, meanwhile we just take the normal font and apply the features after
123 OSStatus status
= ::ATSUFONDtoFontID(m_macFontNum
, normal
/*qdStyle*/, (UInt32
*)&m_macATSUFontID
);
125 status = ATSUFindFontFromName ( (Ptr) m_faceName , strlen( m_faceName ) ,
126 kFontFullName, kFontMacintoshPlatform, kFontRomanScript , kFontNoLanguage , (UInt32*)&m_macATSUFontID ) ;
128 wxASSERT_MSG( status
== noErr
, "couldn't retrieve font identifier" ) ;
131 // ----------------------------------------------------------------------------
133 // ----------------------------------------------------------------------------
139 bool wxFont::Create(const wxNativeFontInfo
& info
)
141 return Create(info
.pointSize
, info
.family
, info
.style
, info
.weight
,
142 info
.underlined
, info
.faceName
, info
.encoding
);
145 wxFont::wxFont(const wxString
& fontdesc
)
147 wxNativeFontInfo info
;
148 if ( info
.FromString(fontdesc
) )
152 bool wxFont::Create(int pointSize
,
157 const wxString
& faceName
,
158 wxFontEncoding encoding
)
161 m_refData
= new wxFontRefData(pointSize
, family
, style
, weight
,
162 underlined
, faceName
, encoding
);
173 bool wxFont::RealizeResource()
175 M_FONTDATA
->MacFindFont() ;
179 void wxFont::SetEncoding(wxFontEncoding encoding
)
183 M_FONTDATA
->m_encoding
= encoding
;
188 void wxFont::Unshare()
190 // Don't change shared data
193 m_refData
= new wxFontRefData();
197 wxFontRefData
* ref
= new wxFontRefData(*(wxFontRefData
*)m_refData
);
203 void wxFont::SetPointSize(int pointSize
)
207 M_FONTDATA
->m_pointSize
= pointSize
;
212 void wxFont::SetFamily(int family
)
216 M_FONTDATA
->m_family
= family
;
221 void wxFont::SetStyle(int style
)
225 M_FONTDATA
->m_style
= style
;
230 void wxFont::SetWeight(int weight
)
234 M_FONTDATA
->m_weight
= weight
;
239 void wxFont::SetFaceName(const wxString
& faceName
)
243 M_FONTDATA
->m_faceName
= faceName
;
248 void wxFont::SetUnderlined(bool underlined
)
252 M_FONTDATA
->m_underlined
= underlined
;
257 // ----------------------------------------------------------------------------
259 // ----------------------------------------------------------------------------
261 int wxFont::GetPointSize() const
263 return M_FONTDATA
->m_pointSize
;
266 int wxFont::GetFamily() const
268 return M_FONTDATA
->m_family
;
271 int wxFont::GetStyle() const
273 return M_FONTDATA
->m_style
;
276 int wxFont::GetWeight() const
278 return M_FONTDATA
->m_weight
;
281 bool wxFont::GetUnderlined() const
283 return M_FONTDATA
->m_underlined
;
286 wxString
wxFont::GetFaceName() const
290 str
= M_FONTDATA
->m_faceName
;
294 wxFontEncoding
wxFont::GetEncoding() const
296 return M_FONTDATA
->m_encoding
;