Comment.
[emacs.git] / src / w32font.c
blob10c2ab99ba966081d181fd49d22352aac9345169
1 /* Font backend for the Microsoft W32 API.
2 Copyright (C) 2007, 2008 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 3, or (at your option)
9 any later version.
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., 51 Franklin Street, Fifth Floor,
19 Boston, MA 02110-1301, USA. */
21 #ifdef USE_FONT_BACKEND
23 #include <config.h>
24 #include <windows.h>
25 #include <math.h>
27 #include "lisp.h"
28 #include "w32term.h"
29 #include "frame.h"
30 #include "dispextern.h"
31 #include "character.h"
32 #include "charset.h"
33 #include "fontset.h"
34 #include "font.h"
35 #include "w32font.h"
37 /* Cleartype available on Windows XP, cleartype_natural from XP SP1.
38 The latter does not try to fit cleartype smoothed fonts into the
39 same bounding box as the non-antialiased version of the font.
41 #ifndef CLEARTYPE_QUALITY
42 #define CLEARTYPE_QUALITY 5
43 #endif
44 #ifndef CLEARTYPE_NATURAL_QUALITY
45 #define CLEARTYPE_NATURAL_QUALITY 6
46 #endif
48 extern struct font_driver w32font_driver;
50 Lisp_Object Qgdi;
51 Lisp_Object Quniscribe;
52 static Lisp_Object QCformat;
53 static Lisp_Object Qmonospace, Qsansserif, Qmono, Qsans, Qsans_serif;
54 static Lisp_Object Qserif, Qscript, Qdecorative;
55 static Lisp_Object Qraster, Qoutline, Qunknown;
57 /* antialiasing */
58 extern Lisp_Object QCantialias; /* defined in font.c */
59 extern Lisp_Object Qnone; /* reuse from w32fns.c */
60 static Lisp_Object Qstandard, Qsubpixel, Qnatural;
62 /* scripts */
63 static Lisp_Object Qlatin, Qgreek, Qcoptic, Qcyrillic, Qarmenian, Qhebrew;
64 static Lisp_Object Qarabic, Qsyriac, Qnko, Qthaana, Qdevanagari, Qbengali;
65 static Lisp_Object Qgurmukhi, Qgujarati, Qoriya, Qtamil, Qtelugu;
66 static Lisp_Object Qkannada, Qmalayalam, Qsinhala, Qthai, Qlao;
67 static Lisp_Object Qtibetan, Qmyanmar, Qgeorgian, Qhangul, Qethiopic;
68 static Lisp_Object Qcherokee, Qcanadian_aboriginal, Qogham, Qrunic;
69 static Lisp_Object Qkhmer, Qmongolian, Qsymbol, Qbraille, Qhan;
70 static Lisp_Object Qideographic_description, Qcjk_misc, Qkana, Qbopomofo;
71 static Lisp_Object Qkanbun, Qyi, Qbyzantine_musical_symbol;
72 static Lisp_Object Qmusical_symbol, Qmathematical;
74 /* Font spacing symbols - defined in font.c. */
75 extern Lisp_Object Qc, Qp, Qm;
77 static void fill_in_logfont P_ ((FRAME_PTR f, LOGFONT *logfont,
78 Lisp_Object font_spec));
80 static BYTE w32_antialias_type P_ ((Lisp_Object type));
81 static Lisp_Object lispy_antialias_type P_ ((BYTE type));
83 static Lisp_Object font_supported_scripts P_ ((FONTSIGNATURE * sig));
84 static int w32font_full_name P_ ((LOGFONT * font, Lisp_Object font_obj,
85 int pixel_size, char *name, int nbytes));
86 static void recompute_cached_metrics P_ ((HDC dc, struct w32font_info * font));
88 static Lisp_Object w32_registry P_ ((LONG w32_charset, DWORD font_type));
90 /* EnumFontFamiliesEx callbacks. */
91 static int CALLBACK add_font_entity_to_list P_ ((ENUMLOGFONTEX *,
92 NEWTEXTMETRICEX *,
93 DWORD, LPARAM));
94 static int CALLBACK add_one_font_entity_to_list P_ ((ENUMLOGFONTEX *,
95 NEWTEXTMETRICEX *,
96 DWORD, LPARAM));
97 static int CALLBACK add_font_name_to_list P_ ((ENUMLOGFONTEX *,
98 NEWTEXTMETRICEX *,
99 DWORD, LPARAM));
101 /* struct passed in as LPARAM arg to EnumFontFamiliesEx, for keeping track
102 of what we really want. */
103 struct font_callback_data
105 /* The logfont we are matching against. EnumFontFamiliesEx only matches
106 face name and charset, so we need to manually match everything else
107 in the callback function. */
108 LOGFONT pattern;
109 /* The original font spec or entity. */
110 Lisp_Object orig_font_spec;
111 /* The frame the font is being loaded on. */
112 Lisp_Object frame;
113 /* The list to add matches to. */
114 Lisp_Object list;
115 /* Whether to match only opentype fonts. */
116 int opentype_only;
119 /* Handles the problem that EnumFontFamiliesEx will not return all
120 style variations if the font name is not specified. */
121 static void list_all_matching_fonts P_ ((struct font_callback_data *match));
123 /* From old font code in w32fns.c */
124 char * w32_to_x_charset P_ ((int charset, char * matching));
127 static int
128 memq_no_quit (elt, list)
129 Lisp_Object elt, list;
131 while (CONSP (list) && ! EQ (XCAR (list), elt))
132 list = XCDR (list);
133 return (CONSP (list));
136 /* w32 implementation of get_cache for font backend.
137 Return a cache of font-entities on FRAME. The cache must be a
138 cons whose cdr part is the actual cache area. */
139 Lisp_Object
140 w32font_get_cache (f)
141 FRAME_PTR f;
143 struct w32_display_info *dpyinfo = FRAME_X_DISPLAY_INFO (f);
145 return (dpyinfo->name_list_element);
148 /* w32 implementation of list for font backend.
149 List fonts exactly matching with FONT_SPEC on FRAME. The value
150 is a vector of font-entities. This is the sole API that
151 allocates font-entities. */
152 static Lisp_Object
153 w32font_list (frame, font_spec)
154 Lisp_Object frame, font_spec;
156 return w32font_list_internal (frame, font_spec, 0);
159 /* w32 implementation of match for font backend.
160 Return a font entity most closely matching with FONT_SPEC on
161 FRAME. The closeness is detemined by the font backend, thus
162 `face-font-selection-order' is ignored here. */
163 static Lisp_Object
164 w32font_match (frame, font_spec)
165 Lisp_Object frame, font_spec;
167 return w32font_match_internal (frame, font_spec, 0);
170 /* w32 implementation of list_family for font backend.
171 List available families. The value is a list of family names
172 (symbols). */
173 static Lisp_Object
174 w32font_list_family (frame)
175 Lisp_Object frame;
177 Lisp_Object list = Qnil;
178 LOGFONT font_match_pattern;
179 HDC dc;
180 FRAME_PTR f = XFRAME (frame);
182 bzero (&font_match_pattern, sizeof (font_match_pattern));
184 dc = get_frame_dc (f);
186 EnumFontFamiliesEx (dc, &font_match_pattern,
187 (FONTENUMPROC) add_font_name_to_list,
188 (LPARAM) &list, 0);
189 release_frame_dc (f, dc);
191 return list;
194 /* w32 implementation of open for font backend.
195 Open a font specified by FONT_ENTITY on frame F.
196 If the font is scalable, open it with PIXEL_SIZE. */
197 static struct font *
198 w32font_open (f, font_entity, pixel_size)
199 FRAME_PTR f;
200 Lisp_Object font_entity;
201 int pixel_size;
203 struct w32font_info *w32_font = xmalloc (sizeof (struct w32font_info));
205 if (w32_font == NULL)
206 return NULL;
208 if (!w32font_open_internal (f, font_entity, pixel_size, w32_font))
210 xfree (w32_font);
211 return NULL;
214 return (struct font *) w32_font;
217 /* w32 implementation of close for font_backend.
218 Close FONT on frame F. */
219 void
220 w32font_close (f, font)
221 FRAME_PTR f;
222 struct font *font;
224 if (font->font.font)
226 W32FontStruct *old_w32_font = (W32FontStruct *)font->font.font;
227 DeleteObject (old_w32_font->hfont);
228 xfree (old_w32_font);
229 font->font.font = 0;
232 if (font->font.full_name && font->font.full_name != font->font.name)
233 xfree (font->font.full_name);
235 if (font->font.name)
236 xfree (font->font.name);
238 xfree (font);
241 /* w32 implementation of has_char for font backend.
242 Optional.
243 If FONT_ENTITY has a glyph for character C (Unicode code point),
244 return 1. If not, return 0. If a font must be opened to check
245 it, return -1. */
247 w32font_has_char (entity, c)
248 Lisp_Object entity;
249 int c;
251 Lisp_Object supported_scripts, extra, script;
252 DWORD mask;
254 extra = AREF (entity, FONT_EXTRA_INDEX);
255 if (!CONSP (extra))
256 return -1;
258 supported_scripts = assq_no_quit (QCscript, extra);
259 if (!CONSP (supported_scripts))
260 return -1;
262 supported_scripts = XCDR (supported_scripts);
264 script = CHAR_TABLE_REF (Vchar_script_table, c);
266 return (memq_no_quit (script, supported_scripts)) ? -1 : 0;
269 /* w32 implementation of encode_char for font backend.
270 Return a glyph code of FONT for characer C (Unicode code point).
271 If FONT doesn't have such a glyph, return FONT_INVALID_CODE. */
272 static unsigned
273 w32font_encode_char (font, c)
274 struct font *font;
275 int c;
277 struct frame *f;
278 HDC dc;
279 HFONT old_font;
280 DWORD retval;
281 GCP_RESULTSW result;
282 wchar_t in[2];
283 wchar_t out[2];
284 int len;
285 struct w32font_info *w32_font = (struct w32font_info *) font;
287 /* If glyph indexing is not working for this font, just return the
288 unicode code-point. */
289 if (!w32_font->glyph_idx)
290 return c;
292 if (c > 0xFFFF)
294 /* TODO: Encode as surrogate pair and lookup the glyph. */
295 return FONT_INVALID_CODE;
297 else
299 in[0] = (wchar_t) c;
300 len = 1;
303 bzero (&result, sizeof (result));
304 result.lStructSize = sizeof (result);
305 result.lpGlyphs = out;
306 result.nGlyphs = 2;
308 f = XFRAME (selected_frame);
310 dc = get_frame_dc (f);
311 old_font = SelectObject (dc, ((W32FontStruct *) (font->font.font))->hfont);
313 retval = GetCharacterPlacementW (dc, in, len, 0, &result, 0);
315 SelectObject (dc, old_font);
316 release_frame_dc (f, dc);
318 if (retval)
320 if (result.nGlyphs != 1 || !result.lpGlyphs[0])
321 return FONT_INVALID_CODE;
322 return result.lpGlyphs[0];
324 else
326 int i;
327 /* Mark this font as not supporting glyph indices. This can happen
328 on Windows9x, and maybe with non-Truetype fonts on NT etc. */
329 w32_font->glyph_idx = 0;
330 recompute_cached_metrics (dc, w32_font);
332 return c;
336 /* w32 implementation of text_extents for font backend.
337 Perform the size computation of glyphs of FONT and fillin members
338 of METRICS. The glyphs are specified by their glyph codes in
339 CODE (length NGLYPHS). Apparently metrics can be NULL, in this
340 case just return the overall width. */
342 w32font_text_extents (font, code, nglyphs, metrics)
343 struct font *font;
344 unsigned *code;
345 int nglyphs;
346 struct font_metrics *metrics;
348 int i;
349 HFONT old_font = NULL;
350 HDC dc = NULL;
351 struct frame * f;
352 int total_width = 0;
353 WORD *wcode = alloca(nglyphs * sizeof (WORD));
354 SIZE size;
356 /* TODO: Frames can come and go, and their fonts outlive them. So we
357 can't cache the frame in the font structure. Use selected_frame
358 until the API is updated to pass in a frame. */
359 f = XFRAME (selected_frame);
361 if (metrics)
363 GLYPHMETRICS gm;
364 MAT2 transform;
365 struct w32font_info *w32_font = (struct w32font_info *) font;
367 /* Set transform to the identity matrix. */
368 bzero (&transform, sizeof (transform));
369 transform.eM11.value = 1;
370 transform.eM22.value = 1;
371 metrics->width = 0;
372 metrics->ascent = 0;
373 metrics->descent = 0;
374 metrics->lbearing = 0;
376 for (i = 0; i < nglyphs; i++)
378 if (*(code + i) < 128)
380 /* Use cached metrics for ASCII. */
381 struct font_metrics *char_metric
382 = &w32_font->ascii_metrics[*(code+i)];
384 /* If we couldn't get metrics when caching, use fallback. */
385 if (char_metric->width == 0)
386 break;
388 metrics->lbearing = max (metrics->lbearing,
389 char_metric->lbearing - metrics->width);
390 metrics->rbearing = max (metrics->rbearing,
391 metrics->width + char_metric->rbearing);
392 metrics->width += char_metric->width;
393 metrics->ascent = max (metrics->ascent, char_metric->ascent);
394 metrics->descent = max (metrics->descent, char_metric->descent);
396 else
398 if (dc == NULL)
400 dc = get_frame_dc (f);
401 old_font = SelectObject (dc, ((W32FontStruct *)
402 (font->font.font))->hfont);
404 if (GetGlyphOutlineW (dc, *(code + i),
405 GGO_METRICS
406 | w32_font->glyph_idx
407 ? GGO_GLYPH_INDEX : 0,
408 &gm, 0, NULL, &transform) != GDI_ERROR)
410 int new_val = metrics->width + gm.gmBlackBoxX
411 + gm.gmptGlyphOrigin.x;
412 metrics->rbearing = max (metrics->rbearing, new_val);
413 new_val = -gm.gmptGlyphOrigin.x - metrics->width;
414 metrics->lbearing = max (metrics->lbearing, new_val);
415 metrics->width += gm.gmCellIncX;
416 new_val = -gm.gmptGlyphOrigin.y;
417 metrics->ascent = max (metrics->ascent, new_val);
418 new_val = gm.gmBlackBoxY + gm.gmptGlyphOrigin.y;
419 metrics->descent = max (metrics->descent, new_val);
421 else
423 if (w32_font->glyph_idx)
425 /* Disable glyph indexing for this font, as we can't
426 handle the metrics. Abort this run, our recovery
427 strategies rely on having unicode code points here.
428 This will cause a glitch in display, but in practice,
429 any problems should be caught when initialising the
430 metrics cache. */
431 w32_font->glyph_idx = 0;
432 recompute_cached_metrics (dc, w32_font);
433 SelectObject (dc, old_font);
434 release_frame_dc (f, dc);
435 return 0;
437 /* Rely on an estimate based on the overall font metrics. */
438 break;
443 /* If we got through everything, return. */
444 if (i == nglyphs)
446 if (dc != NULL)
448 /* Restore state and release DC. */
449 SelectObject (dc, old_font);
450 release_frame_dc (f, dc);
453 return metrics->width;
457 for (i = 0; i < nglyphs; i++)
459 if (code[i] < 0x10000)
460 wcode[i] = code[i];
461 else
463 /* TODO: Convert to surrogate, reallocating array if needed */
464 wcode[i] = 0xffff;
468 if (dc == NULL)
470 dc = get_frame_dc (f);
471 old_font = SelectObject (dc, ((W32FontStruct *)
472 (font->font.font))->hfont);
475 if (GetTextExtentPoint32W (dc, wcode, nglyphs, &size))
477 total_width = size.cx;
480 if (!total_width)
482 RECT rect;
483 rect.top = 0; rect.bottom = font->font.height; rect.left = 0; rect.right = 1;
484 DrawTextW (dc, wcode, nglyphs, &rect,
485 DT_CALCRECT | DT_NOPREFIX | DT_SINGLELINE);
486 total_width = rect.right;
489 if (metrics)
491 metrics->width = total_width;
492 metrics->ascent = font->ascent;
493 metrics->descent = font->descent;
494 metrics->lbearing = 0;
495 metrics->rbearing = total_width
496 + ((struct w32font_info *) font)->metrics.tmOverhang;
499 /* Restore state and release DC. */
500 SelectObject (dc, old_font);
501 release_frame_dc (f, dc);
503 return total_width;
506 /* w32 implementation of draw for font backend.
507 Optional.
508 Draw glyphs between FROM and TO of S->char2b at (X Y) pixel
509 position of frame F with S->FACE and S->GC. If WITH_BACKGROUND
510 is nonzero, fill the background in advance. It is assured that
511 WITH_BACKGROUND is zero when (FROM > 0 || TO < S->nchars).
513 TODO: Currently this assumes that the colors and fonts are already
514 set in the DC. This seems to be true now, but maybe only due to
515 the old font code setting it up. It may be safer to resolve faces
516 and fonts in here and set them explicitly
520 w32font_draw (s, from, to, x, y, with_background)
521 struct glyph_string *s;
522 int from, to, x, y, with_background;
524 UINT options;
525 HRGN orig_clip;
526 struct w32font_info *w32font = (struct w32font_info *) s->face->font_info;
528 options = w32font->glyph_idx;
530 /* Save clip region for later restoration. */
531 GetClipRgn(s->hdc, orig_clip);
533 if (s->num_clips > 0)
535 HRGN new_clip = CreateRectRgnIndirect (s->clip);
537 if (s->num_clips > 1)
539 HRGN clip2 = CreateRectRgnIndirect (s->clip + 1);
541 CombineRgn (new_clip, new_clip, clip2, RGN_OR);
542 DeleteObject (clip2);
545 SelectClipRgn (s->hdc, new_clip);
546 DeleteObject (new_clip);
549 /* Using OPAQUE background mode can clear more background than expected
550 when Cleartype is used. Draw the background manually to avoid this. */
551 SetBkMode (s->hdc, TRANSPARENT);
552 if (with_background)
554 HBRUSH brush;
555 RECT rect;
556 struct font *font = (struct font *) s->face->font_info;
558 brush = CreateSolidBrush (s->gc->background);
559 rect.left = x;
560 rect.top = y - font->ascent;
561 rect.right = x + s->width;
562 rect.bottom = y + font->descent;
563 FillRect (s->hdc, &rect, brush);
564 DeleteObject (brush);
567 if (s->padding_p)
569 int len = to - from, i;
571 for (i = 0; i < len; i++)
572 ExtTextOutW (s->hdc, x + i, y, options, NULL,
573 s->char2b + from + i, 1, NULL);
575 else
576 ExtTextOutW (s->hdc, x, y, options, NULL, s->char2b + from, to - from, NULL);
578 /* Restore clip region. */
579 if (s->num_clips > 0)
581 SelectClipRgn (s->hdc, orig_clip);
585 /* w32 implementation of free_entity for font backend.
586 Optional (if FONT_EXTRA_INDEX is not Lisp_Save_Value).
587 Free FONT_EXTRA_INDEX field of FONT_ENTITY.
588 static void
589 w32font_free_entity (Lisp_Object entity);
592 /* w32 implementation of prepare_face for font backend.
593 Optional (if FACE->extra is not used).
594 Prepare FACE for displaying characters by FONT on frame F by
595 storing some data in FACE->extra. If successful, return 0.
596 Otherwise, return -1.
597 static int
598 w32font_prepare_face (FRAME_PTR f, struct face *face);
600 /* w32 implementation of done_face for font backend.
601 Optional.
602 Done FACE for displaying characters by FACE->font on frame F.
603 static void
604 w32font_done_face (FRAME_PTR f, struct face *face); */
606 /* w32 implementation of get_bitmap for font backend.
607 Optional.
608 Store bitmap data for glyph-code CODE of FONT in BITMAP. It is
609 intended that this method is called from the other font-driver
610 for actual drawing.
611 static int
612 w32font_get_bitmap (struct font *font, unsigned code,
613 struct font_bitmap *bitmap, int bits_per_pixel);
615 /* w32 implementation of free_bitmap for font backend.
616 Optional.
617 Free bitmap data in BITMAP.
618 static void
619 w32font_free_bitmap (struct font *font, struct font_bitmap *bitmap);
621 /* w32 implementation of get_outline for font backend.
622 Optional.
623 Return an outline data for glyph-code CODE of FONT. The format
624 of the outline data depends on the font-driver.
625 static void *
626 w32font_get_outline (struct font *font, unsigned code);
628 /* w32 implementation of free_outline for font backend.
629 Optional.
630 Free OUTLINE (that is obtained by the above method).
631 static void
632 w32font_free_outline (struct font *font, void *outline);
634 /* w32 implementation of anchor_point for font backend.
635 Optional.
636 Get coordinates of the INDEXth anchor point of the glyph whose
637 code is CODE. Store the coordinates in *X and *Y. Return 0 if
638 the operations was successfull. Otherwise return -1.
639 static int
640 w32font_anchor_point (struct font *font, unsigned code,
641 int index, int *x, int *y);
643 /* w32 implementation of otf_capability for font backend.
644 Optional.
645 Return a list describing which scripts/languages FONT
646 supports by which GSUB/GPOS features of OpenType tables.
647 static Lisp_Object
648 w32font_otf_capability (struct font *font);
650 /* w32 implementation of otf_drive for font backend.
651 Optional.
652 Apply FONT's OTF-FEATURES to the glyph string.
654 FEATURES specifies which OTF features to apply in this format:
655 (SCRIPT LANGSYS GSUB-FEATURE GPOS-FEATURE)
656 See the documentation of `font-drive-otf' for the detail.
658 This method applies the specified features to the codes in the
659 elements of GSTRING-IN (between FROMth and TOth). The output
660 codes are stored in GSTRING-OUT at the IDXth element and the
661 following elements.
663 Return the number of output codes. If none of the features are
664 applicable to the input data, return 0. If GSTRING-OUT is too
665 short, return -1.
666 static int
667 w32font_otf_drive (struct font *font, Lisp_Object features,
668 Lisp_Object gstring_in, int from, int to,
669 Lisp_Object gstring_out, int idx,
670 int alternate_subst);
673 /* Internal implementation of w32font_list.
674 Additional parameter opentype_only restricts the returned fonts to
675 opentype fonts, which can be used with the Uniscribe backend. */
676 Lisp_Object
677 w32font_list_internal (frame, font_spec, opentype_only)
678 Lisp_Object frame, font_spec;
679 int opentype_only;
681 struct font_callback_data match_data;
682 HDC dc;
683 FRAME_PTR f = XFRAME (frame);
685 match_data.orig_font_spec = font_spec;
686 match_data.list = Qnil;
687 match_data.frame = frame;
689 bzero (&match_data.pattern, sizeof (LOGFONT));
690 fill_in_logfont (f, &match_data.pattern, font_spec);
692 match_data.opentype_only = opentype_only;
693 if (opentype_only)
694 match_data.pattern.lfOutPrecision = OUT_OUTLINE_PRECIS;
696 if (match_data.pattern.lfFaceName[0] == '\0')
698 /* EnumFontFamiliesEx does not take other fields into account if
699 font name is blank, so need to use two passes. */
700 list_all_matching_fonts (&match_data);
702 else
704 dc = get_frame_dc (f);
706 EnumFontFamiliesEx (dc, &match_data.pattern,
707 (FONTENUMPROC) add_font_entity_to_list,
708 (LPARAM) &match_data, 0);
709 release_frame_dc (f, dc);
712 return NILP (match_data.list) ? null_vector : Fvconcat (1, &match_data.list);
715 /* Internal implementation of w32font_match.
716 Additional parameter opentype_only restricts the returned fonts to
717 opentype fonts, which can be used with the Uniscribe backend. */
718 Lisp_Object
719 w32font_match_internal (frame, font_spec, opentype_only)
720 Lisp_Object frame, font_spec;
721 int opentype_only;
723 struct font_callback_data match_data;
724 HDC dc;
725 FRAME_PTR f = XFRAME (frame);
727 match_data.orig_font_spec = font_spec;
728 match_data.frame = frame;
729 match_data.list = Qnil;
731 bzero (&match_data.pattern, sizeof (LOGFONT));
732 fill_in_logfont (f, &match_data.pattern, font_spec);
734 match_data.opentype_only = opentype_only;
735 if (opentype_only)
736 match_data.pattern.lfOutPrecision = OUT_OUTLINE_PRECIS;
738 dc = get_frame_dc (f);
740 EnumFontFamiliesEx (dc, &match_data.pattern,
741 (FONTENUMPROC) add_one_font_entity_to_list,
742 (LPARAM) &match_data, 0);
743 release_frame_dc (f, dc);
745 return NILP (match_data.list) ? Qnil : XCAR (match_data.list);
749 w32font_open_internal (f, font_entity, pixel_size, w32_font)
750 FRAME_PTR f;
751 Lisp_Object font_entity;
752 int pixel_size;
753 struct w32font_info *w32_font;
755 int len, size;
756 LOGFONT logfont;
757 HDC dc;
758 HFONT hfont, old_font;
759 Lisp_Object val, extra;
760 /* For backwards compatibility. */
761 W32FontStruct *compat_w32_font;
763 struct font * font = (struct font *) w32_font;
764 if (!font)
765 return 0;
767 bzero (&logfont, sizeof (logfont));
768 fill_in_logfont (f, &logfont, font_entity);
770 size = XINT (AREF (font_entity, FONT_SIZE_INDEX));
771 if (!size)
772 size = pixel_size;
774 logfont.lfHeight = -size;
775 hfont = CreateFontIndirect (&logfont);
777 if (hfont == NULL)
778 return 0;
780 /* Get the metrics for this font. */
781 dc = get_frame_dc (f);
782 old_font = SelectObject (dc, hfont);
784 GetTextMetrics (dc, &w32_font->metrics);
786 /* Cache ASCII metrics. */
787 w32_font->glyph_idx = ETO_GLYPH_INDEX;
788 recompute_cached_metrics (dc, w32_font);
790 SelectObject (dc, old_font);
791 release_frame_dc (f, dc);
793 /* W32FontStruct - we should get rid of this, and use the w32font_info
794 struct for any W32 specific fields. font->font.font can then be hfont. */
795 font->font.font = xmalloc (sizeof (W32FontStruct));
796 compat_w32_font = (W32FontStruct *) font->font.font;
797 bzero (compat_w32_font, sizeof (W32FontStruct));
798 compat_w32_font->font_type = UNICODE_FONT;
799 /* Duplicate the text metrics. */
800 bcopy (&w32_font->metrics, &compat_w32_font->tm, sizeof (TEXTMETRIC));
801 compat_w32_font->hfont = hfont;
803 len = strlen (logfont.lfFaceName);
804 font->font.name = (char *) xmalloc (len + 1);
805 bcopy (logfont.lfFaceName, font->font.name, len);
806 font->font.name[len] = '\0';
809 char *name;
811 /* We don't know how much space we need for the full name, so start with
812 96 bytes and go up in steps of 32. */
813 len = 96;
814 name = xmalloc (len);
815 while (name && w32font_full_name (&logfont, font_entity, pixel_size,
816 name, len) < 0)
818 char *new = xrealloc (name, len += 32);
820 if (! new)
821 xfree (name);
822 name = new;
824 if (name)
825 font->font.full_name = name;
826 else
827 font->font.full_name = font->font.name;
829 font->font.charset = 0;
830 font->font.codepage = 0;
831 font->font.size = w32_font->metrics.tmMaxCharWidth;
832 font->font.height = w32_font->metrics.tmHeight
833 + w32_font->metrics.tmExternalLeading;
834 font->font.space_width = font->font.average_width
835 = w32_font->metrics.tmAveCharWidth;
837 font->font.vertical_centering = 0;
838 font->font.encoding_type = 0;
839 font->font.baseline_offset = 0;
840 font->font.relative_compose = 0;
841 font->font.default_ascent = w32_font->metrics.tmAscent;
842 font->font.font_encoder = NULL;
843 font->entity = font_entity;
844 font->pixel_size = size;
845 font->driver = &w32font_driver;
846 /* Use format cached during list, as the information we have access to
847 here is incomplete. */
848 extra = AREF (font_entity, FONT_EXTRA_INDEX);
849 if (CONSP (extra))
851 val = assq_no_quit (QCformat, extra);
852 if (CONSP (val))
853 font->format = XCDR (val);
854 else
855 font->format = Qunknown;
857 else
858 font->format = Qunknown;
860 font->file_name = NULL;
861 font->encoding_charset = -1;
862 font->repertory_charset = -1;
863 /* TODO: do we really want the minimum width here, which could be negative? */
864 font->min_width = font->font.space_width;
865 font->ascent = w32_font->metrics.tmAscent;
866 font->descent = w32_font->metrics.tmDescent;
867 font->scalable = w32_font->metrics.tmPitchAndFamily & TMPF_VECTOR;
869 /* Set global flag fonts_changed_p to non-zero if the font loaded
870 has a character with a smaller width than any other character
871 before, or if the font loaded has a smaller height than any other
872 font loaded before. If this happens, it will make a glyph matrix
873 reallocation necessary. */
875 struct w32_display_info *dpyinfo = FRAME_W32_DISPLAY_INFO (f);
876 dpyinfo->n_fonts++;
878 if (dpyinfo->n_fonts == 1)
880 dpyinfo->smallest_font_height = font->font.height;
881 dpyinfo->smallest_char_width = font->min_width;
883 else
885 if (dpyinfo->smallest_font_height > font->font.height)
887 dpyinfo->smallest_font_height = font->font.height;
888 fonts_changed_p |= 1;
890 if (dpyinfo->smallest_char_width > font->min_width)
892 dpyinfo->smallest_char_width = font->min_width;
893 fonts_changed_p |= 1;
898 return 1;
901 /* Callback function for EnumFontFamiliesEx.
902 * Adds the name of a font to a Lisp list (passed in as the lParam arg). */
903 static int CALLBACK
904 add_font_name_to_list (logical_font, physical_font, font_type, list_object)
905 ENUMLOGFONTEX *logical_font;
906 NEWTEXTMETRICEX *physical_font;
907 DWORD font_type;
908 LPARAM list_object;
910 Lisp_Object* list = (Lisp_Object *) list_object;
911 Lisp_Object family;
913 /* Skip vertical fonts (intended only for printing) */
914 if (logical_font->elfLogFont.lfFaceName[0] == '@')
915 return 1;
917 family = intern_downcase (logical_font->elfLogFont.lfFaceName,
918 strlen (logical_font->elfLogFont.lfFaceName));
919 if (! memq_no_quit (family, *list))
920 *list = Fcons (family, *list);
922 return 1;
925 /* Convert an enumerated Windows font to an Emacs font entity. */
926 static Lisp_Object
927 w32_enumfont_pattern_entity (frame, logical_font, physical_font,
928 font_type, requested_font, backend)
929 Lisp_Object frame;
930 ENUMLOGFONTEX *logical_font;
931 NEWTEXTMETRICEX *physical_font;
932 DWORD font_type;
933 LOGFONT *requested_font;
934 Lisp_Object backend;
936 Lisp_Object entity, tem;
937 LOGFONT *lf = (LOGFONT*) logical_font;
938 BYTE generic_type;
939 BYTE full_type = physical_font->ntmTm.ntmFlags;
941 entity = Fmake_vector (make_number (FONT_ENTITY_MAX), Qnil);
943 ASET (entity, FONT_TYPE_INDEX, backend);
944 ASET (entity, FONT_FRAME_INDEX, frame);
945 ASET (entity, FONT_REGISTRY_INDEX, w32_registry (lf->lfCharSet, font_type));
946 ASET (entity, FONT_OBJLIST_INDEX, Qnil);
948 /* Foundry is difficult to get in readable form on Windows.
949 But Emacs crashes if it is not set, so set it to something more
950 generic. Thes values make xflds compatible with Emacs 22. */
951 if (lf->lfOutPrecision == OUT_STRING_PRECIS)
952 tem = Qraster;
953 else if (lf->lfOutPrecision == OUT_STROKE_PRECIS)
954 tem = Qoutline;
955 else
956 tem = Qunknown;
958 ASET (entity, FONT_FOUNDRY_INDEX, tem);
960 /* Save the generic family in the extra info, as it is likely to be
961 useful to users looking for a close match. */
962 generic_type = physical_font->ntmTm.tmPitchAndFamily & 0xF0;
963 if (generic_type == FF_DECORATIVE)
964 tem = Qdecorative;
965 else if (generic_type == FF_MODERN)
966 tem = Qmono;
967 else if (generic_type == FF_ROMAN)
968 tem = Qserif;
969 else if (generic_type == FF_SCRIPT)
970 tem = Qscript;
971 else if (generic_type == FF_SWISS)
972 tem = Qsans;
973 else
974 tem = null_string;
976 ASET (entity, FONT_ADSTYLE_INDEX, tem);
978 if (physical_font->ntmTm.tmPitchAndFamily & 0x01)
979 font_put_extra (entity, QCspacing, make_number (FONT_SPACING_PROPORTIONAL));
980 else
981 font_put_extra (entity, QCspacing, make_number (FONT_SPACING_MONO));
983 if (requested_font->lfQuality != DEFAULT_QUALITY)
985 font_put_extra (entity, QCantialias,
986 lispy_antialias_type (requested_font->lfQuality));
988 ASET (entity, FONT_FAMILY_INDEX,
989 intern_downcase (lf->lfFaceName, strlen (lf->lfFaceName)));
991 ASET (entity, FONT_WEIGHT_INDEX, make_number (lf->lfWeight));
992 ASET (entity, FONT_SLANT_INDEX, make_number (lf->lfItalic ? 200 : 100));
993 /* TODO: PANOSE struct has this info, but need to call GetOutlineTextMetrics
994 to get it. */
995 ASET (entity, FONT_WIDTH_INDEX, make_number (100));
997 if (font_type & RASTER_FONTTYPE)
998 ASET (entity, FONT_SIZE_INDEX, make_number (physical_font->ntmTm.tmHeight));
999 else
1000 ASET (entity, FONT_SIZE_INDEX, make_number (0));
1002 /* Cache unicode codepoints covered by this font, as there is no other way
1003 of getting this information easily. */
1004 if (font_type & TRUETYPE_FONTTYPE)
1006 font_put_extra (entity, QCscript,
1007 font_supported_scripts (&physical_font->ntmFontSig));
1010 /* This information is not fully available when opening fonts, so
1011 save it here. Only Windows 2000 and later return information
1012 about opentype and type1 fonts, so need a fallback for detecting
1013 truetype so that this information is not any worse than we could
1014 have obtained later. */
1015 if (full_type & NTM_TT_OPENTYPE || font_type & TRUETYPE_FONTTYPE)
1016 tem = intern ("truetype");
1017 else if (full_type & NTM_TYPE1)
1018 tem = intern ("type1");
1019 else if (full_type & NTM_PS_OPENTYPE)
1020 tem = intern ("postscript");
1021 else if (font_type & RASTER_FONTTYPE)
1022 tem = intern ("w32bitmap");
1023 else
1024 tem = intern ("w32vector");
1026 font_put_extra (entity, QCformat, tem);
1028 return entity;
1032 /* Convert generic families to the family portion of lfPitchAndFamily. */
1033 BYTE
1034 w32_generic_family (Lisp_Object name)
1036 /* Generic families. */
1037 if (EQ (name, Qmonospace) || EQ (name, Qmono))
1038 return FF_MODERN;
1039 else if (EQ (name, Qsans) || EQ (name, Qsans_serif) || EQ (name, Qsansserif))
1040 return FF_SWISS;
1041 else if (EQ (name, Qserif))
1042 return FF_ROMAN;
1043 else if (EQ (name, Qdecorative))
1044 return FF_DECORATIVE;
1045 else if (EQ (name, Qscript))
1046 return FF_SCRIPT;
1047 else
1048 return FF_DONTCARE;
1051 static int
1052 logfonts_match (font, pattern)
1053 LOGFONT *font, *pattern;
1055 /* Only check height for raster fonts. */
1056 if (pattern->lfHeight && font->lfOutPrecision == OUT_STRING_PRECIS
1057 && font->lfHeight != pattern->lfHeight)
1058 return 0;
1060 /* Have some flexibility with weights. */
1061 if (pattern->lfWeight
1062 && ((font->lfWeight < (pattern->lfWeight - 150))
1063 || font->lfWeight > (pattern->lfWeight + 150)))
1064 return 0;
1066 /* Charset and face should be OK. Italic has to be checked
1067 against the original spec, in case we don't have any preference. */
1068 return 1;
1071 static int
1072 font_matches_spec (type, font, spec)
1073 DWORD type;
1074 NEWTEXTMETRICEX *font;
1075 Lisp_Object spec;
1077 Lisp_Object extra, val;
1079 /* Check italic. Can't check logfonts, since it is a boolean field,
1080 so there is no difference between "non-italic" and "don't care". */
1081 val = AREF (spec, FONT_SLANT_INDEX);
1082 if (INTEGERP (val))
1084 int slant = XINT (val);
1085 if ((slant > 150 && !font->ntmTm.tmItalic)
1086 || (slant <= 150 && font->ntmTm.tmItalic))
1087 return 0;
1090 /* Check adstyle against generic family. */
1091 val = AREF (spec, FONT_ADSTYLE_INDEX);
1092 if (!NILP (val))
1094 BYTE family = w32_generic_family (val);
1095 if (family != FF_DONTCARE
1096 && family != (font->ntmTm.tmPitchAndFamily & 0xF0))
1097 return 0;
1100 /* Check extra parameters. */
1101 for (extra = AREF (spec, FONT_EXTRA_INDEX);
1102 CONSP (extra); extra = XCDR (extra))
1104 Lisp_Object extra_entry;
1105 extra_entry = XCAR (extra);
1106 if (CONSP (extra_entry))
1108 Lisp_Object key = XCAR (extra_entry);
1109 val = XCDR (extra_entry);
1110 if (EQ (key, QCspacing))
1112 int proportional;
1113 if (INTEGERP (val))
1115 int spacing = XINT (val);
1116 proportional = (spacing < FONT_SPACING_MONO);
1118 else if (EQ (val, Qp))
1119 proportional = 1;
1120 else if (EQ (val, Qc) || EQ (val, Qm))
1121 proportional = 0;
1122 else
1123 return 0; /* Bad font spec. */
1125 if ((proportional && !(font->ntmTm.tmPitchAndFamily & 0x01))
1126 || (!proportional && (font->ntmTm.tmPitchAndFamily & 0x01)))
1127 return 0;
1129 else if (EQ (key, QCscript) && SYMBOLP (val))
1131 /* Only truetype fonts will have information about what
1132 scripts they support. This probably means the user
1133 will have to force Emacs to use raster, postscript
1134 or atm fonts for non-ASCII text. */
1135 if (type & TRUETYPE_FONTTYPE)
1137 Lisp_Object support
1138 = font_supported_scripts (&font->ntmFontSig);
1139 if (! memq_no_quit (val, support))
1140 return 0;
1142 else
1144 /* Return specific matches, but play it safe. Fonts
1145 that cover more than their charset would suggest
1146 are likely to be truetype or opentype fonts,
1147 covered above. */
1148 if (EQ (val, Qlatin))
1150 /* Although every charset but symbol, thai and
1151 arabic contains the basic ASCII set of latin
1152 characters, Emacs expects much more. */
1153 if (font->ntmTm.tmCharSet != ANSI_CHARSET)
1154 return 0;
1156 else if (EQ (val, Qsymbol))
1158 if (font->ntmTm.tmCharSet != SYMBOL_CHARSET)
1159 return 0;
1161 else if (EQ (val, Qcyrillic))
1163 if (font->ntmTm.tmCharSet != RUSSIAN_CHARSET)
1164 return 0;
1166 else if (EQ (val, Qgreek))
1168 if (font->ntmTm.tmCharSet != GREEK_CHARSET)
1169 return 0;
1171 else if (EQ (val, Qarabic))
1173 if (font->ntmTm.tmCharSet != ARABIC_CHARSET)
1174 return 0;
1176 else if (EQ (val, Qhebrew))
1178 if (font->ntmTm.tmCharSet != HEBREW_CHARSET)
1179 return 0;
1181 else if (EQ (val, Qthai))
1183 if (font->ntmTm.tmCharSet != THAI_CHARSET)
1184 return 0;
1186 else if (EQ (val, Qkana))
1188 if (font->ntmTm.tmCharSet != SHIFTJIS_CHARSET)
1189 return 0;
1191 else if (EQ (val, Qbopomofo))
1193 if (font->ntmTm.tmCharSet != CHINESEBIG5_CHARSET)
1194 return 0;
1196 else if (EQ (val, Qhangul))
1198 if (font->ntmTm.tmCharSet != HANGUL_CHARSET
1199 && font->ntmTm.tmCharSet != JOHAB_CHARSET)
1200 return 0;
1202 else if (EQ (val, Qhan))
1204 if (font->ntmTm.tmCharSet != CHINESEBIG5_CHARSET
1205 && font->ntmTm.tmCharSet != GB2312_CHARSET
1206 && font->ntmTm.tmCharSet != HANGUL_CHARSET
1207 && font->ntmTm.tmCharSet != JOHAB_CHARSET
1208 && font->ntmTm.tmCharSet != SHIFTJIS_CHARSET)
1209 return 0;
1211 else
1212 /* Other scripts unlikely to be handled. */
1213 return 0;
1218 return 1;
1221 static int
1222 w32font_coverage_ok (coverage, charset)
1223 FONTSIGNATURE * coverage;
1224 BYTE charset;
1226 DWORD subrange1 = coverage->fsUsb[1];
1228 #define SUBRANGE1_HAN_MASK 0x08000000
1229 #define SUBRANGE1_HANGEUL_MASK 0x01000000
1230 #define SUBRANGE1_JAPANESE_MASK (0x00060000 | SUBRANGE1_HAN_MASK)
1232 if (charset == GB2312_CHARSET || charset == CHINESEBIG5_CHARSET)
1234 return (subrange1 & SUBRANGE1_HAN_MASK) == SUBRANGE1_HAN_MASK;
1236 else if (charset == SHIFTJIS_CHARSET)
1238 return (subrange1 & SUBRANGE1_JAPANESE_MASK) == SUBRANGE1_JAPANESE_MASK;
1240 else if (charset == HANGEUL_CHARSET)
1242 return (subrange1 & SUBRANGE1_HANGEUL_MASK) == SUBRANGE1_HANGEUL_MASK;
1245 return 1;
1248 /* Callback function for EnumFontFamiliesEx.
1249 * Checks if a font matches everything we are trying to check agaist,
1250 * and if so, adds it to a list. Both the data we are checking against
1251 * and the list to which the fonts are added are passed in via the
1252 * lparam argument, in the form of a font_callback_data struct. */
1253 static int CALLBACK
1254 add_font_entity_to_list (logical_font, physical_font, font_type, lParam)
1255 ENUMLOGFONTEX *logical_font;
1256 NEWTEXTMETRICEX *physical_font;
1257 DWORD font_type;
1258 LPARAM lParam;
1260 struct font_callback_data *match_data
1261 = (struct font_callback_data *) lParam;
1263 if ((!match_data->opentype_only
1264 || (physical_font->ntmTm.ntmFlags & NTMFLAGS_OPENTYPE))
1265 && logfonts_match (&logical_font->elfLogFont, &match_data->pattern)
1266 && font_matches_spec (font_type, physical_font,
1267 match_data->orig_font_spec)
1268 && w32font_coverage_ok (&physical_font->ntmFontSig,
1269 match_data->pattern.lfCharSet)
1270 /* Avoid substitutions involving raster fonts (eg Helv -> MS Sans Serif)
1271 We limit this to raster fonts, because the test can catch some
1272 genuine fonts (eg the full name of DejaVu Sans Mono Light is actually
1273 DejaVu Sans Mono ExtraLight). Helvetica -> Arial substitution will
1274 therefore get through this test. Since full names can be prefixed
1275 by a foundry, we accept raster fonts if the font name is found
1276 anywhere within the full name. */
1277 && (logical_font->elfLogFont.lfOutPrecision != OUT_STRING_PRECIS
1278 || strstr (logical_font->elfFullName,
1279 logical_font->elfLogFont.lfFaceName)))
1281 Lisp_Object entity
1282 = w32_enumfont_pattern_entity (match_data->frame, logical_font,
1283 physical_font, font_type,
1284 &match_data->pattern,
1285 match_data->opentype_only
1286 ? Quniscribe : Qgdi);
1287 if (!NILP (entity))
1288 match_data->list = Fcons (entity, match_data->list);
1290 return 1;
1293 /* Callback function for EnumFontFamiliesEx.
1294 * Terminates the search once we have a match. */
1295 static int CALLBACK
1296 add_one_font_entity_to_list (logical_font, physical_font, font_type, lParam)
1297 ENUMLOGFONTEX *logical_font;
1298 NEWTEXTMETRICEX *physical_font;
1299 DWORD font_type;
1300 LPARAM lParam;
1302 struct font_callback_data *match_data
1303 = (struct font_callback_data *) lParam;
1304 add_font_entity_to_list (logical_font, physical_font, font_type, lParam);
1306 /* If we have a font in the list, terminate the search. */
1307 return !NILP (match_data->list);
1310 /* Convert a Lisp font registry (symbol) to a windows charset. */
1311 static LONG
1312 registry_to_w32_charset (charset)
1313 Lisp_Object charset;
1315 if (EQ (charset, Qiso10646_1) || EQ (charset, Qunicode_bmp)
1316 || EQ (charset, Qunicode_sip))
1317 return DEFAULT_CHARSET; /* UNICODE_CHARSET not defined in MingW32 */
1318 else if (EQ (charset, Qiso8859_1))
1319 return ANSI_CHARSET;
1320 else if (SYMBOLP (charset))
1321 return x_to_w32_charset (SDATA (SYMBOL_NAME (charset)));
1322 else if (STRINGP (charset))
1323 return x_to_w32_charset (SDATA (charset));
1324 else
1325 return DEFAULT_CHARSET;
1328 static Lisp_Object
1329 w32_registry (w32_charset, font_type)
1330 LONG w32_charset;
1331 DWORD font_type;
1333 /* If charset is defaulted, use ANSI (unicode for truetype fonts). */
1334 if (w32_charset == DEFAULT_CHARSET)
1335 w32_charset = ANSI_CHARSET;
1337 if (font_type == TRUETYPE_FONTTYPE && w32_charset == ANSI_CHARSET)
1338 return Qiso10646_1;
1339 else
1341 char * charset = w32_to_x_charset (w32_charset, NULL);
1342 return intern_downcase (charset, strlen(charset));
1346 /* Fill in all the available details of LOGFONT from FONT_SPEC. */
1347 static void
1348 fill_in_logfont (f, logfont, font_spec)
1349 FRAME_PTR f;
1350 LOGFONT *logfont;
1351 Lisp_Object font_spec;
1353 Lisp_Object tmp, extra;
1354 int dpi = FRAME_W32_DISPLAY_INFO (f)->resy;
1356 extra = AREF (font_spec, FONT_EXTRA_INDEX);
1357 /* Allow user to override dpi settings. */
1358 if (CONSP (extra))
1360 tmp = assq_no_quit (QCdpi, extra);
1361 if (CONSP (tmp) && INTEGERP (XCDR (tmp)))
1363 dpi = XINT (XCDR (tmp));
1365 else if (CONSP (tmp) && FLOATP (XCDR (tmp)))
1367 dpi = (int) (XFLOAT_DATA (XCDR (tmp)) + 0.5);
1371 /* Height */
1372 tmp = AREF (font_spec, FONT_SIZE_INDEX);
1373 if (INTEGERP (tmp))
1374 logfont->lfHeight = -1 * XINT (tmp);
1375 else if (FLOATP (tmp))
1376 logfont->lfHeight = (int) (-1.0 * dpi * XFLOAT_DATA (tmp) / 72.27 + 0.5);
1378 /* Escapement */
1380 /* Orientation */
1382 /* Weight */
1383 tmp = AREF (font_spec, FONT_WEIGHT_INDEX);
1384 if (INTEGERP (tmp))
1385 logfont->lfWeight = XINT (tmp);
1387 /* Italic */
1388 tmp = AREF (font_spec, FONT_SLANT_INDEX);
1389 if (INTEGERP (tmp))
1391 int slant = XINT (tmp);
1392 logfont->lfItalic = slant > 150 ? 1 : 0;
1395 /* Underline */
1397 /* Strikeout */
1399 /* Charset */
1400 tmp = AREF (font_spec, FONT_REGISTRY_INDEX);
1401 if (! NILP (tmp))
1402 logfont->lfCharSet = registry_to_w32_charset (tmp);
1404 /* Out Precision */
1406 /* Clip Precision */
1408 /* Quality */
1409 logfont->lfQuality = DEFAULT_QUALITY;
1411 /* Generic Family and Face Name */
1412 logfont->lfPitchAndFamily = FF_DONTCARE | DEFAULT_PITCH;
1414 tmp = AREF (font_spec, FONT_FAMILY_INDEX);
1415 if (! NILP (tmp))
1417 logfont->lfPitchAndFamily = w32_generic_family (tmp) | DEFAULT_PITCH;
1418 if ((logfont->lfPitchAndFamily & 0xF0) != FF_DONTCARE)
1419 ; /* Font name was generic, don't fill in font name. */
1420 /* Font families are interned, but allow for strings also in case of
1421 user input. */
1422 else if (SYMBOLP (tmp))
1423 strncpy (logfont->lfFaceName, SDATA (SYMBOL_NAME (tmp)), LF_FACESIZE);
1424 else if (STRINGP (tmp))
1425 strncpy (logfont->lfFaceName, SDATA (tmp), LF_FACESIZE);
1428 tmp = AREF (font_spec, FONT_ADSTYLE_INDEX);
1429 if (!NILP (tmp))
1431 /* Override generic family. */
1432 BYTE family = w32_generic_family (tmp);
1433 if (family != FF_DONTCARE)
1434 logfont->lfPitchAndFamily = family | DEFAULT_PITCH;
1437 /* Process EXTRA info. */
1438 for ( ; CONSP (extra); extra = XCDR (extra))
1440 tmp = XCAR (extra);
1441 if (CONSP (tmp))
1443 Lisp_Object key, val;
1444 key = XCAR (tmp), val = XCDR (tmp);
1445 if (EQ (key, QCspacing))
1447 /* Set pitch based on the spacing property. */
1448 if (INTEGERP (val))
1450 int spacing = XINT (val);
1451 if (spacing < FONT_SPACING_MONO)
1452 logfont->lfPitchAndFamily
1453 = logfont->lfPitchAndFamily & 0xF0 | VARIABLE_PITCH;
1454 else
1455 logfont->lfPitchAndFamily
1456 = logfont->lfPitchAndFamily & 0xF0 | FIXED_PITCH;
1458 else if (EQ (val, Qp))
1459 logfont->lfPitchAndFamily
1460 = logfont->lfPitchAndFamily & 0xF0 | VARIABLE_PITCH;
1461 else if (EQ (val, Qc) || EQ (val, Qm))
1462 logfont->lfPitchAndFamily
1463 = logfont->lfPitchAndFamily & 0xF0 | FIXED_PITCH;
1465 /* Only use QCscript if charset is not provided, or is unicode
1466 and a single script is specified. This is rather crude,
1467 and is only used to narrow down the fonts returned where
1468 there is a definite match. Some scripts, such as latin, han,
1469 cjk-misc match multiple lfCharSet values, so we can't pre-filter
1470 them. */
1471 else if (EQ (key, QCscript)
1472 && logfont->lfCharSet == DEFAULT_CHARSET
1473 && SYMBOLP (val))
1475 if (EQ (val, Qgreek))
1476 logfont->lfCharSet = GREEK_CHARSET;
1477 else if (EQ (val, Qhangul))
1478 logfont->lfCharSet = HANGUL_CHARSET;
1479 else if (EQ (val, Qkana) || EQ (val, Qkanbun))
1480 logfont->lfCharSet = SHIFTJIS_CHARSET;
1481 else if (EQ (val, Qbopomofo))
1482 logfont->lfCharSet = CHINESEBIG5_CHARSET;
1483 /* GB 18030 supports tibetan, yi, mongolian,
1484 fonts that support it should show up if we ask for
1485 GB2312 fonts. */
1486 else if (EQ (val, Qtibetan) || EQ (val, Qyi)
1487 || EQ (val, Qmongolian))
1488 logfont->lfCharSet = GB2312_CHARSET;
1489 else if (EQ (val, Qhebrew))
1490 logfont->lfCharSet = HEBREW_CHARSET;
1491 else if (EQ (val, Qarabic))
1492 logfont->lfCharSet = ARABIC_CHARSET;
1493 else if (EQ (val, Qthai))
1494 logfont->lfCharSet = THAI_CHARSET;
1495 else if (EQ (val, Qsymbol))
1496 logfont->lfCharSet = SYMBOL_CHARSET;
1498 else if (EQ (key, QCantialias) && SYMBOLP (val))
1500 logfont->lfQuality = w32_antialias_type (val);
1506 static void
1507 list_all_matching_fonts (match_data)
1508 struct font_callback_data *match_data;
1510 HDC dc;
1511 Lisp_Object families = w32font_list_family (match_data->frame);
1512 struct frame *f = XFRAME (match_data->frame);
1514 dc = get_frame_dc (f);
1516 while (!NILP (families))
1518 /* TODO: Use the Unicode versions of the W32 APIs, so we can
1519 handle non-ASCII font names. */
1520 char *name;
1521 Lisp_Object family = CAR (families);
1522 families = CDR (families);
1523 if (NILP (family))
1524 continue;
1525 else if (STRINGP (family))
1526 name = SDATA (family);
1527 else
1528 name = SDATA (SYMBOL_NAME (family));
1530 strncpy (match_data->pattern.lfFaceName, name, LF_FACESIZE);
1531 match_data->pattern.lfFaceName[LF_FACESIZE - 1] = '\0';
1533 EnumFontFamiliesEx (dc, &match_data->pattern,
1534 (FONTENUMPROC) add_font_entity_to_list,
1535 (LPARAM) match_data, 0);
1538 release_frame_dc (f, dc);
1541 static Lisp_Object
1542 lispy_antialias_type (type)
1543 BYTE type;
1545 Lisp_Object lispy;
1547 switch (type)
1549 case NONANTIALIASED_QUALITY:
1550 lispy = Qnone;
1551 break;
1552 case ANTIALIASED_QUALITY:
1553 lispy = Qstandard;
1554 break;
1555 case CLEARTYPE_QUALITY:
1556 lispy = Qsubpixel;
1557 break;
1558 case CLEARTYPE_NATURAL_QUALITY:
1559 lispy = Qnatural;
1560 break;
1561 default:
1562 lispy = Qnil;
1563 break;
1565 return lispy;
1568 /* Convert antialiasing symbols to lfQuality */
1569 static BYTE
1570 w32_antialias_type (type)
1571 Lisp_Object type;
1573 if (EQ (type, Qnone))
1574 return NONANTIALIASED_QUALITY;
1575 else if (EQ (type, Qstandard))
1576 return ANTIALIASED_QUALITY;
1577 else if (EQ (type, Qsubpixel))
1578 return CLEARTYPE_QUALITY;
1579 else if (EQ (type, Qnatural))
1580 return CLEARTYPE_NATURAL_QUALITY;
1581 else
1582 return DEFAULT_QUALITY;
1585 /* Return a list of all the scripts that the font supports. */
1586 static Lisp_Object
1587 font_supported_scripts (FONTSIGNATURE * sig)
1589 DWORD * subranges = sig->fsUsb;
1590 Lisp_Object supported = Qnil;
1592 /* Match a single subrange. SYM is set if bit N is set in subranges. */
1593 #define SUBRANGE(n,sym) \
1594 if (subranges[(n) / 32] & (1 << ((n) % 32))) \
1595 supported = Fcons ((sym), supported)
1597 /* Match multiple subranges. SYM is set if any MASK bit is set in
1598 subranges[0 - 3]. */
1599 #define MASK_ANY(mask0,mask1,mask2,mask3,sym) \
1600 if ((subranges[0] & (mask0)) || (subranges[1] & (mask1)) \
1601 || (subranges[2] & (mask2)) || (subranges[3] & (mask3))) \
1602 supported = Fcons ((sym), supported)
1604 SUBRANGE (0, Qlatin); /* There are many others... */
1606 SUBRANGE (7, Qgreek);
1607 SUBRANGE (8, Qcoptic);
1608 SUBRANGE (9, Qcyrillic);
1609 SUBRANGE (10, Qarmenian);
1610 SUBRANGE (11, Qhebrew);
1611 SUBRANGE (13, Qarabic);
1612 SUBRANGE (14, Qnko);
1613 SUBRANGE (15, Qdevanagari);
1614 SUBRANGE (16, Qbengali);
1615 SUBRANGE (17, Qgurmukhi);
1616 SUBRANGE (18, Qgujarati);
1617 SUBRANGE (19, Qoriya);
1618 SUBRANGE (20, Qtamil);
1619 SUBRANGE (21, Qtelugu);
1620 SUBRANGE (22, Qkannada);
1621 SUBRANGE (23, Qmalayalam);
1622 SUBRANGE (24, Qthai);
1623 SUBRANGE (25, Qlao);
1624 SUBRANGE (26, Qgeorgian);
1626 SUBRANGE (48, Qcjk_misc);
1627 SUBRANGE (51, Qbopomofo);
1628 SUBRANGE (54, Qkanbun); /* Is this right? */
1629 SUBRANGE (56, Qhangul);
1631 SUBRANGE (59, Qhan); /* There are others, but this is the main one. */
1632 SUBRANGE (59, Qideographic_description); /* Windows lumps this in */
1634 SUBRANGE (70, Qtibetan);
1635 SUBRANGE (71, Qsyriac);
1636 SUBRANGE (72, Qthaana);
1637 SUBRANGE (73, Qsinhala);
1638 SUBRANGE (74, Qmyanmar);
1639 SUBRANGE (75, Qethiopic);
1640 SUBRANGE (76, Qcherokee);
1641 SUBRANGE (77, Qcanadian_aboriginal);
1642 SUBRANGE (78, Qogham);
1643 SUBRANGE (79, Qrunic);
1644 SUBRANGE (80, Qkhmer);
1645 SUBRANGE (81, Qmongolian);
1646 SUBRANGE (82, Qbraille);
1647 SUBRANGE (83, Qyi);
1649 SUBRANGE (88, Qbyzantine_musical_symbol);
1650 SUBRANGE (88, Qmusical_symbol); /* Windows doesn't distinguish these. */
1652 SUBRANGE (89, Qmathematical);
1654 /* Match either katakana or hiragana for kana. */
1655 MASK_ANY (0, 0x00060000, 0, 0, Qkana);
1657 /* There isn't really a main symbol range, so include symbol if any
1658 relevant range is set. */
1659 MASK_ANY (0x8000000, 0x0000FFFF, 0, 0, Qsymbol);
1661 #undef SUBRANGE
1662 #undef MASK_ANY
1664 return supported;
1667 /* Generate a full name for a Windows font.
1668 The full name is in fcname format, with weight, slant and antialiasing
1669 specified if they are not "normal". */
1670 static int
1671 w32font_full_name (font, font_obj, pixel_size, name, nbytes)
1672 LOGFONT * font;
1673 Lisp_Object font_obj;
1674 int pixel_size;
1675 char *name;
1676 int nbytes;
1678 int len, height, outline;
1679 char *p;
1680 Lisp_Object antialiasing, weight = Qnil;
1682 len = strlen (font->lfFaceName);
1684 outline = EQ (AREF (font_obj, FONT_FOUNDRY_INDEX), Qoutline);
1686 /* Represent size of scalable fonts by point size. But use pixelsize for
1687 raster fonts to indicate that they are exactly that size. */
1688 if (outline)
1689 len += 11; /* -SIZE */
1690 else
1691 len = strlen (font->lfFaceName) + 21;
1693 if (font->lfItalic)
1694 len += 7; /* :italic */
1696 if (font->lfWeight && font->lfWeight != FW_NORMAL)
1698 weight = font_symbolic_weight (font_obj);
1699 len += 8 + SBYTES (SYMBOL_NAME (weight)); /* :weight=NAME */
1702 antialiasing = lispy_antialias_type (font->lfQuality);
1703 if (! NILP (antialiasing))
1704 len += 11 + SBYTES (SYMBOL_NAME (antialiasing)); /* :antialias=NAME */
1706 /* Check that the buffer is big enough */
1707 if (len > nbytes)
1708 return -1;
1710 p = name;
1711 p += sprintf (p, "%s", font->lfFaceName);
1713 height = font->lfHeight ? eabs (font->lfHeight) : pixel_size;
1715 if (height > 0)
1717 if (outline)
1719 float pointsize = height * 72.0 / one_w32_display_info.resy;
1720 /* Round to nearest half point. */
1721 pointsize = round (pointsize * 2) / 2;
1722 p += sprintf (p, "-%1.1f", pointsize);
1724 else
1725 p += sprintf (p, ":pixelsize=%d", height);
1728 if (font->lfItalic)
1729 p += sprintf (p, ":italic");
1731 if (SYMBOLP (weight) && ! NILP (weight))
1732 p += sprintf (p, ":weight=%s", SDATA (SYMBOL_NAME (weight)));
1734 if (SYMBOLP (antialiasing) && ! NILP (antialiasing))
1735 p += sprintf (p, ":antialias=%s", SDATA (SYMBOL_NAME (antialiasing)));
1737 return (p - name);
1741 static void
1742 recompute_cached_metrics (dc, w32_font)
1743 HDC dc;
1744 struct w32font_info *w32_font;
1746 GLYPHMETRICS gm;
1747 MAT2 transform;
1748 unsigned int i;
1750 bzero (&transform, sizeof (transform));
1751 transform.eM11.value = 1;
1752 transform.eM22.value = 1;
1754 for (i = 0; i < 128; i++)
1756 struct font_metrics* char_metric = &w32_font->ascii_metrics[i];
1757 unsigned int options = GGO_METRICS;
1758 if (w32_font->glyph_idx)
1759 options |= GGO_GLYPH_INDEX;
1761 if (GetGlyphOutlineW (dc, i, options, &gm, 0, NULL, &transform)
1762 != GDI_ERROR)
1764 char_metric->lbearing = -gm.gmptGlyphOrigin.x;
1765 char_metric->rbearing = gm.gmBlackBoxX + gm.gmptGlyphOrigin.x;
1766 char_metric->width = gm.gmCellIncX;
1767 char_metric->ascent = -gm.gmptGlyphOrigin.y;
1768 char_metric->descent = gm.gmBlackBoxY + gm.gmptGlyphOrigin.y;
1770 else
1771 char_metric->width = 0;
1775 struct font_driver w32font_driver =
1777 0, /* Qgdi */
1778 w32font_get_cache,
1779 w32font_list,
1780 w32font_match,
1781 w32font_list_family,
1782 NULL, /* free_entity */
1783 w32font_open,
1784 w32font_close,
1785 NULL, /* prepare_face */
1786 NULL, /* done_face */
1787 w32font_has_char,
1788 w32font_encode_char,
1789 w32font_text_extents,
1790 w32font_draw,
1791 NULL, /* get_bitmap */
1792 NULL, /* free_bitmap */
1793 NULL, /* get_outline */
1794 NULL, /* free_outline */
1795 NULL, /* anchor_point */
1796 NULL, /* otf_capability */
1797 NULL, /* otf_drive */
1798 NULL, /* start_for_frame */
1799 NULL, /* end_for_frame */
1800 NULL /* shape */
1804 /* Initialize state that does not change between invocations. This is only
1805 called when Emacs is dumped. */
1806 void
1807 syms_of_w32font ()
1809 DEFSYM (Qgdi, "gdi");
1810 DEFSYM (Quniscribe, "uniscribe");
1811 DEFSYM (QCformat, ":format");
1813 /* Generic font families. */
1814 DEFSYM (Qmonospace, "monospace");
1815 DEFSYM (Qserif, "serif");
1816 DEFSYM (Qsansserif, "sansserif");
1817 DEFSYM (Qscript, "script");
1818 DEFSYM (Qdecorative, "decorative");
1819 /* Aliases. */
1820 DEFSYM (Qsans_serif, "sans_serif");
1821 DEFSYM (Qsans, "sans");
1822 DEFSYM (Qmono, "mono");
1824 /* Fake foundries. */
1825 DEFSYM (Qraster, "raster");
1826 DEFSYM (Qoutline, "outline");
1827 DEFSYM (Qunknown, "unknown");
1829 /* Antialiasing. */
1830 DEFSYM (Qstandard, "standard");
1831 DEFSYM (Qsubpixel, "subpixel");
1832 DEFSYM (Qnatural, "natural");
1834 /* Scripts */
1835 DEFSYM (Qlatin, "latin");
1836 DEFSYM (Qgreek, "greek");
1837 DEFSYM (Qcoptic, "coptic");
1838 DEFSYM (Qcyrillic, "cyrillic");
1839 DEFSYM (Qarmenian, "armenian");
1840 DEFSYM (Qhebrew, "hebrew");
1841 DEFSYM (Qarabic, "arabic");
1842 DEFSYM (Qsyriac, "syriac");
1843 DEFSYM (Qnko, "nko");
1844 DEFSYM (Qthaana, "thaana");
1845 DEFSYM (Qdevanagari, "devanagari");
1846 DEFSYM (Qbengali, "bengali");
1847 DEFSYM (Qgurmukhi, "gurmukhi");
1848 DEFSYM (Qgujarati, "gujarati");
1849 DEFSYM (Qoriya, "oriya");
1850 DEFSYM (Qtamil, "tamil");
1851 DEFSYM (Qtelugu, "telugu");
1852 DEFSYM (Qkannada, "kannada");
1853 DEFSYM (Qmalayalam, "malayalam");
1854 DEFSYM (Qsinhala, "sinhala");
1855 DEFSYM (Qthai, "thai");
1856 DEFSYM (Qlao, "lao");
1857 DEFSYM (Qtibetan, "tibetan");
1858 DEFSYM (Qmyanmar, "myanmar");
1859 DEFSYM (Qgeorgian, "georgian");
1860 DEFSYM (Qhangul, "hangul");
1861 DEFSYM (Qethiopic, "ethiopic");
1862 DEFSYM (Qcherokee, "cherokee");
1863 DEFSYM (Qcanadian_aboriginal, "canadian-aboriginal");
1864 DEFSYM (Qogham, "ogham");
1865 DEFSYM (Qrunic, "runic");
1866 DEFSYM (Qkhmer, "khmer");
1867 DEFSYM (Qmongolian, "mongolian");
1868 DEFSYM (Qsymbol, "symbol");
1869 DEFSYM (Qbraille, "braille");
1870 DEFSYM (Qhan, "han");
1871 DEFSYM (Qideographic_description, "ideographic-description");
1872 DEFSYM (Qcjk_misc, "cjk-misc");
1873 DEFSYM (Qkana, "kana");
1874 DEFSYM (Qbopomofo, "bopomofo");
1875 DEFSYM (Qkanbun, "kanbun");
1876 DEFSYM (Qyi, "yi");
1877 DEFSYM (Qbyzantine_musical_symbol, "byzantine-musical-symbol");
1878 DEFSYM (Qmusical_symbol, "musical-symbol");
1879 DEFSYM (Qmathematical, "mathematical");
1881 w32font_driver.type = Qgdi;
1882 register_font_driver (&w32font_driver, NULL);
1884 #endif /* USE_FONT_BACKEND */
1886 /* arch-tag: 65b8a3cd-46aa-4c0d-a1f3-99e75b9c07ee
1887 (do not change this comment) */