]>
Commit | Line | Data |
---|---|---|
a1d58ddc | 1 | /////////////////////////////////////////////////////////////////////////////// |
c45c3203 | 2 | // Name: src/msw/fontenum.cpp |
543f08a6 JS |
3 | // Purpose: wxFontEnumerator class for Windows |
4 | // Author: Julian Smart | |
a1d58ddc | 5 | // Modified by: Vadim Zeitlin to add support for font encodings |
543f08a6 | 6 | // Created: 04/01/98 |
543f08a6 | 7 | // Copyright: (c) Julian Smart |
65571936 | 8 | // Licence: wxWindows licence |
a1d58ddc VZ |
9 | /////////////////////////////////////////////////////////////////////////////// |
10 | ||
11 | // ============================================================================ | |
12 | // declarations | |
13 | // ============================================================================ | |
14 | ||
15 | // ---------------------------------------------------------------------------- | |
16 | // headers | |
17 | // ---------------------------------------------------------------------------- | |
18 | ||
543f08a6 JS |
19 | // For compilers that support precompilation, includes "wx.h". |
20 | #include "wx/wxprec.h" | |
21 | ||
22 | #ifdef __BORLANDC__ | |
23 | #pragma hdrstop | |
24 | #endif | |
25 | ||
ff427585 | 26 | #if wxUSE_FONTENUM |
1e6feb95 | 27 | |
081d8d96 PC |
28 | #include "wx/fontenum.h" |
29 | ||
543f08a6 | 30 | #ifndef WX_PRECOMP |
2e2b69ee | 31 | #include "wx/gdicmn.h" |
e4ffab29 | 32 | #include "wx/font.h" |
775f4c53 | 33 | #include "wx/dynarray.h" |
081d8d96 | 34 | #include "wx/msw/private.h" |
543f08a6 JS |
35 | #endif |
36 | ||
081d8d96 | 37 | #include "wx/encinfo.h" |
76e23cdb | 38 | #include "wx/fontutil.h" |
11c7d5b6 | 39 | #include "wx/fontmap.h" |
543f08a6 | 40 | |
a1d58ddc VZ |
41 | // ---------------------------------------------------------------------------- |
42 | // private classes | |
43 | // ---------------------------------------------------------------------------- | |
44 | ||
f6bcfd97 BP |
45 | // the helper class which calls ::EnumFontFamilies() and whose OnFont() is |
46 | // called from the callback passed to this function and, in its turn, calls the | |
47 | // appropariate wxFontEnumerator method | |
a1d58ddc | 48 | class wxFontEnumeratorHelper |
543f08a6 | 49 | { |
a1d58ddc VZ |
50 | public: |
51 | wxFontEnumeratorHelper(wxFontEnumerator *fontEnum); | |
52 | ||
53 | // control what exactly are we enumerating | |
f6bcfd97 | 54 | // we enumerate fonts with given enocding |
a1d58ddc | 55 | bool SetEncoding(wxFontEncoding encoding); |
f6bcfd97 BP |
56 | // we enumerate fixed-width fonts |
57 | void SetFixedOnly(bool fixedOnly) { m_fixedOnly = fixedOnly; } | |
58 | // we enumerate the encodings available in this family | |
59 | void SetFamily(const wxString& family); | |
a1d58ddc VZ |
60 | |
61 | // call to start enumeration | |
62 | void DoEnumerate(); | |
63 | ||
64 | // called by our font enumeration proc | |
65 | bool OnFont(const LPLOGFONT lf, const LPTEXTMETRIC tm) const; | |
66 | ||
67 | private: | |
68 | // the object we forward calls to OnFont() to | |
69 | wxFontEnumerator *m_fontEnum; | |
543f08a6 | 70 | |
a1d58ddc VZ |
71 | // if != -1, enum only fonts which have this encoding |
72 | int m_charset; | |
543f08a6 | 73 | |
11c7d5b6 VZ |
74 | // if not empty, enum only the fonts with this facename |
75 | wxString m_facename; | |
76 | ||
f6bcfd97 BP |
77 | // if not empty, enum only the fonts in this family |
78 | wxString m_family; | |
79 | ||
cbe874bd | 80 | // if true, enum only fixed fonts |
a1d58ddc | 81 | bool m_fixedOnly; |
f6bcfd97 | 82 | |
cbe874bd | 83 | // if true, we enumerate the encodings, not fonts |
f6bcfd97 BP |
84 | bool m_enumEncodings; |
85 | ||
86 | // the list of charsets we already found while enumerating charsets | |
87 | wxArrayInt m_charsets; | |
98e6fc81 VZ |
88 | |
89 | // the list of facenames we already found while enumerating facenames | |
90 | wxArrayString m_facenames; | |
22f3361e | 91 | |
c0c133e1 | 92 | wxDECLARE_NO_COPY_CLASS(wxFontEnumeratorHelper); |
a1d58ddc | 93 | }; |
543f08a6 | 94 | |
a1d58ddc VZ |
95 | // ---------------------------------------------------------------------------- |
96 | // private functions | |
97 | // ---------------------------------------------------------------------------- | |
98 | ||
04ef50df | 99 | #ifndef __WXMICROWIN__ |
a1d58ddc | 100 | int CALLBACK wxFontEnumeratorProc(LPLOGFONT lplf, LPTEXTMETRIC lptm, |
dca0f651 | 101 | DWORD dwStyle, LPARAM lParam); |
04ef50df | 102 | #endif |
a1d58ddc VZ |
103 | |
104 | // ============================================================================ | |
105 | // implementation | |
106 | // ============================================================================ | |
107 | ||
108 | // ---------------------------------------------------------------------------- | |
109 | // wxFontEnumeratorHelper | |
110 | // ---------------------------------------------------------------------------- | |
111 | ||
112 | wxFontEnumeratorHelper::wxFontEnumeratorHelper(wxFontEnumerator *fontEnum) | |
113 | { | |
114 | m_fontEnum = fontEnum; | |
14647781 | 115 | m_charset = DEFAULT_CHARSET; |
cbe874bd WS |
116 | m_fixedOnly = false; |
117 | m_enumEncodings = false; | |
f6bcfd97 BP |
118 | } |
119 | ||
120 | void wxFontEnumeratorHelper::SetFamily(const wxString& family) | |
121 | { | |
cbe874bd | 122 | m_enumEncodings = true; |
f6bcfd97 | 123 | m_family = family; |
543f08a6 JS |
124 | } |
125 | ||
a1d58ddc VZ |
126 | bool wxFontEnumeratorHelper::SetEncoding(wxFontEncoding encoding) |
127 | { | |
98e6fc81 | 128 | if ( encoding != wxFONTENCODING_SYSTEM ) |
a1d58ddc | 129 | { |
98e6fc81 VZ |
130 | wxNativeEncodingInfo info; |
131 | if ( !wxGetNativeFontEncoding(encoding, &info) ) | |
11c7d5b6 | 132 | { |
98e6fc81 | 133 | #if wxUSE_FONTMAP |
142b3bc2 | 134 | if ( !wxFontMapper::Get()->GetAltForEncoding(encoding, &info) ) |
98e6fc81 VZ |
135 | #endif // wxUSE_FONTMAP |
136 | { | |
137 | // no such encodings at all | |
cbe874bd | 138 | return false; |
98e6fc81 | 139 | } |
11c7d5b6 | 140 | } |
98e6fc81 VZ |
141 | |
142 | m_charset = info.charset; | |
143 | m_facename = info.facename; | |
a1d58ddc | 144 | } |
543f08a6 | 145 | |
cbe874bd | 146 | return true; |
a1d58ddc VZ |
147 | } |
148 | ||
b4da152e JS |
149 | #if defined(__GNUWIN32__) && !defined(__CYGWIN10__) && !wxCHECK_W32API_VERSION( 1, 1 ) && !wxUSE_NORLANDER_HEADERS |
150 | #define wxFONTENUMPROC int(*)(ENUMLOGFONTEX *, NEWTEXTMETRICEX*, int, LPARAM) | |
01dba85a | 151 | #else |
9f83044f | 152 | #define wxFONTENUMPROC FONTENUMPROC |
01dba85a JS |
153 | #endif |
154 | ||
a1d58ddc | 155 | void wxFontEnumeratorHelper::DoEnumerate() |
543f08a6 | 156 | { |
04ef50df | 157 | #ifndef __WXMICROWIN__ |
a1d58ddc | 158 | HDC hDC = ::GetDC(NULL); |
543f08a6 | 159 | |
4676948b | 160 | #ifdef __WXWINCE__ |
c45c3203 | 161 | ::EnumFontFamilies(hDC, |
017dc06b | 162 | m_facename.empty() ? NULL : wxMSW_CONV_LPCTSTR(m_facename), |
c45c3203 WS |
163 | (wxFONTENUMPROC)wxFontEnumeratorProc, |
164 | (LPARAM)this) ; | |
3a5bcc4d | 165 | #else // __WIN32__ |
a1d58ddc | 166 | LOGFONT lf; |
373a5fb3 | 167 | lf.lfCharSet = (BYTE)m_charset; |
64accea5 | 168 | wxStrlcpy(lf.lfFaceName, m_facename.c_str(), WXSIZEOF(lf.lfFaceName)); |
a1d58ddc | 169 | lf.lfPitchAndFamily = 0; |
01dba85a | 170 | ::EnumFontFamiliesEx(hDC, &lf, (wxFONTENUMPROC)wxFontEnumeratorProc, |
a1d58ddc | 171 | (LPARAM)this, 0 /* reserved */) ; |
3a5bcc4d | 172 | #endif // Win32/CE |
543f08a6 | 173 | |
a1d58ddc | 174 | ::ReleaseDC(NULL, hDC); |
04ef50df | 175 | #endif |
a1d58ddc VZ |
176 | } |
177 | ||
178 | bool wxFontEnumeratorHelper::OnFont(const LPLOGFONT lf, | |
179 | const LPTEXTMETRIC tm) const | |
180 | { | |
f6bcfd97 BP |
181 | if ( m_enumEncodings ) |
182 | { | |
183 | // is this a new charset? | |
184 | int cs = lf->lfCharSet; | |
185 | if ( m_charsets.Index(cs) == wxNOT_FOUND ) | |
186 | { | |
187 | wxConstCast(this, wxFontEnumeratorHelper)->m_charsets.Add(cs); | |
188 | ||
a4087a43 | 189 | #if wxUSE_FONTMAP |
f6bcfd97 | 190 | wxFontEncoding enc = wxGetFontEncFromCharSet(cs); |
14647781 | 191 | return m_fontEnum->OnFontEncoding(lf->lfFaceName, |
f6bcfd97 | 192 | wxFontMapper::GetEncodingName(enc)); |
a4087a43 VZ |
193 | #else // !wxUSE_FONTMAP |
194 | // Just use some unique and, hopefully, understandable, name. | |
195 | return m_fontEnum->OnFontEncoding | |
196 | ( | |
197 | lf->lfFaceName, | |
198 | wxString::Format(wxS("Code page %d"), cs) | |
199 | ); | |
200 | #endif // wxUSE_FONTMAP/!wxUSE_FONTMAP | |
f6bcfd97 BP |
201 | } |
202 | else | |
203 | { | |
204 | // continue enumeration | |
cbe874bd | 205 | return true; |
f6bcfd97 BP |
206 | } |
207 | } | |
208 | ||
a1d58ddc VZ |
209 | if ( m_fixedOnly ) |
210 | { | |
211 | // check that it's a fixed pitch font (there is *no* error here, the | |
212 | // flag name is misleading!) | |
213 | if ( tm->tmPitchAndFamily & TMPF_FIXED_PITCH ) | |
214 | { | |
215 | // not a fixed pitch font | |
cbe874bd | 216 | return true; |
a1d58ddc VZ |
217 | } |
218 | } | |
219 | ||
98e6fc81 | 220 | if ( m_charset != DEFAULT_CHARSET ) |
a1d58ddc VZ |
221 | { |
222 | // check that we have the right encoding | |
223 | if ( lf->lfCharSet != m_charset ) | |
224 | { | |
cbe874bd | 225 | return true; |
a1d58ddc VZ |
226 | } |
227 | } | |
98e6fc81 VZ |
228 | else // enumerating fonts in all charsets |
229 | { | |
230 | // we can get the same facename twice or more in this case because it | |
231 | // may exist in several charsets but we only want to return one copy of | |
232 | // it (note that this can't happen for m_charset != DEFAULT_CHARSET) | |
233 | if ( m_facenames.Index(lf->lfFaceName) != wxNOT_FOUND ) | |
234 | { | |
235 | // continue enumeration | |
cbe874bd | 236 | return true; |
98e6fc81 VZ |
237 | } |
238 | ||
239 | wxConstCast(this, wxFontEnumeratorHelper)-> | |
240 | m_facenames.Add(lf->lfFaceName); | |
241 | } | |
a1d58ddc | 242 | |
3c1866e8 | 243 | return m_fontEnum->OnFacename(lf->lfFaceName); |
a1d58ddc VZ |
244 | } |
245 | ||
246 | // ---------------------------------------------------------------------------- | |
247 | // wxFontEnumerator | |
248 | // ---------------------------------------------------------------------------- | |
249 | ||
3c1866e8 VZ |
250 | bool wxFontEnumerator::EnumerateFacenames(wxFontEncoding encoding, |
251 | bool fixedWidthOnly) | |
543f08a6 | 252 | { |
a1d58ddc VZ |
253 | wxFontEnumeratorHelper fe(this); |
254 | if ( fe.SetEncoding(encoding) ) | |
255 | { | |
256 | fe.SetFixedOnly(fixedWidthOnly); | |
257 | ||
258 | fe.DoEnumerate(); | |
259 | } | |
260 | // else: no such fonts, unknown encoding | |
261 | ||
cbe874bd | 262 | return true; |
543f08a6 JS |
263 | } |
264 | ||
a1d58ddc VZ |
265 | bool wxFontEnumerator::EnumerateEncodings(const wxString& family) |
266 | { | |
f6bcfd97 BP |
267 | wxFontEnumeratorHelper fe(this); |
268 | fe.SetFamily(family); | |
269 | fe.DoEnumerate(); | |
a1d58ddc | 270 | |
cbe874bd | 271 | return true; |
a1d58ddc VZ |
272 | } |
273 | ||
274 | // ---------------------------------------------------------------------------- | |
275 | // Windows callbacks | |
276 | // ---------------------------------------------------------------------------- | |
277 | ||
04ef50df | 278 | #ifndef __WXMICROWIN__ |
a1d58ddc | 279 | int CALLBACK wxFontEnumeratorProc(LPLOGFONT lplf, LPTEXTMETRIC lptm, |
dca0f651 | 280 | DWORD WXUNUSED(dwStyle), LPARAM lParam) |
a1d58ddc | 281 | { |
574c939e | 282 | |
98e6fc81 VZ |
283 | // we used to process TrueType fonts only, but there doesn't seem to be any |
284 | // reasons to restrict ourselves to them here | |
285 | #if 0 | |
a1d58ddc VZ |
286 | // Get rid of any fonts that we don't want... |
287 | if ( dwStyle != TRUETYPE_FONTTYPE ) | |
288 | { | |
289 | // continue enumeration | |
290 | return TRUE; | |
291 | } | |
98e6fc81 | 292 | #endif // 0 |
a1d58ddc VZ |
293 | |
294 | wxFontEnumeratorHelper *fontEnum = (wxFontEnumeratorHelper *)lParam; | |
295 | ||
296 | return fontEnum->OnFont(lplf, lptm); | |
297 | } | |
04ef50df | 298 | #endif |
a1d58ddc | 299 | |
ff427585 | 300 | #endif // wxUSE_FONTENUM |