]>
Commit | Line | Data |
---|---|---|
d111a89a VZ |
1 | ///////////////////////////////////////////////////////////////////////////// |
2 | // Name: src/unix/fontenum.cpp | |
3 | // Purpose: wxFontEnumerator class for X11/GDK | |
4 | // Author: Vadim Zeitlin | |
5 | // Modified by: | |
6 | // Created: 01.10.99 | |
7 | // RCS-ID: $Id$ | |
8 | // Copyright: (c) Vadim Zeitlin | |
9 | // Licence: wxWindows licence | |
10 | ///////////////////////////////////////////////////////////////////////////// | |
11 | ||
12 | // ============================================================================ | |
13 | // declarations | |
14 | // ============================================================================ | |
15 | ||
16 | // ---------------------------------------------------------------------------- | |
17 | // headers | |
18 | // ---------------------------------------------------------------------------- | |
19 | ||
20 | #ifdef __GNUG__ | |
21 | #pragma implementation "fontenum.h" | |
22 | #endif | |
23 | ||
24 | #include "wx/defs.h" | |
25 | #include "wx/dynarray.h" | |
26 | #include "wx/string.h" | |
27 | #include "wx/utils.h" | |
28 | ||
79e4b627 | 29 | #include "wx/fontmap.h" |
d111a89a | 30 | #include "wx/fontenum.h" |
7beba2fc | 31 | #include "wx/fontutil.h" |
d111a89a | 32 | |
3fa056ab JJ |
33 | #ifdef __VMS__ // Xlib.h for VMS is not (yet) compatible with C++ |
34 | // The resulting warnings are switched off here | |
35 | #pragma message disable nosimpint | |
36 | #endif | |
d111a89a | 37 | #include <X11/Xlib.h> |
3fa056ab JJ |
38 | #ifdef __VMS__ |
39 | #pragma message enable nosimpint | |
40 | #endif | |
d111a89a VZ |
41 | |
42 | // ---------------------------------------------------------------------------- | |
43 | // private functions | |
44 | // ---------------------------------------------------------------------------- | |
45 | ||
36f210c8 VZ |
46 | // create the list of all fonts with the given spacing and encoding |
47 | static char **CreateFontList(wxChar spacing, wxFontEncoding encoding, | |
48 | int *nFonts); | |
d111a89a VZ |
49 | |
50 | // extract all font families from the given font list and call our | |
3c1866e8 | 51 | // OnFacename() for each of them |
d111a89a VZ |
52 | static bool ProcessFamiliesFromFontList(wxFontEnumerator *This, |
53 | char **fonts, | |
54 | int nFonts); | |
55 | ||
56 | ||
57 | // ---------------------------------------------------------------------------- | |
58 | // private types | |
59 | // ---------------------------------------------------------------------------- | |
60 | ||
61 | // ============================================================================ | |
62 | // implementation | |
63 | // ============================================================================ | |
64 | ||
65 | // ---------------------------------------------------------------------------- | |
66 | // helpers | |
67 | // ---------------------------------------------------------------------------- | |
68 | ||
36f210c8 VZ |
69 | static char **CreateFontList(wxChar spacing, |
70 | wxFontEncoding encoding, | |
71 | int *nFonts) | |
d111a89a | 72 | { |
7beba2fc VZ |
73 | wxNativeEncodingInfo info; |
74 | wxGetNativeFontEncoding(encoding, &info); | |
36f210c8 | 75 | |
79e4b627 VZ |
76 | if ( !wxTestFontEncoding(info) ) |
77 | { | |
78 | // ask font mapper for a replacement | |
79 | (void)wxTheFontMapper->GetAltForEncoding(encoding, &info); | |
80 | } | |
81 | ||
d111a89a | 82 | wxString pattern; |
36f210c8 | 83 | pattern.Printf(wxT("-*-*-*-*-*-*-*-*-*-*-%c-*-%s-%s"), |
7beba2fc VZ |
84 | spacing, |
85 | info.xregistry.c_str(), | |
86 | info.xencoding.c_str()); | |
d111a89a VZ |
87 | |
88 | // get the list of all fonts | |
7dd62924 | 89 | return XListFonts((Display *)wxGetDisplay(), pattern.mb_str(), 32767, nFonts); |
d111a89a VZ |
90 | } |
91 | ||
92 | static bool ProcessFamiliesFromFontList(wxFontEnumerator *This, | |
93 | char **fonts, | |
94 | int nFonts) | |
95 | { | |
96 | // extract the list of (unique) font families | |
97 | wxSortedArrayString families; | |
98 | for ( int n = 0; n < nFonts; n++ ) | |
99 | { | |
100 | char *font = fonts[n]; | |
7dd62924 | 101 | if ( !wxString(font).Matches(wxT("-*-*-*-*-*-*-*-*-*-*-*-*-*-*")) ) |
d111a89a VZ |
102 | { |
103 | // it's not a full font name (probably an alias) | |
104 | continue; | |
105 | } | |
3c1866e8 | 106 | |
d111a89a VZ |
107 | char *dash = strchr(font + 1, '-'); |
108 | char *family = dash + 1; | |
109 | dash = strchr(family, '-'); | |
110 | *dash = '\0'; // !NULL because Matches() above succeeded | |
7dd62924 | 111 | wxString fam(family); |
d111a89a | 112 | |
7dd62924 | 113 | if ( families.Index(fam) == wxNOT_FOUND ) |
d111a89a | 114 | { |
3c1866e8 | 115 | if ( !This->OnFacename(fam) ) |
d111a89a VZ |
116 | { |
117 | // stop enumerating | |
118 | return FALSE; | |
119 | } | |
120 | ||
7dd62924 | 121 | families.Add(fam); |
d111a89a VZ |
122 | } |
123 | //else: already seen | |
124 | } | |
125 | ||
126 | return TRUE; | |
127 | } | |
128 | ||
129 | // ---------------------------------------------------------------------------- | |
130 | // wxFontEnumerator | |
131 | // ---------------------------------------------------------------------------- | |
132 | ||
3c1866e8 VZ |
133 | bool wxFontEnumerator::EnumerateFacenames(wxFontEncoding encoding, |
134 | bool fixedWidthOnly) | |
d111a89a VZ |
135 | { |
136 | int nFonts; | |
137 | char **fonts; | |
138 | ||
139 | if ( fixedWidthOnly ) | |
140 | { | |
141 | bool cont = TRUE; | |
36f210c8 | 142 | fonts = CreateFontList(wxT('m'), encoding, &nFonts); |
d111a89a VZ |
143 | if ( fonts ) |
144 | { | |
145 | cont = ProcessFamiliesFromFontList(this, fonts, nFonts); | |
146 | ||
147 | XFreeFontNames(fonts); | |
148 | } | |
149 | ||
150 | if ( !cont ) | |
151 | { | |
152 | return TRUE; | |
153 | } | |
154 | ||
36f210c8 | 155 | fonts = CreateFontList(wxT('c'), encoding, &nFonts); |
d111a89a VZ |
156 | if ( !fonts ) |
157 | { | |
158 | return TRUE; | |
159 | } | |
160 | } | |
161 | else | |
162 | { | |
36f210c8 | 163 | fonts = CreateFontList(wxT('*'), encoding, &nFonts); |
d111a89a VZ |
164 | |
165 | if ( !fonts ) | |
166 | { | |
36f210c8 VZ |
167 | // it's ok if there are no fonts in given encoding - but it's not |
168 | // ok if there are no fonts at all | |
169 | wxASSERT_MSG(encoding != wxFONTENCODING_SYSTEM, | |
170 | wxT("No fonts at all on this system?")); | |
d111a89a VZ |
171 | |
172 | return FALSE; | |
173 | } | |
174 | } | |
175 | ||
176 | (void)ProcessFamiliesFromFontList(this, fonts, nFonts); | |
177 | ||
178 | XFreeFontNames(fonts); | |
179 | ||
180 | return TRUE; | |
181 | } | |
182 | ||
183 | bool wxFontEnumerator::EnumerateEncodings(const wxString& family) | |
184 | { | |
185 | wxString pattern; | |
186 | pattern.Printf(wxT("-*-%s-*-*-*-*-*-*-*-*-*-*-*-*"), | |
187 | family.IsEmpty() ? wxT("*") : family.c_str()); | |
188 | ||
189 | // get the list of all fonts | |
190 | int nFonts; | |
7dd62924 | 191 | char **fonts = XListFonts((Display *)wxGetDisplay(), pattern.mb_str(), |
d111a89a VZ |
192 | 32767, &nFonts); |
193 | ||
194 | if ( !fonts ) | |
195 | { | |
196 | // unknown family? | |
197 | return FALSE; | |
198 | } | |
199 | ||
200 | // extract the list of (unique) encodings | |
201 | wxSortedArrayString encodings; | |
202 | for ( int n = 0; n < nFonts; n++ ) | |
203 | { | |
204 | char *font = fonts[n]; | |
7dd62924 | 205 | if ( !wxString(font).Matches(wxT("-*-*-*-*-*-*-*-*-*-*-*-*-*-*")) ) |
d111a89a VZ |
206 | { |
207 | // it's not a full font name (probably an alias) | |
208 | continue; | |
209 | } | |
210 | ||
211 | // extract the family | |
212 | char *dash = strchr(font + 1, '-'); | |
213 | char *familyFont = dash + 1; | |
214 | dash = strchr(familyFont, '-'); | |
215 | *dash = '\0'; // !NULL because Matches() above succeeded | |
216 | ||
217 | if ( !family.IsEmpty() && (family != familyFont) ) | |
218 | { | |
219 | // family doesn't match | |
220 | continue; | |
221 | } | |
222 | ||
223 | // now extract the registry/encoding | |
224 | char *p = dash + 1; // just after the dash after family | |
225 | dash = strrchr(p, '-'); | |
226 | ||
227 | wxString registry(dash + 1); | |
228 | *dash = '\0'; | |
229 | ||
230 | dash = strrchr(p, '-'); | |
231 | wxString encoding(dash + 1); | |
232 | ||
233 | encoding << wxT('-') << registry; | |
234 | if ( encodings.Index(encoding) == wxNOT_FOUND ) | |
235 | { | |
236 | if ( !OnFontEncoding(familyFont, encoding) ) | |
237 | { | |
238 | break; | |
239 | } | |
240 | ||
241 | encodings.Add(encoding); | |
242 | } | |
243 | //else: already had this one | |
244 | } | |
245 | ||
246 | XFreeFontNames(fonts); | |
247 | ||
248 | return TRUE; | |
249 | } |