1 /* Implementation of BDF font handling on the Microsoft W32 API.
2 Copyright (C) 1999 Free Software Foundation, Inc.
4 This file is part of GNU Emacs.
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)
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.
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. */
21 /* Based heavily on code by H. Miyashita for Meadow (a descendant of
34 #include "dispextern.h"
36 #include "blockinput.h"
42 #define BDF_CODEPOINT_HEAP_INITIAL_SIZE (96 * 10)
43 /* about 96 characters */
44 #define BDF_BITMAP_HEAP_INITIAL_SIZE (64 * 96)
46 HANDLE hbdf_cp_heap
= INVALID_HANDLE_VALUE
;
47 HANDLE hbdf_bmp_heap
= INVALID_HANDLE_VALUE
;
49 void w32_free_bdf_font(bdffont
*fontp
);
50 bdffont
*w32_init_bdf_font(char *filename
);
52 cache_bitmap cached_bitmap_slots
[BDF_FONT_CACHE_SIZE
];
53 cache_bitmap
*pcached_bitmap_latest
= cached_bitmap_slots
;
55 #define FONT_CACHE_SLOT_OVER_P(p) ((p) >= cached_bitmap_slots + BDF_FONT_CACHE_SIZE)
58 search_file_line(char *key
, char *start
, int len
, char **val
, char **next
)
63 p
= memchr(start
, '\n', len
);
65 for (;(unsigned char *)start
< p
;start
++)
67 if ((*start
!= ' ') && (*start
!= '\t')) break;
69 linelen
= (char *) p
- start
+ 1;
71 if (strncmp(start
, key
, min(strlen(key
), linelen
)) == 0)
73 *val
= start
+ strlen(key
);
81 proceed_file_line(char *key
, char *start
, int *len
, char **val
, char **next
)
86 flag
= search_file_line(key
, start
, *len
, val
, next
);
87 *len
-= (int)(*next
- start
);
91 if (flag
== -1) return 0;
96 get_quoted_string(char *start
, char *end
)
100 p
= memchr(start
, '\"', end
- start
);
103 q
= memchr(p
, '\"', end
- p
);
106 result
= (char*) xmalloc(q
- p
+ 1);
108 memcpy(result
, p
, q
- p
);
109 result
[q
- p
] = '\0';
115 set_bdf_font_info(bdffont
*fontp
)
117 unsigned char *start
, *p
, *q
;
119 int bbw
, bbh
, bbx
, bby
;
126 fontp
->relative_compose
= 0;
127 fontp
->default_ascent
= 0;
129 fontp
->registry
= NULL
;
130 fontp
->encoding
= NULL
;
132 /* fontp->width = NULL; */
134 flag
= proceed_file_line("FONTBOUNDINGBOX", start
, &len
,
135 (char **)&p
, (char **)&q
);
137 bbw
= strtol(p
, (char **)&start
, 10);
139 bbh
= strtol(p
, (char **)&start
, 10);
141 bbx
= strtol(p
, (char **)&start
, 10);
143 bby
= strtol(p
, (char **)&start
, 10);
147 fontp
->urx
= bbw
+ bbx
;
148 fontp
->ury
= bbh
+ bby
;
152 flag
= proceed_file_line("STARTPROPERTIES", start
, &len
,
153 (char **)&p
, (char **)&q
);
160 if (search_file_line("PIXEL_SIZE", start
, len
,
161 (char **)&p
, (char **)&q
) == 1)
166 else if (search_file_line("FONT_ASCENT", start
, len
,
167 (char **)&p
, (char **)&q
) == 1)
172 else if (search_file_line("FONT_DESCENT", start
, len
,
173 (char **)&p
, (char **)&q
) == 1)
178 else if (search_file_line("_MULE_BASELINE_OFFSET", start
, len
,
179 (char **)&p
, (char **)&q
) == 1)
182 fontp
->yoffset
= -val1
;
184 else if (search_file_line("_MULE_RELATIVE_COMPOSE", start
, len
,
185 (char **)&p
, (char **)&q
) == 1)
188 fontp
->relative_compose
= val1
;
190 else if (search_file_line("_MULE_DEFAULT_ASCENT", start
, len
,
191 (char **)&p
, (char **)&q
) == 1)
194 fontp
->default_ascent
= val1
;
196 else if (search_file_line("CHARSET_REGISTRY", start
, len
,
197 (char **)&p
, (char **)&q
) == 1)
199 fontp
->registry
= get_quoted_string(p
, q
);
201 else if (search_file_line("CHARSET_ENCODING", start
, len
,
202 (char **)&p
, (char **)&q
) == 1)
204 fontp
->encoding
= get_quoted_string(p
, q
);
206 else if (search_file_line("SLANT", start
, len
,
207 (char **)&p
, (char **)&q
) == 1)
209 fontp
->slant
= get_quoted_string(p
, q
);
212 else if (search_file_line("SETWIDTH_NAME", start, len,
213 (char **)&p, (char **)&q) == 1)
215 fontp->width = get_quoted_string(p, q);
220 flag
= search_file_line("ENDPROPERTIES", start
, len
,
221 (char **)&p
, (char **)&q
);
223 if (flag
== -1) return 0;
227 flag
= proceed_file_line("CHARS", start
, &len
, (char **)&p
, (char **)&q
);
229 fontp
->nchars
= atoi(p
);
236 w32_init_bdf_font(char *filename
)
238 HANDLE hfile
, hfilemap
;
241 BY_HANDLE_FILE_INFORMATION fileinfo
;
244 if (hbdf_cp_heap
== INVALID_HANDLE_VALUE
)
245 hbdf_cp_heap
= HeapCreate(0, BDF_CODEPOINT_HEAP_INITIAL_SIZE
, 0);
246 if (hbdf_bmp_heap
== INVALID_HANDLE_VALUE
)
247 hbdf_bmp_heap
= HeapCreate(0, BDF_BITMAP_HEAP_INITIAL_SIZE
, 0);
249 if (!hbdf_cp_heap
|| !hbdf_bmp_heap
)
250 error("Fail to create heap for BDF.");
252 hfile
= CreateFile(filename
, GENERIC_READ
, FILE_SHARE_READ
, NULL
,
253 OPEN_EXISTING
, FILE_ATTRIBUTE_NORMAL
, NULL
);
254 if (hfile
== INVALID_HANDLE_VALUE
) return NULL
;
255 if (!GetFileInformationByHandle(hfile
, &fileinfo
) ||
256 (fileinfo
.nFileSizeHigh
!= 0) ||
257 (fileinfo
.nFileSizeLow
> BDF_FILE_SIZE_MAX
))
260 error("Fail to open BDF file.");
262 hfilemap
= CreateFileMapping(hfile
, NULL
, PAGE_READONLY
, 0, 0, NULL
);
263 if (hfilemap
== INVALID_HANDLE_VALUE
)
266 error("Can't map font.");
269 font
= MapViewOfFile(hfilemap
, FILE_MAP_READ
, 0, 0, 0);
274 CloseHandle(hfilemap
);
275 error("Can't view font.");
278 bdffontp
= (bdffont
*) xmalloc(sizeof(bdffont
));
280 for(i
= 0;i
< BDF_FIRST_OFFSET_TABLE
;i
++)
281 bdffontp
->chtbl
[i
] = NULL
;
282 bdffontp
->size
= fileinfo
.nFileSizeLow
;
283 bdffontp
->font
= font
;
284 bdffontp
->hfile
= hfile
;
285 bdffontp
->hfilemap
= hfilemap
;
286 bdffontp
->filename
= (char*) xmalloc(strlen(filename
) + 1);
287 strcpy(bdffontp
->filename
, filename
);
289 if (!set_bdf_font_info(bdffontp
))
291 w32_free_bdf_font(bdffontp
);
292 error("Invalid BDF font!");
298 w32_free_bdf_font(bdffont
*fontp
)
304 UnmapViewOfFile(fontp
->hfilemap
);
305 CloseHandle(fontp
->hfilemap
);
306 CloseHandle(fontp
->hfile
);
308 if (fontp
->registry
) xfree(fontp
->registry
);
309 if (fontp
->encoding
) xfree(fontp
->encoding
);
310 if (fontp
->slant
) xfree(fontp
->slant
);
311 /* if (fontp->width) xfree(fontp->width); */
313 xfree(fontp
->filename
);
314 for(i
= 0;i
< BDF_FIRST_OFFSET_TABLE
;i
++)
316 pch
= fontp
->chtbl
[i
];
319 for (j
= 0;j
< BDF_SECOND_OFFSET_TABLE
;j
++)
325 HeapFree(hbdf_bmp_heap
, 0, pcb
->pbmp
);
329 HeapFree(hbdf_cp_heap
, 0, pch
);
336 get_cached_font_char(bdffont
*fontp
, int index
)
338 font_char
*pch
, *result
;
340 if (!BDF_CODEPOINT_RANGE_COVER_P(index
))
343 pch
= fontp
->chtbl
[BDF_FIRST_OFFSET(index
)];
347 result
= &pch
[BDF_SECOND_OFFSET(index
)];
349 if (!result
->offset
) return NULL
;
355 cache_char_offset(bdffont
*fontp
, int index
, unsigned char *offset
)
357 font_char
*pch
, *result
;
359 if (!BDF_CODEPOINT_RANGE_COVER_P(index
))
362 pch
= fontp
->chtbl
[BDF_FIRST_OFFSET(index
)];
365 pch
= fontp
->chtbl
[BDF_FIRST_OFFSET(index
)] =
366 (font_char
*) HeapAlloc(hbdf_cp_heap
,
369 BDF_SECOND_OFFSET_TABLE
);
370 if (!pch
) return NULL
;
371 /* memset(pch, 0, sizeof(font_char) * BDF_SECOND_OFFSET_TABLE); */
374 result
= &pch
[BDF_SECOND_OFFSET(index
)];
375 result
->offset
= offset
;
381 seek_char(bdffont
*fontp
, int index
)
384 int len
, flag
, font_index
;
385 unsigned char *start
, *p
, *q
;
387 if (!fontp
->seeked
) return NULL
;
389 start
= fontp
->seeked
;
390 len
= fontp
->size
- (start
- fontp
->font
);
393 flag
= proceed_file_line("ENCODING", start
, &len
,
394 (char **)&p
, (char **)&q
);
397 fontp
->seeked
= NULL
;
400 font_index
= atoi(p
);
401 result
= cache_char_offset(fontp
, font_index
, q
);
402 if (!result
) return NULL
;
404 start
= result
->offset
;
405 } while (font_index
!= index
);
406 fontp
->seeked
= start
;
412 clear_cached_bitmap_slots()
417 p
= pcached_bitmap_latest
;
418 for (i
= 0;i
< BDF_FONT_CLEAR_SIZE
;i
++)
423 HeapFree(hbdf_bmp_heap
, 0, p
->pbmp
);
424 p
->psrc
->pcbmp
= NULL
;
428 if (FONT_CACHE_SLOT_OVER_P(p
))
429 p
= cached_bitmap_slots
;
433 #define GET_HEX_VAL(x) ((isdigit(x)) ? ((x) - '0') : \
434 (((x) >= 'A') && ((x) <= 'F')) ? ((x) - 'A' + 10) : \
435 (((x) >= 'a') && ((x) <= 'f')) ? ((x) - 'a' + 10) : \
439 w32_get_bdf_glyph(bdffont
*fontp
, int index
, int size
, glyph_struct
*glyph
)
442 unsigned char *start
, *p
, *q
, *bitmapp
;
443 unsigned char val
, val1
, val2
;
444 int i
, j
, len
, flag
, consumed
;
447 pch
= get_cached_font_char(fontp
, index
);
450 pch
= seek_char(fontp
, index
);
457 if ((size
== 0) && pch
->pcbmp
)
459 glyph
->metric
= pch
->pcbmp
->metric
;
463 len
= fontp
->size
- (start
- fontp
->font
);
465 flag
= proceed_file_line("DWIDTH", start
, &len
, (char **)&p
, (char **)&q
);
468 glyph
->metric
.dwidth
= atoi(p
);
471 flag
= proceed_file_line("BBX", start
, &len
, (char **)&p
, (char **)&q
);
474 glyph
->metric
.bbw
= strtol(p
, (char **)&start
, 10);
476 glyph
->metric
.bbh
= strtol(p
, (char **)&start
, 10);
478 glyph
->metric
.bbox
= strtol(p
, (char **)&start
, 10);
480 glyph
->metric
.bboy
= strtol(p
, (char **)&start
, 10);
482 if (size
== 0) return 1;
485 flag
= proceed_file_line("BITMAP", start
, &len
, (char **)&p
, (char **)&q
);
492 bitmapp
= glyph
->bitmap
;
493 rowbytes
= (glyph
->metric
.bbw
+ 7) / 8;
494 /* DIB requires DWORD alignment. */
495 align
= sizeof(DWORD
) - rowbytes
% sizeof(DWORD
);
496 consumed
= glyph
->metric
.bbh
* (rowbytes
+ align
);
497 glyph
->bitmap_size
= consumed
;
498 glyph
->row_byte_size
= rowbytes
;
499 if (size
< consumed
) return 0;
501 for(i
= 0;i
< glyph
->metric
.bbh
;i
++)
503 q
= memchr(p
, '\n', len
);
505 for(j
= 0;((q
> p
) && (j
< rowbytes
));j
++)
507 int ival
= GET_HEX_VAL(*p
);
509 if (ival
== -1) return 0;
512 ival
= GET_HEX_VAL(*p
);
513 if (ival
== -1) return 0;
516 val
= (unsigned char)((val1
<< 4) | val2
);
520 for(j
= 0;j
< align
;j
++)
525 /* If this glyph is white space, return -1. */
526 if (flag
== 0) return -1;
533 get_bitmap_with_cache(bdffont
*fontp
, int index
)
535 int bitmap_size
, bitmap_real_size
;
541 pch
= get_cached_font_char(fontp
, index
);
548 bitmap_size
= ((fontp
->urx
- fontp
->llx
) / 8 + 3) * (fontp
->ury
- fontp
->lly
)
550 glyph
.bitmap
= (unsigned char*) alloca(sizeof(unsigned char) * bitmap_size
);
552 bitmap_real_size
= w32_get_bdf_glyph(fontp
, index
, bitmap_size
, &glyph
);
554 if (bitmap_real_size
== 0)
557 pch
= get_cached_font_char(fontp
, index
);
558 if (!pch
) return NULL
;
560 if (bitmap_real_size
> 0)
562 pbmp
= (unsigned char*) HeapAlloc(hbdf_bmp_heap
, 0,
564 if (!pbmp
) return NULL
;
565 memcpy(pbmp
, glyph
.bitmap
, bitmap_real_size
);
568 pbmp
= NULL
; /* white space character */
570 pcb
= pcached_bitmap_latest
;
572 clear_cached_bitmap_slots();
575 pcb
->metric
= glyph
.metric
;
577 pcb
->bitmap_size
= glyph
.bitmap_size
;
578 pcb
->row_byte_size
= glyph
.row_byte_size
;
582 pcached_bitmap_latest
++;
583 if (FONT_CACHE_SLOT_OVER_P(pcached_bitmap_latest
))
584 pcached_bitmap_latest
= cached_bitmap_slots
;
590 create_offscreen_bitmap(HDC hdc
, int width
, int height
, unsigned char **bitsp
)
597 memset(&info
, 0, sizeof(info
));
598 info
.h
.biSize
= sizeof(BITMAPINFOHEADER
);
599 info
.h
.biWidth
= width
;
600 info
.h
.biHeight
= -height
;
602 info
.h
.biBitCount
= 1;
603 info
.h
.biCompression
= BI_RGB
;
604 info
.c
[1].rgbRed
= info
.c
[1].rgbGreen
= info
.c
[1].rgbBlue
= 255;
606 return CreateDIBSection(hdc
, (LPBITMAPINFO
)&info
,
607 DIB_RGB_COLORS
, bitsp
, NULL
, 0);
611 w32_BDF_TextMetric(bdffont
*fontp
, unsigned char *text
, int dim
)
619 index
= MAKELENDSHORT(text
[1], text
[0]);
621 pcb
= get_bitmap_with_cache(fontp
, index
);
625 return &(pcb
->metric
);
629 w32_BDF_TextOut(bdffont
*fontp
, HDC hdc
, int left
,
630 int top
, unsigned char *text
, int dim
, int bytelen
,
631 int fixed_pitch_size
)
634 unsigned char *textp
;
636 HBRUSH hFgBrush
, hOrgBrush
;
642 static HBITMAP hBMP
= 0;
643 static HDC DIBsection_hdc
= 0;
644 static int DIBsection_width
, DIBsection_height
;
645 static unsigned char *bits
;
647 hCompatDC
= CreateCompatibleDC(hdc
);
651 textalign
= GetTextAlign(hdc
);
653 hFgBrush
= CreateSolidBrush(GetTextColor(hdc
));
654 hOrgBrush
= SelectObject(hdc
, hFgBrush
);
668 if (bytelen
< 0) break;
669 index
= MAKELENDSHORT(textp
[0], textp
[1]);
672 pcb
= get_bitmap_with_cache(fontp
, index
);
680 width
= pcb
->metric
.bbw
;
681 height
= pcb
->metric
.bbh
;
684 && (DIBsection_hdc
== hdc
)
685 && (DIBsection_width
== width
)
686 && (DIBsection_height
== height
)))
688 if (hBMP
) DeleteObject(hBMP
);
689 hBMP
= create_offscreen_bitmap(hdc
, width
, height
, &bits
);
690 DIBsection_hdc
= hdc
;
691 DIBsection_width
= width
;
692 DIBsection_height
= height
;
696 memcpy(bits
, pcb
->pbmp
, pcb
->bitmap_size
);
698 if (textalign
& TA_BASELINE
)
699 btop
= top
- (pcb
->metric
.bbh
+ pcb
->metric
.bboy
);
700 else if (textalign
& TA_BOTTOM
)
701 btop
= top
- pcb
->metric
.bbh
;
705 horgobj
= SelectObject(hCompatDC
, hBMP
);
706 BitBlt(hdc
, left
, btop
, width
, height
, hCompatDC
, 0, 0, 0xE20746);
707 SelectObject(hCompatDC
, horgobj
);
710 if (fixed_pitch_size
)
711 left
+= fixed_pitch_size
;
713 left
+= pcb
->metric
.dwidth
;
718 SelectObject(hdc
, hOrgBrush
);
719 DeleteObject(hFgBrush
);
724 struct font_info
*w32_load_bdf_font (struct frame
*f
, char *fontname
,
725 int size
, char* filename
)
727 struct w32_display_info
*dpyinfo
= FRAME_W32_DISPLAY_INFO (f
);
728 struct font_info
*fontp
;
732 bdf_font
= w32_init_bdf_font (filename
);
734 if (!bdf_font
) return NULL
;
736 font
= (XFontStruct
*) xmalloc (sizeof (XFontStruct
));
737 bzero (font
, sizeof (*font
));
739 font
->bdf
= bdf_font
;
742 /* NTEMACS_TODO: Better way of determining if a font is double byte
744 font
->double_byte_p
= bdf_font
->nchars
> 255 ? 1 : 0;
746 w32_cache_char_metrics (font
);
748 /* Do we need to create the table? */
749 if (dpyinfo
->font_table_size
== 0)
751 dpyinfo
->font_table_size
= 16;
753 = (struct font_info
*) xmalloc (dpyinfo
->font_table_size
754 * sizeof (struct font_info
));
756 /* Do we need to grow the table? */
757 else if (dpyinfo
->n_fonts
758 >= dpyinfo
->font_table_size
)
760 dpyinfo
->font_table_size
*= 2;
762 = (struct font_info
*) xrealloc (dpyinfo
->font_table
,
763 (dpyinfo
->font_table_size
764 * sizeof (struct font_info
)));
767 fontp
= dpyinfo
->font_table
+ dpyinfo
->n_fonts
;
769 /* Now fill in the slots of *FONTP. */
772 fontp
->font_idx
= dpyinfo
->n_fonts
;
773 fontp
->name
= (char *) xmalloc (strlen (fontname
) + 1);
774 bcopy (fontname
, fontp
->name
, strlen (fontname
) + 1);
775 fontp
->full_name
= fontp
->name
;
776 fontp
->size
= FONT_WIDTH (font
);
777 fontp
->height
= FONT_HEIGHT (font
);
779 /* The slot `encoding' specifies how to map a character
780 code-points (0x20..0x7F or 0x2020..0x7F7F) of each charset to
781 the font code-points (0:0x20..0x7F, 1:0xA0..0xFF, 0:0x2020..0x7F7F,
782 the font code-points (0:0x20..0x7F, 1:0xA0..0xFF,
783 0:0x2020..0x7F7F, 1:0xA0A0..0xFFFF, 3:0x20A0..0x7FFF, or
784 2:0xA020..0xFF7F). For the moment, we don't know which charset
785 uses this font. So, we set informatoin in fontp->encoding[1]
786 which is never used by any charset. If mapping can't be
787 decided, set FONT_ENCODING_NOT_DECIDED. */
788 fontp
->encoding
[1] = FONT_ENCODING_NOT_DECIDED
;
789 fontp
->baseline_offset
= bdf_font
->yoffset
;
790 fontp
->relative_compose
= bdf_font
->relative_compose
;
791 fontp
->default_ascent
= bdf_font
->default_ascent
;
793 /* Set global flag fonts_changed_p to non-zero if the font loaded
794 has a character with a smaller width than any other character
795 before, or if the font loaded has a smaller height than any
796 other font loaded before. If this happens, it will make a
797 glyph matrix reallocation necessary. */
798 fonts_changed_p
|= x_compute_min_glyph_bounds (f
);
805 /* Check a file for an XLFD string describing it. */
806 int w32_BDF_to_x_font (char *file
, char* xstr
, int len
)
808 HANDLE hfile
, hfilemap
;
809 BY_HANDLE_FILE_INFORMATION fileinfo
;
810 char *font
, *start
, *p
, *q
;
811 int flag
, size
, retval
= 0;
813 hfile
= CreateFile (file
, GENERIC_READ
, FILE_SHARE_READ
, NULL
,
814 OPEN_EXISTING
, FILE_ATTRIBUTE_NORMAL
, NULL
);
815 if (hfile
== INVALID_HANDLE_VALUE
) return 0;
816 if (!GetFileInformationByHandle(hfile
, &fileinfo
) ||
817 (fileinfo
.nFileSizeHigh
!= 0) ||
818 (fileinfo
.nFileSizeLow
> BDF_FILE_SIZE_MAX
))
823 size
= fileinfo
.nFileSizeLow
;
825 hfilemap
= CreateFileMapping (hfile
, NULL
, PAGE_READONLY
, 0, 0, NULL
);
826 if (hfilemap
== INVALID_HANDLE_VALUE
)
832 font
= MapViewOfFile (hfilemap
, FILE_MAP_READ
, 0, 0, 0);
836 CloseHandle (hfilemap
);
841 flag
= proceed_file_line ("FONT ", start
, &size
, &p
, &q
);
844 /* If font provides a description of itself, check it is a
845 full XLFD before accepting it. */
849 for (s
= p
; s
< q
; s
++)
854 if (count
== 14 && q
- p
- 1 <= len
)
856 strncpy (xstr
, p
, q
-p
-1);
858 /* Files may have DOS line ends (ie still ^M on end). */
859 if (iscntrl(xstr
[q
-p
-2]))
866 CloseHandle (hfilemap
);