*** empty log message ***
[bpt/emacs.git] / src / w32bdf.c
CommitLineData
7b416d42
GV
1/* Implementation of BDF font handling on the Microsoft W32 API.
2 Copyright (C) 1999 Free Software Foundation, Inc.
3
4This file is part of GNU Emacs.
5
6GNU Emacs is free software; you can redistribute it and/or modify
7it under the terms of the GNU General Public License as published by
8the Free Software Foundation; either version 2, or (at your option)
9any later version.
10
11GNU Emacs is distributed in the hope that it will be useful,
12but WITHOUT ANY WARRANTY; without even the implied warranty of
13MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14GNU General Public License for more details.
15
16You should have received a copy of the GNU General Public License
17along with GNU Emacs; see the file COPYING. If not, write to
18the Free Software Foundation, Inc., 59 Temple Place - Suite 330,
19Boston, 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"
683e946e
JR
28#include "frame.h"
29#include "dispextern.h"
7b416d42
GV
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
264f0aa7
JR
39/* 10 planes */
40#define BDF_CODEPOINT_HEAP_INITIAL_SIZE (96 * 10)
41/* about 96 characters */
42#define BDF_BITMAP_HEAP_INITIAL_SIZE (64 * 96)
43
44HANDLE hbdf_cp_heap = INVALID_HANDLE_VALUE;
45HANDLE hbdf_bmp_heap = INVALID_HANDLE_VALUE;
9c332a80 46
7b416d42
GV
47void w32_free_bdf_font(bdffont *fontp);
48bdffont *w32_init_bdf_font(char *filename);
49
264f0aa7
JR
50cache_bitmap cached_bitmap_slots[BDF_FONT_CACHE_SIZE];
51cache_bitmap *pcached_bitmap_latest = cached_bitmap_slots;
52
53#define FONT_CACHE_SLOT_OVER_P(p) ((p) >= cached_bitmap_slots + BDF_FONT_CACHE_SIZE)
54
7b416d42
GV
55static int
56search_file_line(char *key, char *start, int len, char **val, char **next)
57{
58 int linelen;
264f0aa7 59 unsigned char *p, *q;
7b416d42
GV
60
61 p = memchr(start, '\n', len);
62 if (!p) return -1;
63 for (;start < p;start++)
64 {
264f0aa7 65 if ((*start != ' ') && (*start != '\t')) break;
7b416d42
GV
66 }
67 linelen = p - start + 1;
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
78static int
79proceed_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}
264f0aa7 92
865203c3
GV
93char*
94get_quoted_string(char *start, char *end)
95{
96 char *p, *q, *result;
97
98 p = memchr(start, '\"', end - start);
865203c3
GV
99 if (!p) return NULL;
100 p++;
264f0aa7 101 q = memchr(p, '\"', end - p);
865203c3
GV
102 if (!q) return NULL;
103
104 result = (char*) xmalloc(q - p + 1);
105
106 memcpy(result, p, q - p);
107 result[q - p] = '\0';
108
109 return result;
110}
111
7b416d42
GV
112static int
113set_bdf_font_info(bdffont *fontp)
114{
264f0aa7 115 unsigned char *start, *p, *q;
7b416d42
GV
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;
264f0aa7 126
865203c3
GV
127 fontp->registry = NULL;
128 fontp->encoding = NULL;
129 fontp->slant = NULL;
130/* fontp->width = NULL; */
7b416d42
GV
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
865203c3
GV
152 flag = 0;
153
7b416d42
GV
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);
264f0aa7 174 fontp->yoffset = -val1;
7b416d42
GV
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 }
865203c3
GV
186 else if (search_file_line("CHARSET_REGISTRY", start, len, &p, &q) == 1)
187 {
188 fontp->registry = get_quoted_string(p, q);
189 }
190 else if (search_file_line("CHARSET_ENCODING", start, len, &p, &q) == 1)
191 {
192 fontp->encoding = get_quoted_string(p, q);
193 }
194 else if (search_file_line("SLANT", start, len, &p, &q) == 1)
195 {
196 fontp->slant = get_quoted_string(p, q);
197 }
198/*
199 else if (search_file_line("SETWIDTH_NAME", start, len, &p, &q) == 1)
200 {
201 fontp->width = get_quoted_string(p, q);
202 }
203*/
7b416d42
GV
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;
214 fontp->seeked = q;
215
216 return 1;
217}
218
219bdffont*
220w32_init_bdf_font(char *filename)
221{
222 HANDLE hfile, hfilemap;
223 bdffont *bdffontp;
224 unsigned char *font;
225 BY_HANDLE_FILE_INFORMATION fileinfo;
226 int i;
227
264f0aa7
JR
228 if (hbdf_cp_heap == INVALID_HANDLE_VALUE)
229 hbdf_cp_heap = HeapCreate(0, BDF_CODEPOINT_HEAP_INITIAL_SIZE, 0);
230 if (hbdf_bmp_heap = INVALID_HANDLE_VALUE)
231 hbdf_bmp_heap = HeapCreate(0, BDF_BITMAP_HEAP_INITIAL_SIZE, 0);
232
233 if (!hbdf_cp_heap || !hbdf_bmp_heap)
234 error("Fail to create heap for BDF.");
235
7b416d42
GV
236 hfile = CreateFile(filename, GENERIC_READ, FILE_SHARE_READ, NULL,
237 OPEN_EXISTING, FILE_ATTRIBUTE_NORMAL, NULL);
238 if (hfile == INVALID_HANDLE_VALUE) return NULL;
239 if (!GetFileInformationByHandle(hfile, &fileinfo) ||
240 (fileinfo.nFileSizeHigh != 0) ||
241 (fileinfo.nFileSizeLow > BDF_FILE_SIZE_MAX))
242 {
243 CloseHandle(hfile);
244 error("Fail to open BDF file.");
245 }
246 hfilemap = CreateFileMapping(hfile, NULL, PAGE_READONLY, 0, 0, NULL);
247 if (hfilemap == INVALID_HANDLE_VALUE)
248 {
249 CloseHandle(hfile);
250 error("Can't map font.");
251 }
252
253 font = MapViewOfFile(hfilemap, FILE_MAP_READ, 0, 0, 0);
254
255 if (!font)
256 {
257 CloseHandle(hfile);
258 CloseHandle(hfilemap);
259 error("Can't view font.");
260 }
261
262 bdffontp = (bdffont *) xmalloc(sizeof(bdffont));
263
264 for(i = 0;i < BDF_FIRST_OFFSET_TABLE;i++)
865203c3 265 bdffontp->chtbl[i] = NULL;
7b416d42
GV
266 bdffontp->size = fileinfo.nFileSizeLow;
267 bdffontp->font = font;
268 bdffontp->hfile = hfile;
269 bdffontp->hfilemap = hfilemap;
270 bdffontp->filename = (char*) xmalloc(strlen(filename) + 1);
271 strcpy(bdffontp->filename, filename);
272
273 if (!set_bdf_font_info(bdffontp))
274 {
275 w32_free_bdf_font(bdffontp);
276 error("Invalid BDF font!");
277 }
278 return bdffontp;
279}
280
281void
282w32_free_bdf_font(bdffont *fontp)
283{
865203c3
GV
284 int i, j;
285 font_char *pch;
286 cache_bitmap *pcb;
7b416d42
GV
287
288 UnmapViewOfFile(fontp->hfilemap);
289 CloseHandle(fontp->hfilemap);
290 CloseHandle(fontp->hfile);
865203c3
GV
291
292 if (fontp->registry) xfree(fontp->registry);
293 if (fontp->encoding) xfree(fontp->encoding);
294 if (fontp->slant) xfree(fontp->slant);
295/* if (fontp->width) xfree(fontp->width); */
296
7b416d42
GV
297 xfree(fontp->filename);
298 for(i = 0;i < BDF_FIRST_OFFSET_TABLE;i++)
299 {
865203c3
GV
300 pch = fontp->chtbl[i];
301 if (pch)
302 {
303 for (j = 0;j < BDF_SECOND_OFFSET_TABLE;j++)
304 {
305 pcb = pch[j].pcbmp;
264f0aa7
JR
306 if (pcb)
307 {
308 if (pcb->pbmp)
309 HeapFree(hbdf_bmp_heap, 0, pcb->pbmp);
310 pcb->psrc = NULL;
865203c3 311 }
264f0aa7
JR
312 }
313 HeapFree(hbdf_cp_heap, 0, pch);
865203c3 314 }
7b416d42
GV
315 }
316 xfree(fontp);
317}
318
865203c3
GV
319static font_char*
320get_cached_font_char(bdffont *fontp, int index)
7b416d42 321{
865203c3 322 font_char *pch, *result;
7b416d42
GV
323 int i;
324
264f0aa7 325 if (!BDF_CODEPOINT_RANGE_COVER_P(index))
7b416d42
GV
326 return NULL;
327
865203c3
GV
328 pch = fontp->chtbl[BDF_FIRST_OFFSET(index)];
329 if (!pch)
7b416d42 330 return NULL;
264f0aa7 331
865203c3 332 result = &pch[BDF_SECOND_OFFSET(index)];
7b416d42 333
865203c3 334 if (!result->offset) return NULL;
7b416d42 335
865203c3 336 return result;
7b416d42
GV
337}
338
865203c3 339static font_char*
7b416d42
GV
340cache_char_offset(bdffont *fontp, int index, unsigned char *offset)
341{
865203c3 342 font_char *pch, *result;
7b416d42
GV
343 int i;
344
264f0aa7 345 if (!BDF_CODEPOINT_RANGE_COVER_P(index))
865203c3 346 return NULL;
7b416d42 347
865203c3
GV
348 pch = fontp->chtbl[BDF_FIRST_OFFSET(index)];
349 if (!pch)
7b416d42 350 {
865203c3 351 pch = fontp->chtbl[BDF_FIRST_OFFSET(index)] =
264f0aa7
JR
352 (font_char*) HeapAlloc(hbdf_cp_heap,
353 HEAP_ZERO_MEMORY,
354 sizeof(font_char) *
355 BDF_SECOND_OFFSET_TABLE);
356 if (!pch) return NULL;
357 /* memset(pch, 0, sizeof(font_char) * BDF_SECOND_OFFSET_TABLE); */
7b416d42 358 }
7b416d42 359
865203c3
GV
360 result = &pch[BDF_SECOND_OFFSET(index)];
361 result->offset = offset;
362
363 return result;
7b416d42
GV
364}
365
865203c3
GV
366static font_char*
367seek_char(bdffont *fontp, int index)
7b416d42 368{
865203c3 369 font_char *result;
7b416d42 370 int len, flag, font_index;
264f0aa7 371 unsigned char *start, *p, *q;
7b416d42
GV
372
373 if (!fontp->seeked) return NULL;
374
375 start = fontp->seeked;
376 len = fontp->size - (start - fontp->font);
377
378 do {
379 flag = proceed_file_line("ENCODING", start, &len, &p, &q);
380 if (!flag)
381 {
382 fontp->seeked = NULL;
383 return NULL;
384 }
385 font_index = atoi(p);
865203c3
GV
386 result = cache_char_offset(fontp, font_index, q);
387 if (!result) return NULL;
388
389 start = result->offset;
7b416d42 390 } while (font_index != index);
865203c3 391 fontp->seeked = start;
7b416d42 392
865203c3
GV
393 return result;
394}
395
264f0aa7
JR
396static void
397clear_cached_bitmap_slots()
398{
399 int i;
400 cache_bitmap *p;
401
402 p = pcached_bitmap_latest;
403 for (i = 0;i < BDF_FONT_CLEAR_SIZE;i++)
404 {
405 if (p->psrc)
406 {
407 if (p->pbmp)
408 HeapFree(hbdf_bmp_heap, 0, p->pbmp);
409 p->psrc->pcbmp = NULL;
410 p->psrc = NULL;
411 }
412 p++;
413 if (FONT_CACHE_SLOT_OVER_P(p))
414 p = cached_bitmap_slots;
415 }
416}
417
7b416d42 418#define GET_HEX_VAL(x) ((isdigit(x)) ? ((x) - '0') : \
264f0aa7
JR
419 (((x) >= 'A') && ((x) <= 'F')) ? ((x) - 'A' + 10) : \
420 (((x) >= 'a') && ((x) <= 'f')) ? ((x) - 'a' + 10) : \
7b416d42
GV
421 (-1))
422
423int
424w32_get_bdf_glyph(bdffont *fontp, int index, int size, glyph_struct *glyph)
425{
865203c3 426 font_char *pch;
264f0aa7
JR
427 unsigned char *start, *p, *q, *bitmapp;
428 unsigned char val, val1, val2;
429 int i, j, len, flag, consumed;
430 int align, rowbytes;
7b416d42 431
865203c3
GV
432 pch = get_cached_font_char(fontp, index);
433 if (!pch)
434 {
435 pch = seek_char(fontp, index);
436 if (!pch)
437 return 0;
438 }
439
440 start = pch->offset;
441
442 if ((size == 0) && pch->pcbmp)
443 {
444 glyph->metric = pch->pcbmp->metric;
445 return 1;
446 }
7b416d42
GV
447
448 len = fontp->size - (start - fontp->font);
449
450 flag = proceed_file_line("DWIDTH", start, &len, &p, &q);
451 if (!flag)
452 return 0;
865203c3 453 glyph->metric.dwidth = atoi(p);
7b416d42
GV
454
455 start = q;
456 flag = proceed_file_line("BBX", start, &len, &p, &q);
457 if (!flag)
458 return 0;
865203c3 459 glyph->metric.bbw = strtol(p, &start, 10);
7b416d42 460 p = start;
865203c3 461 glyph->metric.bbh = strtol(p, &start, 10);
7b416d42 462 p = start;
865203c3 463 glyph->metric.bbox = strtol(p, &start, 10);
7b416d42 464 p = start;
865203c3 465 glyph->metric.bboy = strtol(p, &start, 10);
7b416d42
GV
466
467 if (size == 0) return 1;
468
469 start = q;
470 flag = proceed_file_line("BITMAP", start, &len, &p, &q);
471 if (!flag)
472 return 0;
473
264f0aa7
JR
474 consumed = 0;
475 flag = 0;
7b416d42
GV
476 p = q;
477 bitmapp = glyph->bitmap;
264f0aa7
JR
478 rowbytes = (glyph->metric.bbw + 7) / 8;
479 /* DIB requires DWORD alignment. */
480 align = sizeof(DWORD) - rowbytes % sizeof(DWORD);
481 consumed = glyph->metric.bbh * (rowbytes + align);
482 glyph->bitmap_size = consumed;
483 glyph->row_byte_size = rowbytes;
484 if (size < consumed) return 0;
485
865203c3 486 for(i = 0;i < glyph->metric.bbh;i++)
7b416d42
GV
487 {
488 q = memchr(p, '\n', len);
489 if (!q) return 0;
264f0aa7 490 for(j = 0;((q > p) && (j < rowbytes));j++)
7b416d42
GV
491 {
492 val1 = GET_HEX_VAL(*p);
493 if (val1 == -1) return 0;
494 p++;
495 val2 = GET_HEX_VAL(*p);
496 if (val2 == -1) return 0;
497 p++;
264f0aa7
JR
498 val = (unsigned char)((val1 << 4) | val2);
499 if (val) flag = 1;
500 *bitmapp++ = val;
7b416d42 501 }
264f0aa7
JR
502 for(j = 0;j < align;j++)
503 *bitmapp++ = 0x00;
7b416d42
GV
504 p = q + 1;
505 }
506
264f0aa7
JR
507 /* If this glyph is white space, return -1. */
508 if (flag == 0) return -1;
7b416d42 509
264f0aa7
JR
510 return consumed;
511}
9c332a80 512
865203c3
GV
513static
514cache_bitmap*
515get_bitmap_with_cache(bdffont *fontp, int index)
516{
264f0aa7 517 int bitmap_size, bitmap_real_size;
865203c3
GV
518 font_char *pch;
519 cache_bitmap* pcb;
264f0aa7 520 unsigned char *pbmp;
865203c3
GV
521 glyph_struct glyph;
522
523 pch = get_cached_font_char(fontp, index);
524 if (pch)
525 {
526 pcb = pch->pcbmp;
527 if (pcb) return pcb;
528 }
529
264f0aa7 530 bitmap_size = ((fontp->urx - fontp->llx) / 8 + 3) * (fontp->ury - fontp->lly)
865203c3
GV
531 + 256;
532 glyph.bitmap = (unsigned char*) alloca(sizeof(unsigned char) * bitmap_size);
533
264f0aa7
JR
534 bitmap_real_size = w32_get_bdf_glyph(fontp, index, bitmap_size, &glyph);
535
536 if (bitmap_real_size == 0)
865203c3
GV
537 return NULL;
538
539 pch = get_cached_font_char(fontp, index);
540 if (!pch) return NULL;
541
264f0aa7 542 if (bitmap_real_size > 0)
9c332a80 543 {
264f0aa7
JR
544 pbmp = (unsigned char*) HeapAlloc(hbdf_bmp_heap, 0,
545 bitmap_real_size);
546 if (!pbmp) return NULL;
547 memcpy(pbmp, glyph.bitmap, bitmap_real_size);
9c332a80 548 }
264f0aa7
JR
549 else
550 pbmp = NULL; /* white space character */
9c332a80 551
264f0aa7
JR
552 pcb = pcached_bitmap_latest;
553 if (pcb->psrc)
554 clear_cached_bitmap_slots();
865203c3
GV
555
556 pcb->psrc = pch;
557 pcb->metric = glyph.metric;
264f0aa7
JR
558 pcb->pbmp = pbmp;
559 pcb->bitmap_size = glyph.bitmap_size;
560 pcb->row_byte_size = glyph.row_byte_size;
865203c3
GV
561
562 pch->pcbmp = pcb;
563
264f0aa7
JR
564 pcached_bitmap_latest++;
565 if (FONT_CACHE_SLOT_OVER_P(pcached_bitmap_latest))
566 pcached_bitmap_latest = cached_bitmap_slots;
865203c3
GV
567
568 return pcb;
569}
570
264f0aa7
JR
571static HBITMAP
572create_offscreen_bitmap(HDC hdc, int width, int height, unsigned char **bitsp)
573{
574 HBITMAP hBMP;
575 struct {
576 BITMAPINFOHEADER h;
577 RGBQUAD c[2];
578 } info;
579
580 memset(&info, 0, sizeof(info));
581 info.h.biSize = sizeof(BITMAPINFOHEADER);
582 info.h.biWidth = width;
583 info.h.biHeight = -height;
584 info.h.biPlanes = 1;
585 info.h.biBitCount = 1;
586 info.h.biCompression = BI_RGB;
587 info.c[1].rgbRed = info.c[1].rgbGreen = info.c[1].rgbBlue = 255;
588
589 return CreateDIBSection(hdc, (LPBITMAPINFO)&info,
590 DIB_RGB_COLORS, bitsp, NULL, 0);
591}
592
593glyph_metric *
594w32_BDF_TextMetric(bdffont *fontp, unsigned char *text, int dim)
595{
596 int index;
597 cache_bitmap *pcb;
598
599 if (dim == 1)
600 index = *text;
601 else
602 index = MAKELENDSHORT(text[1], text[0]);
603
604 pcb = get_bitmap_with_cache(fontp, index);
605 if (!pcb)
606 return NULL;
607
608 return &(pcb->metric);
609}
610
7b416d42
GV
611int
612w32_BDF_TextOut(bdffont *fontp, HDC hdc, int left,
613 int top, unsigned char *text, int dim, int bytelen,
614 int fixed_pitch_size)
615{
865203c3 616 int index, btop;
7b416d42 617 unsigned char *textp;
865203c3 618 cache_bitmap *pcb;
7b416d42 619 HBRUSH hFgBrush, hOrgBrush;
264f0aa7 620 HANDLE horgobj;
7b416d42 621 UINT textalign;
264f0aa7
JR
622 int width, height;
623 HDC hCompatDC;
624 int ret = 1;
625 static HBITMAP hBMP = 0;
626 static HDC DIBsection_hdc = 0;
627 static int DIBsection_width, DIBsection_height;
628 static unsigned char *bits;
7b416d42 629
7b416d42 630 hCompatDC = CreateCompatibleDC(hdc);
264f0aa7
JR
631 if (!hCompatDC)
632 return 0;
7b416d42
GV
633
634 textalign = GetTextAlign(hdc);
635
7b416d42
GV
636 hFgBrush = CreateSolidBrush(GetTextColor(hdc));
637 hOrgBrush = SelectObject(hdc, hFgBrush);
7b416d42
GV
638
639 textp = text;
264f0aa7 640
7b416d42
GV
641 while(bytelen > 0)
642 {
643 if (dim == 1)
644 {
645 index = *textp++;
646 bytelen--;
647 }
648 else
649 {
650 bytelen -= 2;
651 if (bytelen < 0) break;
652 index = MAKELENDSHORT(textp[1], textp[0]);
653 textp += 2;
654 }
865203c3
GV
655 pcb = get_bitmap_with_cache(fontp, index);
656 if (!pcb)
7b416d42 657 {
264f0aa7
JR
658 ret = 0;
659 break;
7b416d42 660 }
264f0aa7
JR
661 if (pcb->pbmp)
662 {
663 width = pcb->metric.bbw;
664 height = pcb->metric.bbh;
665
666 if (!(hBMP
667 && (DIBsection_hdc == hdc)
668 && (DIBsection_width == width)
669 && (DIBsection_height == height)))
670 {
671 if (hBMP) DeleteObject(hBMP);
672 hBMP = create_offscreen_bitmap(hdc, width, height, &bits);
673 DIBsection_hdc = hdc;
674 DIBsection_width = width;
675 DIBsection_height = height;
676 if (!hBMP) return 0;
7b416d42 677 }
264f0aa7
JR
678
679 memcpy(bits, pcb->pbmp, pcb->bitmap_size);
865203c3 680
7b416d42 681 if (textalign & TA_BASELINE)
865203c3 682 btop = top - (pcb->metric.bbh + pcb->metric.bboy);
7b416d42 683 else if (textalign & TA_BOTTOM)
865203c3 684 btop = top - pcb->metric.bbh;
7b416d42 685 else
7b416d42 686 btop = top;
7b416d42 687
7b416d42 688 horgobj = SelectObject(hCompatDC, hBMP);
264f0aa7
JR
689 BitBlt(hdc, left, btop, width, height, hCompatDC, 0, 0, 0xE20746);
690 SelectObject(hCompatDC, horgobj);
691 }
692
7b416d42
GV
693 if (fixed_pitch_size)
694 left += fixed_pitch_size;
695 else
865203c3 696 left += pcb->metric.dwidth;
7b416d42 697 }
264f0aa7
JR
698
699 DeleteDC(hCompatDC);
700
7b416d42
GV
701 SelectObject(hdc, hOrgBrush);
702 DeleteObject(hFgBrush);
7b416d42 703
264f0aa7 704 return ret;
7b416d42
GV
705}
706
707struct font_info *w32_load_bdf_font (struct frame *f, char *fontname,
708 int size, char* filename)
709{
710 struct w32_display_info *dpyinfo = FRAME_W32_DISPLAY_INFO (f);
711 struct font_info *fontp;
712 XFontStruct *font;
713 bdffont* bdf_font;
714
715 bdf_font = w32_init_bdf_font (filename);
716
717 if (!bdf_font) return NULL;
718
719 font = (XFontStruct *) xmalloc (sizeof (XFontStruct));
720
721 font->bdf = bdf_font;
722 font->hfont = 0;
723
ad784d76
JR
724 /* NTEMACS_TODO: Recognize DBCS fonts. */
725 font->double_byte_p = 0;
726
7b416d42
GV
727 /* Do we need to create the table? */
728 if (dpyinfo->font_table_size == 0)
729 {
730 dpyinfo->font_table_size = 16;
731 dpyinfo->font_table
732 = (struct font_info *) xmalloc (dpyinfo->font_table_size
733 * sizeof (struct font_info));
734 }
735 /* Do we need to grow the table? */
736 else if (dpyinfo->n_fonts
737 >= dpyinfo->font_table_size)
738 {
739 dpyinfo->font_table_size *= 2;
740 dpyinfo->font_table
741 = (struct font_info *) xrealloc (dpyinfo->font_table,
742 (dpyinfo->font_table_size
743 * sizeof (struct font_info)));
744 }
745
746 fontp = dpyinfo->font_table + dpyinfo->n_fonts;
747
748 /* Now fill in the slots of *FONTP. */
749 BLOCK_INPUT;
750 fontp->font = font;
751 fontp->font_idx = dpyinfo->n_fonts;
752 fontp->name = (char *) xmalloc (strlen (fontname) + 1);
753 bcopy (fontname, fontp->name, strlen (fontname) + 1);
754 fontp->full_name = fontp->name;
755 fontp->size = FONT_WIDTH (font);
756 fontp->height = FONT_HEIGHT (font);
757
758 /* The slot `encoding' specifies how to map a character
759 code-points (0x20..0x7F or 0x2020..0x7F7F) of each charset to
760 the font code-points (0:0x20..0x7F, 1:0xA0..0xFF, 0:0x2020..0x7F7F,
761 the font code-points (0:0x20..0x7F, 1:0xA0..0xFF,
762 0:0x2020..0x7F7F, 1:0xA0A0..0xFFFF, 3:0x20A0..0x7FFF, or
763 2:0xA020..0xFF7F). For the moment, we don't know which charset
764 uses this font. So, we set informatoin in fontp->encoding[1]
765 which is never used by any charset. If mapping can't be
766 decided, set FONT_ENCODING_NOT_DECIDED. */
767 fontp->encoding[1] = FONT_ENCODING_NOT_DECIDED;
768 fontp->baseline_offset = bdf_font->yoffset;
769 fontp->relative_compose = bdf_font->relative_compose;
770 fontp->default_ascent = bdf_font->default_ascent;
771
772 UNBLOCK_INPUT;
773 dpyinfo->n_fonts++;
774 return fontp;
775}
776
777/* Check a file for an XFLD string describing it. */
778int w32_BDF_to_x_font (char *file, char* xstr, int len)
779{
780 HANDLE hfile, hfilemap;
781 BY_HANDLE_FILE_INFORMATION fileinfo;
cc26af75 782 char *font, *start, *p, *q;
7b416d42
GV
783 int flag, size, retval = 0;
784
785 hfile = CreateFile (file, GENERIC_READ, FILE_SHARE_READ, NULL,
786 OPEN_EXISTING, FILE_ATTRIBUTE_NORMAL, NULL);
787 if (hfile == INVALID_HANDLE_VALUE) return 0;
788 if (!GetFileInformationByHandle(hfile, &fileinfo) ||
789 (fileinfo.nFileSizeHigh != 0) ||
790 (fileinfo.nFileSizeLow > BDF_FILE_SIZE_MAX))
791 {
792 CloseHandle (hfile);
793 return 0;
794 }
795 size = fileinfo.nFileSizeLow;
796
797 hfilemap = CreateFileMapping (hfile, NULL, PAGE_READONLY, 0, 0, NULL);
798 if (hfilemap == INVALID_HANDLE_VALUE)
799 {
800 CloseHandle (hfile);
801 return 0;
802 }
803
804 font = MapViewOfFile (hfilemap, FILE_MAP_READ, 0, 0, 0);
805 if (!font)
806 {
807 CloseHandle (hfile);
808 CloseHandle (hfilemap);
809 return 0;
810 }
811 start = font;
812
813 flag = proceed_file_line ("FONT ", start, &size, &p, &q);
814 if (flag)
815 {
816 /* If font provides a description of itself, check it is a
817 full XLFD before accepting it. */
818 int count = 0;
819 char *s;
820
821 for (s = p; s < q; s++)
822 if (*s == '\n')
823 break;
824 else if (*s == '-')
825 count++;
826 if (count == 14 && q - p - 1 <= len)
827 {
828 strncpy (xstr, p, q-p-1);
829 xstr[q-p-1] = '\0';
830 /* Files may have DOS line ends (ie still ^M on end). */
831 if (iscntrl(xstr[q-p-2]))
832 xstr[q-p-2] = '\0';
833
834 retval = 1;
835 }
836 }
837 CloseHandle (hfile);
838 CloseHandle (hfilemap);
839 return retval;
840}