Mercurial > emacs
annotate src/w32bdf.c @ 24647:bbed99edbecc
(display-time-mode): Doc fix.
author | Dave Love <fx@gnu.org> |
---|---|
date | Tue, 27 Apr 1999 19:00:11 +0000 |
parents | 541ff963ba80 |
children | d2d412758428 |
rev | line source |
---|---|
24141 | 1 /* Implementation of BDF font handling on the Microsoft W32 API. |
2 Copyright (C) 1999 Free Software Foundation, Inc. | |
3 | |
4 This file is part of GNU Emacs. | |
5 | |
6 GNU Emacs is free software; you can redistribute it and/or modify | |
7 it under the terms of the GNU General Public License as published by | |
8 the Free Software Foundation; either version 2, or (at your option) | |
9 any later version. | |
10 | |
11 GNU Emacs is distributed in the hope that it will be useful, | |
12 but WITHOUT ANY WARRANTY; without even the implied warranty of | |
13 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | |
14 GNU General Public License for more details. | |
15 | |
16 You should have received a copy of the GNU General Public License | |
17 along with GNU Emacs; see the file COPYING. If not, write to | |
18 the Free Software Foundation, Inc., 59 Temple Place - Suite 330, | |
19 Boston, MA 02111-1307, USA. */ | |
20 | |
21 /* Based heavily on code by H. Miyashita for Meadow (a descendant of | |
22 MULE for W32). */ | |
23 | |
24 #include <windows.h> | |
25 #include "config.h" | |
26 #include "lisp.h" | |
27 #include "charset.h" | |
28 #include "fontset.h" | |
29 #include "blockinput.h" | |
30 #include "w32gui.h" | |
31 #include "w32term.h" | |
32 #include "w32bdf.h" | |
33 | |
34 #define min(a, b) ((a) < (b) ? (a) : (b)) | |
35 #define max(a, b) ((a) > (b) ? (a) : (b)) | |
36 | |
37 void w32_free_bdf_font(bdffont *fontp); | |
38 bdffont *w32_init_bdf_font(char *filename); | |
39 | |
24496
541ff963ba80
Merged patches from Meadow.
Geoff Voelker <voelker@cs.washington.edu>
parents:
24141
diff
changeset
|
40 cache_bitmap cached_bitmap_slots[BDF_FONT_CACHE_SIZE]; |
541ff963ba80
Merged patches from Meadow.
Geoff Voelker <voelker@cs.washington.edu>
parents:
24141
diff
changeset
|
41 cache_bitmap *pcached_bitmap_latest = cached_bitmap_slots; |
541ff963ba80
Merged patches from Meadow.
Geoff Voelker <voelker@cs.washington.edu>
parents:
24141
diff
changeset
|
42 |
541ff963ba80
Merged patches from Meadow.
Geoff Voelker <voelker@cs.washington.edu>
parents:
24141
diff
changeset
|
43 #define FONT_CACHE_SLOT_OVER_P(p) \ |
541ff963ba80
Merged patches from Meadow.
Geoff Voelker <voelker@cs.washington.edu>
parents:
24141
diff
changeset
|
44 ((p) >= cached_bitmap_slots + BDF_FONT_CACHE_SIZE) |
541ff963ba80
Merged patches from Meadow.
Geoff Voelker <voelker@cs.washington.edu>
parents:
24141
diff
changeset
|
45 |
24141 | 46 static int |
47 search_file_line(char *key, char *start, int len, char **val, char **next) | |
48 { | |
49 int linelen; | |
50 unsigned char *p, *q; | |
51 | |
52 p = memchr(start, '\n', len); | |
53 if (!p) return -1; | |
54 for (;start < p;start++) | |
55 { | |
56 if ((*start != ' ') || (*start != '\t')) break; | |
57 } | |
58 linelen = p - start + 1; | |
59 *next = p + 1; | |
60 if (strncmp(start, key, min(strlen(key), linelen)) == 0) | |
61 { | |
62 *val = start + strlen(key); | |
63 return 1; | |
64 } | |
65 | |
66 return 0; | |
67 } | |
68 | |
69 static int | |
70 proceed_file_line(char *key, char *start, int *len, char **val, char **next) | |
71 { | |
72 int flag = 0; | |
73 | |
74 do { | |
75 flag = search_file_line(key, start, *len, val, next); | |
76 *len -= (int)(*next - start); | |
77 start = *next; | |
78 }while(flag == 0); | |
79 | |
80 if (flag == -1) return 0; | |
81 return 1; | |
82 } | |
83 | |
24496
541ff963ba80
Merged patches from Meadow.
Geoff Voelker <voelker@cs.washington.edu>
parents:
24141
diff
changeset
|
84 char* |
541ff963ba80
Merged patches from Meadow.
Geoff Voelker <voelker@cs.washington.edu>
parents:
24141
diff
changeset
|
85 get_quoted_string(char *start, char *end) |
541ff963ba80
Merged patches from Meadow.
Geoff Voelker <voelker@cs.washington.edu>
parents:
24141
diff
changeset
|
86 { |
541ff963ba80
Merged patches from Meadow.
Geoff Voelker <voelker@cs.washington.edu>
parents:
24141
diff
changeset
|
87 char *p, *q, *result; |
541ff963ba80
Merged patches from Meadow.
Geoff Voelker <voelker@cs.washington.edu>
parents:
24141
diff
changeset
|
88 |
541ff963ba80
Merged patches from Meadow.
Geoff Voelker <voelker@cs.washington.edu>
parents:
24141
diff
changeset
|
89 p = memchr(start, '\"', end - start); |
541ff963ba80
Merged patches from Meadow.
Geoff Voelker <voelker@cs.washington.edu>
parents:
24141
diff
changeset
|
90 q = 0; |
541ff963ba80
Merged patches from Meadow.
Geoff Voelker <voelker@cs.washington.edu>
parents:
24141
diff
changeset
|
91 |
541ff963ba80
Merged patches from Meadow.
Geoff Voelker <voelker@cs.washington.edu>
parents:
24141
diff
changeset
|
92 if (!p) return NULL; |
541ff963ba80
Merged patches from Meadow.
Geoff Voelker <voelker@cs.washington.edu>
parents:
24141
diff
changeset
|
93 p++; |
541ff963ba80
Merged patches from Meadow.
Geoff Voelker <voelker@cs.washington.edu>
parents:
24141
diff
changeset
|
94 q = memchr(p, '\"', end - q); |
541ff963ba80
Merged patches from Meadow.
Geoff Voelker <voelker@cs.washington.edu>
parents:
24141
diff
changeset
|
95 if (!q) return NULL; |
541ff963ba80
Merged patches from Meadow.
Geoff Voelker <voelker@cs.washington.edu>
parents:
24141
diff
changeset
|
96 |
541ff963ba80
Merged patches from Meadow.
Geoff Voelker <voelker@cs.washington.edu>
parents:
24141
diff
changeset
|
97 result = (char*) xmalloc(q - p + 1); |
541ff963ba80
Merged patches from Meadow.
Geoff Voelker <voelker@cs.washington.edu>
parents:
24141
diff
changeset
|
98 |
541ff963ba80
Merged patches from Meadow.
Geoff Voelker <voelker@cs.washington.edu>
parents:
24141
diff
changeset
|
99 memcpy(result, p, q - p); |
541ff963ba80
Merged patches from Meadow.
Geoff Voelker <voelker@cs.washington.edu>
parents:
24141
diff
changeset
|
100 result[q - p] = '\0'; |
541ff963ba80
Merged patches from Meadow.
Geoff Voelker <voelker@cs.washington.edu>
parents:
24141
diff
changeset
|
101 |
541ff963ba80
Merged patches from Meadow.
Geoff Voelker <voelker@cs.washington.edu>
parents:
24141
diff
changeset
|
102 return result; |
541ff963ba80
Merged patches from Meadow.
Geoff Voelker <voelker@cs.washington.edu>
parents:
24141
diff
changeset
|
103 } |
541ff963ba80
Merged patches from Meadow.
Geoff Voelker <voelker@cs.washington.edu>
parents:
24141
diff
changeset
|
104 |
24141 | 105 static int |
106 set_bdf_font_info(bdffont *fontp) | |
107 { | |
108 unsigned char *start, *p, *q; | |
109 int len, flag; | |
110 int bbw, bbh, bbx, bby; | |
111 int val1; | |
112 | |
113 len = fontp->size; | |
114 start = fontp->font; | |
115 | |
116 fontp->yoffset = 0; | |
117 fontp->relative_compose = 0; | |
118 fontp->default_ascent = 0; | |
24496
541ff963ba80
Merged patches from Meadow.
Geoff Voelker <voelker@cs.washington.edu>
parents:
24141
diff
changeset
|
119 fontp->registry = NULL; |
541ff963ba80
Merged patches from Meadow.
Geoff Voelker <voelker@cs.washington.edu>
parents:
24141
diff
changeset
|
120 fontp->encoding = NULL; |
541ff963ba80
Merged patches from Meadow.
Geoff Voelker <voelker@cs.washington.edu>
parents:
24141
diff
changeset
|
121 fontp->slant = NULL; |
541ff963ba80
Merged patches from Meadow.
Geoff Voelker <voelker@cs.washington.edu>
parents:
24141
diff
changeset
|
122 /* fontp->width = NULL; */ |
24141 | 123 |
124 flag = proceed_file_line("FONTBOUNDINGBOX", start, &len, &p, &q); | |
125 if (!flag) return 0; | |
126 bbw = strtol(p, &start, 10); | |
127 p = start; | |
128 bbh = strtol(p, &start, 10); | |
129 p = start; | |
130 bbx = strtol(p, &start, 10); | |
131 p = start; | |
132 bby = strtol(p, &start, 10); | |
133 | |
134 fontp->llx = bbx; | |
135 fontp->lly = bby; | |
136 fontp->urx = bbw + bbx; | |
137 fontp->ury = bbh + bby; | |
138 fontp->width = bbw; | |
139 fontp->height = bbh; | |
140 start = q; | |
141 flag = proceed_file_line("STARTPROPERTIES", start, &len, &p, &q); | |
142 if (!flag) return 1; | |
143 | |
24496
541ff963ba80
Merged patches from Meadow.
Geoff Voelker <voelker@cs.washington.edu>
parents:
24141
diff
changeset
|
144 flag = 0; |
541ff963ba80
Merged patches from Meadow.
Geoff Voelker <voelker@cs.washington.edu>
parents:
24141
diff
changeset
|
145 |
24141 | 146 do { |
147 start = q; | |
148 if (search_file_line("PIXEL_SIZE", start, len, &p, &q) == 1) | |
149 { | |
150 val1 = atoi(p); | |
151 fontp->pixsz = val1; | |
152 } | |
153 else if (search_file_line("FONT_ASCENT", start, len, &p, &q) == 1) | |
154 { | |
155 val1 = atoi(p); | |
156 fontp->ury = val1; | |
157 } | |
158 else if (search_file_line("FONT_DESCENT", start, len, &p, &q) == 1) | |
159 { | |
160 val1 = atoi(p); | |
161 fontp->lly = -val1; | |
162 } | |
163 else if (search_file_line("_MULE_BASELINE_OFFSET", start, len, &p, &q) == 1) | |
164 { | |
165 val1 = atoi(p); | |
166 fontp->yoffset = val1; | |
167 } | |
168 else if (search_file_line("_MULE_RELATIVE_COMPOSE", start, len, &p, &q) == 1) | |
169 { | |
170 val1 = atoi(p); | |
171 fontp->relative_compose = val1; | |
172 } | |
173 else if (search_file_line("_MULE_DEFAULT_ASCENT", start, len, &p, &q) == 1) | |
174 { | |
175 val1 = atoi(p); | |
176 fontp->default_ascent = val1; | |
177 } | |
24496
541ff963ba80
Merged patches from Meadow.
Geoff Voelker <voelker@cs.washington.edu>
parents:
24141
diff
changeset
|
178 else if (search_file_line("CHARSET_REGISTRY", start, len, &p, &q) == 1) |
541ff963ba80
Merged patches from Meadow.
Geoff Voelker <voelker@cs.washington.edu>
parents:
24141
diff
changeset
|
179 { |
541ff963ba80
Merged patches from Meadow.
Geoff Voelker <voelker@cs.washington.edu>
parents:
24141
diff
changeset
|
180 fontp->registry = get_quoted_string(p, q); |
541ff963ba80
Merged patches from Meadow.
Geoff Voelker <voelker@cs.washington.edu>
parents:
24141
diff
changeset
|
181 } |
541ff963ba80
Merged patches from Meadow.
Geoff Voelker <voelker@cs.washington.edu>
parents:
24141
diff
changeset
|
182 else if (search_file_line("CHARSET_ENCODING", start, len, &p, &q) == 1) |
541ff963ba80
Merged patches from Meadow.
Geoff Voelker <voelker@cs.washington.edu>
parents:
24141
diff
changeset
|
183 { |
541ff963ba80
Merged patches from Meadow.
Geoff Voelker <voelker@cs.washington.edu>
parents:
24141
diff
changeset
|
184 fontp->encoding = get_quoted_string(p, q); |
541ff963ba80
Merged patches from Meadow.
Geoff Voelker <voelker@cs.washington.edu>
parents:
24141
diff
changeset
|
185 } |
541ff963ba80
Merged patches from Meadow.
Geoff Voelker <voelker@cs.washington.edu>
parents:
24141
diff
changeset
|
186 else if (search_file_line("SLANT", start, len, &p, &q) == 1) |
541ff963ba80
Merged patches from Meadow.
Geoff Voelker <voelker@cs.washington.edu>
parents:
24141
diff
changeset
|
187 { |
541ff963ba80
Merged patches from Meadow.
Geoff Voelker <voelker@cs.washington.edu>
parents:
24141
diff
changeset
|
188 fontp->slant = get_quoted_string(p, q); |
541ff963ba80
Merged patches from Meadow.
Geoff Voelker <voelker@cs.washington.edu>
parents:
24141
diff
changeset
|
189 } |
541ff963ba80
Merged patches from Meadow.
Geoff Voelker <voelker@cs.washington.edu>
parents:
24141
diff
changeset
|
190 /* |
541ff963ba80
Merged patches from Meadow.
Geoff Voelker <voelker@cs.washington.edu>
parents:
24141
diff
changeset
|
191 else if (search_file_line("SETWIDTH_NAME", start, len, &p, &q) == 1) |
541ff963ba80
Merged patches from Meadow.
Geoff Voelker <voelker@cs.washington.edu>
parents:
24141
diff
changeset
|
192 { |
541ff963ba80
Merged patches from Meadow.
Geoff Voelker <voelker@cs.washington.edu>
parents:
24141
diff
changeset
|
193 fontp->width = get_quoted_string(p, q); |
541ff963ba80
Merged patches from Meadow.
Geoff Voelker <voelker@cs.washington.edu>
parents:
24141
diff
changeset
|
194 } |
541ff963ba80
Merged patches from Meadow.
Geoff Voelker <voelker@cs.washington.edu>
parents:
24141
diff
changeset
|
195 */ |
24141 | 196 else |
197 { | |
198 flag = search_file_line("ENDPROPERTIES", start, len, &p, &q); | |
199 } | |
200 if (flag == -1) return 0; | |
201 len -= (q - start); | |
202 }while(flag == 0); | |
203 start = q; | |
204 flag = proceed_file_line("CHARS", start, &len, &p, &q); | |
205 if (!flag) return 0; | |
206 fontp->seeked = q; | |
207 | |
208 return 1; | |
209 } | |
210 | |
211 bdffont* | |
212 w32_init_bdf_font(char *filename) | |
213 { | |
214 HANDLE hfile, hfilemap; | |
215 bdffont *bdffontp; | |
216 unsigned char *font; | |
217 BY_HANDLE_FILE_INFORMATION fileinfo; | |
218 int i; | |
219 | |
220 hfile = CreateFile(filename, GENERIC_READ, FILE_SHARE_READ, NULL, | |
221 OPEN_EXISTING, FILE_ATTRIBUTE_NORMAL, NULL); | |
222 if (hfile == INVALID_HANDLE_VALUE) return NULL; | |
223 if (!GetFileInformationByHandle(hfile, &fileinfo) || | |
224 (fileinfo.nFileSizeHigh != 0) || | |
225 (fileinfo.nFileSizeLow > BDF_FILE_SIZE_MAX)) | |
226 { | |
227 CloseHandle(hfile); | |
228 error("Fail to open BDF file."); | |
229 } | |
230 hfilemap = CreateFileMapping(hfile, NULL, PAGE_READONLY, 0, 0, NULL); | |
231 if (hfilemap == INVALID_HANDLE_VALUE) | |
232 { | |
233 CloseHandle(hfile); | |
234 error("Can't map font."); | |
235 } | |
236 | |
237 font = MapViewOfFile(hfilemap, FILE_MAP_READ, 0, 0, 0); | |
238 | |
239 if (!font) | |
240 { | |
241 CloseHandle(hfile); | |
242 CloseHandle(hfilemap); | |
243 error("Can't view font."); | |
244 } | |
245 | |
246 bdffontp = (bdffont *) xmalloc(sizeof(bdffont)); | |
247 | |
248 for(i = 0;i < BDF_FIRST_OFFSET_TABLE;i++) | |
24496
541ff963ba80
Merged patches from Meadow.
Geoff Voelker <voelker@cs.washington.edu>
parents:
24141
diff
changeset
|
249 bdffontp->chtbl[i] = NULL; |
24141 | 250 bdffontp->size = fileinfo.nFileSizeLow; |
251 bdffontp->font = font; | |
252 bdffontp->hfile = hfile; | |
253 bdffontp->hfilemap = hfilemap; | |
254 bdffontp->filename = (char*) xmalloc(strlen(filename) + 1); | |
255 strcpy(bdffontp->filename, filename); | |
256 | |
257 if (!set_bdf_font_info(bdffontp)) | |
258 { | |
259 w32_free_bdf_font(bdffontp); | |
260 error("Invalid BDF font!"); | |
261 } | |
262 return bdffontp; | |
263 } | |
264 | |
265 void | |
266 w32_free_bdf_font(bdffont *fontp) | |
267 { | |
24496
541ff963ba80
Merged patches from Meadow.
Geoff Voelker <voelker@cs.washington.edu>
parents:
24141
diff
changeset
|
268 int i, j; |
541ff963ba80
Merged patches from Meadow.
Geoff Voelker <voelker@cs.washington.edu>
parents:
24141
diff
changeset
|
269 font_char *pch; |
541ff963ba80
Merged patches from Meadow.
Geoff Voelker <voelker@cs.washington.edu>
parents:
24141
diff
changeset
|
270 cache_bitmap *pcb; |
24141 | 271 |
272 UnmapViewOfFile(fontp->hfilemap); | |
273 CloseHandle(fontp->hfilemap); | |
274 CloseHandle(fontp->hfile); | |
24496
541ff963ba80
Merged patches from Meadow.
Geoff Voelker <voelker@cs.washington.edu>
parents:
24141
diff
changeset
|
275 |
541ff963ba80
Merged patches from Meadow.
Geoff Voelker <voelker@cs.washington.edu>
parents:
24141
diff
changeset
|
276 if (fontp->registry) xfree(fontp->registry); |
541ff963ba80
Merged patches from Meadow.
Geoff Voelker <voelker@cs.washington.edu>
parents:
24141
diff
changeset
|
277 if (fontp->encoding) xfree(fontp->encoding); |
541ff963ba80
Merged patches from Meadow.
Geoff Voelker <voelker@cs.washington.edu>
parents:
24141
diff
changeset
|
278 if (fontp->slant) xfree(fontp->slant); |
541ff963ba80
Merged patches from Meadow.
Geoff Voelker <voelker@cs.washington.edu>
parents:
24141
diff
changeset
|
279 /* if (fontp->width) xfree(fontp->width); */ |
541ff963ba80
Merged patches from Meadow.
Geoff Voelker <voelker@cs.washington.edu>
parents:
24141
diff
changeset
|
280 |
24141 | 281 xfree(fontp->filename); |
282 for(i = 0;i < BDF_FIRST_OFFSET_TABLE;i++) | |
283 { | |
24496
541ff963ba80
Merged patches from Meadow.
Geoff Voelker <voelker@cs.washington.edu>
parents:
24141
diff
changeset
|
284 pch = fontp->chtbl[i]; |
541ff963ba80
Merged patches from Meadow.
Geoff Voelker <voelker@cs.washington.edu>
parents:
24141
diff
changeset
|
285 if (pch) |
541ff963ba80
Merged patches from Meadow.
Geoff Voelker <voelker@cs.washington.edu>
parents:
24141
diff
changeset
|
286 { |
541ff963ba80
Merged patches from Meadow.
Geoff Voelker <voelker@cs.washington.edu>
parents:
24141
diff
changeset
|
287 for (j = 0;j < BDF_SECOND_OFFSET_TABLE;j++) |
541ff963ba80
Merged patches from Meadow.
Geoff Voelker <voelker@cs.washington.edu>
parents:
24141
diff
changeset
|
288 { |
541ff963ba80
Merged patches from Meadow.
Geoff Voelker <voelker@cs.washington.edu>
parents:
24141
diff
changeset
|
289 pcb = pch[j].pcbmp; |
541ff963ba80
Merged patches from Meadow.
Geoff Voelker <voelker@cs.washington.edu>
parents:
24141
diff
changeset
|
290 if (pcb) pcb->psrc = NULL; |
541ff963ba80
Merged patches from Meadow.
Geoff Voelker <voelker@cs.washington.edu>
parents:
24141
diff
changeset
|
291 } |
541ff963ba80
Merged patches from Meadow.
Geoff Voelker <voelker@cs.washington.edu>
parents:
24141
diff
changeset
|
292 xfree(pch); |
541ff963ba80
Merged patches from Meadow.
Geoff Voelker <voelker@cs.washington.edu>
parents:
24141
diff
changeset
|
293 } |
24141 | 294 } |
295 xfree(fontp); | |
296 } | |
297 | |
24496
541ff963ba80
Merged patches from Meadow.
Geoff Voelker <voelker@cs.washington.edu>
parents:
24141
diff
changeset
|
298 static font_char* |
541ff963ba80
Merged patches from Meadow.
Geoff Voelker <voelker@cs.washington.edu>
parents:
24141
diff
changeset
|
299 get_cached_font_char(bdffont *fontp, int index) |
24141 | 300 { |
24496
541ff963ba80
Merged patches from Meadow.
Geoff Voelker <voelker@cs.washington.edu>
parents:
24141
diff
changeset
|
301 font_char *pch, *result; |
24141 | 302 int i; |
303 | |
304 if (index > 0xffff) | |
305 return NULL; | |
306 | |
24496
541ff963ba80
Merged patches from Meadow.
Geoff Voelker <voelker@cs.washington.edu>
parents:
24141
diff
changeset
|
307 pch = fontp->chtbl[BDF_FIRST_OFFSET(index)]; |
541ff963ba80
Merged patches from Meadow.
Geoff Voelker <voelker@cs.washington.edu>
parents:
24141
diff
changeset
|
308 if (!pch) |
24141 | 309 return NULL; |
24496
541ff963ba80
Merged patches from Meadow.
Geoff Voelker <voelker@cs.washington.edu>
parents:
24141
diff
changeset
|
310 result = &pch[BDF_SECOND_OFFSET(index)]; |
24141 | 311 |
24496
541ff963ba80
Merged patches from Meadow.
Geoff Voelker <voelker@cs.washington.edu>
parents:
24141
diff
changeset
|
312 if (!result->offset) return NULL; |
24141 | 313 |
24496
541ff963ba80
Merged patches from Meadow.
Geoff Voelker <voelker@cs.washington.edu>
parents:
24141
diff
changeset
|
314 return result; |
24141 | 315 } |
316 | |
24496
541ff963ba80
Merged patches from Meadow.
Geoff Voelker <voelker@cs.washington.edu>
parents:
24141
diff
changeset
|
317 static font_char* |
24141 | 318 cache_char_offset(bdffont *fontp, int index, unsigned char *offset) |
319 { | |
24496
541ff963ba80
Merged patches from Meadow.
Geoff Voelker <voelker@cs.washington.edu>
parents:
24141
diff
changeset
|
320 font_char *pch, *result; |
24141 | 321 int i; |
322 | |
323 if (index > 0xffff) | |
24496
541ff963ba80
Merged patches from Meadow.
Geoff Voelker <voelker@cs.washington.edu>
parents:
24141
diff
changeset
|
324 return NULL; |
24141 | 325 |
24496
541ff963ba80
Merged patches from Meadow.
Geoff Voelker <voelker@cs.washington.edu>
parents:
24141
diff
changeset
|
326 pch = fontp->chtbl[BDF_FIRST_OFFSET(index)]; |
541ff963ba80
Merged patches from Meadow.
Geoff Voelker <voelker@cs.washington.edu>
parents:
24141
diff
changeset
|
327 if (!pch) |
24141 | 328 { |
24496
541ff963ba80
Merged patches from Meadow.
Geoff Voelker <voelker@cs.washington.edu>
parents:
24141
diff
changeset
|
329 pch = fontp->chtbl[BDF_FIRST_OFFSET(index)] = |
541ff963ba80
Merged patches from Meadow.
Geoff Voelker <voelker@cs.washington.edu>
parents:
24141
diff
changeset
|
330 (font_char*) xmalloc(sizeof(font_char) * |
24141 | 331 BDF_SECOND_OFFSET_TABLE); |
24496
541ff963ba80
Merged patches from Meadow.
Geoff Voelker <voelker@cs.washington.edu>
parents:
24141
diff
changeset
|
332 memset(pch, 0, sizeof(font_char) * BDF_SECOND_OFFSET_TABLE); |
24141 | 333 } |
334 | |
24496
541ff963ba80
Merged patches from Meadow.
Geoff Voelker <voelker@cs.washington.edu>
parents:
24141
diff
changeset
|
335 result = &pch[BDF_SECOND_OFFSET(index)]; |
541ff963ba80
Merged patches from Meadow.
Geoff Voelker <voelker@cs.washington.edu>
parents:
24141
diff
changeset
|
336 result->offset = offset; |
541ff963ba80
Merged patches from Meadow.
Geoff Voelker <voelker@cs.washington.edu>
parents:
24141
diff
changeset
|
337 |
541ff963ba80
Merged patches from Meadow.
Geoff Voelker <voelker@cs.washington.edu>
parents:
24141
diff
changeset
|
338 return result; |
24141 | 339 } |
340 | |
24496
541ff963ba80
Merged patches from Meadow.
Geoff Voelker <voelker@cs.washington.edu>
parents:
24141
diff
changeset
|
341 static font_char* |
541ff963ba80
Merged patches from Meadow.
Geoff Voelker <voelker@cs.washington.edu>
parents:
24141
diff
changeset
|
342 seek_char(bdffont *fontp, int index) |
24141 | 343 { |
24496
541ff963ba80
Merged patches from Meadow.
Geoff Voelker <voelker@cs.washington.edu>
parents:
24141
diff
changeset
|
344 font_char *result; |
24141 | 345 int len, flag, font_index; |
346 unsigned char *start, *p, *q; | |
347 | |
348 if (!fontp->seeked) return NULL; | |
349 | |
350 start = fontp->seeked; | |
351 len = fontp->size - (start - fontp->font); | |
352 | |
353 do { | |
354 flag = proceed_file_line("ENCODING", start, &len, &p, &q); | |
355 if (!flag) | |
356 { | |
357 fontp->seeked = NULL; | |
358 return NULL; | |
359 } | |
360 font_index = atoi(p); | |
24496
541ff963ba80
Merged patches from Meadow.
Geoff Voelker <voelker@cs.washington.edu>
parents:
24141
diff
changeset
|
361 result = cache_char_offset(fontp, font_index, q); |
541ff963ba80
Merged patches from Meadow.
Geoff Voelker <voelker@cs.washington.edu>
parents:
24141
diff
changeset
|
362 if (!result) return NULL; |
541ff963ba80
Merged patches from Meadow.
Geoff Voelker <voelker@cs.washington.edu>
parents:
24141
diff
changeset
|
363 |
541ff963ba80
Merged patches from Meadow.
Geoff Voelker <voelker@cs.washington.edu>
parents:
24141
diff
changeset
|
364 start = result->offset; |
24141 | 365 } while (font_index != index); |
24496
541ff963ba80
Merged patches from Meadow.
Geoff Voelker <voelker@cs.washington.edu>
parents:
24141
diff
changeset
|
366 fontp->seeked = start; |
541ff963ba80
Merged patches from Meadow.
Geoff Voelker <voelker@cs.washington.edu>
parents:
24141
diff
changeset
|
367 |
541ff963ba80
Merged patches from Meadow.
Geoff Voelker <voelker@cs.washington.edu>
parents:
24141
diff
changeset
|
368 return result; |
541ff963ba80
Merged patches from Meadow.
Geoff Voelker <voelker@cs.washington.edu>
parents:
24141
diff
changeset
|
369 } |
541ff963ba80
Merged patches from Meadow.
Geoff Voelker <voelker@cs.washington.edu>
parents:
24141
diff
changeset
|
370 |
541ff963ba80
Merged patches from Meadow.
Geoff Voelker <voelker@cs.washington.edu>
parents:
24141
diff
changeset
|
371 void |
541ff963ba80
Merged patches from Meadow.
Geoff Voelker <voelker@cs.washington.edu>
parents:
24141
diff
changeset
|
372 clear_cached_bitmap_slots() |
541ff963ba80
Merged patches from Meadow.
Geoff Voelker <voelker@cs.washington.edu>
parents:
24141
diff
changeset
|
373 { |
541ff963ba80
Merged patches from Meadow.
Geoff Voelker <voelker@cs.washington.edu>
parents:
24141
diff
changeset
|
374 int i; |
541ff963ba80
Merged patches from Meadow.
Geoff Voelker <voelker@cs.washington.edu>
parents:
24141
diff
changeset
|
375 cache_bitmap *p; |
24141 | 376 |
24496
541ff963ba80
Merged patches from Meadow.
Geoff Voelker <voelker@cs.washington.edu>
parents:
24141
diff
changeset
|
377 p = pcached_bitmap_latest; |
541ff963ba80
Merged patches from Meadow.
Geoff Voelker <voelker@cs.washington.edu>
parents:
24141
diff
changeset
|
378 for (i = 0;i < BDF_FONT_CLEAR_SIZE;i++) |
541ff963ba80
Merged patches from Meadow.
Geoff Voelker <voelker@cs.washington.edu>
parents:
24141
diff
changeset
|
379 { |
541ff963ba80
Merged patches from Meadow.
Geoff Voelker <voelker@cs.washington.edu>
parents:
24141
diff
changeset
|
380 if (p->psrc) |
541ff963ba80
Merged patches from Meadow.
Geoff Voelker <voelker@cs.washington.edu>
parents:
24141
diff
changeset
|
381 { |
541ff963ba80
Merged patches from Meadow.
Geoff Voelker <voelker@cs.washington.edu>
parents:
24141
diff
changeset
|
382 DeleteObject(p->hbmp); |
541ff963ba80
Merged patches from Meadow.
Geoff Voelker <voelker@cs.washington.edu>
parents:
24141
diff
changeset
|
383 p->psrc->pcbmp = NULL; |
541ff963ba80
Merged patches from Meadow.
Geoff Voelker <voelker@cs.washington.edu>
parents:
24141
diff
changeset
|
384 p->psrc = NULL; |
541ff963ba80
Merged patches from Meadow.
Geoff Voelker <voelker@cs.washington.edu>
parents:
24141
diff
changeset
|
385 } |
541ff963ba80
Merged patches from Meadow.
Geoff Voelker <voelker@cs.washington.edu>
parents:
24141
diff
changeset
|
386 p++; |
541ff963ba80
Merged patches from Meadow.
Geoff Voelker <voelker@cs.washington.edu>
parents:
24141
diff
changeset
|
387 if (FONT_CACHE_SLOT_OVER_P(p)) |
541ff963ba80
Merged patches from Meadow.
Geoff Voelker <voelker@cs.washington.edu>
parents:
24141
diff
changeset
|
388 p = cached_bitmap_slots; |
541ff963ba80
Merged patches from Meadow.
Geoff Voelker <voelker@cs.washington.edu>
parents:
24141
diff
changeset
|
389 } |
24141 | 390 } |
391 | |
392 #define GET_HEX_VAL(x) ((isdigit(x)) ? ((x) - '0') : \ | |
393 (((x) >= 'A') && ((x) <= 'Z')) ? ((x) - 'A' + 10) : \ | |
394 (((x) >= 'a') && ((x) <= 'z')) ? ((x) - 'a' + 10) : \ | |
395 (-1)) | |
396 | |
397 int | |
398 w32_get_bdf_glyph(bdffont *fontp, int index, int size, glyph_struct *glyph) | |
399 { | |
24496
541ff963ba80
Merged patches from Meadow.
Geoff Voelker <voelker@cs.washington.edu>
parents:
24141
diff
changeset
|
400 font_char *pch; |
24141 | 401 unsigned char *start, *p, *q, *bitmapp; |
402 unsigned char val1, val2; | |
403 int i, j, len, flag; | |
404 | |
24496
541ff963ba80
Merged patches from Meadow.
Geoff Voelker <voelker@cs.washington.edu>
parents:
24141
diff
changeset
|
405 pch = get_cached_font_char(fontp, index); |
541ff963ba80
Merged patches from Meadow.
Geoff Voelker <voelker@cs.washington.edu>
parents:
24141
diff
changeset
|
406 if (!pch) |
541ff963ba80
Merged patches from Meadow.
Geoff Voelker <voelker@cs.washington.edu>
parents:
24141
diff
changeset
|
407 { |
541ff963ba80
Merged patches from Meadow.
Geoff Voelker <voelker@cs.washington.edu>
parents:
24141
diff
changeset
|
408 pch = seek_char(fontp, index); |
541ff963ba80
Merged patches from Meadow.
Geoff Voelker <voelker@cs.washington.edu>
parents:
24141
diff
changeset
|
409 if (!pch) |
541ff963ba80
Merged patches from Meadow.
Geoff Voelker <voelker@cs.washington.edu>
parents:
24141
diff
changeset
|
410 return 0; |
541ff963ba80
Merged patches from Meadow.
Geoff Voelker <voelker@cs.washington.edu>
parents:
24141
diff
changeset
|
411 } |
541ff963ba80
Merged patches from Meadow.
Geoff Voelker <voelker@cs.washington.edu>
parents:
24141
diff
changeset
|
412 |
541ff963ba80
Merged patches from Meadow.
Geoff Voelker <voelker@cs.washington.edu>
parents:
24141
diff
changeset
|
413 start = pch->offset; |
541ff963ba80
Merged patches from Meadow.
Geoff Voelker <voelker@cs.washington.edu>
parents:
24141
diff
changeset
|
414 |
541ff963ba80
Merged patches from Meadow.
Geoff Voelker <voelker@cs.washington.edu>
parents:
24141
diff
changeset
|
415 if ((size == 0) && pch->pcbmp) |
541ff963ba80
Merged patches from Meadow.
Geoff Voelker <voelker@cs.washington.edu>
parents:
24141
diff
changeset
|
416 { |
541ff963ba80
Merged patches from Meadow.
Geoff Voelker <voelker@cs.washington.edu>
parents:
24141
diff
changeset
|
417 glyph->metric = pch->pcbmp->metric; |
541ff963ba80
Merged patches from Meadow.
Geoff Voelker <voelker@cs.washington.edu>
parents:
24141
diff
changeset
|
418 return 1; |
541ff963ba80
Merged patches from Meadow.
Geoff Voelker <voelker@cs.washington.edu>
parents:
24141
diff
changeset
|
419 } |
24141 | 420 |
421 len = fontp->size - (start - fontp->font); | |
422 | |
423 flag = proceed_file_line("DWIDTH", start, &len, &p, &q); | |
424 if (!flag) | |
425 return 0; | |
24496
541ff963ba80
Merged patches from Meadow.
Geoff Voelker <voelker@cs.washington.edu>
parents:
24141
diff
changeset
|
426 glyph->metric.dwidth = atoi(p); |
24141 | 427 |
428 start = q; | |
429 flag = proceed_file_line("BBX", start, &len, &p, &q); | |
430 if (!flag) | |
431 return 0; | |
24496
541ff963ba80
Merged patches from Meadow.
Geoff Voelker <voelker@cs.washington.edu>
parents:
24141
diff
changeset
|
432 glyph->metric.bbw = strtol(p, &start, 10); |
24141 | 433 p = start; |
24496
541ff963ba80
Merged patches from Meadow.
Geoff Voelker <voelker@cs.washington.edu>
parents:
24141
diff
changeset
|
434 glyph->metric.bbh = strtol(p, &start, 10); |
24141 | 435 p = start; |
24496
541ff963ba80
Merged patches from Meadow.
Geoff Voelker <voelker@cs.washington.edu>
parents:
24141
diff
changeset
|
436 glyph->metric.bbox = strtol(p, &start, 10); |
24141 | 437 p = start; |
24496
541ff963ba80
Merged patches from Meadow.
Geoff Voelker <voelker@cs.washington.edu>
parents:
24141
diff
changeset
|
438 glyph->metric.bboy = strtol(p, &start, 10); |
24141 | 439 |
440 if (size == 0) return 1; | |
441 | |
442 start = q; | |
443 flag = proceed_file_line("BITMAP", start, &len, &p, &q); | |
444 if (!flag) | |
445 return 0; | |
446 | |
447 p = q; | |
448 bitmapp = glyph->bitmap; | |
24496
541ff963ba80
Merged patches from Meadow.
Geoff Voelker <voelker@cs.washington.edu>
parents:
24141
diff
changeset
|
449 for(i = 0;i < glyph->metric.bbh;i++) |
24141 | 450 { |
451 q = memchr(p, '\n', len); | |
452 if (!q) return 0; | |
24496
541ff963ba80
Merged patches from Meadow.
Geoff Voelker <voelker@cs.washington.edu>
parents:
24141
diff
changeset
|
453 for(j = 0;((q > p) && (j < ((glyph->metric.bbw + 7) / 8 )));j++) |
24141 | 454 { |
455 val1 = GET_HEX_VAL(*p); | |
456 if (val1 == -1) return 0; | |
457 p++; | |
458 val2 = GET_HEX_VAL(*p); | |
459 if (val2 == -1) return 0; | |
460 p++; | |
461 size--; | |
462 if (size <= 0) return 0; | |
463 /* NAND Operation. */ | |
464 *bitmapp++ = (unsigned char)~((val1 << 4) | val2); | |
465 } | |
466 /* CreateBitmap requires WORD alignment. */ | |
467 if (j % 2) | |
468 { | |
469 *bitmapp++ = 0xff; | |
470 } | |
471 p = q + 1; | |
472 } | |
473 | |
474 return 1; | |
475 } | |
476 | |
24496
541ff963ba80
Merged patches from Meadow.
Geoff Voelker <voelker@cs.washington.edu>
parents:
24141
diff
changeset
|
477 static |
541ff963ba80
Merged patches from Meadow.
Geoff Voelker <voelker@cs.washington.edu>
parents:
24141
diff
changeset
|
478 cache_bitmap* |
541ff963ba80
Merged patches from Meadow.
Geoff Voelker <voelker@cs.washington.edu>
parents:
24141
diff
changeset
|
479 get_bitmap_with_cache(bdffont *fontp, int index) |
541ff963ba80
Merged patches from Meadow.
Geoff Voelker <voelker@cs.washington.edu>
parents:
24141
diff
changeset
|
480 { |
541ff963ba80
Merged patches from Meadow.
Geoff Voelker <voelker@cs.washington.edu>
parents:
24141
diff
changeset
|
481 int bitmap_size; |
541ff963ba80
Merged patches from Meadow.
Geoff Voelker <voelker@cs.washington.edu>
parents:
24141
diff
changeset
|
482 font_char *pch; |
541ff963ba80
Merged patches from Meadow.
Geoff Voelker <voelker@cs.washington.edu>
parents:
24141
diff
changeset
|
483 cache_bitmap* pcb; |
541ff963ba80
Merged patches from Meadow.
Geoff Voelker <voelker@cs.washington.edu>
parents:
24141
diff
changeset
|
484 HBITMAP hbmp; |
541ff963ba80
Merged patches from Meadow.
Geoff Voelker <voelker@cs.washington.edu>
parents:
24141
diff
changeset
|
485 glyph_struct glyph; |
541ff963ba80
Merged patches from Meadow.
Geoff Voelker <voelker@cs.washington.edu>
parents:
24141
diff
changeset
|
486 |
541ff963ba80
Merged patches from Meadow.
Geoff Voelker <voelker@cs.washington.edu>
parents:
24141
diff
changeset
|
487 pch = get_cached_font_char(fontp, index); |
541ff963ba80
Merged patches from Meadow.
Geoff Voelker <voelker@cs.washington.edu>
parents:
24141
diff
changeset
|
488 if (pch) |
541ff963ba80
Merged patches from Meadow.
Geoff Voelker <voelker@cs.washington.edu>
parents:
24141
diff
changeset
|
489 { |
541ff963ba80
Merged patches from Meadow.
Geoff Voelker <voelker@cs.washington.edu>
parents:
24141
diff
changeset
|
490 pcb = pch->pcbmp; |
541ff963ba80
Merged patches from Meadow.
Geoff Voelker <voelker@cs.washington.edu>
parents:
24141
diff
changeset
|
491 if (pcb) return pcb; |
541ff963ba80
Merged patches from Meadow.
Geoff Voelker <voelker@cs.washington.edu>
parents:
24141
diff
changeset
|
492 } |
541ff963ba80
Merged patches from Meadow.
Geoff Voelker <voelker@cs.washington.edu>
parents:
24141
diff
changeset
|
493 |
541ff963ba80
Merged patches from Meadow.
Geoff Voelker <voelker@cs.washington.edu>
parents:
24141
diff
changeset
|
494 bitmap_size = ((fontp->urx - fontp->llx) / 8 + 2) * (fontp->ury - fontp->lly) |
541ff963ba80
Merged patches from Meadow.
Geoff Voelker <voelker@cs.washington.edu>
parents:
24141
diff
changeset
|
495 + 256; |
541ff963ba80
Merged patches from Meadow.
Geoff Voelker <voelker@cs.washington.edu>
parents:
24141
diff
changeset
|
496 glyph.bitmap = (unsigned char*) alloca(sizeof(unsigned char) * bitmap_size); |
541ff963ba80
Merged patches from Meadow.
Geoff Voelker <voelker@cs.washington.edu>
parents:
24141
diff
changeset
|
497 |
541ff963ba80
Merged patches from Meadow.
Geoff Voelker <voelker@cs.washington.edu>
parents:
24141
diff
changeset
|
498 if (!w32_get_bdf_glyph(fontp, index, bitmap_size, &glyph)) |
541ff963ba80
Merged patches from Meadow.
Geoff Voelker <voelker@cs.washington.edu>
parents:
24141
diff
changeset
|
499 return NULL; |
541ff963ba80
Merged patches from Meadow.
Geoff Voelker <voelker@cs.washington.edu>
parents:
24141
diff
changeset
|
500 |
541ff963ba80
Merged patches from Meadow.
Geoff Voelker <voelker@cs.washington.edu>
parents:
24141
diff
changeset
|
501 pch = get_cached_font_char(fontp, index); |
541ff963ba80
Merged patches from Meadow.
Geoff Voelker <voelker@cs.washington.edu>
parents:
24141
diff
changeset
|
502 if (!pch) return NULL; |
541ff963ba80
Merged patches from Meadow.
Geoff Voelker <voelker@cs.washington.edu>
parents:
24141
diff
changeset
|
503 |
541ff963ba80
Merged patches from Meadow.
Geoff Voelker <voelker@cs.washington.edu>
parents:
24141
diff
changeset
|
504 hbmp = CreateBitmap(glyph.metric.bbw, glyph.metric.bbh, 1, 1, glyph.bitmap); |
541ff963ba80
Merged patches from Meadow.
Geoff Voelker <voelker@cs.washington.edu>
parents:
24141
diff
changeset
|
505 |
541ff963ba80
Merged patches from Meadow.
Geoff Voelker <voelker@cs.washington.edu>
parents:
24141
diff
changeset
|
506 pcb = pcached_bitmap_latest; |
541ff963ba80
Merged patches from Meadow.
Geoff Voelker <voelker@cs.washington.edu>
parents:
24141
diff
changeset
|
507 if (pcb->psrc) |
541ff963ba80
Merged patches from Meadow.
Geoff Voelker <voelker@cs.washington.edu>
parents:
24141
diff
changeset
|
508 clear_cached_bitmap_slots(); |
541ff963ba80
Merged patches from Meadow.
Geoff Voelker <voelker@cs.washington.edu>
parents:
24141
diff
changeset
|
509 |
541ff963ba80
Merged patches from Meadow.
Geoff Voelker <voelker@cs.washington.edu>
parents:
24141
diff
changeset
|
510 pcb->psrc = pch; |
541ff963ba80
Merged patches from Meadow.
Geoff Voelker <voelker@cs.washington.edu>
parents:
24141
diff
changeset
|
511 pcb->metric = glyph.metric; |
541ff963ba80
Merged patches from Meadow.
Geoff Voelker <voelker@cs.washington.edu>
parents:
24141
diff
changeset
|
512 pcb->hbmp = hbmp; |
541ff963ba80
Merged patches from Meadow.
Geoff Voelker <voelker@cs.washington.edu>
parents:
24141
diff
changeset
|
513 |
541ff963ba80
Merged patches from Meadow.
Geoff Voelker <voelker@cs.washington.edu>
parents:
24141
diff
changeset
|
514 pch->pcbmp = pcb; |
541ff963ba80
Merged patches from Meadow.
Geoff Voelker <voelker@cs.washington.edu>
parents:
24141
diff
changeset
|
515 |
541ff963ba80
Merged patches from Meadow.
Geoff Voelker <voelker@cs.washington.edu>
parents:
24141
diff
changeset
|
516 pcached_bitmap_latest++; |
541ff963ba80
Merged patches from Meadow.
Geoff Voelker <voelker@cs.washington.edu>
parents:
24141
diff
changeset
|
517 if (FONT_CACHE_SLOT_OVER_P(pcached_bitmap_latest)) |
541ff963ba80
Merged patches from Meadow.
Geoff Voelker <voelker@cs.washington.edu>
parents:
24141
diff
changeset
|
518 pcached_bitmap_latest = cached_bitmap_slots; |
541ff963ba80
Merged patches from Meadow.
Geoff Voelker <voelker@cs.washington.edu>
parents:
24141
diff
changeset
|
519 |
541ff963ba80
Merged patches from Meadow.
Geoff Voelker <voelker@cs.washington.edu>
parents:
24141
diff
changeset
|
520 return pcb; |
541ff963ba80
Merged patches from Meadow.
Geoff Voelker <voelker@cs.washington.edu>
parents:
24141
diff
changeset
|
521 } |
541ff963ba80
Merged patches from Meadow.
Geoff Voelker <voelker@cs.washington.edu>
parents:
24141
diff
changeset
|
522 |
24141 | 523 int |
524 w32_BDF_TextOut(bdffont *fontp, HDC hdc, int left, | |
525 int top, unsigned char *text, int dim, int bytelen, | |
526 int fixed_pitch_size) | |
527 { | |
24496
541ff963ba80
Merged patches from Meadow.
Geoff Voelker <voelker@cs.washington.edu>
parents:
24141
diff
changeset
|
528 int index, btop; |
24141 | 529 unsigned char *textp; |
530 HDC hCompatDC = 0; | |
24496
541ff963ba80
Merged patches from Meadow.
Geoff Voelker <voelker@cs.washington.edu>
parents:
24141
diff
changeset
|
531 cache_bitmap *pcb; |
24141 | 532 HBITMAP hBMP; |
533 HBRUSH hFgBrush, hOrgBrush; | |
24496
541ff963ba80
Merged patches from Meadow.
Geoff Voelker <voelker@cs.washington.edu>
parents:
24141
diff
changeset
|
534 HANDLE horgobj = 0; |
24141 | 535 UINT textalign; |
536 int flag = 0; | |
537 | |
538 hCompatDC = CreateCompatibleDC(hdc); | |
539 | |
540 textalign = GetTextAlign(hdc); | |
541 | |
542 SaveDC(hdc); | |
543 | |
544 hFgBrush = CreateSolidBrush(GetTextColor(hdc)); | |
545 hOrgBrush = SelectObject(hdc, hFgBrush); | |
546 SetTextColor(hdc, RGB(0, 0, 0)); | |
547 SetBkColor(hdc, RGB(0xff, 0xff, 0xff)); | |
548 | |
549 textp = text; | |
550 while(bytelen > 0) | |
551 { | |
552 if (dim == 1) | |
553 { | |
554 index = *textp++; | |
555 bytelen--; | |
556 } | |
557 else | |
558 { | |
559 bytelen -= 2; | |
560 if (bytelen < 0) break; | |
561 index = MAKELENDSHORT(textp[1], textp[0]); | |
562 textp += 2; | |
563 } | |
24496
541ff963ba80
Merged patches from Meadow.
Geoff Voelker <voelker@cs.washington.edu>
parents:
24141
diff
changeset
|
564 pcb = get_bitmap_with_cache(fontp, index); |
541ff963ba80
Merged patches from Meadow.
Geoff Voelker <voelker@cs.washington.edu>
parents:
24141
diff
changeset
|
565 if (!pcb) |
24141 | 566 { |
567 if (horgobj) | |
568 { | |
569 SelectObject(hCompatDC, horgobj); | |
570 DeleteObject(hBMP); | |
571 } | |
572 DeleteDC(hCompatDC); | |
573 return 0; | |
574 } | |
24496
541ff963ba80
Merged patches from Meadow.
Geoff Voelker <voelker@cs.washington.edu>
parents:
24141
diff
changeset
|
575 hBMP = pcb->hbmp; |
541ff963ba80
Merged patches from Meadow.
Geoff Voelker <voelker@cs.washington.edu>
parents:
24141
diff
changeset
|
576 |
24141 | 577 if (textalign & TA_BASELINE) |
24496
541ff963ba80
Merged patches from Meadow.
Geoff Voelker <voelker@cs.washington.edu>
parents:
24141
diff
changeset
|
578 btop = top - (pcb->metric.bbh + pcb->metric.bboy); |
24141 | 579 else if (textalign & TA_BOTTOM) |
24496
541ff963ba80
Merged patches from Meadow.
Geoff Voelker <voelker@cs.washington.edu>
parents:
24141
diff
changeset
|
580 btop = top - pcb->metric.bbh; |
24141 | 581 else |
582 btop = top; | |
583 | |
584 if (horgobj) | |
585 SelectObject(hCompatDC, hBMP); | |
586 else | |
587 horgobj = SelectObject(hCompatDC, hBMP); | |
588 #if 0 | |
24496
541ff963ba80
Merged patches from Meadow.
Geoff Voelker <voelker@cs.washington.edu>
parents:
24141
diff
changeset
|
589 BitBlt(hdc, left, btop, pcb->metric.bbw, pcb->metric.bbh, hCompatDC, 0, 0, SRCCOPY); |
24141 | 590 #else |
24496
541ff963ba80
Merged patches from Meadow.
Geoff Voelker <voelker@cs.washington.edu>
parents:
24141
diff
changeset
|
591 BitBlt(hdc, left, btop, pcb->metric.bbw, pcb->metric.bbh, hCompatDC, 0, 0, 0xB8074A); |
24141 | 592 #endif |
593 if (fixed_pitch_size) | |
594 left += fixed_pitch_size; | |
595 else | |
24496
541ff963ba80
Merged patches from Meadow.
Geoff Voelker <voelker@cs.washington.edu>
parents:
24141
diff
changeset
|
596 left += pcb->metric.dwidth; |
24141 | 597 } |
598 SelectObject(hCompatDC, horgobj); | |
599 SelectObject(hdc, hOrgBrush); | |
600 DeleteObject(hFgBrush); | |
601 DeleteDC(hCompatDC); | |
602 RestoreDC(hdc, -1); | |
603 | |
604 return 1; | |
605 } | |
606 | |
607 struct font_info *w32_load_bdf_font (struct frame *f, char *fontname, | |
608 int size, char* filename) | |
609 { | |
610 struct w32_display_info *dpyinfo = FRAME_W32_DISPLAY_INFO (f); | |
611 struct font_info *fontp; | |
612 XFontStruct *font; | |
613 bdffont* bdf_font; | |
614 | |
615 bdf_font = w32_init_bdf_font (filename); | |
616 | |
617 if (!bdf_font) return NULL; | |
618 | |
619 font = (XFontStruct *) xmalloc (sizeof (XFontStruct)); | |
620 | |
621 font->bdf = bdf_font; | |
622 font->hfont = 0; | |
623 | |
624 /* Do we need to create the table? */ | |
625 if (dpyinfo->font_table_size == 0) | |
626 { | |
627 dpyinfo->font_table_size = 16; | |
628 dpyinfo->font_table | |
629 = (struct font_info *) xmalloc (dpyinfo->font_table_size | |
630 * sizeof (struct font_info)); | |
631 } | |
632 /* Do we need to grow the table? */ | |
633 else if (dpyinfo->n_fonts | |
634 >= dpyinfo->font_table_size) | |
635 { | |
636 dpyinfo->font_table_size *= 2; | |
637 dpyinfo->font_table | |
638 = (struct font_info *) xrealloc (dpyinfo->font_table, | |
639 (dpyinfo->font_table_size | |
640 * sizeof (struct font_info))); | |
641 } | |
642 | |
643 fontp = dpyinfo->font_table + dpyinfo->n_fonts; | |
644 | |
645 /* Now fill in the slots of *FONTP. */ | |
646 BLOCK_INPUT; | |
647 fontp->font = font; | |
648 fontp->font_idx = dpyinfo->n_fonts; | |
649 fontp->name = (char *) xmalloc (strlen (fontname) + 1); | |
650 bcopy (fontname, fontp->name, strlen (fontname) + 1); | |
651 fontp->full_name = fontp->name; | |
652 fontp->size = FONT_WIDTH (font); | |
653 fontp->height = FONT_HEIGHT (font); | |
654 | |
655 /* The slot `encoding' specifies how to map a character | |
656 code-points (0x20..0x7F or 0x2020..0x7F7F) of each charset to | |
657 the font code-points (0:0x20..0x7F, 1:0xA0..0xFF, 0:0x2020..0x7F7F, | |
658 the font code-points (0:0x20..0x7F, 1:0xA0..0xFF, | |
659 0:0x2020..0x7F7F, 1:0xA0A0..0xFFFF, 3:0x20A0..0x7FFF, or | |
660 2:0xA020..0xFF7F). For the moment, we don't know which charset | |
661 uses this font. So, we set informatoin in fontp->encoding[1] | |
662 which is never used by any charset. If mapping can't be | |
663 decided, set FONT_ENCODING_NOT_DECIDED. */ | |
664 fontp->encoding[1] = FONT_ENCODING_NOT_DECIDED; | |
665 fontp->baseline_offset = bdf_font->yoffset; | |
666 fontp->relative_compose = bdf_font->relative_compose; | |
667 fontp->default_ascent = bdf_font->default_ascent; | |
668 | |
669 UNBLOCK_INPUT; | |
670 dpyinfo->n_fonts++; | |
671 return fontp; | |
672 } | |
673 | |
674 /* Check a file for an XFLD string describing it. */ | |
675 int w32_BDF_to_x_font (char *file, char* xstr, int len) | |
676 { | |
677 HANDLE hfile, hfilemap; | |
678 BY_HANDLE_FILE_INFORMATION fileinfo; | |
679 unsigned char *font, *start, *p, *q; | |
680 int flag, size, retval = 0; | |
681 | |
682 hfile = CreateFile (file, GENERIC_READ, FILE_SHARE_READ, NULL, | |
683 OPEN_EXISTING, FILE_ATTRIBUTE_NORMAL, NULL); | |
684 if (hfile == INVALID_HANDLE_VALUE) return 0; | |
685 if (!GetFileInformationByHandle(hfile, &fileinfo) || | |
686 (fileinfo.nFileSizeHigh != 0) || | |
687 (fileinfo.nFileSizeLow > BDF_FILE_SIZE_MAX)) | |
688 { | |
689 CloseHandle (hfile); | |
690 return 0; | |
691 } | |
692 size = fileinfo.nFileSizeLow; | |
693 | |
694 hfilemap = CreateFileMapping (hfile, NULL, PAGE_READONLY, 0, 0, NULL); | |
695 if (hfilemap == INVALID_HANDLE_VALUE) | |
696 { | |
697 CloseHandle (hfile); | |
698 return 0; | |
699 } | |
700 | |
701 font = MapViewOfFile (hfilemap, FILE_MAP_READ, 0, 0, 0); | |
702 if (!font) | |
703 { | |
704 CloseHandle (hfile); | |
705 CloseHandle (hfilemap); | |
706 return 0; | |
707 } | |
708 start = font; | |
709 | |
710 flag = proceed_file_line ("FONT ", start, &size, &p, &q); | |
711 if (flag) | |
712 { | |
713 /* If font provides a description of itself, check it is a | |
714 full XLFD before accepting it. */ | |
715 int count = 0; | |
716 char *s; | |
717 | |
718 for (s = p; s < q; s++) | |
719 if (*s == '\n') | |
720 break; | |
721 else if (*s == '-') | |
722 count++; | |
723 if (count == 14 && q - p - 1 <= len) | |
724 { | |
725 strncpy (xstr, p, q-p-1); | |
726 xstr[q-p-1] = '\0'; | |
727 /* Files may have DOS line ends (ie still ^M on end). */ | |
728 if (iscntrl(xstr[q-p-2])) | |
729 xstr[q-p-2] = '\0'; | |
730 | |
731 retval = 1; | |
732 } | |
733 } | |
734 CloseHandle (hfile); | |
735 CloseHandle (hfilemap); | |
736 return retval; | |
737 } |