Mercurial > emacs
annotate src/w32bdf.c @ 37678:ebec0594dece
(compile-files): Redirect output of chmod to
/dev/null.
| author | Gerd Moellmann <gerd@gnu.org> |
|---|---|
| date | Fri, 11 May 2001 10:53:56 +0000 |
| parents | dd533a188c51 |
| children | bc25122cbfe4 |
| 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" | |
|
28271
f6a8927824c9
Include frame.h and dispextern.h before fontset.h.
Jason Rumney <jasonr@gnu.org>
parents:
24841
diff
changeset
|
28 #include "frame.h" |
|
f6a8927824c9
Include frame.h and dispextern.h before fontset.h.
Jason Rumney <jasonr@gnu.org>
parents:
24841
diff
changeset
|
29 #include "dispextern.h" |
| 24141 | 30 #include "fontset.h" |
| 31 #include "blockinput.h" | |
| 32 #include "w32gui.h" | |
| 33 #include "w32term.h" | |
| 34 #include "w32bdf.h" | |
| 35 | |
| 36 #define min(a, b) ((a) < (b) ? (a) : (b)) | |
| 37 #define max(a, b) ((a) > (b) ? (a) : (b)) | |
| 38 | |
|
32024
a0ba404b97a5
(search_file_line): Fix skipping of whitespace.
Jason Rumney <jasonr@gnu.org>
parents:
31108
diff
changeset
|
39 /* 10 planes */ |
|
a0ba404b97a5
(search_file_line): Fix skipping of whitespace.
Jason Rumney <jasonr@gnu.org>
parents:
31108
diff
changeset
|
40 #define BDF_CODEPOINT_HEAP_INITIAL_SIZE (96 * 10) |
|
a0ba404b97a5
(search_file_line): Fix skipping of whitespace.
Jason Rumney <jasonr@gnu.org>
parents:
31108
diff
changeset
|
41 /* about 96 characters */ |
|
a0ba404b97a5
(search_file_line): Fix skipping of whitespace.
Jason Rumney <jasonr@gnu.org>
parents:
31108
diff
changeset
|
42 #define BDF_BITMAP_HEAP_INITIAL_SIZE (64 * 96) |
|
a0ba404b97a5
(search_file_line): Fix skipping of whitespace.
Jason Rumney <jasonr@gnu.org>
parents:
31108
diff
changeset
|
43 |
|
a0ba404b97a5
(search_file_line): Fix skipping of whitespace.
Jason Rumney <jasonr@gnu.org>
parents:
31108
diff
changeset
|
44 HANDLE hbdf_cp_heap = INVALID_HANDLE_VALUE; |
|
a0ba404b97a5
(search_file_line): Fix skipping of whitespace.
Jason Rumney <jasonr@gnu.org>
parents:
31108
diff
changeset
|
45 HANDLE hbdf_bmp_heap = INVALID_HANDLE_VALUE; |
|
24841
d2d412758428
(clear_cached_bitmap_slots): Remove.
Jason Rumney <jasonr@gnu.org>
parents:
24496
diff
changeset
|
46 |
| 24141 | 47 void w32_free_bdf_font(bdffont *fontp); |
| 48 bdffont *w32_init_bdf_font(char *filename); | |
| 49 | |
|
32024
a0ba404b97a5
(search_file_line): Fix skipping of whitespace.
Jason Rumney <jasonr@gnu.org>
parents:
31108
diff
changeset
|
50 cache_bitmap cached_bitmap_slots[BDF_FONT_CACHE_SIZE]; |
|
a0ba404b97a5
(search_file_line): Fix skipping of whitespace.
Jason Rumney <jasonr@gnu.org>
parents:
31108
diff
changeset
|
51 cache_bitmap *pcached_bitmap_latest = cached_bitmap_slots; |
|
a0ba404b97a5
(search_file_line): Fix skipping of whitespace.
Jason Rumney <jasonr@gnu.org>
parents:
31108
diff
changeset
|
52 |
|
a0ba404b97a5
(search_file_line): Fix skipping of whitespace.
Jason Rumney <jasonr@gnu.org>
parents:
31108
diff
changeset
|
53 #define FONT_CACHE_SLOT_OVER_P(p) ((p) >= cached_bitmap_slots + BDF_FONT_CACHE_SIZE) |
|
a0ba404b97a5
(search_file_line): Fix skipping of whitespace.
Jason Rumney <jasonr@gnu.org>
parents:
31108
diff
changeset
|
54 |
| 24141 | 55 static int |
| 56 search_file_line(char *key, char *start, int len, char **val, char **next) | |
| 57 { | |
|
35285
dd533a188c51
(search_file_line, get_cached_font_char)
Jason Rumney <jasonr@gnu.org>
parents:
34777
diff
changeset
|
58 unsigned int linelen; |
|
dd533a188c51
(search_file_line, get_cached_font_char)
Jason Rumney <jasonr@gnu.org>
parents:
34777
diff
changeset
|
59 unsigned char *p; |
| 24141 | 60 |
| 61 p = memchr(start, '\n', len); | |
| 62 if (!p) return -1; | |
| 63 for (;start < p;start++) | |
| 64 { | |
|
32024
a0ba404b97a5
(search_file_line): Fix skipping of whitespace.
Jason Rumney <jasonr@gnu.org>
parents:
31108
diff
changeset
|
65 if ((*start != ' ') && (*start != '\t')) break; |
| 24141 | 66 } |
|
32722
6385ffa62dd5
(w32_load_bdf_font): Call w32_cache_char_metrics.
Andrew Innes <andrewi@gnu.org>
parents:
32024
diff
changeset
|
67 linelen = (char *) p - start + 1; |
| 24141 | 68 *next = p + 1; |
| 69 if (strncmp(start, key, min(strlen(key), linelen)) == 0) | |
| 70 { | |
| 71 *val = start + strlen(key); | |
| 72 return 1; | |
| 73 } | |
| 74 | |
| 75 return 0; | |
| 76 } | |
| 77 | |
| 78 static int | |
| 79 proceed_file_line(char *key, char *start, int *len, char **val, char **next) | |
| 80 { | |
| 81 int flag = 0; | |
| 82 | |
| 83 do { | |
| 84 flag = search_file_line(key, start, *len, val, next); | |
| 85 *len -= (int)(*next - start); | |
| 86 start = *next; | |
| 87 }while(flag == 0); | |
| 88 | |
| 89 if (flag == -1) return 0; | |
| 90 return 1; | |
| 91 } | |
|
32024
a0ba404b97a5
(search_file_line): Fix skipping of whitespace.
Jason Rumney <jasonr@gnu.org>
parents:
31108
diff
changeset
|
92 |
|
24496
541ff963ba80
Merged patches from Meadow.
Geoff Voelker <voelker@cs.washington.edu>
parents:
24141
diff
changeset
|
93 char* |
|
541ff963ba80
Merged patches from Meadow.
Geoff Voelker <voelker@cs.washington.edu>
parents:
24141
diff
changeset
|
94 get_quoted_string(char *start, char *end) |
|
541ff963ba80
Merged patches from Meadow.
Geoff Voelker <voelker@cs.washington.edu>
parents:
24141
diff
changeset
|
95 { |
|
541ff963ba80
Merged patches from Meadow.
Geoff Voelker <voelker@cs.washington.edu>
parents:
24141
diff
changeset
|
96 char *p, *q, *result; |
|
541ff963ba80
Merged patches from Meadow.
Geoff Voelker <voelker@cs.washington.edu>
parents:
24141
diff
changeset
|
97 |
|
541ff963ba80
Merged patches from Meadow.
Geoff Voelker <voelker@cs.washington.edu>
parents:
24141
diff
changeset
|
98 p = memchr(start, '\"', end - start); |
|
541ff963ba80
Merged patches from Meadow.
Geoff Voelker <voelker@cs.washington.edu>
parents:
24141
diff
changeset
|
99 if (!p) return NULL; |
|
541ff963ba80
Merged patches from Meadow.
Geoff Voelker <voelker@cs.washington.edu>
parents:
24141
diff
changeset
|
100 p++; |
|
32024
a0ba404b97a5
(search_file_line): Fix skipping of whitespace.
Jason Rumney <jasonr@gnu.org>
parents:
31108
diff
changeset
|
101 q = memchr(p, '\"', end - p); |
|
24496
541ff963ba80
Merged patches from Meadow.
Geoff Voelker <voelker@cs.washington.edu>
parents:
24141
diff
changeset
|
102 if (!q) return NULL; |
|
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 result = (char*) xmalloc(q - p + 1); |
|
541ff963ba80
Merged patches from Meadow.
Geoff Voelker <voelker@cs.washington.edu>
parents:
24141
diff
changeset
|
105 |
|
541ff963ba80
Merged patches from Meadow.
Geoff Voelker <voelker@cs.washington.edu>
parents:
24141
diff
changeset
|
106 memcpy(result, p, q - p); |
|
541ff963ba80
Merged patches from Meadow.
Geoff Voelker <voelker@cs.washington.edu>
parents:
24141
diff
changeset
|
107 result[q - p] = '\0'; |
|
541ff963ba80
Merged patches from Meadow.
Geoff Voelker <voelker@cs.washington.edu>
parents:
24141
diff
changeset
|
108 |
|
541ff963ba80
Merged patches from Meadow.
Geoff Voelker <voelker@cs.washington.edu>
parents:
24141
diff
changeset
|
109 return result; |
|
541ff963ba80
Merged patches from Meadow.
Geoff Voelker <voelker@cs.washington.edu>
parents:
24141
diff
changeset
|
110 } |
|
541ff963ba80
Merged patches from Meadow.
Geoff Voelker <voelker@cs.washington.edu>
parents:
24141
diff
changeset
|
111 |
| 24141 | 112 static int |
| 113 set_bdf_font_info(bdffont *fontp) | |
| 114 { | |
|
32024
a0ba404b97a5
(search_file_line): Fix skipping of whitespace.
Jason Rumney <jasonr@gnu.org>
parents:
31108
diff
changeset
|
115 unsigned char *start, *p, *q; |
| 24141 | 116 int len, flag; |
| 117 int bbw, bbh, bbx, bby; | |
| 118 int val1; | |
| 119 | |
| 120 len = fontp->size; | |
| 121 start = fontp->font; | |
| 122 | |
| 123 fontp->yoffset = 0; | |
| 124 fontp->relative_compose = 0; | |
| 125 fontp->default_ascent = 0; | |
|
32024
a0ba404b97a5
(search_file_line): Fix skipping of whitespace.
Jason Rumney <jasonr@gnu.org>
parents:
31108
diff
changeset
|
126 |
|
24496
541ff963ba80
Merged patches from Meadow.
Geoff Voelker <voelker@cs.washington.edu>
parents:
24141
diff
changeset
|
127 fontp->registry = NULL; |
|
541ff963ba80
Merged patches from Meadow.
Geoff Voelker <voelker@cs.washington.edu>
parents:
24141
diff
changeset
|
128 fontp->encoding = NULL; |
|
541ff963ba80
Merged patches from Meadow.
Geoff Voelker <voelker@cs.washington.edu>
parents:
24141
diff
changeset
|
129 fontp->slant = NULL; |
|
541ff963ba80
Merged patches from Meadow.
Geoff Voelker <voelker@cs.washington.edu>
parents:
24141
diff
changeset
|
130 /* fontp->width = NULL; */ |
| 24141 | 131 |
| 132 flag = proceed_file_line("FONTBOUNDINGBOX", start, &len, &p, &q); | |
| 133 if (!flag) return 0; | |
| 134 bbw = strtol(p, &start, 10); | |
| 135 p = start; | |
| 136 bbh = strtol(p, &start, 10); | |
| 137 p = start; | |
| 138 bbx = strtol(p, &start, 10); | |
| 139 p = start; | |
| 140 bby = strtol(p, &start, 10); | |
| 141 | |
| 142 fontp->llx = bbx; | |
| 143 fontp->lly = bby; | |
| 144 fontp->urx = bbw + bbx; | |
| 145 fontp->ury = bbh + bby; | |
| 146 fontp->width = bbw; | |
| 147 fontp->height = bbh; | |
| 148 start = q; | |
| 149 flag = proceed_file_line("STARTPROPERTIES", start, &len, &p, &q); | |
| 150 if (!flag) return 1; | |
| 151 | |
|
24496
541ff963ba80
Merged patches from Meadow.
Geoff Voelker <voelker@cs.washington.edu>
parents:
24141
diff
changeset
|
152 flag = 0; |
|
541ff963ba80
Merged patches from Meadow.
Geoff Voelker <voelker@cs.washington.edu>
parents:
24141
diff
changeset
|
153 |
| 24141 | 154 do { |
| 155 start = q; | |
| 156 if (search_file_line("PIXEL_SIZE", start, len, &p, &q) == 1) | |
| 157 { | |
| 158 val1 = atoi(p); | |
| 159 fontp->pixsz = val1; | |
| 160 } | |
| 161 else if (search_file_line("FONT_ASCENT", start, len, &p, &q) == 1) | |
| 162 { | |
| 163 val1 = atoi(p); | |
| 164 fontp->ury = val1; | |
| 165 } | |
| 166 else if (search_file_line("FONT_DESCENT", start, len, &p, &q) == 1) | |
| 167 { | |
| 168 val1 = atoi(p); | |
| 169 fontp->lly = -val1; | |
| 170 } | |
| 171 else if (search_file_line("_MULE_BASELINE_OFFSET", start, len, &p, &q) == 1) | |
| 172 { | |
| 173 val1 = atoi(p); | |
|
32024
a0ba404b97a5
(search_file_line): Fix skipping of whitespace.
Jason Rumney <jasonr@gnu.org>
parents:
31108
diff
changeset
|
174 fontp->yoffset = -val1; |
| 24141 | 175 } |
| 176 else if (search_file_line("_MULE_RELATIVE_COMPOSE", start, len, &p, &q) == 1) | |
| 177 { | |
| 178 val1 = atoi(p); | |
| 179 fontp->relative_compose = val1; | |
| 180 } | |
| 181 else if (search_file_line("_MULE_DEFAULT_ASCENT", start, len, &p, &q) == 1) | |
| 182 { | |
| 183 val1 = atoi(p); | |
| 184 fontp->default_ascent = val1; | |
| 185 } | |
|
24496
541ff963ba80
Merged patches from Meadow.
Geoff Voelker <voelker@cs.washington.edu>
parents:
24141
diff
changeset
|
186 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
|
187 { |
|
541ff963ba80
Merged patches from Meadow.
Geoff Voelker <voelker@cs.washington.edu>
parents:
24141
diff
changeset
|
188 fontp->registry = 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 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
|
191 { |
|
541ff963ba80
Merged patches from Meadow.
Geoff Voelker <voelker@cs.washington.edu>
parents:
24141
diff
changeset
|
192 fontp->encoding = get_quoted_string(p, q); |
|
541ff963ba80
Merged patches from Meadow.
Geoff Voelker <voelker@cs.washington.edu>
parents:
24141
diff
changeset
|
193 } |
|
541ff963ba80
Merged patches from Meadow.
Geoff Voelker <voelker@cs.washington.edu>
parents:
24141
diff
changeset
|
194 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
|
195 { |
|
541ff963ba80
Merged patches from Meadow.
Geoff Voelker <voelker@cs.washington.edu>
parents:
24141
diff
changeset
|
196 fontp->slant = get_quoted_string(p, q); |
|
541ff963ba80
Merged patches from Meadow.
Geoff Voelker <voelker@cs.washington.edu>
parents:
24141
diff
changeset
|
197 } |
|
541ff963ba80
Merged patches from Meadow.
Geoff Voelker <voelker@cs.washington.edu>
parents:
24141
diff
changeset
|
198 /* |
|
541ff963ba80
Merged patches from Meadow.
Geoff Voelker <voelker@cs.washington.edu>
parents:
24141
diff
changeset
|
199 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
|
200 { |
|
541ff963ba80
Merged patches from Meadow.
Geoff Voelker <voelker@cs.washington.edu>
parents:
24141
diff
changeset
|
201 fontp->width = get_quoted_string(p, q); |
|
541ff963ba80
Merged patches from Meadow.
Geoff Voelker <voelker@cs.washington.edu>
parents:
24141
diff
changeset
|
202 } |
|
541ff963ba80
Merged patches from Meadow.
Geoff Voelker <voelker@cs.washington.edu>
parents:
24141
diff
changeset
|
203 */ |
| 24141 | 204 else |
| 205 { | |
| 206 flag = search_file_line("ENDPROPERTIES", start, len, &p, &q); | |
| 207 } | |
| 208 if (flag == -1) return 0; | |
| 209 len -= (q - start); | |
| 210 }while(flag == 0); | |
| 211 start = q; | |
| 212 flag = proceed_file_line("CHARS", start, &len, &p, &q); | |
| 213 if (!flag) return 0; | |
|
33038
5a1e3282fe2e
(set_bdf_font_info): Set it.
Jason Rumney <jasonr@gnu.org>
parents:
32722
diff
changeset
|
214 fontp->nchars = atoi(p); |
| 24141 | 215 fontp->seeked = q; |
| 216 | |
| 217 return 1; | |
| 218 } | |
| 219 | |
| 220 bdffont* | |
| 221 w32_init_bdf_font(char *filename) | |
| 222 { | |
| 223 HANDLE hfile, hfilemap; | |
| 224 bdffont *bdffontp; | |
| 225 unsigned char *font; | |
| 226 BY_HANDLE_FILE_INFORMATION fileinfo; | |
| 227 int i; | |
| 228 | |
|
32024
a0ba404b97a5
(search_file_line): Fix skipping of whitespace.
Jason Rumney <jasonr@gnu.org>
parents:
31108
diff
changeset
|
229 if (hbdf_cp_heap == INVALID_HANDLE_VALUE) |
|
a0ba404b97a5
(search_file_line): Fix skipping of whitespace.
Jason Rumney <jasonr@gnu.org>
parents:
31108
diff
changeset
|
230 hbdf_cp_heap = HeapCreate(0, BDF_CODEPOINT_HEAP_INITIAL_SIZE, 0); |
|
34777
3b4361fc6ae3
(w32_init_bdf_font): Fix test for valid bmp heap.
Jason Rumney <jasonr@gnu.org>
parents:
33038
diff
changeset
|
231 if (hbdf_bmp_heap == INVALID_HANDLE_VALUE) |
|
32024
a0ba404b97a5
(search_file_line): Fix skipping of whitespace.
Jason Rumney <jasonr@gnu.org>
parents:
31108
diff
changeset
|
232 hbdf_bmp_heap = HeapCreate(0, BDF_BITMAP_HEAP_INITIAL_SIZE, 0); |
|
a0ba404b97a5
(search_file_line): Fix skipping of whitespace.
Jason Rumney <jasonr@gnu.org>
parents:
31108
diff
changeset
|
233 |
|
a0ba404b97a5
(search_file_line): Fix skipping of whitespace.
Jason Rumney <jasonr@gnu.org>
parents:
31108
diff
changeset
|
234 if (!hbdf_cp_heap || !hbdf_bmp_heap) |
|
a0ba404b97a5
(search_file_line): Fix skipping of whitespace.
Jason Rumney <jasonr@gnu.org>
parents:
31108
diff
changeset
|
235 error("Fail to create heap for BDF."); |
|
a0ba404b97a5
(search_file_line): Fix skipping of whitespace.
Jason Rumney <jasonr@gnu.org>
parents:
31108
diff
changeset
|
236 |
| 24141 | 237 hfile = CreateFile(filename, GENERIC_READ, FILE_SHARE_READ, NULL, |
| 238 OPEN_EXISTING, FILE_ATTRIBUTE_NORMAL, NULL); | |
| 239 if (hfile == INVALID_HANDLE_VALUE) return NULL; | |
| 240 if (!GetFileInformationByHandle(hfile, &fileinfo) || | |
| 241 (fileinfo.nFileSizeHigh != 0) || | |
| 242 (fileinfo.nFileSizeLow > BDF_FILE_SIZE_MAX)) | |
| 243 { | |
| 244 CloseHandle(hfile); | |
| 245 error("Fail to open BDF file."); | |
| 246 } | |
| 247 hfilemap = CreateFileMapping(hfile, NULL, PAGE_READONLY, 0, 0, NULL); | |
| 248 if (hfilemap == INVALID_HANDLE_VALUE) | |
| 249 { | |
| 250 CloseHandle(hfile); | |
| 251 error("Can't map font."); | |
| 252 } | |
| 253 | |
| 254 font = MapViewOfFile(hfilemap, FILE_MAP_READ, 0, 0, 0); | |
| 255 | |
| 256 if (!font) | |
| 257 { | |
| 258 CloseHandle(hfile); | |
| 259 CloseHandle(hfilemap); | |
| 260 error("Can't view font."); | |
| 261 } | |
| 262 | |
| 263 bdffontp = (bdffont *) xmalloc(sizeof(bdffont)); | |
| 264 | |
| 265 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
|
266 bdffontp->chtbl[i] = NULL; |
| 24141 | 267 bdffontp->size = fileinfo.nFileSizeLow; |
| 268 bdffontp->font = font; | |
| 269 bdffontp->hfile = hfile; | |
| 270 bdffontp->hfilemap = hfilemap; | |
| 271 bdffontp->filename = (char*) xmalloc(strlen(filename) + 1); | |
| 272 strcpy(bdffontp->filename, filename); | |
| 273 | |
| 274 if (!set_bdf_font_info(bdffontp)) | |
| 275 { | |
| 276 w32_free_bdf_font(bdffontp); | |
| 277 error("Invalid BDF font!"); | |
| 278 } | |
| 279 return bdffontp; | |
| 280 } | |
| 281 | |
| 282 void | |
| 283 w32_free_bdf_font(bdffont *fontp) | |
| 284 { | |
|
24496
541ff963ba80
Merged patches from Meadow.
Geoff Voelker <voelker@cs.washington.edu>
parents:
24141
diff
changeset
|
285 int i, j; |
|
541ff963ba80
Merged patches from Meadow.
Geoff Voelker <voelker@cs.washington.edu>
parents:
24141
diff
changeset
|
286 font_char *pch; |
|
541ff963ba80
Merged patches from Meadow.
Geoff Voelker <voelker@cs.washington.edu>
parents:
24141
diff
changeset
|
287 cache_bitmap *pcb; |
| 24141 | 288 |
| 289 UnmapViewOfFile(fontp->hfilemap); | |
| 290 CloseHandle(fontp->hfilemap); | |
| 291 CloseHandle(fontp->hfile); | |
|
24496
541ff963ba80
Merged patches from Meadow.
Geoff Voelker <voelker@cs.washington.edu>
parents:
24141
diff
changeset
|
292 |
|
541ff963ba80
Merged patches from Meadow.
Geoff Voelker <voelker@cs.washington.edu>
parents:
24141
diff
changeset
|
293 if (fontp->registry) xfree(fontp->registry); |
|
541ff963ba80
Merged patches from Meadow.
Geoff Voelker <voelker@cs.washington.edu>
parents:
24141
diff
changeset
|
294 if (fontp->encoding) xfree(fontp->encoding); |
|
541ff963ba80
Merged patches from Meadow.
Geoff Voelker <voelker@cs.washington.edu>
parents:
24141
diff
changeset
|
295 if (fontp->slant) xfree(fontp->slant); |
|
541ff963ba80
Merged patches from Meadow.
Geoff Voelker <voelker@cs.washington.edu>
parents:
24141
diff
changeset
|
296 /* if (fontp->width) xfree(fontp->width); */ |
|
541ff963ba80
Merged patches from Meadow.
Geoff Voelker <voelker@cs.washington.edu>
parents:
24141
diff
changeset
|
297 |
| 24141 | 298 xfree(fontp->filename); |
| 299 for(i = 0;i < BDF_FIRST_OFFSET_TABLE;i++) | |
| 300 { | |
|
24496
541ff963ba80
Merged patches from Meadow.
Geoff Voelker <voelker@cs.washington.edu>
parents:
24141
diff
changeset
|
301 pch = fontp->chtbl[i]; |
|
541ff963ba80
Merged patches from Meadow.
Geoff Voelker <voelker@cs.washington.edu>
parents:
24141
diff
changeset
|
302 if (pch) |
|
541ff963ba80
Merged patches from Meadow.
Geoff Voelker <voelker@cs.washington.edu>
parents:
24141
diff
changeset
|
303 { |
|
541ff963ba80
Merged patches from Meadow.
Geoff Voelker <voelker@cs.washington.edu>
parents:
24141
diff
changeset
|
304 for (j = 0;j < BDF_SECOND_OFFSET_TABLE;j++) |
|
541ff963ba80
Merged patches from Meadow.
Geoff Voelker <voelker@cs.washington.edu>
parents:
24141
diff
changeset
|
305 { |
|
541ff963ba80
Merged patches from Meadow.
Geoff Voelker <voelker@cs.washington.edu>
parents:
24141
diff
changeset
|
306 pcb = pch[j].pcbmp; |
|
32024
a0ba404b97a5
(search_file_line): Fix skipping of whitespace.
Jason Rumney <jasonr@gnu.org>
parents:
31108
diff
changeset
|
307 if (pcb) |
|
a0ba404b97a5
(search_file_line): Fix skipping of whitespace.
Jason Rumney <jasonr@gnu.org>
parents:
31108
diff
changeset
|
308 { |
|
a0ba404b97a5
(search_file_line): Fix skipping of whitespace.
Jason Rumney <jasonr@gnu.org>
parents:
31108
diff
changeset
|
309 if (pcb->pbmp) |
|
a0ba404b97a5
(search_file_line): Fix skipping of whitespace.
Jason Rumney <jasonr@gnu.org>
parents:
31108
diff
changeset
|
310 HeapFree(hbdf_bmp_heap, 0, pcb->pbmp); |
|
a0ba404b97a5
(search_file_line): Fix skipping of whitespace.
Jason Rumney <jasonr@gnu.org>
parents:
31108
diff
changeset
|
311 pcb->psrc = NULL; |
|
24496
541ff963ba80
Merged patches from Meadow.
Geoff Voelker <voelker@cs.washington.edu>
parents:
24141
diff
changeset
|
312 } |
|
32024
a0ba404b97a5
(search_file_line): Fix skipping of whitespace.
Jason Rumney <jasonr@gnu.org>
parents:
31108
diff
changeset
|
313 } |
|
a0ba404b97a5
(search_file_line): Fix skipping of whitespace.
Jason Rumney <jasonr@gnu.org>
parents:
31108
diff
changeset
|
314 HeapFree(hbdf_cp_heap, 0, pch); |
|
24496
541ff963ba80
Merged patches from Meadow.
Geoff Voelker <voelker@cs.washington.edu>
parents:
24141
diff
changeset
|
315 } |
| 24141 | 316 } |
| 317 xfree(fontp); | |
| 318 } | |
| 319 | |
|
24496
541ff963ba80
Merged patches from Meadow.
Geoff Voelker <voelker@cs.washington.edu>
parents:
24141
diff
changeset
|
320 static font_char* |
|
541ff963ba80
Merged patches from Meadow.
Geoff Voelker <voelker@cs.washington.edu>
parents:
24141
diff
changeset
|
321 get_cached_font_char(bdffont *fontp, int index) |
| 24141 | 322 { |
|
24496
541ff963ba80
Merged patches from Meadow.
Geoff Voelker <voelker@cs.washington.edu>
parents:
24141
diff
changeset
|
323 font_char *pch, *result; |
| 24141 | 324 |
|
32024
a0ba404b97a5
(search_file_line): Fix skipping of whitespace.
Jason Rumney <jasonr@gnu.org>
parents:
31108
diff
changeset
|
325 if (!BDF_CODEPOINT_RANGE_COVER_P(index)) |
| 24141 | 326 return NULL; |
| 327 | |
|
24496
541ff963ba80
Merged patches from Meadow.
Geoff Voelker <voelker@cs.washington.edu>
parents:
24141
diff
changeset
|
328 pch = fontp->chtbl[BDF_FIRST_OFFSET(index)]; |
|
541ff963ba80
Merged patches from Meadow.
Geoff Voelker <voelker@cs.washington.edu>
parents:
24141
diff
changeset
|
329 if (!pch) |
| 24141 | 330 return NULL; |
|
32024
a0ba404b97a5
(search_file_line): Fix skipping of whitespace.
Jason Rumney <jasonr@gnu.org>
parents:
31108
diff
changeset
|
331 |
|
24496
541ff963ba80
Merged patches from Meadow.
Geoff Voelker <voelker@cs.washington.edu>
parents:
24141
diff
changeset
|
332 result = &pch[BDF_SECOND_OFFSET(index)]; |
| 24141 | 333 |
|
24496
541ff963ba80
Merged patches from Meadow.
Geoff Voelker <voelker@cs.washington.edu>
parents:
24141
diff
changeset
|
334 if (!result->offset) return NULL; |
| 24141 | 335 |
|
24496
541ff963ba80
Merged patches from Meadow.
Geoff Voelker <voelker@cs.washington.edu>
parents:
24141
diff
changeset
|
336 return result; |
| 24141 | 337 } |
| 338 | |
|
24496
541ff963ba80
Merged patches from Meadow.
Geoff Voelker <voelker@cs.washington.edu>
parents:
24141
diff
changeset
|
339 static font_char* |
| 24141 | 340 cache_char_offset(bdffont *fontp, int index, unsigned char *offset) |
| 341 { | |
|
24496
541ff963ba80
Merged patches from Meadow.
Geoff Voelker <voelker@cs.washington.edu>
parents:
24141
diff
changeset
|
342 font_char *pch, *result; |
| 24141 | 343 |
|
32024
a0ba404b97a5
(search_file_line): Fix skipping of whitespace.
Jason Rumney <jasonr@gnu.org>
parents:
31108
diff
changeset
|
344 if (!BDF_CODEPOINT_RANGE_COVER_P(index)) |
|
24496
541ff963ba80
Merged patches from Meadow.
Geoff Voelker <voelker@cs.washington.edu>
parents:
24141
diff
changeset
|
345 return NULL; |
| 24141 | 346 |
|
24496
541ff963ba80
Merged patches from Meadow.
Geoff Voelker <voelker@cs.washington.edu>
parents:
24141
diff
changeset
|
347 pch = fontp->chtbl[BDF_FIRST_OFFSET(index)]; |
|
541ff963ba80
Merged patches from Meadow.
Geoff Voelker <voelker@cs.washington.edu>
parents:
24141
diff
changeset
|
348 if (!pch) |
| 24141 | 349 { |
|
24496
541ff963ba80
Merged patches from Meadow.
Geoff Voelker <voelker@cs.washington.edu>
parents:
24141
diff
changeset
|
350 pch = fontp->chtbl[BDF_FIRST_OFFSET(index)] = |
|
32024
a0ba404b97a5
(search_file_line): Fix skipping of whitespace.
Jason Rumney <jasonr@gnu.org>
parents:
31108
diff
changeset
|
351 (font_char*) HeapAlloc(hbdf_cp_heap, |
|
a0ba404b97a5
(search_file_line): Fix skipping of whitespace.
Jason Rumney <jasonr@gnu.org>
parents:
31108
diff
changeset
|
352 HEAP_ZERO_MEMORY, |
|
a0ba404b97a5
(search_file_line): Fix skipping of whitespace.
Jason Rumney <jasonr@gnu.org>
parents:
31108
diff
changeset
|
353 sizeof(font_char) * |
|
a0ba404b97a5
(search_file_line): Fix skipping of whitespace.
Jason Rumney <jasonr@gnu.org>
parents:
31108
diff
changeset
|
354 BDF_SECOND_OFFSET_TABLE); |
|
a0ba404b97a5
(search_file_line): Fix skipping of whitespace.
Jason Rumney <jasonr@gnu.org>
parents:
31108
diff
changeset
|
355 if (!pch) return NULL; |
|
a0ba404b97a5
(search_file_line): Fix skipping of whitespace.
Jason Rumney <jasonr@gnu.org>
parents:
31108
diff
changeset
|
356 /* memset(pch, 0, sizeof(font_char) * BDF_SECOND_OFFSET_TABLE); */ |
| 24141 | 357 } |
| 358 | |
|
24496
541ff963ba80
Merged patches from Meadow.
Geoff Voelker <voelker@cs.washington.edu>
parents:
24141
diff
changeset
|
359 result = &pch[BDF_SECOND_OFFSET(index)]; |
|
541ff963ba80
Merged patches from Meadow.
Geoff Voelker <voelker@cs.washington.edu>
parents:
24141
diff
changeset
|
360 result->offset = offset; |
|
541ff963ba80
Merged patches from Meadow.
Geoff Voelker <voelker@cs.washington.edu>
parents:
24141
diff
changeset
|
361 |
|
541ff963ba80
Merged patches from Meadow.
Geoff Voelker <voelker@cs.washington.edu>
parents:
24141
diff
changeset
|
362 return result; |
| 24141 | 363 } |
| 364 | |
|
24496
541ff963ba80
Merged patches from Meadow.
Geoff Voelker <voelker@cs.washington.edu>
parents:
24141
diff
changeset
|
365 static font_char* |
|
541ff963ba80
Merged patches from Meadow.
Geoff Voelker <voelker@cs.washington.edu>
parents:
24141
diff
changeset
|
366 seek_char(bdffont *fontp, int index) |
| 24141 | 367 { |
|
24496
541ff963ba80
Merged patches from Meadow.
Geoff Voelker <voelker@cs.washington.edu>
parents:
24141
diff
changeset
|
368 font_char *result; |
| 24141 | 369 int len, flag, font_index; |
|
32024
a0ba404b97a5
(search_file_line): Fix skipping of whitespace.
Jason Rumney <jasonr@gnu.org>
parents:
31108
diff
changeset
|
370 unsigned char *start, *p, *q; |
| 24141 | 371 |
| 372 if (!fontp->seeked) return NULL; | |
| 373 | |
| 374 start = fontp->seeked; | |
| 375 len = fontp->size - (start - fontp->font); | |
| 376 | |
| 377 do { | |
| 378 flag = proceed_file_line("ENCODING", start, &len, &p, &q); | |
| 379 if (!flag) | |
| 380 { | |
| 381 fontp->seeked = NULL; | |
| 382 return NULL; | |
| 383 } | |
| 384 font_index = atoi(p); | |
|
24496
541ff963ba80
Merged patches from Meadow.
Geoff Voelker <voelker@cs.washington.edu>
parents:
24141
diff
changeset
|
385 result = cache_char_offset(fontp, font_index, q); |
|
541ff963ba80
Merged patches from Meadow.
Geoff Voelker <voelker@cs.washington.edu>
parents:
24141
diff
changeset
|
386 if (!result) return NULL; |
|
541ff963ba80
Merged patches from Meadow.
Geoff Voelker <voelker@cs.washington.edu>
parents:
24141
diff
changeset
|
387 |
|
541ff963ba80
Merged patches from Meadow.
Geoff Voelker <voelker@cs.washington.edu>
parents:
24141
diff
changeset
|
388 start = result->offset; |
| 24141 | 389 } while (font_index != index); |
|
24496
541ff963ba80
Merged patches from Meadow.
Geoff Voelker <voelker@cs.washington.edu>
parents:
24141
diff
changeset
|
390 fontp->seeked = start; |
|
541ff963ba80
Merged patches from Meadow.
Geoff Voelker <voelker@cs.washington.edu>
parents:
24141
diff
changeset
|
391 |
|
541ff963ba80
Merged patches from Meadow.
Geoff Voelker <voelker@cs.washington.edu>
parents:
24141
diff
changeset
|
392 return result; |
|
541ff963ba80
Merged patches from Meadow.
Geoff Voelker <voelker@cs.washington.edu>
parents:
24141
diff
changeset
|
393 } |
|
541ff963ba80
Merged patches from Meadow.
Geoff Voelker <voelker@cs.washington.edu>
parents:
24141
diff
changeset
|
394 |
|
32024
a0ba404b97a5
(search_file_line): Fix skipping of whitespace.
Jason Rumney <jasonr@gnu.org>
parents:
31108
diff
changeset
|
395 static void |
|
a0ba404b97a5
(search_file_line): Fix skipping of whitespace.
Jason Rumney <jasonr@gnu.org>
parents:
31108
diff
changeset
|
396 clear_cached_bitmap_slots() |
|
a0ba404b97a5
(search_file_line): Fix skipping of whitespace.
Jason Rumney <jasonr@gnu.org>
parents:
31108
diff
changeset
|
397 { |
|
a0ba404b97a5
(search_file_line): Fix skipping of whitespace.
Jason Rumney <jasonr@gnu.org>
parents:
31108
diff
changeset
|
398 int i; |
|
a0ba404b97a5
(search_file_line): Fix skipping of whitespace.
Jason Rumney <jasonr@gnu.org>
parents:
31108
diff
changeset
|
399 cache_bitmap *p; |
|
a0ba404b97a5
(search_file_line): Fix skipping of whitespace.
Jason Rumney <jasonr@gnu.org>
parents:
31108
diff
changeset
|
400 |
|
a0ba404b97a5
(search_file_line): Fix skipping of whitespace.
Jason Rumney <jasonr@gnu.org>
parents:
31108
diff
changeset
|
401 p = pcached_bitmap_latest; |
|
a0ba404b97a5
(search_file_line): Fix skipping of whitespace.
Jason Rumney <jasonr@gnu.org>
parents:
31108
diff
changeset
|
402 for (i = 0;i < BDF_FONT_CLEAR_SIZE;i++) |
|
a0ba404b97a5
(search_file_line): Fix skipping of whitespace.
Jason Rumney <jasonr@gnu.org>
parents:
31108
diff
changeset
|
403 { |
|
a0ba404b97a5
(search_file_line): Fix skipping of whitespace.
Jason Rumney <jasonr@gnu.org>
parents:
31108
diff
changeset
|
404 if (p->psrc) |
|
a0ba404b97a5
(search_file_line): Fix skipping of whitespace.
Jason Rumney <jasonr@gnu.org>
parents:
31108
diff
changeset
|
405 { |
|
a0ba404b97a5
(search_file_line): Fix skipping of whitespace.
Jason Rumney <jasonr@gnu.org>
parents:
31108
diff
changeset
|
406 if (p->pbmp) |
|
a0ba404b97a5
(search_file_line): Fix skipping of whitespace.
Jason Rumney <jasonr@gnu.org>
parents:
31108
diff
changeset
|
407 HeapFree(hbdf_bmp_heap, 0, p->pbmp); |
|
a0ba404b97a5
(search_file_line): Fix skipping of whitespace.
Jason Rumney <jasonr@gnu.org>
parents:
31108
diff
changeset
|
408 p->psrc->pcbmp = NULL; |
|
a0ba404b97a5
(search_file_line): Fix skipping of whitespace.
Jason Rumney <jasonr@gnu.org>
parents:
31108
diff
changeset
|
409 p->psrc = NULL; |
|
a0ba404b97a5
(search_file_line): Fix skipping of whitespace.
Jason Rumney <jasonr@gnu.org>
parents:
31108
diff
changeset
|
410 } |
|
a0ba404b97a5
(search_file_line): Fix skipping of whitespace.
Jason Rumney <jasonr@gnu.org>
parents:
31108
diff
changeset
|
411 p++; |
|
a0ba404b97a5
(search_file_line): Fix skipping of whitespace.
Jason Rumney <jasonr@gnu.org>
parents:
31108
diff
changeset
|
412 if (FONT_CACHE_SLOT_OVER_P(p)) |
|
a0ba404b97a5
(search_file_line): Fix skipping of whitespace.
Jason Rumney <jasonr@gnu.org>
parents:
31108
diff
changeset
|
413 p = cached_bitmap_slots; |
|
a0ba404b97a5
(search_file_line): Fix skipping of whitespace.
Jason Rumney <jasonr@gnu.org>
parents:
31108
diff
changeset
|
414 } |
|
a0ba404b97a5
(search_file_line): Fix skipping of whitespace.
Jason Rumney <jasonr@gnu.org>
parents:
31108
diff
changeset
|
415 } |
|
a0ba404b97a5
(search_file_line): Fix skipping of whitespace.
Jason Rumney <jasonr@gnu.org>
parents:
31108
diff
changeset
|
416 |
| 24141 | 417 #define GET_HEX_VAL(x) ((isdigit(x)) ? ((x) - '0') : \ |
|
32024
a0ba404b97a5
(search_file_line): Fix skipping of whitespace.
Jason Rumney <jasonr@gnu.org>
parents:
31108
diff
changeset
|
418 (((x) >= 'A') && ((x) <= 'F')) ? ((x) - 'A' + 10) : \ |
|
a0ba404b97a5
(search_file_line): Fix skipping of whitespace.
Jason Rumney <jasonr@gnu.org>
parents:
31108
diff
changeset
|
419 (((x) >= 'a') && ((x) <= 'f')) ? ((x) - 'a' + 10) : \ |
| 24141 | 420 (-1)) |
| 421 | |
| 422 int | |
| 423 w32_get_bdf_glyph(bdffont *fontp, int index, int size, glyph_struct *glyph) | |
| 424 { | |
|
24496
541ff963ba80
Merged patches from Meadow.
Geoff Voelker <voelker@cs.washington.edu>
parents:
24141
diff
changeset
|
425 font_char *pch; |
|
32024
a0ba404b97a5
(search_file_line): Fix skipping of whitespace.
Jason Rumney <jasonr@gnu.org>
parents:
31108
diff
changeset
|
426 unsigned char *start, *p, *q, *bitmapp; |
|
a0ba404b97a5
(search_file_line): Fix skipping of whitespace.
Jason Rumney <jasonr@gnu.org>
parents:
31108
diff
changeset
|
427 unsigned char val, val1, val2; |
|
a0ba404b97a5
(search_file_line): Fix skipping of whitespace.
Jason Rumney <jasonr@gnu.org>
parents:
31108
diff
changeset
|
428 int i, j, len, flag, consumed; |
|
a0ba404b97a5
(search_file_line): Fix skipping of whitespace.
Jason Rumney <jasonr@gnu.org>
parents:
31108
diff
changeset
|
429 int align, rowbytes; |
| 24141 | 430 |
|
24496
541ff963ba80
Merged patches from Meadow.
Geoff Voelker <voelker@cs.washington.edu>
parents:
24141
diff
changeset
|
431 pch = get_cached_font_char(fontp, index); |
|
541ff963ba80
Merged patches from Meadow.
Geoff Voelker <voelker@cs.washington.edu>
parents:
24141
diff
changeset
|
432 if (!pch) |
|
541ff963ba80
Merged patches from Meadow.
Geoff Voelker <voelker@cs.washington.edu>
parents:
24141
diff
changeset
|
433 { |
|
541ff963ba80
Merged patches from Meadow.
Geoff Voelker <voelker@cs.washington.edu>
parents:
24141
diff
changeset
|
434 pch = seek_char(fontp, index); |
|
541ff963ba80
Merged patches from Meadow.
Geoff Voelker <voelker@cs.washington.edu>
parents:
24141
diff
changeset
|
435 if (!pch) |
|
541ff963ba80
Merged patches from Meadow.
Geoff Voelker <voelker@cs.washington.edu>
parents:
24141
diff
changeset
|
436 return 0; |
|
541ff963ba80
Merged patches from Meadow.
Geoff Voelker <voelker@cs.washington.edu>
parents:
24141
diff
changeset
|
437 } |
|
541ff963ba80
Merged patches from Meadow.
Geoff Voelker <voelker@cs.washington.edu>
parents:
24141
diff
changeset
|
438 |
|
541ff963ba80
Merged patches from Meadow.
Geoff Voelker <voelker@cs.washington.edu>
parents:
24141
diff
changeset
|
439 start = pch->offset; |
|
541ff963ba80
Merged patches from Meadow.
Geoff Voelker <voelker@cs.washington.edu>
parents:
24141
diff
changeset
|
440 |
|
541ff963ba80
Merged patches from Meadow.
Geoff Voelker <voelker@cs.washington.edu>
parents:
24141
diff
changeset
|
441 if ((size == 0) && pch->pcbmp) |
|
541ff963ba80
Merged patches from Meadow.
Geoff Voelker <voelker@cs.washington.edu>
parents:
24141
diff
changeset
|
442 { |
|
541ff963ba80
Merged patches from Meadow.
Geoff Voelker <voelker@cs.washington.edu>
parents:
24141
diff
changeset
|
443 glyph->metric = pch->pcbmp->metric; |
|
541ff963ba80
Merged patches from Meadow.
Geoff Voelker <voelker@cs.washington.edu>
parents:
24141
diff
changeset
|
444 return 1; |
|
541ff963ba80
Merged patches from Meadow.
Geoff Voelker <voelker@cs.washington.edu>
parents:
24141
diff
changeset
|
445 } |
| 24141 | 446 |
| 447 len = fontp->size - (start - fontp->font); | |
| 448 | |
| 449 flag = proceed_file_line("DWIDTH", start, &len, &p, &q); | |
| 450 if (!flag) | |
| 451 return 0; | |
|
24496
541ff963ba80
Merged patches from Meadow.
Geoff Voelker <voelker@cs.washington.edu>
parents:
24141
diff
changeset
|
452 glyph->metric.dwidth = atoi(p); |
| 24141 | 453 |
| 454 start = q; | |
| 455 flag = proceed_file_line("BBX", start, &len, &p, &q); | |
| 456 if (!flag) | |
| 457 return 0; | |
|
24496
541ff963ba80
Merged patches from Meadow.
Geoff Voelker <voelker@cs.washington.edu>
parents:
24141
diff
changeset
|
458 glyph->metric.bbw = strtol(p, &start, 10); |
| 24141 | 459 p = start; |
|
24496
541ff963ba80
Merged patches from Meadow.
Geoff Voelker <voelker@cs.washington.edu>
parents:
24141
diff
changeset
|
460 glyph->metric.bbh = strtol(p, &start, 10); |
| 24141 | 461 p = start; |
|
24496
541ff963ba80
Merged patches from Meadow.
Geoff Voelker <voelker@cs.washington.edu>
parents:
24141
diff
changeset
|
462 glyph->metric.bbox = strtol(p, &start, 10); |
| 24141 | 463 p = start; |
|
24496
541ff963ba80
Merged patches from Meadow.
Geoff Voelker <voelker@cs.washington.edu>
parents:
24141
diff
changeset
|
464 glyph->metric.bboy = strtol(p, &start, 10); |
| 24141 | 465 |
| 466 if (size == 0) return 1; | |
| 467 | |
| 468 start = q; | |
| 469 flag = proceed_file_line("BITMAP", start, &len, &p, &q); | |
| 470 if (!flag) | |
| 471 return 0; | |
| 472 | |
|
32024
a0ba404b97a5
(search_file_line): Fix skipping of whitespace.
Jason Rumney <jasonr@gnu.org>
parents:
31108
diff
changeset
|
473 consumed = 0; |
|
a0ba404b97a5
(search_file_line): Fix skipping of whitespace.
Jason Rumney <jasonr@gnu.org>
parents:
31108
diff
changeset
|
474 flag = 0; |
| 24141 | 475 p = q; |
| 476 bitmapp = glyph->bitmap; | |
|
32024
a0ba404b97a5
(search_file_line): Fix skipping of whitespace.
Jason Rumney <jasonr@gnu.org>
parents:
31108
diff
changeset
|
477 rowbytes = (glyph->metric.bbw + 7) / 8; |
|
a0ba404b97a5
(search_file_line): Fix skipping of whitespace.
Jason Rumney <jasonr@gnu.org>
parents:
31108
diff
changeset
|
478 /* DIB requires DWORD alignment. */ |
|
a0ba404b97a5
(search_file_line): Fix skipping of whitespace.
Jason Rumney <jasonr@gnu.org>
parents:
31108
diff
changeset
|
479 align = sizeof(DWORD) - rowbytes % sizeof(DWORD); |
|
a0ba404b97a5
(search_file_line): Fix skipping of whitespace.
Jason Rumney <jasonr@gnu.org>
parents:
31108
diff
changeset
|
480 consumed = glyph->metric.bbh * (rowbytes + align); |
|
a0ba404b97a5
(search_file_line): Fix skipping of whitespace.
Jason Rumney <jasonr@gnu.org>
parents:
31108
diff
changeset
|
481 glyph->bitmap_size = consumed; |
|
a0ba404b97a5
(search_file_line): Fix skipping of whitespace.
Jason Rumney <jasonr@gnu.org>
parents:
31108
diff
changeset
|
482 glyph->row_byte_size = rowbytes; |
|
a0ba404b97a5
(search_file_line): Fix skipping of whitespace.
Jason Rumney <jasonr@gnu.org>
parents:
31108
diff
changeset
|
483 if (size < consumed) return 0; |
|
a0ba404b97a5
(search_file_line): Fix skipping of whitespace.
Jason Rumney <jasonr@gnu.org>
parents:
31108
diff
changeset
|
484 |
|
24496
541ff963ba80
Merged patches from Meadow.
Geoff Voelker <voelker@cs.washington.edu>
parents:
24141
diff
changeset
|
485 for(i = 0;i < glyph->metric.bbh;i++) |
| 24141 | 486 { |
| 487 q = memchr(p, '\n', len); | |
| 488 if (!q) return 0; | |
|
32024
a0ba404b97a5
(search_file_line): Fix skipping of whitespace.
Jason Rumney <jasonr@gnu.org>
parents:
31108
diff
changeset
|
489 for(j = 0;((q > p) && (j < rowbytes));j++) |
| 24141 | 490 { |
| 491 val1 = GET_HEX_VAL(*p); | |
| 492 if (val1 == -1) return 0; | |
| 493 p++; | |
| 494 val2 = GET_HEX_VAL(*p); | |
| 495 if (val2 == -1) return 0; | |
| 496 p++; | |
|
32024
a0ba404b97a5
(search_file_line): Fix skipping of whitespace.
Jason Rumney <jasonr@gnu.org>
parents:
31108
diff
changeset
|
497 val = (unsigned char)((val1 << 4) | val2); |
|
a0ba404b97a5
(search_file_line): Fix skipping of whitespace.
Jason Rumney <jasonr@gnu.org>
parents:
31108
diff
changeset
|
498 if (val) flag = 1; |
|
a0ba404b97a5
(search_file_line): Fix skipping of whitespace.
Jason Rumney <jasonr@gnu.org>
parents:
31108
diff
changeset
|
499 *bitmapp++ = val; |
| 24141 | 500 } |
|
32024
a0ba404b97a5
(search_file_line): Fix skipping of whitespace.
Jason Rumney <jasonr@gnu.org>
parents:
31108
diff
changeset
|
501 for(j = 0;j < align;j++) |
|
a0ba404b97a5
(search_file_line): Fix skipping of whitespace.
Jason Rumney <jasonr@gnu.org>
parents:
31108
diff
changeset
|
502 *bitmapp++ = 0x00; |
| 24141 | 503 p = q + 1; |
| 504 } | |
| 505 | |
|
32024
a0ba404b97a5
(search_file_line): Fix skipping of whitespace.
Jason Rumney <jasonr@gnu.org>
parents:
31108
diff
changeset
|
506 /* If this glyph is white space, return -1. */ |
|
a0ba404b97a5
(search_file_line): Fix skipping of whitespace.
Jason Rumney <jasonr@gnu.org>
parents:
31108
diff
changeset
|
507 if (flag == 0) return -1; |
|
a0ba404b97a5
(search_file_line): Fix skipping of whitespace.
Jason Rumney <jasonr@gnu.org>
parents:
31108
diff
changeset
|
508 |
|
a0ba404b97a5
(search_file_line): Fix skipping of whitespace.
Jason Rumney <jasonr@gnu.org>
parents:
31108
diff
changeset
|
509 return consumed; |
| 24141 | 510 } |
| 511 | |
|
24496
541ff963ba80
Merged patches from Meadow.
Geoff Voelker <voelker@cs.washington.edu>
parents:
24141
diff
changeset
|
512 static |
|
541ff963ba80
Merged patches from Meadow.
Geoff Voelker <voelker@cs.washington.edu>
parents:
24141
diff
changeset
|
513 cache_bitmap* |
|
541ff963ba80
Merged patches from Meadow.
Geoff Voelker <voelker@cs.washington.edu>
parents:
24141
diff
changeset
|
514 get_bitmap_with_cache(bdffont *fontp, int index) |
|
541ff963ba80
Merged patches from Meadow.
Geoff Voelker <voelker@cs.washington.edu>
parents:
24141
diff
changeset
|
515 { |
|
32024
a0ba404b97a5
(search_file_line): Fix skipping of whitespace.
Jason Rumney <jasonr@gnu.org>
parents:
31108
diff
changeset
|
516 int bitmap_size, bitmap_real_size; |
|
24496
541ff963ba80
Merged patches from Meadow.
Geoff Voelker <voelker@cs.washington.edu>
parents:
24141
diff
changeset
|
517 font_char *pch; |
|
541ff963ba80
Merged patches from Meadow.
Geoff Voelker <voelker@cs.washington.edu>
parents:
24141
diff
changeset
|
518 cache_bitmap* pcb; |
|
32024
a0ba404b97a5
(search_file_line): Fix skipping of whitespace.
Jason Rumney <jasonr@gnu.org>
parents:
31108
diff
changeset
|
519 unsigned char *pbmp; |
|
24496
541ff963ba80
Merged patches from Meadow.
Geoff Voelker <voelker@cs.washington.edu>
parents:
24141
diff
changeset
|
520 glyph_struct glyph; |
|
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 pch = get_cached_font_char(fontp, index); |
|
541ff963ba80
Merged patches from Meadow.
Geoff Voelker <voelker@cs.washington.edu>
parents:
24141
diff
changeset
|
523 if (pch) |
|
541ff963ba80
Merged patches from Meadow.
Geoff Voelker <voelker@cs.washington.edu>
parents:
24141
diff
changeset
|
524 { |
|
541ff963ba80
Merged patches from Meadow.
Geoff Voelker <voelker@cs.washington.edu>
parents:
24141
diff
changeset
|
525 pcb = pch->pcbmp; |
|
541ff963ba80
Merged patches from Meadow.
Geoff Voelker <voelker@cs.washington.edu>
parents:
24141
diff
changeset
|
526 if (pcb) return pcb; |
|
541ff963ba80
Merged patches from Meadow.
Geoff Voelker <voelker@cs.washington.edu>
parents:
24141
diff
changeset
|
527 } |
|
541ff963ba80
Merged patches from Meadow.
Geoff Voelker <voelker@cs.washington.edu>
parents:
24141
diff
changeset
|
528 |
|
32024
a0ba404b97a5
(search_file_line): Fix skipping of whitespace.
Jason Rumney <jasonr@gnu.org>
parents:
31108
diff
changeset
|
529 bitmap_size = ((fontp->urx - fontp->llx) / 8 + 3) * (fontp->ury - fontp->lly) |
|
24496
541ff963ba80
Merged patches from Meadow.
Geoff Voelker <voelker@cs.washington.edu>
parents:
24141
diff
changeset
|
530 + 256; |
|
541ff963ba80
Merged patches from Meadow.
Geoff Voelker <voelker@cs.washington.edu>
parents:
24141
diff
changeset
|
531 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
|
532 |
|
32024
a0ba404b97a5
(search_file_line): Fix skipping of whitespace.
Jason Rumney <jasonr@gnu.org>
parents:
31108
diff
changeset
|
533 bitmap_real_size = w32_get_bdf_glyph(fontp, index, bitmap_size, &glyph); |
|
a0ba404b97a5
(search_file_line): Fix skipping of whitespace.
Jason Rumney <jasonr@gnu.org>
parents:
31108
diff
changeset
|
534 |
|
a0ba404b97a5
(search_file_line): Fix skipping of whitespace.
Jason Rumney <jasonr@gnu.org>
parents:
31108
diff
changeset
|
535 if (bitmap_real_size == 0) |
|
24496
541ff963ba80
Merged patches from Meadow.
Geoff Voelker <voelker@cs.washington.edu>
parents:
24141
diff
changeset
|
536 return NULL; |
|
541ff963ba80
Merged patches from Meadow.
Geoff Voelker <voelker@cs.washington.edu>
parents:
24141
diff
changeset
|
537 |
|
541ff963ba80
Merged patches from Meadow.
Geoff Voelker <voelker@cs.washington.edu>
parents:
24141
diff
changeset
|
538 pch = get_cached_font_char(fontp, index); |
|
541ff963ba80
Merged patches from Meadow.
Geoff Voelker <voelker@cs.washington.edu>
parents:
24141
diff
changeset
|
539 if (!pch) return NULL; |
|
541ff963ba80
Merged patches from Meadow.
Geoff Voelker <voelker@cs.washington.edu>
parents:
24141
diff
changeset
|
540 |
|
32024
a0ba404b97a5
(search_file_line): Fix skipping of whitespace.
Jason Rumney <jasonr@gnu.org>
parents:
31108
diff
changeset
|
541 if (bitmap_real_size > 0) |
|
24841
d2d412758428
(clear_cached_bitmap_slots): Remove.
Jason Rumney <jasonr@gnu.org>
parents:
24496
diff
changeset
|
542 { |
|
32024
a0ba404b97a5
(search_file_line): Fix skipping of whitespace.
Jason Rumney <jasonr@gnu.org>
parents:
31108
diff
changeset
|
543 pbmp = (unsigned char*) HeapAlloc(hbdf_bmp_heap, 0, |
|
a0ba404b97a5
(search_file_line): Fix skipping of whitespace.
Jason Rumney <jasonr@gnu.org>
parents:
31108
diff
changeset
|
544 bitmap_real_size); |
|
a0ba404b97a5
(search_file_line): Fix skipping of whitespace.
Jason Rumney <jasonr@gnu.org>
parents:
31108
diff
changeset
|
545 if (!pbmp) return NULL; |
|
a0ba404b97a5
(search_file_line): Fix skipping of whitespace.
Jason Rumney <jasonr@gnu.org>
parents:
31108
diff
changeset
|
546 memcpy(pbmp, glyph.bitmap, bitmap_real_size); |
|
24841
d2d412758428
(clear_cached_bitmap_slots): Remove.
Jason Rumney <jasonr@gnu.org>
parents:
24496
diff
changeset
|
547 } |
|
32024
a0ba404b97a5
(search_file_line): Fix skipping of whitespace.
Jason Rumney <jasonr@gnu.org>
parents:
31108
diff
changeset
|
548 else |
|
a0ba404b97a5
(search_file_line): Fix skipping of whitespace.
Jason Rumney <jasonr@gnu.org>
parents:
31108
diff
changeset
|
549 pbmp = NULL; /* white space character */ |
|
24841
d2d412758428
(clear_cached_bitmap_slots): Remove.
Jason Rumney <jasonr@gnu.org>
parents:
24496
diff
changeset
|
550 |
|
32024
a0ba404b97a5
(search_file_line): Fix skipping of whitespace.
Jason Rumney <jasonr@gnu.org>
parents:
31108
diff
changeset
|
551 pcb = pcached_bitmap_latest; |
|
a0ba404b97a5
(search_file_line): Fix skipping of whitespace.
Jason Rumney <jasonr@gnu.org>
parents:
31108
diff
changeset
|
552 if (pcb->psrc) |
|
a0ba404b97a5
(search_file_line): Fix skipping of whitespace.
Jason Rumney <jasonr@gnu.org>
parents:
31108
diff
changeset
|
553 clear_cached_bitmap_slots(); |
|
24496
541ff963ba80
Merged patches from Meadow.
Geoff Voelker <voelker@cs.washington.edu>
parents:
24141
diff
changeset
|
554 |
|
541ff963ba80
Merged patches from Meadow.
Geoff Voelker <voelker@cs.washington.edu>
parents:
24141
diff
changeset
|
555 pcb->psrc = pch; |
|
541ff963ba80
Merged patches from Meadow.
Geoff Voelker <voelker@cs.washington.edu>
parents:
24141
diff
changeset
|
556 pcb->metric = glyph.metric; |
|
32024
a0ba404b97a5
(search_file_line): Fix skipping of whitespace.
Jason Rumney <jasonr@gnu.org>
parents:
31108
diff
changeset
|
557 pcb->pbmp = pbmp; |
|
a0ba404b97a5
(search_file_line): Fix skipping of whitespace.
Jason Rumney <jasonr@gnu.org>
parents:
31108
diff
changeset
|
558 pcb->bitmap_size = glyph.bitmap_size; |
|
a0ba404b97a5
(search_file_line): Fix skipping of whitespace.
Jason Rumney <jasonr@gnu.org>
parents:
31108
diff
changeset
|
559 pcb->row_byte_size = glyph.row_byte_size; |
|
24496
541ff963ba80
Merged patches from Meadow.
Geoff Voelker <voelker@cs.washington.edu>
parents:
24141
diff
changeset
|
560 |
|
541ff963ba80
Merged patches from Meadow.
Geoff Voelker <voelker@cs.washington.edu>
parents:
24141
diff
changeset
|
561 pch->pcbmp = pcb; |
|
541ff963ba80
Merged patches from Meadow.
Geoff Voelker <voelker@cs.washington.edu>
parents:
24141
diff
changeset
|
562 |
|
32024
a0ba404b97a5
(search_file_line): Fix skipping of whitespace.
Jason Rumney <jasonr@gnu.org>
parents:
31108
diff
changeset
|
563 pcached_bitmap_latest++; |
|
a0ba404b97a5
(search_file_line): Fix skipping of whitespace.
Jason Rumney <jasonr@gnu.org>
parents:
31108
diff
changeset
|
564 if (FONT_CACHE_SLOT_OVER_P(pcached_bitmap_latest)) |
|
a0ba404b97a5
(search_file_line): Fix skipping of whitespace.
Jason Rumney <jasonr@gnu.org>
parents:
31108
diff
changeset
|
565 pcached_bitmap_latest = cached_bitmap_slots; |
|
24496
541ff963ba80
Merged patches from Meadow.
Geoff Voelker <voelker@cs.washington.edu>
parents:
24141
diff
changeset
|
566 |
|
541ff963ba80
Merged patches from Meadow.
Geoff Voelker <voelker@cs.washington.edu>
parents:
24141
diff
changeset
|
567 return pcb; |
|
541ff963ba80
Merged patches from Meadow.
Geoff Voelker <voelker@cs.washington.edu>
parents:
24141
diff
changeset
|
568 } |
|
541ff963ba80
Merged patches from Meadow.
Geoff Voelker <voelker@cs.washington.edu>
parents:
24141
diff
changeset
|
569 |
|
32024
a0ba404b97a5
(search_file_line): Fix skipping of whitespace.
Jason Rumney <jasonr@gnu.org>
parents:
31108
diff
changeset
|
570 static HBITMAP |
|
a0ba404b97a5
(search_file_line): Fix skipping of whitespace.
Jason Rumney <jasonr@gnu.org>
parents:
31108
diff
changeset
|
571 create_offscreen_bitmap(HDC hdc, int width, int height, unsigned char **bitsp) |
|
a0ba404b97a5
(search_file_line): Fix skipping of whitespace.
Jason Rumney <jasonr@gnu.org>
parents:
31108
diff
changeset
|
572 { |
|
a0ba404b97a5
(search_file_line): Fix skipping of whitespace.
Jason Rumney <jasonr@gnu.org>
parents:
31108
diff
changeset
|
573 struct { |
|
a0ba404b97a5
(search_file_line): Fix skipping of whitespace.
Jason Rumney <jasonr@gnu.org>
parents:
31108
diff
changeset
|
574 BITMAPINFOHEADER h; |
|
a0ba404b97a5
(search_file_line): Fix skipping of whitespace.
Jason Rumney <jasonr@gnu.org>
parents:
31108
diff
changeset
|
575 RGBQUAD c[2]; |
|
a0ba404b97a5
(search_file_line): Fix skipping of whitespace.
Jason Rumney <jasonr@gnu.org>
parents:
31108
diff
changeset
|
576 } info; |
|
a0ba404b97a5
(search_file_line): Fix skipping of whitespace.
Jason Rumney <jasonr@gnu.org>
parents:
31108
diff
changeset
|
577 |
|
a0ba404b97a5
(search_file_line): Fix skipping of whitespace.
Jason Rumney <jasonr@gnu.org>
parents:
31108
diff
changeset
|
578 memset(&info, 0, sizeof(info)); |
|
a0ba404b97a5
(search_file_line): Fix skipping of whitespace.
Jason Rumney <jasonr@gnu.org>
parents:
31108
diff
changeset
|
579 info.h.biSize = sizeof(BITMAPINFOHEADER); |
|
a0ba404b97a5
(search_file_line): Fix skipping of whitespace.
Jason Rumney <jasonr@gnu.org>
parents:
31108
diff
changeset
|
580 info.h.biWidth = width; |
|
a0ba404b97a5
(search_file_line): Fix skipping of whitespace.
Jason Rumney <jasonr@gnu.org>
parents:
31108
diff
changeset
|
581 info.h.biHeight = -height; |
|
a0ba404b97a5
(search_file_line): Fix skipping of whitespace.
Jason Rumney <jasonr@gnu.org>
parents:
31108
diff
changeset
|
582 info.h.biPlanes = 1; |
|
a0ba404b97a5
(search_file_line): Fix skipping of whitespace.
Jason Rumney <jasonr@gnu.org>
parents:
31108
diff
changeset
|
583 info.h.biBitCount = 1; |
|
a0ba404b97a5
(search_file_line): Fix skipping of whitespace.
Jason Rumney <jasonr@gnu.org>
parents:
31108
diff
changeset
|
584 info.h.biCompression = BI_RGB; |
|
a0ba404b97a5
(search_file_line): Fix skipping of whitespace.
Jason Rumney <jasonr@gnu.org>
parents:
31108
diff
changeset
|
585 info.c[1].rgbRed = info.c[1].rgbGreen = info.c[1].rgbBlue = 255; |
|
a0ba404b97a5
(search_file_line): Fix skipping of whitespace.
Jason Rumney <jasonr@gnu.org>
parents:
31108
diff
changeset
|
586 |
|
a0ba404b97a5
(search_file_line): Fix skipping of whitespace.
Jason Rumney <jasonr@gnu.org>
parents:
31108
diff
changeset
|
587 return CreateDIBSection(hdc, (LPBITMAPINFO)&info, |
|
a0ba404b97a5
(search_file_line): Fix skipping of whitespace.
Jason Rumney <jasonr@gnu.org>
parents:
31108
diff
changeset
|
588 DIB_RGB_COLORS, bitsp, NULL, 0); |
|
a0ba404b97a5
(search_file_line): Fix skipping of whitespace.
Jason Rumney <jasonr@gnu.org>
parents:
31108
diff
changeset
|
589 } |
|
a0ba404b97a5
(search_file_line): Fix skipping of whitespace.
Jason Rumney <jasonr@gnu.org>
parents:
31108
diff
changeset
|
590 |
|
a0ba404b97a5
(search_file_line): Fix skipping of whitespace.
Jason Rumney <jasonr@gnu.org>
parents:
31108
diff
changeset
|
591 glyph_metric * |
|
a0ba404b97a5
(search_file_line): Fix skipping of whitespace.
Jason Rumney <jasonr@gnu.org>
parents:
31108
diff
changeset
|
592 w32_BDF_TextMetric(bdffont *fontp, unsigned char *text, int dim) |
|
a0ba404b97a5
(search_file_line): Fix skipping of whitespace.
Jason Rumney <jasonr@gnu.org>
parents:
31108
diff
changeset
|
593 { |
|
a0ba404b97a5
(search_file_line): Fix skipping of whitespace.
Jason Rumney <jasonr@gnu.org>
parents:
31108
diff
changeset
|
594 int index; |
|
a0ba404b97a5
(search_file_line): Fix skipping of whitespace.
Jason Rumney <jasonr@gnu.org>
parents:
31108
diff
changeset
|
595 cache_bitmap *pcb; |
|
a0ba404b97a5
(search_file_line): Fix skipping of whitespace.
Jason Rumney <jasonr@gnu.org>
parents:
31108
diff
changeset
|
596 |
|
a0ba404b97a5
(search_file_line): Fix skipping of whitespace.
Jason Rumney <jasonr@gnu.org>
parents:
31108
diff
changeset
|
597 if (dim == 1) |
|
a0ba404b97a5
(search_file_line): Fix skipping of whitespace.
Jason Rumney <jasonr@gnu.org>
parents:
31108
diff
changeset
|
598 index = *text; |
|
a0ba404b97a5
(search_file_line): Fix skipping of whitespace.
Jason Rumney <jasonr@gnu.org>
parents:
31108
diff
changeset
|
599 else |
|
a0ba404b97a5
(search_file_line): Fix skipping of whitespace.
Jason Rumney <jasonr@gnu.org>
parents:
31108
diff
changeset
|
600 index = MAKELENDSHORT(text[1], text[0]); |
|
a0ba404b97a5
(search_file_line): Fix skipping of whitespace.
Jason Rumney <jasonr@gnu.org>
parents:
31108
diff
changeset
|
601 |
|
a0ba404b97a5
(search_file_line): Fix skipping of whitespace.
Jason Rumney <jasonr@gnu.org>
parents:
31108
diff
changeset
|
602 pcb = get_bitmap_with_cache(fontp, index); |
|
a0ba404b97a5
(search_file_line): Fix skipping of whitespace.
Jason Rumney <jasonr@gnu.org>
parents:
31108
diff
changeset
|
603 if (!pcb) |
|
a0ba404b97a5
(search_file_line): Fix skipping of whitespace.
Jason Rumney <jasonr@gnu.org>
parents:
31108
diff
changeset
|
604 return NULL; |
|
a0ba404b97a5
(search_file_line): Fix skipping of whitespace.
Jason Rumney <jasonr@gnu.org>
parents:
31108
diff
changeset
|
605 |
|
a0ba404b97a5
(search_file_line): Fix skipping of whitespace.
Jason Rumney <jasonr@gnu.org>
parents:
31108
diff
changeset
|
606 return &(pcb->metric); |
|
a0ba404b97a5
(search_file_line): Fix skipping of whitespace.
Jason Rumney <jasonr@gnu.org>
parents:
31108
diff
changeset
|
607 } |
|
a0ba404b97a5
(search_file_line): Fix skipping of whitespace.
Jason Rumney <jasonr@gnu.org>
parents:
31108
diff
changeset
|
608 |
| 24141 | 609 int |
| 610 w32_BDF_TextOut(bdffont *fontp, HDC hdc, int left, | |
| 611 int top, unsigned char *text, int dim, int bytelen, | |
| 612 int fixed_pitch_size) | |
| 613 { | |
|
24496
541ff963ba80
Merged patches from Meadow.
Geoff Voelker <voelker@cs.washington.edu>
parents:
24141
diff
changeset
|
614 int index, btop; |
| 24141 | 615 unsigned char *textp; |
|
24496
541ff963ba80
Merged patches from Meadow.
Geoff Voelker <voelker@cs.washington.edu>
parents:
24141
diff
changeset
|
616 cache_bitmap *pcb; |
| 24141 | 617 HBRUSH hFgBrush, hOrgBrush; |
|
32024
a0ba404b97a5
(search_file_line): Fix skipping of whitespace.
Jason Rumney <jasonr@gnu.org>
parents:
31108
diff
changeset
|
618 HANDLE horgobj; |
| 24141 | 619 UINT textalign; |
|
32024
a0ba404b97a5
(search_file_line): Fix skipping of whitespace.
Jason Rumney <jasonr@gnu.org>
parents:
31108
diff
changeset
|
620 int width, height; |
|
a0ba404b97a5
(search_file_line): Fix skipping of whitespace.
Jason Rumney <jasonr@gnu.org>
parents:
31108
diff
changeset
|
621 HDC hCompatDC; |
|
a0ba404b97a5
(search_file_line): Fix skipping of whitespace.
Jason Rumney <jasonr@gnu.org>
parents:
31108
diff
changeset
|
622 int ret = 1; |
|
a0ba404b97a5
(search_file_line): Fix skipping of whitespace.
Jason Rumney <jasonr@gnu.org>
parents:
31108
diff
changeset
|
623 static HBITMAP hBMP = 0; |
|
a0ba404b97a5
(search_file_line): Fix skipping of whitespace.
Jason Rumney <jasonr@gnu.org>
parents:
31108
diff
changeset
|
624 static HDC DIBsection_hdc = 0; |
|
a0ba404b97a5
(search_file_line): Fix skipping of whitespace.
Jason Rumney <jasonr@gnu.org>
parents:
31108
diff
changeset
|
625 static int DIBsection_width, DIBsection_height; |
|
a0ba404b97a5
(search_file_line): Fix skipping of whitespace.
Jason Rumney <jasonr@gnu.org>
parents:
31108
diff
changeset
|
626 static unsigned char *bits; |
| 24141 | 627 |
| 628 hCompatDC = CreateCompatibleDC(hdc); | |
|
32024
a0ba404b97a5
(search_file_line): Fix skipping of whitespace.
Jason Rumney <jasonr@gnu.org>
parents:
31108
diff
changeset
|
629 if (!hCompatDC) |
|
a0ba404b97a5
(search_file_line): Fix skipping of whitespace.
Jason Rumney <jasonr@gnu.org>
parents:
31108
diff
changeset
|
630 return 0; |
| 24141 | 631 |
| 632 textalign = GetTextAlign(hdc); | |
| 633 | |
| 634 hFgBrush = CreateSolidBrush(GetTextColor(hdc)); | |
| 635 hOrgBrush = SelectObject(hdc, hFgBrush); | |
| 636 | |
| 637 textp = text; | |
|
32024
a0ba404b97a5
(search_file_line): Fix skipping of whitespace.
Jason Rumney <jasonr@gnu.org>
parents:
31108
diff
changeset
|
638 |
| 24141 | 639 while(bytelen > 0) |
| 640 { | |
| 641 if (dim == 1) | |
| 642 { | |
| 643 index = *textp++; | |
| 644 bytelen--; | |
| 645 } | |
| 646 else | |
| 647 { | |
| 648 bytelen -= 2; | |
| 649 if (bytelen < 0) break; | |
|
33038
5a1e3282fe2e
(set_bdf_font_info): Set it.
Jason Rumney <jasonr@gnu.org>
parents:
32722
diff
changeset
|
650 index = MAKELENDSHORT(textp[0], textp[1]); |
| 24141 | 651 textp += 2; |
| 652 } | |
|
24496
541ff963ba80
Merged patches from Meadow.
Geoff Voelker <voelker@cs.washington.edu>
parents:
24141
diff
changeset
|
653 pcb = get_bitmap_with_cache(fontp, index); |
|
541ff963ba80
Merged patches from Meadow.
Geoff Voelker <voelker@cs.washington.edu>
parents:
24141
diff
changeset
|
654 if (!pcb) |
| 24141 | 655 { |
|
32024
a0ba404b97a5
(search_file_line): Fix skipping of whitespace.
Jason Rumney <jasonr@gnu.org>
parents:
31108
diff
changeset
|
656 ret = 0; |
|
a0ba404b97a5
(search_file_line): Fix skipping of whitespace.
Jason Rumney <jasonr@gnu.org>
parents:
31108
diff
changeset
|
657 break; |
| 24141 | 658 } |
|
32024
a0ba404b97a5
(search_file_line): Fix skipping of whitespace.
Jason Rumney <jasonr@gnu.org>
parents:
31108
diff
changeset
|
659 if (pcb->pbmp) |
|
a0ba404b97a5
(search_file_line): Fix skipping of whitespace.
Jason Rumney <jasonr@gnu.org>
parents:
31108
diff
changeset
|
660 { |
|
a0ba404b97a5
(search_file_line): Fix skipping of whitespace.
Jason Rumney <jasonr@gnu.org>
parents:
31108
diff
changeset
|
661 width = pcb->metric.bbw; |
|
a0ba404b97a5
(search_file_line): Fix skipping of whitespace.
Jason Rumney <jasonr@gnu.org>
parents:
31108
diff
changeset
|
662 height = pcb->metric.bbh; |
|
a0ba404b97a5
(search_file_line): Fix skipping of whitespace.
Jason Rumney <jasonr@gnu.org>
parents:
31108
diff
changeset
|
663 |
|
a0ba404b97a5
(search_file_line): Fix skipping of whitespace.
Jason Rumney <jasonr@gnu.org>
parents:
31108
diff
changeset
|
664 if (!(hBMP |
|
a0ba404b97a5
(search_file_line): Fix skipping of whitespace.
Jason Rumney <jasonr@gnu.org>
parents:
31108
diff
changeset
|
665 && (DIBsection_hdc == hdc) |
|
a0ba404b97a5
(search_file_line): Fix skipping of whitespace.
Jason Rumney <jasonr@gnu.org>
parents:
31108
diff
changeset
|
666 && (DIBsection_width == width) |
|
a0ba404b97a5
(search_file_line): Fix skipping of whitespace.
Jason Rumney <jasonr@gnu.org>
parents:
31108
diff
changeset
|
667 && (DIBsection_height == height))) |
|
a0ba404b97a5
(search_file_line): Fix skipping of whitespace.
Jason Rumney <jasonr@gnu.org>
parents:
31108
diff
changeset
|
668 { |
|
a0ba404b97a5
(search_file_line): Fix skipping of whitespace.
Jason Rumney <jasonr@gnu.org>
parents:
31108
diff
changeset
|
669 if (hBMP) DeleteObject(hBMP); |
|
a0ba404b97a5
(search_file_line): Fix skipping of whitespace.
Jason Rumney <jasonr@gnu.org>
parents:
31108
diff
changeset
|
670 hBMP = create_offscreen_bitmap(hdc, width, height, &bits); |
|
a0ba404b97a5
(search_file_line): Fix skipping of whitespace.
Jason Rumney <jasonr@gnu.org>
parents:
31108
diff
changeset
|
671 DIBsection_hdc = hdc; |
|
a0ba404b97a5
(search_file_line): Fix skipping of whitespace.
Jason Rumney <jasonr@gnu.org>
parents:
31108
diff
changeset
|
672 DIBsection_width = width; |
|
a0ba404b97a5
(search_file_line): Fix skipping of whitespace.
Jason Rumney <jasonr@gnu.org>
parents:
31108
diff
changeset
|
673 DIBsection_height = height; |
|
a0ba404b97a5
(search_file_line): Fix skipping of whitespace.
Jason Rumney <jasonr@gnu.org>
parents:
31108
diff
changeset
|
674 if (!hBMP) return 0; |
| 24141 | 675 } |
|
32024
a0ba404b97a5
(search_file_line): Fix skipping of whitespace.
Jason Rumney <jasonr@gnu.org>
parents:
31108
diff
changeset
|
676 |
|
a0ba404b97a5
(search_file_line): Fix skipping of whitespace.
Jason Rumney <jasonr@gnu.org>
parents:
31108
diff
changeset
|
677 memcpy(bits, pcb->pbmp, pcb->bitmap_size); |
|
24496
541ff963ba80
Merged patches from Meadow.
Geoff Voelker <voelker@cs.washington.edu>
parents:
24141
diff
changeset
|
678 |
| 24141 | 679 if (textalign & TA_BASELINE) |
|
24496
541ff963ba80
Merged patches from Meadow.
Geoff Voelker <voelker@cs.washington.edu>
parents:
24141
diff
changeset
|
680 btop = top - (pcb->metric.bbh + pcb->metric.bboy); |
| 24141 | 681 else if (textalign & TA_BOTTOM) |
|
24496
541ff963ba80
Merged patches from Meadow.
Geoff Voelker <voelker@cs.washington.edu>
parents:
24141
diff
changeset
|
682 btop = top - pcb->metric.bbh; |
| 24141 | 683 else |
| 684 btop = top; | |
| 685 | |
| 686 horgobj = SelectObject(hCompatDC, hBMP); | |
|
32024
a0ba404b97a5
(search_file_line): Fix skipping of whitespace.
Jason Rumney <jasonr@gnu.org>
parents:
31108
diff
changeset
|
687 BitBlt(hdc, left, btop, width, height, hCompatDC, 0, 0, 0xE20746); |
|
a0ba404b97a5
(search_file_line): Fix skipping of whitespace.
Jason Rumney <jasonr@gnu.org>
parents:
31108
diff
changeset
|
688 SelectObject(hCompatDC, horgobj); |
|
a0ba404b97a5
(search_file_line): Fix skipping of whitespace.
Jason Rumney <jasonr@gnu.org>
parents:
31108
diff
changeset
|
689 } |
|
a0ba404b97a5
(search_file_line): Fix skipping of whitespace.
Jason Rumney <jasonr@gnu.org>
parents:
31108
diff
changeset
|
690 |
| 24141 | 691 if (fixed_pitch_size) |
| 692 left += fixed_pitch_size; | |
| 693 else | |
|
24496
541ff963ba80
Merged patches from Meadow.
Geoff Voelker <voelker@cs.washington.edu>
parents:
24141
diff
changeset
|
694 left += pcb->metric.dwidth; |
| 24141 | 695 } |
|
32024
a0ba404b97a5
(search_file_line): Fix skipping of whitespace.
Jason Rumney <jasonr@gnu.org>
parents:
31108
diff
changeset
|
696 |
|
a0ba404b97a5
(search_file_line): Fix skipping of whitespace.
Jason Rumney <jasonr@gnu.org>
parents:
31108
diff
changeset
|
697 DeleteDC(hCompatDC); |
|
a0ba404b97a5
(search_file_line): Fix skipping of whitespace.
Jason Rumney <jasonr@gnu.org>
parents:
31108
diff
changeset
|
698 |
| 24141 | 699 SelectObject(hdc, hOrgBrush); |
| 700 DeleteObject(hFgBrush); | |
| 701 | |
|
32024
a0ba404b97a5
(search_file_line): Fix skipping of whitespace.
Jason Rumney <jasonr@gnu.org>
parents:
31108
diff
changeset
|
702 return ret; |
| 24141 | 703 } |
| 704 | |
| 705 struct font_info *w32_load_bdf_font (struct frame *f, char *fontname, | |
| 706 int size, char* filename) | |
| 707 { | |
| 708 struct w32_display_info *dpyinfo = FRAME_W32_DISPLAY_INFO (f); | |
| 709 struct font_info *fontp; | |
| 710 XFontStruct *font; | |
| 711 bdffont* bdf_font; | |
| 712 | |
| 713 bdf_font = w32_init_bdf_font (filename); | |
| 714 | |
| 715 if (!bdf_font) return NULL; | |
| 716 | |
| 717 font = (XFontStruct *) xmalloc (sizeof (XFontStruct)); | |
|
32722
6385ffa62dd5
(w32_load_bdf_font): Call w32_cache_char_metrics.
Andrew Innes <andrewi@gnu.org>
parents:
32024
diff
changeset
|
718 bzero (font, sizeof (*font)); |
| 24141 | 719 |
| 720 font->bdf = bdf_font; | |
| 721 font->hfont = 0; | |
| 722 | |
|
33038
5a1e3282fe2e
(set_bdf_font_info): Set it.
Jason Rumney <jasonr@gnu.org>
parents:
32722
diff
changeset
|
723 /* NTEMACS_TODO: Better way of determining if a font is double byte |
|
5a1e3282fe2e
(set_bdf_font_info): Set it.
Jason Rumney <jasonr@gnu.org>
parents:
32722
diff
changeset
|
724 or not. */ |
|
5a1e3282fe2e
(set_bdf_font_info): Set it.
Jason Rumney <jasonr@gnu.org>
parents:
32722
diff
changeset
|
725 font->double_byte_p = bdf_font->nchars > 255 ? 1 : 0; |
|
29315
e0ea7a9dd20b
(w32_load_bdf_font): Initialize font->double_byte_p.
Jason Rumney <jasonr@gnu.org>
parents:
28271
diff
changeset
|
726 |
|
32722
6385ffa62dd5
(w32_load_bdf_font): Call w32_cache_char_metrics.
Andrew Innes <andrewi@gnu.org>
parents:
32024
diff
changeset
|
727 w32_cache_char_metrics (font); |
|
6385ffa62dd5
(w32_load_bdf_font): Call w32_cache_char_metrics.
Andrew Innes <andrewi@gnu.org>
parents:
32024
diff
changeset
|
728 |
| 24141 | 729 /* Do we need to create the table? */ |
| 730 if (dpyinfo->font_table_size == 0) | |
| 731 { | |
| 732 dpyinfo->font_table_size = 16; | |
| 733 dpyinfo->font_table | |
| 734 = (struct font_info *) xmalloc (dpyinfo->font_table_size | |
| 735 * sizeof (struct font_info)); | |
| 736 } | |
| 737 /* Do we need to grow the table? */ | |
| 738 else if (dpyinfo->n_fonts | |
| 739 >= dpyinfo->font_table_size) | |
| 740 { | |
| 741 dpyinfo->font_table_size *= 2; | |
| 742 dpyinfo->font_table | |
| 743 = (struct font_info *) xrealloc (dpyinfo->font_table, | |
| 744 (dpyinfo->font_table_size | |
| 745 * sizeof (struct font_info))); | |
| 746 } | |
| 747 | |
| 748 fontp = dpyinfo->font_table + dpyinfo->n_fonts; | |
| 749 | |
| 750 /* Now fill in the slots of *FONTP. */ | |
| 751 BLOCK_INPUT; | |
| 752 fontp->font = font; | |
| 753 fontp->font_idx = dpyinfo->n_fonts; | |
| 754 fontp->name = (char *) xmalloc (strlen (fontname) + 1); | |
| 755 bcopy (fontname, fontp->name, strlen (fontname) + 1); | |
| 756 fontp->full_name = fontp->name; | |
| 757 fontp->size = FONT_WIDTH (font); | |
| 758 fontp->height = FONT_HEIGHT (font); | |
| 759 | |
| 760 /* The slot `encoding' specifies how to map a character | |
| 761 code-points (0x20..0x7F or 0x2020..0x7F7F) of each charset to | |
| 762 the font code-points (0:0x20..0x7F, 1:0xA0..0xFF, 0:0x2020..0x7F7F, | |
| 763 the font code-points (0:0x20..0x7F, 1:0xA0..0xFF, | |
| 764 0:0x2020..0x7F7F, 1:0xA0A0..0xFFFF, 3:0x20A0..0x7FFF, or | |
| 765 2:0xA020..0xFF7F). For the moment, we don't know which charset | |
| 766 uses this font. So, we set informatoin in fontp->encoding[1] | |
| 767 which is never used by any charset. If mapping can't be | |
| 768 decided, set FONT_ENCODING_NOT_DECIDED. */ | |
| 769 fontp->encoding[1] = FONT_ENCODING_NOT_DECIDED; | |
| 770 fontp->baseline_offset = bdf_font->yoffset; | |
| 771 fontp->relative_compose = bdf_font->relative_compose; | |
| 772 fontp->default_ascent = bdf_font->default_ascent; | |
| 773 | |
| 774 UNBLOCK_INPUT; | |
| 775 dpyinfo->n_fonts++; | |
| 776 return fontp; | |
| 777 } | |
| 778 | |
| 779 /* Check a file for an XFLD string describing it. */ | |
| 780 int w32_BDF_to_x_font (char *file, char* xstr, int len) | |
| 781 { | |
| 782 HANDLE hfile, hfilemap; | |
| 783 BY_HANDLE_FILE_INFORMATION fileinfo; | |
| 31108 | 784 char *font, *start, *p, *q; |
| 24141 | 785 int flag, size, retval = 0; |
| 786 | |
| 787 hfile = CreateFile (file, GENERIC_READ, FILE_SHARE_READ, NULL, | |
| 788 OPEN_EXISTING, FILE_ATTRIBUTE_NORMAL, NULL); | |
| 789 if (hfile == INVALID_HANDLE_VALUE) return 0; | |
| 790 if (!GetFileInformationByHandle(hfile, &fileinfo) || | |
| 791 (fileinfo.nFileSizeHigh != 0) || | |
| 792 (fileinfo.nFileSizeLow > BDF_FILE_SIZE_MAX)) | |
| 793 { | |
| 794 CloseHandle (hfile); | |
| 795 return 0; | |
| 796 } | |
| 797 size = fileinfo.nFileSizeLow; | |
| 798 | |
| 799 hfilemap = CreateFileMapping (hfile, NULL, PAGE_READONLY, 0, 0, NULL); | |
| 800 if (hfilemap == INVALID_HANDLE_VALUE) | |
| 801 { | |
| 802 CloseHandle (hfile); | |
| 803 return 0; | |
| 804 } | |
| 805 | |
| 806 font = MapViewOfFile (hfilemap, FILE_MAP_READ, 0, 0, 0); | |
| 807 if (!font) | |
| 808 { | |
| 809 CloseHandle (hfile); | |
| 810 CloseHandle (hfilemap); | |
| 811 return 0; | |
| 812 } | |
| 813 start = font; | |
| 814 | |
| 815 flag = proceed_file_line ("FONT ", start, &size, &p, &q); | |
| 816 if (flag) | |
| 817 { | |
| 818 /* If font provides a description of itself, check it is a | |
| 819 full XLFD before accepting it. */ | |
| 820 int count = 0; | |
| 821 char *s; | |
| 822 | |
| 823 for (s = p; s < q; s++) | |
| 824 if (*s == '\n') | |
| 825 break; | |
| 826 else if (*s == '-') | |
| 827 count++; | |
| 828 if (count == 14 && q - p - 1 <= len) | |
| 829 { | |
| 830 strncpy (xstr, p, q-p-1); | |
| 831 xstr[q-p-1] = '\0'; | |
| 832 /* Files may have DOS line ends (ie still ^M on end). */ | |
| 833 if (iscntrl(xstr[q-p-2])) | |
| 834 xstr[q-p-2] = '\0'; | |
| 835 | |
| 836 retval = 1; | |
| 837 } | |
| 838 } | |
| 839 CloseHandle (hfile); | |
| 840 CloseHandle (hfilemap); | |
| 841 return retval; | |
| 842 } |
