]>
git.saurik.com Git - wxWidgets.git/blob - src/mac/font.cpp
1 /////////////////////////////////////////////////////////////////////////////
3 // Purpose: wxFont class
4 // Author: Stefan Csomor
8 // Copyright: (c) Stefan Csomor
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
;
64 wxFontRefData::~wxFontRefData()
68 void wxFontRefData::MacFindFont()
70 if( m_faceName
.Length() == 0 )
75 m_macFontNum
= ::GetAppFont() ;
78 ::GetFNum( "\pTimes" , &m_macFontNum
) ;
81 ::GetFNum( "\pTimes" , &m_macFontNum
) ;
84 ::GetFNum( "\pTimes" , &m_macFontNum
) ;
87 ::GetFNum( "\pGeneva" , &m_macFontNum
) ;
90 ::GetFNum( "\pMonaco" , &m_macFontNum
) ;
94 GetFontName( m_macFontNum
, name
) ;
95 m_faceName
= wxMacMakeStringFromPascal( name
) ;
99 if ( m_faceName
== wxT("systemfont") )
100 m_macFontNum
= ::GetSysFont() ;
101 else if ( m_faceName
== wxT("applicationfont") )
102 m_macFontNum
= ::GetAppFont() ;
106 wxMacStringToPascal( m_faceName
, fontname
) ;
107 ::GetFNum( fontname
, &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
, wxT("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 void wxFont::SetNoAntiAliasing( bool no
)
261 M_FONTDATA
->SetNoAntiAliasing( no
);
266 // ----------------------------------------------------------------------------
268 // ----------------------------------------------------------------------------
270 int wxFont::GetPointSize() const
272 return M_FONTDATA
->m_pointSize
;
275 int wxFont::GetFamily() const
277 return M_FONTDATA
->m_family
;
280 int wxFont::GetStyle() const
282 return M_FONTDATA
->m_style
;
285 int wxFont::GetWeight() const
287 return M_FONTDATA
->m_weight
;
290 bool wxFont::GetUnderlined() const
292 return M_FONTDATA
->m_underlined
;
295 wxString
wxFont::GetFaceName() const
299 str
= M_FONTDATA
->m_faceName
;
303 wxFontEncoding
wxFont::GetEncoding() const
305 return M_FONTDATA
->m_encoding
;
308 bool wxFont::GetNoAntiAliasing()
310 return M_FONTDATA
->m_noAA
;