(w32font_list_internal): Return quickly if registry is
[bpt/emacs.git] / src / w32font.c
1 /* Font backend for the Microsoft W32 API.
2 Copyright (C) 2007, 2008, 2009 Free Software Foundation, Inc.
3
4 This file is part of GNU Emacs.
5
6 GNU Emacs is free software: you can redistribute it and/or modify
7 it under the terms of the GNU General Public License as published by
8 the Free Software Foundation, either version 3 of the License, or
9 (at your option) any later version.
10
11 GNU Emacs is distributed in the hope that it will be useful,
12 but WITHOUT ANY WARRANTY; without even the implied warranty of
13 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 GNU General Public License for more details.
15
16 You should have received a copy of the GNU General Public License
17 along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>. */
18
19 #include <config.h>
20 #include <windows.h>
21 #include <math.h>
22 #include <ctype.h>
23 #include <commdlg.h>
24
25 #include "lisp.h"
26 #include "w32term.h"
27 #include "frame.h"
28 #include "dispextern.h"
29 #include "character.h"
30 #include "charset.h"
31 #include "coding.h"
32 #include "fontset.h"
33 #include "font.h"
34 #include "w32font.h"
35
36 /* Cleartype available on Windows XP, cleartype_natural from XP SP1.
37 The latter does not try to fit cleartype smoothed fonts into the
38 same bounding box as the non-antialiased version of the font.
39 */
40 #ifndef CLEARTYPE_QUALITY
41 #define CLEARTYPE_QUALITY 5
42 #endif
43 #ifndef CLEARTYPE_NATURAL_QUALITY
44 #define CLEARTYPE_NATURAL_QUALITY 6
45 #endif
46
47 /* VIETNAMESE_CHARSET and JOHAB_CHARSET are not defined in some versions
48 of MSVC headers. */
49 #ifndef VIETNAMESE_CHARSET
50 #define VIETNAMESE_CHARSET 163
51 #endif
52 #ifndef JOHAB_CHARSET
53 #define JOHAB_CHARSET 130
54 #endif
55
56 extern struct font_driver w32font_driver;
57
58 Lisp_Object Qgdi;
59 Lisp_Object Quniscribe;
60 static Lisp_Object QCformat;
61 static Lisp_Object Qmonospace, Qsansserif, Qmono, Qsans, Qsans_serif;
62 static Lisp_Object Qserif, Qscript, Qdecorative;
63 static Lisp_Object Qraster, Qoutline, Qunknown;
64
65 /* antialiasing */
66 extern Lisp_Object QCantialias, QCotf, QClang; /* defined in font.c */
67 extern Lisp_Object Qnone; /* reuse from w32fns.c */
68 static Lisp_Object Qstandard, Qsubpixel, Qnatural;
69
70 /* languages */
71 static Lisp_Object Qja, Qko, Qzh;
72
73 /* scripts */
74 static Lisp_Object Qlatin, Qgreek, Qcoptic, Qcyrillic, Qarmenian, Qhebrew;
75 static Lisp_Object Qarabic, Qsyriac, Qnko, Qthaana, Qdevanagari, Qbengali;
76 static Lisp_Object Qgurmukhi, Qgujarati, Qoriya, Qtamil, Qtelugu;
77 static Lisp_Object Qkannada, Qmalayalam, Qsinhala, Qthai, Qlao;
78 static Lisp_Object Qtibetan, Qmyanmar, Qgeorgian, Qhangul, Qethiopic;
79 static Lisp_Object Qcherokee, Qcanadian_aboriginal, Qogham, Qrunic;
80 static Lisp_Object Qkhmer, Qmongolian, Qsymbol, Qbraille, Qhan;
81 static Lisp_Object Qideographic_description, Qcjk_misc, Qkana, Qbopomofo;
82 static Lisp_Object Qkanbun, Qyi, Qbyzantine_musical_symbol;
83 static Lisp_Object Qmusical_symbol, Qmathematical, Qcham, Qphonetic;
84 /* Not defined in characters.el, but referenced in fontset.el. */
85 static Lisp_Object Qbalinese, Qbuginese, Qbuhid, Qcuneiform, Qcypriot;
86 static Lisp_Object Qdeseret, Qglagolitic, Qgothic, Qhanunoo, Qkharoshthi;
87 static Lisp_Object Qlimbu, Qlinear_b, Qold_italic, Qold_persian, Qosmanya;
88 static Lisp_Object Qphags_pa, Qphoenician, Qshavian, Qsyloti_nagri;
89 static Lisp_Object Qtagalog, Qtagbanwa, Qtai_le, Qtifinagh, Qugaritic;
90
91 /* W32 charsets: for use in Vw32_charset_info_alist. */
92 static Lisp_Object Qw32_charset_ansi, Qw32_charset_default;
93 static Lisp_Object Qw32_charset_symbol, Qw32_charset_shiftjis;
94 static Lisp_Object Qw32_charset_hangeul, Qw32_charset_gb2312;
95 static Lisp_Object Qw32_charset_chinesebig5, Qw32_charset_oem;
96 static Lisp_Object Qw32_charset_easteurope, Qw32_charset_turkish;
97 static Lisp_Object Qw32_charset_baltic, Qw32_charset_russian;
98 static Lisp_Object Qw32_charset_arabic, Qw32_charset_greek;
99 static Lisp_Object Qw32_charset_hebrew, Qw32_charset_vietnamese;
100 static Lisp_Object Qw32_charset_thai, Qw32_charset_johab, Qw32_charset_mac;
101
102 /* Associative list linking character set strings to Windows codepages. */
103 static Lisp_Object Vw32_charset_info_alist;
104
105 /* Font spacing symbols - defined in font.c. */
106 extern Lisp_Object Qc, Qp, Qm;
107
108 static void fill_in_logfont P_ ((FRAME_PTR, LOGFONT *, Lisp_Object));
109
110 static BYTE w32_antialias_type P_ ((Lisp_Object));
111 static Lisp_Object lispy_antialias_type P_ ((BYTE));
112
113 static Lisp_Object font_supported_scripts P_ ((FONTSIGNATURE *));
114 static int w32font_full_name P_ ((LOGFONT *, Lisp_Object, int, char *, int));
115 static void compute_metrics P_ ((HDC, struct w32font_info *, unsigned int,
116 struct w32_metric_cache *));
117 static void clear_cached_metrics P_ ((struct w32font_info *));
118
119 static Lisp_Object w32_registry P_ ((LONG, DWORD));
120
121 /* EnumFontFamiliesEx callbacks. */
122 static int CALLBACK add_font_entity_to_list P_ ((ENUMLOGFONTEX *,
123 NEWTEXTMETRICEX *,
124 DWORD, LPARAM));
125 static int CALLBACK add_one_font_entity_to_list P_ ((ENUMLOGFONTEX *,
126 NEWTEXTMETRICEX *,
127 DWORD, LPARAM));
128 static int CALLBACK add_font_name_to_list P_ ((ENUMLOGFONTEX *,
129 NEWTEXTMETRICEX *,
130 DWORD, LPARAM));
131
132 /* struct passed in as LPARAM arg to EnumFontFamiliesEx, for keeping track
133 of what we really want. */
134 struct font_callback_data
135 {
136 /* The logfont we are matching against. EnumFontFamiliesEx only matches
137 face name and charset, so we need to manually match everything else
138 in the callback function. */
139 LOGFONT pattern;
140 /* The original font spec or entity. */
141 Lisp_Object orig_font_spec;
142 /* The frame the font is being loaded on. */
143 Lisp_Object frame;
144 /* The list to add matches to. */
145 Lisp_Object list;
146 /* Whether to match only opentype fonts. */
147 int opentype_only;
148 };
149
150 /* Handles the problem that EnumFontFamiliesEx will not return all
151 style variations if the font name is not specified. */
152 static void list_all_matching_fonts P_ ((struct font_callback_data *));
153
154
155 static int
156 memq_no_quit (elt, list)
157 Lisp_Object elt, list;
158 {
159 while (CONSP (list) && ! EQ (XCAR (list), elt))
160 list = XCDR (list);
161 return (CONSP (list));
162 }
163
164 Lisp_Object
165 intern_font_name (string)
166 char * string;
167 {
168 Lisp_Object obarray, tem, str;
169 int len;
170
171 str = DECODE_SYSTEM (build_string (string));
172 len = SCHARS (str);
173
174 /* The following code is copied from the function intern (in lread.c). */
175 obarray = Vobarray;
176 if (!VECTORP (obarray) || XVECTOR (obarray)->size == 0)
177 obarray = check_obarray (obarray);
178 tem = oblookup (obarray, SDATA (str), len, len);
179 if (SYMBOLP (tem))
180 return tem;
181 return Fintern (str, obarray);
182 }
183
184 /* w32 implementation of get_cache for font backend.
185 Return a cache of font-entities on FRAME. The cache must be a
186 cons whose cdr part is the actual cache area. */
187 Lisp_Object
188 w32font_get_cache (f)
189 FRAME_PTR f;
190 {
191 struct w32_display_info *dpyinfo = FRAME_X_DISPLAY_INFO (f);
192
193 return (dpyinfo->name_list_element);
194 }
195
196 /* w32 implementation of list for font backend.
197 List fonts exactly matching with FONT_SPEC on FRAME. The value
198 is a vector of font-entities. This is the sole API that
199 allocates font-entities. */
200 static Lisp_Object
201 w32font_list (frame, font_spec)
202 Lisp_Object frame, font_spec;
203 {
204 Lisp_Object fonts = w32font_list_internal (frame, font_spec, 0);
205 font_add_log ("w32font-list", font_spec, fonts);
206 return fonts;
207 }
208
209 /* w32 implementation of match for font backend.
210 Return a font entity most closely matching with FONT_SPEC on
211 FRAME. The closeness is detemined by the font backend, thus
212 `face-font-selection-order' is ignored here. */
213 static Lisp_Object
214 w32font_match (frame, font_spec)
215 Lisp_Object frame, font_spec;
216 {
217 Lisp_Object entity = w32font_match_internal (frame, font_spec, 0);
218 font_add_log ("w32font-match", font_spec, entity);
219 return entity;
220 }
221
222 /* w32 implementation of list_family for font backend.
223 List available families. The value is a list of family names
224 (symbols). */
225 static Lisp_Object
226 w32font_list_family (frame)
227 Lisp_Object frame;
228 {
229 Lisp_Object list = Qnil;
230 LOGFONT font_match_pattern;
231 HDC dc;
232 FRAME_PTR f = XFRAME (frame);
233
234 bzero (&font_match_pattern, sizeof (font_match_pattern));
235 font_match_pattern.lfCharSet = DEFAULT_CHARSET;
236
237 dc = get_frame_dc (f);
238
239 EnumFontFamiliesEx (dc, &font_match_pattern,
240 (FONTENUMPROC) add_font_name_to_list,
241 (LPARAM) &list, 0);
242 release_frame_dc (f, dc);
243
244 return list;
245 }
246
247 /* w32 implementation of open for font backend.
248 Open a font specified by FONT_ENTITY on frame F.
249 If the font is scalable, open it with PIXEL_SIZE. */
250 static Lisp_Object
251 w32font_open (f, font_entity, pixel_size)
252 FRAME_PTR f;
253 Lisp_Object font_entity;
254 int pixel_size;
255 {
256 Lisp_Object font_object
257 = font_make_object (VECSIZE (struct w32font_info),
258 font_entity, pixel_size);
259 struct w32font_info *w32_font
260 = (struct w32font_info *) XFONT_OBJECT (font_object);
261
262 ASET (font_object, FONT_TYPE_INDEX, Qgdi);
263
264 if (!w32font_open_internal (f, font_entity, pixel_size, font_object))
265 {
266 return Qnil;
267 }
268
269 /* GDI backend does not use glyph indices. */
270 w32_font->glyph_idx = 0;
271
272 return font_object;
273 }
274
275 /* w32 implementation of close for font_backend.
276 Close FONT on frame F. */
277 void
278 w32font_close (f, font)
279 FRAME_PTR f;
280 struct font *font;
281 {
282 int i;
283 struct w32font_info *w32_font = (struct w32font_info *) font;
284
285 /* Delete the GDI font object. */
286 DeleteObject (w32_font->hfont);
287
288 /* Free all the cached metrics. */
289 if (w32_font->cached_metrics)
290 {
291 for (i = 0; i < w32_font->n_cache_blocks; i++)
292 {
293 if (w32_font->cached_metrics[i])
294 xfree (w32_font->cached_metrics[i]);
295 }
296 xfree (w32_font->cached_metrics);
297 w32_font->cached_metrics = NULL;
298 }
299 }
300
301 /* w32 implementation of has_char for font backend.
302 Optional.
303 If FONT_ENTITY has a glyph for character C (Unicode code point),
304 return 1. If not, return 0. If a font must be opened to check
305 it, return -1. */
306 int
307 w32font_has_char (entity, c)
308 Lisp_Object entity;
309 int c;
310 {
311 /* We can't be certain about which characters a font will support until
312 we open it. Checking the scripts that the font supports turns out
313 to not be reliable. */
314 return -1;
315
316 #if 0
317 Lisp_Object supported_scripts, extra, script;
318 DWORD mask;
319
320 extra = AREF (entity, FONT_EXTRA_INDEX);
321 if (!CONSP (extra))
322 return -1;
323
324 supported_scripts = assq_no_quit (QCscript, extra);
325 /* If font doesn't claim to support any scripts, then we can't be certain
326 until we open it. */
327 if (!CONSP (supported_scripts))
328 return -1;
329
330 supported_scripts = XCDR (supported_scripts);
331
332 script = CHAR_TABLE_REF (Vchar_script_table, c);
333
334 /* If we don't know what script the character is from, then we can't be
335 certain until we open it. Also if the font claims support for the script
336 the character is from, it may only have partial coverage, so we still
337 can't be certain until we open the font. */
338 if (NILP (script) || memq_no_quit (script, supported_scripts))
339 return -1;
340
341 /* Font reports what scripts it supports, and none of them are the script
342 the character is from. But we still can't be certain, as some fonts
343 will contain some/most/all of the characters in that script without
344 claiming support for it. */
345 return -1;
346 #endif
347 }
348
349 /* w32 implementation of encode_char for font backend.
350 Return a glyph code of FONT for characer C (Unicode code point).
351 If FONT doesn't have such a glyph, return FONT_INVALID_CODE.
352
353 For speed, the gdi backend uses unicode (Emacs calls encode_char
354 far too often for it to be efficient). But we still need to detect
355 which characters are not supported by the font.
356 */
357 static unsigned
358 w32font_encode_char (font, c)
359 struct font *font;
360 int c;
361 {
362 struct w32font_info * w32_font = (struct w32font_info *)font;
363
364 if (c < w32_font->metrics.tmFirstChar
365 || c > w32_font->metrics.tmLastChar)
366 return FONT_INVALID_CODE;
367 else
368 return c;
369 }
370
371 /* w32 implementation of text_extents for font backend.
372 Perform the size computation of glyphs of FONT and fillin members
373 of METRICS. The glyphs are specified by their glyph codes in
374 CODE (length NGLYPHS). Apparently metrics can be NULL, in this
375 case just return the overall width. */
376 int
377 w32font_text_extents (font, code, nglyphs, metrics)
378 struct font *font;
379 unsigned *code;
380 int nglyphs;
381 struct font_metrics *metrics;
382 {
383 int i;
384 HFONT old_font = NULL;
385 HDC dc = NULL;
386 struct frame * f;
387 int total_width = 0;
388 WORD *wcode;
389 SIZE size;
390
391 struct w32font_info *w32_font = (struct w32font_info *) font;
392
393 if (metrics)
394 {
395 bzero (metrics, sizeof (struct font_metrics));
396 metrics->ascent = font->ascent;
397 metrics->descent = font->descent;
398
399 for (i = 0; i < nglyphs; i++)
400 {
401 struct w32_metric_cache *char_metric;
402 int block = *(code + i) / CACHE_BLOCKSIZE;
403 int pos_in_block = *(code + i) % CACHE_BLOCKSIZE;
404
405 if (block >= w32_font->n_cache_blocks)
406 {
407 if (!w32_font->cached_metrics)
408 w32_font->cached_metrics
409 = xmalloc ((block + 1)
410 * sizeof (struct w32_metric_cache *));
411 else
412 w32_font->cached_metrics
413 = xrealloc (w32_font->cached_metrics,
414 (block + 1)
415 * sizeof (struct w32_metric_cache *));
416 bzero (w32_font->cached_metrics + w32_font->n_cache_blocks,
417 ((block + 1 - w32_font->n_cache_blocks)
418 * sizeof (struct w32_metric_cache *)));
419 w32_font->n_cache_blocks = block + 1;
420 }
421
422 if (!w32_font->cached_metrics[block])
423 {
424 w32_font->cached_metrics[block]
425 = xmalloc (CACHE_BLOCKSIZE * sizeof (struct w32_metric_cache));
426 bzero (w32_font->cached_metrics[block],
427 CACHE_BLOCKSIZE * sizeof (struct w32_metric_cache));
428 }
429
430 char_metric = w32_font->cached_metrics[block] + pos_in_block;
431
432 if (char_metric->status == W32METRIC_NO_ATTEMPT)
433 {
434 if (dc == NULL)
435 {
436 /* TODO: Frames can come and go, and their fonts
437 outlive them. So we can't cache the frame in the
438 font structure. Use selected_frame until the API
439 is updated to pass in a frame. */
440 f = XFRAME (selected_frame);
441
442 dc = get_frame_dc (f);
443 old_font = SelectObject (dc, w32_font->hfont);
444 }
445 compute_metrics (dc, w32_font, *(code + i), char_metric);
446 }
447
448 if (char_metric->status == W32METRIC_SUCCESS)
449 {
450 metrics->lbearing = min (metrics->lbearing,
451 metrics->width + char_metric->lbearing);
452 metrics->rbearing = max (metrics->rbearing,
453 metrics->width + char_metric->rbearing);
454 metrics->width += char_metric->width;
455 }
456 else
457 /* If we couldn't get metrics for a char,
458 use alternative method. */
459 break;
460 }
461 /* If we got through everything, return. */
462 if (i == nglyphs)
463 {
464 if (dc != NULL)
465 {
466 /* Restore state and release DC. */
467 SelectObject (dc, old_font);
468 release_frame_dc (f, dc);
469 }
470
471 return metrics->width;
472 }
473 }
474
475 /* For non-truetype fonts, GetGlyphOutlineW is not supported, so
476 fallback on other methods that will at least give some of the metric
477 information. */
478
479 /* Make array big enough to hold surrogates. */
480 wcode = alloca (nglyphs * sizeof (WORD) * 2);
481 for (i = 0; i < nglyphs; i++)
482 {
483 if (code[i] < 0x10000)
484 wcode[i] = code[i];
485 else
486 {
487 DWORD surrogate = code[i] - 0x10000;
488
489 /* High surrogate: U+D800 - U+DBFF. */
490 wcode[i++] = 0xD800 + ((surrogate >> 10) & 0x03FF);
491 /* Low surrogate: U+DC00 - U+DFFF. */
492 wcode[i] = 0xDC00 + (surrogate & 0x03FF);
493 /* An extra glyph. wcode is already double the size of code to
494 cope with this. */
495 nglyphs++;
496 }
497 }
498
499 if (dc == NULL)
500 {
501 /* TODO: Frames can come and go, and their fonts outlive
502 them. So we can't cache the frame in the font structure. Use
503 selected_frame until the API is updated to pass in a
504 frame. */
505 f = XFRAME (selected_frame);
506
507 dc = get_frame_dc (f);
508 old_font = SelectObject (dc, w32_font->hfont);
509 }
510
511 if (GetTextExtentPoint32W (dc, wcode, nglyphs, &size))
512 {
513 total_width = size.cx;
514 }
515
516 /* On 95/98/ME, only some unicode functions are available, so fallback
517 on doing a dummy draw to find the total width. */
518 if (!total_width)
519 {
520 RECT rect;
521 rect.top = 0; rect.bottom = font->height; rect.left = 0; rect.right = 1;
522 DrawTextW (dc, wcode, nglyphs, &rect,
523 DT_CALCRECT | DT_NOPREFIX | DT_SINGLELINE);
524 total_width = rect.right;
525 }
526
527 /* Give our best estimate of the metrics, based on what we know. */
528 if (metrics)
529 {
530 metrics->width = total_width - w32_font->metrics.tmOverhang;
531 metrics->lbearing = 0;
532 metrics->rbearing = total_width;
533 }
534
535 /* Restore state and release DC. */
536 SelectObject (dc, old_font);
537 release_frame_dc (f, dc);
538
539 return total_width;
540 }
541
542 /* w32 implementation of draw for font backend.
543 Optional.
544 Draw glyphs between FROM and TO of S->char2b at (X Y) pixel
545 position of frame F with S->FACE and S->GC. If WITH_BACKGROUND
546 is nonzero, fill the background in advance. It is assured that
547 WITH_BACKGROUND is zero when (FROM > 0 || TO < S->nchars).
548
549 TODO: Currently this assumes that the colors and fonts are already
550 set in the DC. This seems to be true now, but maybe only due to
551 the old font code setting it up. It may be safer to resolve faces
552 and fonts in here and set them explicitly
553 */
554
555 int
556 w32font_draw (s, from, to, x, y, with_background)
557 struct glyph_string *s;
558 int from, to, x, y, with_background;
559 {
560 UINT options;
561 HRGN orig_clip = NULL;
562 struct w32font_info *w32font = (struct w32font_info *) s->font;
563
564 options = w32font->glyph_idx;
565
566 if (s->num_clips > 0)
567 {
568 HRGN new_clip = CreateRectRgnIndirect (s->clip);
569
570 /* Save clip region for later restoration. */
571 orig_clip = CreateRectRgn (0, 0, 0, 0);
572 if (!GetClipRgn(s->hdc, orig_clip))
573 {
574 DeleteObject (orig_clip);
575 orig_clip = NULL;
576 }
577
578 if (s->num_clips > 1)
579 {
580 HRGN clip2 = CreateRectRgnIndirect (s->clip + 1);
581
582 CombineRgn (new_clip, new_clip, clip2, RGN_OR);
583 DeleteObject (clip2);
584 }
585
586 SelectClipRgn (s->hdc, new_clip);
587 DeleteObject (new_clip);
588 }
589
590 /* Using OPAQUE background mode can clear more background than expected
591 when Cleartype is used. Draw the background manually to avoid this. */
592 SetBkMode (s->hdc, TRANSPARENT);
593 if (with_background)
594 {
595 HBRUSH brush;
596 RECT rect;
597 struct font *font = s->font;
598
599 brush = CreateSolidBrush (s->gc->background);
600 rect.left = x;
601 rect.top = y - font->ascent;
602 rect.right = x + s->width;
603 rect.bottom = y + font->descent;
604 FillRect (s->hdc, &rect, brush);
605 DeleteObject (brush);
606 }
607
608 if (s->padding_p)
609 {
610 int len = to - from, i;
611
612 for (i = 0; i < len; i++)
613 ExtTextOutW (s->hdc, x + i, y, options, NULL,
614 s->char2b + from + i, 1, NULL);
615 }
616 else
617 ExtTextOutW (s->hdc, x, y, options, NULL, s->char2b + from, to - from, NULL);
618
619 /* Restore clip region. */
620 if (s->num_clips > 0)
621 SelectClipRgn (s->hdc, orig_clip);
622
623 if (orig_clip)
624 DeleteObject (orig_clip);
625 }
626
627 /* w32 implementation of free_entity for font backend.
628 Optional (if FONT_EXTRA_INDEX is not Lisp_Save_Value).
629 Free FONT_EXTRA_INDEX field of FONT_ENTITY.
630 static void
631 w32font_free_entity (Lisp_Object entity);
632 */
633
634 /* w32 implementation of prepare_face for font backend.
635 Optional (if FACE->extra is not used).
636 Prepare FACE for displaying characters by FONT on frame F by
637 storing some data in FACE->extra. If successful, return 0.
638 Otherwise, return -1.
639 static int
640 w32font_prepare_face (FRAME_PTR f, struct face *face);
641 */
642 /* w32 implementation of done_face for font backend.
643 Optional.
644 Done FACE for displaying characters by FACE->font on frame F.
645 static void
646 w32font_done_face (FRAME_PTR f, struct face *face); */
647
648 /* w32 implementation of get_bitmap for font backend.
649 Optional.
650 Store bitmap data for glyph-code CODE of FONT in BITMAP. It is
651 intended that this method is called from the other font-driver
652 for actual drawing.
653 static int
654 w32font_get_bitmap (struct font *font, unsigned code,
655 struct font_bitmap *bitmap, int bits_per_pixel);
656 */
657 /* w32 implementation of free_bitmap for font backend.
658 Optional.
659 Free bitmap data in BITMAP.
660 static void
661 w32font_free_bitmap (struct font *font, struct font_bitmap *bitmap);
662 */
663 /* w32 implementation of get_outline for font backend.
664 Optional.
665 Return an outline data for glyph-code CODE of FONT. The format
666 of the outline data depends on the font-driver.
667 static void *
668 w32font_get_outline (struct font *font, unsigned code);
669 */
670 /* w32 implementation of free_outline for font backend.
671 Optional.
672 Free OUTLINE (that is obtained by the above method).
673 static void
674 w32font_free_outline (struct font *font, void *outline);
675 */
676 /* w32 implementation of anchor_point for font backend.
677 Optional.
678 Get coordinates of the INDEXth anchor point of the glyph whose
679 code is CODE. Store the coordinates in *X and *Y. Return 0 if
680 the operations was successfull. Otherwise return -1.
681 static int
682 w32font_anchor_point (struct font *font, unsigned code,
683 int index, int *x, int *y);
684 */
685 /* w32 implementation of otf_capability for font backend.
686 Optional.
687 Return a list describing which scripts/languages FONT
688 supports by which GSUB/GPOS features of OpenType tables.
689 static Lisp_Object
690 w32font_otf_capability (struct font *font);
691 */
692 /* w32 implementation of otf_drive for font backend.
693 Optional.
694 Apply FONT's OTF-FEATURES to the glyph string.
695
696 FEATURES specifies which OTF features to apply in this format:
697 (SCRIPT LANGSYS GSUB-FEATURE GPOS-FEATURE)
698 See the documentation of `font-drive-otf' for the detail.
699
700 This method applies the specified features to the codes in the
701 elements of GSTRING-IN (between FROMth and TOth). The output
702 codes are stored in GSTRING-OUT at the IDXth element and the
703 following elements.
704
705 Return the number of output codes. If none of the features are
706 applicable to the input data, return 0. If GSTRING-OUT is too
707 short, return -1.
708 static int
709 w32font_otf_drive (struct font *font, Lisp_Object features,
710 Lisp_Object gstring_in, int from, int to,
711 Lisp_Object gstring_out, int idx,
712 int alternate_subst);
713 */
714
715 /* Internal implementation of w32font_list.
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_list_internal (frame, font_spec, opentype_only)
720 Lisp_Object frame, font_spec;
721 int opentype_only;
722 {
723 struct font_callback_data match_data;
724 HDC dc;
725 FRAME_PTR f = XFRAME (frame);
726
727 match_data.orig_font_spec = font_spec;
728 match_data.list = Qnil;
729 match_data.frame = frame;
730
731 bzero (&match_data.pattern, sizeof (LOGFONT));
732 fill_in_logfont (f, &match_data.pattern, font_spec);
733
734 /* If the charset is unrecognized, then we won't find a font, so don't
735 waste time looking for one. */
736 if (match_data.pattern.lfCharSet == DEFAULT_CHARSET)
737 {
738 Lisp_Object spec_charset = AREF (font_spec, FONT_REGISTRY_INDEX);
739 if (!NILP (spec_charset)
740 && !EQ (spec_charset, Qiso10646_1)
741 && !EQ (spec_charset, Qunicode_bmp)
742 && !EQ (spec_charset, Qunicode_sip)
743 && !EQ (spec_charset, Qunknown))
744 return Qnil;
745 }
746
747 match_data.opentype_only = opentype_only;
748 if (opentype_only)
749 match_data.pattern.lfOutPrecision = OUT_OUTLINE_PRECIS;
750
751 if (match_data.pattern.lfFaceName[0] == '\0')
752 {
753 /* EnumFontFamiliesEx does not take other fields into account if
754 font name is blank, so need to use two passes. */
755 list_all_matching_fonts (&match_data);
756 }
757 else
758 {
759 dc = get_frame_dc (f);
760
761 EnumFontFamiliesEx (dc, &match_data.pattern,
762 (FONTENUMPROC) add_font_entity_to_list,
763 (LPARAM) &match_data, 0);
764 release_frame_dc (f, dc);
765 }
766
767 return match_data.list;
768 }
769
770 /* Internal implementation of w32font_match.
771 Additional parameter opentype_only restricts the returned fonts to
772 opentype fonts, which can be used with the Uniscribe backend. */
773 Lisp_Object
774 w32font_match_internal (frame, font_spec, opentype_only)
775 Lisp_Object frame, font_spec;
776 int opentype_only;
777 {
778 struct font_callback_data match_data;
779 HDC dc;
780 FRAME_PTR f = XFRAME (frame);
781
782 match_data.orig_font_spec = font_spec;
783 match_data.frame = frame;
784 match_data.list = Qnil;
785
786 bzero (&match_data.pattern, sizeof (LOGFONT));
787 fill_in_logfont (f, &match_data.pattern, font_spec);
788
789 match_data.opentype_only = opentype_only;
790 if (opentype_only)
791 match_data.pattern.lfOutPrecision = OUT_OUTLINE_PRECIS;
792
793 dc = get_frame_dc (f);
794
795 EnumFontFamiliesEx (dc, &match_data.pattern,
796 (FONTENUMPROC) add_one_font_entity_to_list,
797 (LPARAM) &match_data, 0);
798 release_frame_dc (f, dc);
799
800 return NILP (match_data.list) ? Qnil : XCAR (match_data.list);
801 }
802
803 int
804 w32font_open_internal (f, font_entity, pixel_size, font_object)
805 FRAME_PTR f;
806 Lisp_Object font_entity;
807 int pixel_size;
808 Lisp_Object font_object;
809 {
810 int len, size, i;
811 LOGFONT logfont;
812 HDC dc;
813 HFONT hfont, old_font;
814 Lisp_Object val, extra;
815 struct w32font_info *w32_font;
816 struct font * font;
817 OUTLINETEXTMETRICW* metrics = NULL;
818
819 w32_font = (struct w32font_info *) XFONT_OBJECT (font_object);
820 font = (struct font *) w32_font;
821
822 if (!font)
823 return 0;
824
825 bzero (&logfont, sizeof (logfont));
826 fill_in_logfont (f, &logfont, font_entity);
827
828 /* Prefer truetype fonts, to avoid known problems with type1 fonts, and
829 limitations in bitmap fonts. */
830 val = AREF (font_entity, FONT_FOUNDRY_INDEX);
831 if (!EQ (val, Qraster))
832 logfont.lfOutPrecision = OUT_TT_PRECIS;
833
834 size = XINT (AREF (font_entity, FONT_SIZE_INDEX));
835 if (!size)
836 size = pixel_size;
837
838 logfont.lfHeight = -size;
839 hfont = CreateFontIndirect (&logfont);
840
841 if (hfont == NULL)
842 return 0;
843
844 /* Get the metrics for this font. */
845 dc = get_frame_dc (f);
846 old_font = SelectObject (dc, hfont);
847
848 /* Try getting the outline metrics (only works for truetype fonts). */
849 len = GetOutlineTextMetricsW (dc, 0, NULL);
850 if (len)
851 {
852 metrics = (OUTLINETEXTMETRICW *) alloca (len);
853 if (GetOutlineTextMetricsW (dc, len, metrics))
854 bcopy (&metrics->otmTextMetrics, &w32_font->metrics,
855 sizeof (TEXTMETRICW));
856 else
857 metrics = NULL;
858 }
859
860 if (!metrics)
861 GetTextMetricsW (dc, &w32_font->metrics);
862
863 w32_font->cached_metrics = NULL;
864 w32_font->n_cache_blocks = 0;
865
866 SelectObject (dc, old_font);
867 release_frame_dc (f, dc);
868
869 w32_font->hfont = hfont;
870
871 {
872 char *name;
873
874 /* We don't know how much space we need for the full name, so start with
875 96 bytes and go up in steps of 32. */
876 len = 96;
877 name = alloca (len);
878 while (name && w32font_full_name (&logfont, font_entity, pixel_size,
879 name, len) < 0)
880 {
881 len += 32;
882 name = alloca (len);
883 }
884 if (name)
885 font->props[FONT_FULLNAME_INDEX]
886 = DECODE_SYSTEM (build_string (name));
887 else
888 font->props[FONT_FULLNAME_INDEX]
889 = DECODE_SYSTEM (build_string (logfont.lfFaceName));
890 }
891
892 font->max_width = w32_font->metrics.tmMaxCharWidth;
893 /* Parts of Emacs display assume that height = ascent + descent...
894 so height is defined later, after ascent and descent.
895 font->height = w32_font->metrics.tmHeight
896 + w32_font->metrics.tmExternalLeading;
897 */
898
899 font->space_width = font->average_width = w32_font->metrics.tmAveCharWidth;
900
901 font->vertical_centering = 0;
902 font->encoding_type = 0;
903 font->baseline_offset = 0;
904 font->relative_compose = 0;
905 font->default_ascent = w32_font->metrics.tmAscent;
906 font->font_encoder = NULL;
907 font->pixel_size = size;
908 font->driver = &w32font_driver;
909 /* Use format cached during list, as the information we have access to
910 here is incomplete. */
911 extra = AREF (font_entity, FONT_EXTRA_INDEX);
912 if (CONSP (extra))
913 {
914 val = assq_no_quit (QCformat, extra);
915 if (CONSP (val))
916 font->props[FONT_FORMAT_INDEX] = XCDR (val);
917 else
918 font->props[FONT_FORMAT_INDEX] = Qunknown;
919 }
920 else
921 font->props[FONT_FORMAT_INDEX] = Qunknown;
922
923 font->props[FONT_FILE_INDEX] = Qnil;
924 font->encoding_charset = -1;
925 font->repertory_charset = -1;
926 /* TODO: do we really want the minimum width here, which could be negative? */
927 font->min_width = font->space_width;
928 font->ascent = w32_font->metrics.tmAscent;
929 font->descent = w32_font->metrics.tmDescent;
930 font->height = font->ascent + font->descent;
931
932 if (metrics)
933 {
934 font->underline_thickness = metrics->otmsUnderscoreSize;
935 font->underline_position = -metrics->otmsUnderscorePosition;
936 }
937 else
938 {
939 font->underline_thickness = 0;
940 font->underline_position = -1;
941 }
942
943 /* For temporary compatibility with legacy code that expects the
944 name to be usable in x-list-fonts. Eventually we expect to change
945 x-list-fonts and other places that use fonts so that this can be
946 an fcname or similar. */
947 font->props[FONT_NAME_INDEX] = Ffont_xlfd_name (font_object, Qnil);
948
949 return 1;
950 }
951
952 /* Callback function for EnumFontFamiliesEx.
953 * Adds the name of a font to a Lisp list (passed in as the lParam arg). */
954 static int CALLBACK
955 add_font_name_to_list (logical_font, physical_font, font_type, list_object)
956 ENUMLOGFONTEX *logical_font;
957 NEWTEXTMETRICEX *physical_font;
958 DWORD font_type;
959 LPARAM list_object;
960 {
961 Lisp_Object* list = (Lisp_Object *) list_object;
962 Lisp_Object family;
963
964 /* Skip vertical fonts (intended only for printing) */
965 if (logical_font->elfLogFont.lfFaceName[0] == '@')
966 return 1;
967
968 family = intern_font_name (logical_font->elfLogFont.lfFaceName);
969 if (! memq_no_quit (family, *list))
970 *list = Fcons (family, *list);
971
972 return 1;
973 }
974
975 static int w32_decode_weight P_ ((int));
976 static int w32_encode_weight P_ ((int));
977
978 /* Convert an enumerated Windows font to an Emacs font entity. */
979 static Lisp_Object
980 w32_enumfont_pattern_entity (frame, logical_font, physical_font,
981 font_type, requested_font, backend)
982 Lisp_Object frame;
983 ENUMLOGFONTEX *logical_font;
984 NEWTEXTMETRICEX *physical_font;
985 DWORD font_type;
986 LOGFONT *requested_font;
987 Lisp_Object backend;
988 {
989 Lisp_Object entity, tem;
990 LOGFONT *lf = (LOGFONT*) logical_font;
991 BYTE generic_type;
992 DWORD full_type = physical_font->ntmTm.ntmFlags;
993
994 entity = font_make_entity ();
995
996 ASET (entity, FONT_TYPE_INDEX, backend);
997 ASET (entity, FONT_REGISTRY_INDEX, w32_registry (lf->lfCharSet, font_type));
998 ASET (entity, FONT_OBJLIST_INDEX, Qnil);
999
1000 /* Foundry is difficult to get in readable form on Windows.
1001 But Emacs crashes if it is not set, so set it to something more
1002 generic. These values make xlfds compatible with Emacs 22. */
1003 if (lf->lfOutPrecision == OUT_STRING_PRECIS)
1004 tem = Qraster;
1005 else if (lf->lfOutPrecision == OUT_STROKE_PRECIS)
1006 tem = Qoutline;
1007 else
1008 tem = Qunknown;
1009
1010 ASET (entity, FONT_FOUNDRY_INDEX, tem);
1011
1012 /* Save the generic family in the extra info, as it is likely to be
1013 useful to users looking for a close match. */
1014 generic_type = physical_font->ntmTm.tmPitchAndFamily & 0xF0;
1015 if (generic_type == FF_DECORATIVE)
1016 tem = Qdecorative;
1017 else if (generic_type == FF_MODERN)
1018 tem = Qmono;
1019 else if (generic_type == FF_ROMAN)
1020 tem = Qserif;
1021 else if (generic_type == FF_SCRIPT)
1022 tem = Qscript;
1023 else if (generic_type == FF_SWISS)
1024 tem = Qsans;
1025 else
1026 tem = Qnil;
1027
1028 ASET (entity, FONT_ADSTYLE_INDEX, tem);
1029
1030 if (physical_font->ntmTm.tmPitchAndFamily & 0x01)
1031 ASET (entity, FONT_SPACING_INDEX, make_number (FONT_SPACING_PROPORTIONAL));
1032 else
1033 ASET (entity, FONT_SPACING_INDEX, make_number (FONT_SPACING_CHARCELL));
1034
1035 if (requested_font->lfQuality != DEFAULT_QUALITY)
1036 {
1037 font_put_extra (entity, QCantialias,
1038 lispy_antialias_type (requested_font->lfQuality));
1039 }
1040 ASET (entity, FONT_FAMILY_INDEX,
1041 intern_font_name (lf->lfFaceName));
1042
1043 FONT_SET_STYLE (entity, FONT_WEIGHT_INDEX,
1044 make_number (w32_decode_weight (lf->lfWeight)));
1045 FONT_SET_STYLE (entity, FONT_SLANT_INDEX,
1046 make_number (lf->lfItalic ? 200 : 100));
1047 /* TODO: PANOSE struct has this info, but need to call GetOutlineTextMetrics
1048 to get it. */
1049 FONT_SET_STYLE (entity, FONT_WIDTH_INDEX, make_number (100));
1050
1051 if (font_type & RASTER_FONTTYPE)
1052 ASET (entity, FONT_SIZE_INDEX,
1053 make_number (physical_font->ntmTm.tmHeight
1054 + physical_font->ntmTm.tmExternalLeading));
1055 else
1056 ASET (entity, FONT_SIZE_INDEX, make_number (0));
1057
1058 /* Cache unicode codepoints covered by this font, as there is no other way
1059 of getting this information easily. */
1060 if (font_type & TRUETYPE_FONTTYPE)
1061 {
1062 tem = font_supported_scripts (&physical_font->ntmFontSig);
1063 if (!NILP (tem))
1064 font_put_extra (entity, QCscript, tem);
1065 }
1066
1067 /* This information is not fully available when opening fonts, so
1068 save it here. Only Windows 2000 and later return information
1069 about opentype and type1 fonts, so need a fallback for detecting
1070 truetype so that this information is not any worse than we could
1071 have obtained later. */
1072 if (EQ (backend, Quniscribe) && (full_type & NTMFLAGS_OPENTYPE))
1073 tem = intern ("opentype");
1074 else if (font_type & TRUETYPE_FONTTYPE)
1075 tem = intern ("truetype");
1076 else if (full_type & NTM_PS_OPENTYPE)
1077 tem = intern ("postscript");
1078 else if (full_type & NTM_TYPE1)
1079 tem = intern ("type1");
1080 else if (font_type & RASTER_FONTTYPE)
1081 tem = intern ("w32bitmap");
1082 else
1083 tem = intern ("w32vector");
1084
1085 font_put_extra (entity, QCformat, tem);
1086
1087 return entity;
1088 }
1089
1090
1091 /* Convert generic families to the family portion of lfPitchAndFamily. */
1092 BYTE
1093 w32_generic_family (Lisp_Object name)
1094 {
1095 /* Generic families. */
1096 if (EQ (name, Qmonospace) || EQ (name, Qmono))
1097 return FF_MODERN;
1098 else if (EQ (name, Qsans) || EQ (name, Qsans_serif) || EQ (name, Qsansserif))
1099 return FF_SWISS;
1100 else if (EQ (name, Qserif))
1101 return FF_ROMAN;
1102 else if (EQ (name, Qdecorative))
1103 return FF_DECORATIVE;
1104 else if (EQ (name, Qscript))
1105 return FF_SCRIPT;
1106 else
1107 return FF_DONTCARE;
1108 }
1109
1110 static int
1111 logfonts_match (font, pattern)
1112 LOGFONT *font, *pattern;
1113 {
1114 /* Only check height for raster fonts. */
1115 if (pattern->lfHeight && font->lfOutPrecision == OUT_STRING_PRECIS
1116 && font->lfHeight != pattern->lfHeight)
1117 return 0;
1118
1119 /* Have some flexibility with weights. */
1120 if (pattern->lfWeight
1121 && ((font->lfWeight < (pattern->lfWeight - 150))
1122 || font->lfWeight > (pattern->lfWeight + 150)))
1123 return 0;
1124
1125 /* Charset and face should be OK. Italic has to be checked
1126 against the original spec, in case we don't have any preference. */
1127 return 1;
1128 }
1129
1130 /* Codepage Bitfields in FONTSIGNATURE struct. */
1131 #define CSB_JAPANESE (1 << 17)
1132 #define CSB_KOREAN ((1 << 19) | (1 << 21))
1133 #define CSB_CHINESE ((1 << 18) | (1 << 20))
1134
1135 static int
1136 font_matches_spec (type, font, spec, backend, logfont)
1137 DWORD type;
1138 NEWTEXTMETRICEX *font;
1139 Lisp_Object spec;
1140 Lisp_Object backend;
1141 LOGFONT *logfont;
1142 {
1143 Lisp_Object extra, val;
1144
1145 /* Check italic. Can't check logfonts, since it is a boolean field,
1146 so there is no difference between "non-italic" and "don't care". */
1147 {
1148 int slant = FONT_SLANT_NUMERIC (spec);
1149
1150 if (slant >= 0
1151 && ((slant > 150 && !font->ntmTm.tmItalic)
1152 || (slant <= 150 && font->ntmTm.tmItalic)))
1153 return 0;
1154 }
1155
1156 /* Check adstyle against generic family. */
1157 val = AREF (spec, FONT_ADSTYLE_INDEX);
1158 if (!NILP (val))
1159 {
1160 BYTE family = w32_generic_family (val);
1161 if (family != FF_DONTCARE
1162 && family != (font->ntmTm.tmPitchAndFamily & 0xF0))
1163 return 0;
1164 }
1165
1166 /* Check spacing */
1167 val = AREF (spec, FONT_SPACING_INDEX);
1168 if (INTEGERP (val))
1169 {
1170 int spacing = XINT (val);
1171 int proportional = (spacing < FONT_SPACING_MONO);
1172
1173 if ((proportional && !(font->ntmTm.tmPitchAndFamily & 0x01))
1174 || (!proportional && (font->ntmTm.tmPitchAndFamily & 0x01)))
1175 return 0;
1176 }
1177
1178 /* Check extra parameters. */
1179 for (extra = AREF (spec, FONT_EXTRA_INDEX);
1180 CONSP (extra); extra = XCDR (extra))
1181 {
1182 Lisp_Object extra_entry;
1183 extra_entry = XCAR (extra);
1184 if (CONSP (extra_entry))
1185 {
1186 Lisp_Object key = XCAR (extra_entry);
1187
1188 val = XCDR (extra_entry);
1189 if (EQ (key, QCscript) && SYMBOLP (val))
1190 {
1191 /* Only truetype fonts will have information about what
1192 scripts they support. This probably means the user
1193 will have to force Emacs to use raster, postscript
1194 or atm fonts for non-ASCII text. */
1195 if (type & TRUETYPE_FONTTYPE)
1196 {
1197 Lisp_Object support
1198 = font_supported_scripts (&font->ntmFontSig);
1199 if (! memq_no_quit (val, support))
1200 return 0;
1201 }
1202 else
1203 {
1204 /* Return specific matches, but play it safe. Fonts
1205 that cover more than their charset would suggest
1206 are likely to be truetype or opentype fonts,
1207 covered above. */
1208 if (EQ (val, Qlatin))
1209 {
1210 /* Although every charset but symbol, thai and
1211 arabic contains the basic ASCII set of latin
1212 characters, Emacs expects much more. */
1213 if (font->ntmTm.tmCharSet != ANSI_CHARSET)
1214 return 0;
1215 }
1216 else if (EQ (val, Qsymbol))
1217 {
1218 if (font->ntmTm.tmCharSet != SYMBOL_CHARSET)
1219 return 0;
1220 }
1221 else if (EQ (val, Qcyrillic))
1222 {
1223 if (font->ntmTm.tmCharSet != RUSSIAN_CHARSET)
1224 return 0;
1225 }
1226 else if (EQ (val, Qgreek))
1227 {
1228 if (font->ntmTm.tmCharSet != GREEK_CHARSET)
1229 return 0;
1230 }
1231 else if (EQ (val, Qarabic))
1232 {
1233 if (font->ntmTm.tmCharSet != ARABIC_CHARSET)
1234 return 0;
1235 }
1236 else if (EQ (val, Qhebrew))
1237 {
1238 if (font->ntmTm.tmCharSet != HEBREW_CHARSET)
1239 return 0;
1240 }
1241 else if (EQ (val, Qthai))
1242 {
1243 if (font->ntmTm.tmCharSet != THAI_CHARSET)
1244 return 0;
1245 }
1246 else if (EQ (val, Qkana))
1247 {
1248 if (font->ntmTm.tmCharSet != SHIFTJIS_CHARSET)
1249 return 0;
1250 }
1251 else if (EQ (val, Qbopomofo))
1252 {
1253 if (font->ntmTm.tmCharSet != CHINESEBIG5_CHARSET)
1254 return 0;
1255 }
1256 else if (EQ (val, Qhangul))
1257 {
1258 if (font->ntmTm.tmCharSet != HANGUL_CHARSET
1259 && font->ntmTm.tmCharSet != JOHAB_CHARSET)
1260 return 0;
1261 }
1262 else if (EQ (val, Qhan))
1263 {
1264 if (font->ntmTm.tmCharSet != CHINESEBIG5_CHARSET
1265 && font->ntmTm.tmCharSet != GB2312_CHARSET
1266 && font->ntmTm.tmCharSet != HANGUL_CHARSET
1267 && font->ntmTm.tmCharSet != JOHAB_CHARSET
1268 && font->ntmTm.tmCharSet != SHIFTJIS_CHARSET)
1269 return 0;
1270 }
1271 else
1272 /* Other scripts unlikely to be handled by non-truetype
1273 fonts. */
1274 return 0;
1275 }
1276 }
1277 else if (EQ (key, QClang) && SYMBOLP (val))
1278 {
1279 /* Just handle the CJK languages here, as the lang
1280 parameter is used to select a font with appropriate
1281 glyphs in the cjk unified ideographs block. Other fonts
1282 support for a language can be solely determined by
1283 its character coverage. */
1284 if (EQ (val, Qja))
1285 {
1286 if (!(font->ntmFontSig.fsCsb[0] & CSB_JAPANESE))
1287 return 0;
1288 }
1289 else if (EQ (val, Qko))
1290 {
1291 if (!(font->ntmFontSig.fsCsb[0] & CSB_KOREAN))
1292 return 0;
1293 }
1294 else if (EQ (val, Qzh))
1295 {
1296 if (!(font->ntmFontSig.fsCsb[0] & CSB_CHINESE))
1297 return 0;
1298 }
1299 else
1300 /* Any other language, we don't recognize it. Only the above
1301 currently appear in fontset.el, so it isn't worth
1302 creating a mapping table of codepages/scripts to languages
1303 or opening the font to see if there are any language tags
1304 in it that the W32 API does not expose. Fontset
1305 spec should have a fallback, as some backends do
1306 not recognize language at all. */
1307 return 0;
1308 }
1309 else if (EQ (key, QCotf) && CONSP (val))
1310 {
1311 /* OTF features only supported by the uniscribe backend. */
1312 if (EQ (backend, Quniscribe))
1313 {
1314 if (!uniscribe_check_otf (logfont, val))
1315 return 0;
1316 }
1317 else
1318 return 0;
1319 }
1320 }
1321 }
1322 return 1;
1323 }
1324
1325 static int
1326 w32font_coverage_ok (coverage, charset)
1327 FONTSIGNATURE * coverage;
1328 BYTE charset;
1329 {
1330 DWORD subrange1 = coverage->fsUsb[1];
1331
1332 #define SUBRANGE1_HAN_MASK 0x08000000
1333 #define SUBRANGE1_HANGEUL_MASK 0x01000000
1334 #define SUBRANGE1_JAPANESE_MASK (0x00060000 | SUBRANGE1_HAN_MASK)
1335
1336 if (charset == GB2312_CHARSET || charset == CHINESEBIG5_CHARSET)
1337 {
1338 return (subrange1 & SUBRANGE1_HAN_MASK) == SUBRANGE1_HAN_MASK;
1339 }
1340 else if (charset == SHIFTJIS_CHARSET)
1341 {
1342 return (subrange1 & SUBRANGE1_JAPANESE_MASK) == SUBRANGE1_JAPANESE_MASK;
1343 }
1344 else if (charset == HANGEUL_CHARSET)
1345 {
1346 return (subrange1 & SUBRANGE1_HANGEUL_MASK) == SUBRANGE1_HANGEUL_MASK;
1347 }
1348
1349 return 1;
1350 }
1351
1352
1353 static int
1354 check_face_name (font, full_name)
1355 LOGFONT *font;
1356 char *full_name;
1357 {
1358 char full_iname[LF_FULLFACESIZE+1];
1359
1360 /* Just check for names known to cause problems, since the full name
1361 can contain expanded abbreviations, prefixed foundry, postfixed
1362 style, the latter of which sometimes differs from the style indicated
1363 in the shorter name (eg Lt becomes Light or even Extra Light) */
1364
1365 /* Helvetica is mapped to Arial in Windows, but if a Type-1 Helvetica is
1366 installed, we run into problems with the Uniscribe backend which tries
1367 to avoid non-truetype fonts, and ends up mixing the Type-1 Helvetica
1368 with Arial's characteristics, since that attempt to use Truetype works
1369 some places, but not others. */
1370 if (!xstrcasecmp (font->lfFaceName, "helvetica"))
1371 {
1372 strncpy (full_iname, full_name, LF_FULLFACESIZE);
1373 full_iname[LF_FULLFACESIZE] = 0;
1374 _strlwr (full_iname);
1375 return strstr ("helvetica", full_iname) != NULL;
1376 }
1377
1378 /* Since Times is mapped to Times New Roman, a substring
1379 match is not sufficient to filter out the bogus match. */
1380 else if (!xstrcasecmp (font->lfFaceName, "times"))
1381 return xstrcasecmp (full_name, "times") == 0;
1382
1383 return 1;
1384 }
1385
1386
1387 /* Callback function for EnumFontFamiliesEx.
1388 * Checks if a font matches everything we are trying to check agaist,
1389 * and if so, adds it to a list. Both the data we are checking against
1390 * and the list to which the fonts are added are passed in via the
1391 * lparam argument, in the form of a font_callback_data struct. */
1392 static int CALLBACK
1393 add_font_entity_to_list (logical_font, physical_font, font_type, lParam)
1394 ENUMLOGFONTEX *logical_font;
1395 NEWTEXTMETRICEX *physical_font;
1396 DWORD font_type;
1397 LPARAM lParam;
1398 {
1399 struct font_callback_data *match_data
1400 = (struct font_callback_data *) lParam;
1401 Lisp_Object backend = match_data->opentype_only ? Quniscribe : Qgdi;
1402 Lisp_Object entity;
1403
1404 int is_unicode = physical_font->ntmFontSig.fsUsb[3]
1405 || physical_font->ntmFontSig.fsUsb[2]
1406 || physical_font->ntmFontSig.fsUsb[1]
1407 || physical_font->ntmFontSig.fsUsb[0] & 0x3fffffff;
1408
1409 /* Skip non matching fonts. */
1410
1411 /* For uniscribe backend, consider only truetype or opentype fonts
1412 that have some unicode coverage. */
1413 if (match_data->opentype_only
1414 && ((!physical_font->ntmTm.ntmFlags & NTMFLAGS_OPENTYPE
1415 && !(font_type & TRUETYPE_FONTTYPE))
1416 || !is_unicode))
1417 return 1;
1418
1419 /* Ensure a match. */
1420 if (!logfonts_match (&logical_font->elfLogFont, &match_data->pattern)
1421 || !font_matches_spec (font_type, physical_font,
1422 match_data->orig_font_spec, backend,
1423 &logical_font->elfLogFont)
1424 || !w32font_coverage_ok (&physical_font->ntmFontSig,
1425 match_data->pattern.lfCharSet))
1426 return 1;
1427
1428 /* Avoid substitutions involving raster fonts (eg Helv -> MS Sans Serif)
1429 We limit this to raster fonts, because the test can catch some
1430 genuine fonts (eg the full name of DejaVu Sans Mono Light is actually
1431 DejaVu Sans Mono ExtraLight). Helvetica -> Arial substitution will
1432 therefore get through this test. Since full names can be prefixed
1433 by a foundry, we accept raster fonts if the font name is found
1434 anywhere within the full name. */
1435 if ((logical_font->elfLogFont.lfOutPrecision == OUT_STRING_PRECIS
1436 && strstr (logical_font->elfFullName,
1437 logical_font->elfLogFont.lfFaceName))
1438 /* Check for well known substitutions that mess things up in the
1439 presence of Type-1 fonts of the same name. */
1440 || (match_data->pattern.lfFaceName[0]
1441 && !check_face_name (&logical_font->elfLogFont,
1442 logical_font->elfFullName)))
1443 return 1;
1444
1445 /* Make a font entity for the font. */
1446 entity = w32_enumfont_pattern_entity (match_data->frame, logical_font,
1447 physical_font, font_type,
1448 &match_data->pattern,
1449 backend);
1450
1451 if (!NILP (entity))
1452 {
1453 Lisp_Object spec_charset = AREF (match_data->orig_font_spec,
1454 FONT_REGISTRY_INDEX);
1455
1456 /* iso10646-1 fonts must contain unicode mapping tables. */
1457 if (EQ (spec_charset, Qiso10646_1))
1458 {
1459 if (!is_unicode)
1460 return 1;
1461 }
1462 /* unicode-bmp fonts must contain characters from the BMP. */
1463 else if (EQ (spec_charset, Qunicode_bmp))
1464 {
1465 if (!physical_font->ntmFontSig.fsUsb[3]
1466 && !(physical_font->ntmFontSig.fsUsb[2] & 0xFFFFFF9E)
1467 && !(physical_font->ntmFontSig.fsUsb[1] & 0xE81FFFFF)
1468 && !(physical_font->ntmFontSig.fsUsb[0] & 0x007F001F))
1469 return 1;
1470 }
1471 /* unicode-sip fonts must contain characters in unicode plane 2.
1472 so look for bit 57 (surrogates) in the Unicode subranges, plus
1473 the bits for CJK ranges that include those characters. */
1474 else if (EQ (spec_charset, Qunicode_sip))
1475 {
1476 if (!physical_font->ntmFontSig.fsUsb[1] & 0x02000000
1477 || !physical_font->ntmFontSig.fsUsb[1] & 0x28000000)
1478 return 1;
1479 }
1480
1481 /* This font matches. */
1482
1483 /* If registry was specified, ensure it is reported as the same. */
1484 if (!NILP (spec_charset))
1485 ASET (entity, FONT_REGISTRY_INDEX, spec_charset);
1486
1487 /* Otherwise if using the uniscribe backend, report ANSI and DEFAULT
1488 fonts as unicode and skip other charsets. */
1489 else if (match_data->opentype_only)
1490 {
1491 if (logical_font->elfLogFont.lfCharSet == ANSI_CHARSET
1492 || logical_font->elfLogFont.lfCharSet == DEFAULT_CHARSET)
1493 ASET (entity, FONT_REGISTRY_INDEX, Qiso10646_1);
1494 else
1495 return 1;
1496 }
1497
1498 /* Add this font to the list. */
1499 match_data->list = Fcons (entity, match_data->list);
1500 }
1501 return 1;
1502 }
1503
1504 /* Callback function for EnumFontFamiliesEx.
1505 * Terminates the search once we have a match. */
1506 static int CALLBACK
1507 add_one_font_entity_to_list (logical_font, physical_font, font_type, lParam)
1508 ENUMLOGFONTEX *logical_font;
1509 NEWTEXTMETRICEX *physical_font;
1510 DWORD font_type;
1511 LPARAM lParam;
1512 {
1513 struct font_callback_data *match_data
1514 = (struct font_callback_data *) lParam;
1515 add_font_entity_to_list (logical_font, physical_font, font_type, lParam);
1516
1517 /* If we have a font in the list, terminate the search. */
1518 return NILP (match_data->list);
1519 }
1520
1521 /* Old function to convert from x to w32 charset, from w32fns.c. */
1522 static LONG
1523 x_to_w32_charset (lpcs)
1524 char * lpcs;
1525 {
1526 Lisp_Object this_entry, w32_charset;
1527 char *charset;
1528 int len = strlen (lpcs);
1529
1530 /* Support "*-#nnn" format for unknown charsets. */
1531 if (strncmp (lpcs, "*-#", 3) == 0)
1532 return atoi (lpcs + 3);
1533
1534 /* All Windows fonts qualify as unicode. */
1535 if (!strncmp (lpcs, "iso10646", 8))
1536 return DEFAULT_CHARSET;
1537
1538 /* Handle wildcards by ignoring them; eg. treat "big5*-*" as "big5". */
1539 charset = alloca (len + 1);
1540 strcpy (charset, lpcs);
1541 lpcs = strchr (charset, '*');
1542 if (lpcs)
1543 *lpcs = '\0';
1544
1545 /* Look through w32-charset-info-alist for the character set.
1546 Format of each entry is
1547 (CHARSET_NAME . (WINDOWS_CHARSET . CODEPAGE)).
1548 */
1549 this_entry = Fassoc (build_string (charset), Vw32_charset_info_alist);
1550
1551 if (NILP (this_entry))
1552 {
1553 /* At startup, we want iso8859-1 fonts to come up properly. */
1554 if (xstrcasecmp (charset, "iso8859-1") == 0)
1555 return ANSI_CHARSET;
1556 else
1557 return DEFAULT_CHARSET;
1558 }
1559
1560 w32_charset = Fcar (Fcdr (this_entry));
1561
1562 /* Translate Lisp symbol to number. */
1563 if (EQ (w32_charset, Qw32_charset_ansi))
1564 return ANSI_CHARSET;
1565 if (EQ (w32_charset, Qw32_charset_symbol))
1566 return SYMBOL_CHARSET;
1567 if (EQ (w32_charset, Qw32_charset_shiftjis))
1568 return SHIFTJIS_CHARSET;
1569 if (EQ (w32_charset, Qw32_charset_hangeul))
1570 return HANGEUL_CHARSET;
1571 if (EQ (w32_charset, Qw32_charset_chinesebig5))
1572 return CHINESEBIG5_CHARSET;
1573 if (EQ (w32_charset, Qw32_charset_gb2312))
1574 return GB2312_CHARSET;
1575 if (EQ (w32_charset, Qw32_charset_oem))
1576 return OEM_CHARSET;
1577 if (EQ (w32_charset, Qw32_charset_johab))
1578 return JOHAB_CHARSET;
1579 if (EQ (w32_charset, Qw32_charset_easteurope))
1580 return EASTEUROPE_CHARSET;
1581 if (EQ (w32_charset, Qw32_charset_turkish))
1582 return TURKISH_CHARSET;
1583 if (EQ (w32_charset, Qw32_charset_baltic))
1584 return BALTIC_CHARSET;
1585 if (EQ (w32_charset, Qw32_charset_russian))
1586 return RUSSIAN_CHARSET;
1587 if (EQ (w32_charset, Qw32_charset_arabic))
1588 return ARABIC_CHARSET;
1589 if (EQ (w32_charset, Qw32_charset_greek))
1590 return GREEK_CHARSET;
1591 if (EQ (w32_charset, Qw32_charset_hebrew))
1592 return HEBREW_CHARSET;
1593 if (EQ (w32_charset, Qw32_charset_vietnamese))
1594 return VIETNAMESE_CHARSET;
1595 if (EQ (w32_charset, Qw32_charset_thai))
1596 return THAI_CHARSET;
1597 if (EQ (w32_charset, Qw32_charset_mac))
1598 return MAC_CHARSET;
1599
1600 return DEFAULT_CHARSET;
1601 }
1602
1603
1604 /* Convert a Lisp font registry (symbol) to a windows charset. */
1605 static LONG
1606 registry_to_w32_charset (charset)
1607 Lisp_Object charset;
1608 {
1609 if (EQ (charset, Qiso10646_1) || EQ (charset, Qunicode_bmp)
1610 || EQ (charset, Qunicode_sip))
1611 return DEFAULT_CHARSET; /* UNICODE_CHARSET not defined in MingW32 */
1612 else if (EQ (charset, Qiso8859_1))
1613 return ANSI_CHARSET;
1614 else if (SYMBOLP (charset))
1615 return x_to_w32_charset (SDATA (SYMBOL_NAME (charset)));
1616 else
1617 return DEFAULT_CHARSET;
1618 }
1619
1620 /* Old function to convert from w32 to x charset, from w32fns.c. */
1621 static char *
1622 w32_to_x_charset (fncharset, matching)
1623 int fncharset;
1624 char *matching;
1625 {
1626 static char buf[32];
1627 Lisp_Object charset_type;
1628 int match_len = 0;
1629
1630 if (matching)
1631 {
1632 /* If fully specified, accept it as it is. Otherwise use a
1633 substring match. */
1634 char *wildcard = strchr (matching, '*');
1635 if (wildcard)
1636 *wildcard = '\0';
1637 else if (strchr (matching, '-'))
1638 return matching;
1639
1640 match_len = strlen (matching);
1641 }
1642
1643 switch (fncharset)
1644 {
1645 case ANSI_CHARSET:
1646 /* Handle startup case of w32-charset-info-alist not
1647 being set up yet. */
1648 if (NILP (Vw32_charset_info_alist))
1649 return "iso8859-1";
1650 charset_type = Qw32_charset_ansi;
1651 break;
1652 case DEFAULT_CHARSET:
1653 charset_type = Qw32_charset_default;
1654 break;
1655 case SYMBOL_CHARSET:
1656 charset_type = Qw32_charset_symbol;
1657 break;
1658 case SHIFTJIS_CHARSET:
1659 charset_type = Qw32_charset_shiftjis;
1660 break;
1661 case HANGEUL_CHARSET:
1662 charset_type = Qw32_charset_hangeul;
1663 break;
1664 case GB2312_CHARSET:
1665 charset_type = Qw32_charset_gb2312;
1666 break;
1667 case CHINESEBIG5_CHARSET:
1668 charset_type = Qw32_charset_chinesebig5;
1669 break;
1670 case OEM_CHARSET:
1671 charset_type = Qw32_charset_oem;
1672 break;
1673 case EASTEUROPE_CHARSET:
1674 charset_type = Qw32_charset_easteurope;
1675 break;
1676 case TURKISH_CHARSET:
1677 charset_type = Qw32_charset_turkish;
1678 break;
1679 case BALTIC_CHARSET:
1680 charset_type = Qw32_charset_baltic;
1681 break;
1682 case RUSSIAN_CHARSET:
1683 charset_type = Qw32_charset_russian;
1684 break;
1685 case ARABIC_CHARSET:
1686 charset_type = Qw32_charset_arabic;
1687 break;
1688 case GREEK_CHARSET:
1689 charset_type = Qw32_charset_greek;
1690 break;
1691 case HEBREW_CHARSET:
1692 charset_type = Qw32_charset_hebrew;
1693 break;
1694 case VIETNAMESE_CHARSET:
1695 charset_type = Qw32_charset_vietnamese;
1696 break;
1697 case THAI_CHARSET:
1698 charset_type = Qw32_charset_thai;
1699 break;
1700 case MAC_CHARSET:
1701 charset_type = Qw32_charset_mac;
1702 break;
1703 case JOHAB_CHARSET:
1704 charset_type = Qw32_charset_johab;
1705 break;
1706
1707 default:
1708 /* Encode numerical value of unknown charset. */
1709 sprintf (buf, "*-#%u", fncharset);
1710 return buf;
1711 }
1712
1713 {
1714 Lisp_Object rest;
1715 char * best_match = NULL;
1716 int matching_found = 0;
1717
1718 /* Look through w32-charset-info-alist for the character set.
1719 Prefer ISO codepages, and prefer lower numbers in the ISO
1720 range. Only return charsets for codepages which are installed.
1721
1722 Format of each entry is
1723 (CHARSET_NAME . (WINDOWS_CHARSET . CODEPAGE)).
1724 */
1725 for (rest = Vw32_charset_info_alist; CONSP (rest); rest = XCDR (rest))
1726 {
1727 char * x_charset;
1728 Lisp_Object w32_charset;
1729 Lisp_Object codepage;
1730
1731 Lisp_Object this_entry = XCAR (rest);
1732
1733 /* Skip invalid entries in alist. */
1734 if (!CONSP (this_entry) || !STRINGP (XCAR (this_entry))
1735 || !CONSP (XCDR (this_entry))
1736 || !SYMBOLP (XCAR (XCDR (this_entry))))
1737 continue;
1738
1739 x_charset = SDATA (XCAR (this_entry));
1740 w32_charset = XCAR (XCDR (this_entry));
1741 codepage = XCDR (XCDR (this_entry));
1742
1743 /* Look for Same charset and a valid codepage (or non-int
1744 which means ignore). */
1745 if (EQ (w32_charset, charset_type)
1746 && (!INTEGERP (codepage) || XINT (codepage) == CP_DEFAULT
1747 || IsValidCodePage (XINT (codepage))))
1748 {
1749 /* If we don't have a match already, then this is the
1750 best. */
1751 if (!best_match)
1752 {
1753 best_match = x_charset;
1754 if (matching && !strnicmp (x_charset, matching, match_len))
1755 matching_found = 1;
1756 }
1757 /* If we already found a match for MATCHING, then
1758 only consider other matches. */
1759 else if (matching_found
1760 && strnicmp (x_charset, matching, match_len))
1761 continue;
1762 /* If this matches what we want, and the best so far doesn't,
1763 then this is better. */
1764 else if (!matching_found && matching
1765 && !strnicmp (x_charset, matching, match_len))
1766 {
1767 best_match = x_charset;
1768 matching_found = 1;
1769 }
1770 /* If this is fully specified, and the best so far isn't,
1771 then this is better. */
1772 else if ((!strchr (best_match, '-') && strchr (x_charset, '-'))
1773 /* If this is an ISO codepage, and the best so far isn't,
1774 then this is better, but only if it fully specifies the
1775 encoding. */
1776 || (strnicmp (best_match, "iso", 3) != 0
1777 && strnicmp (x_charset, "iso", 3) == 0
1778 && strchr (x_charset, '-')))
1779 best_match = x_charset;
1780 /* If both are ISO8859 codepages, choose the one with the
1781 lowest number in the encoding field. */
1782 else if (strnicmp (best_match, "iso8859-", 8) == 0
1783 && strnicmp (x_charset, "iso8859-", 8) == 0)
1784 {
1785 int best_enc = atoi (best_match + 8);
1786 int this_enc = atoi (x_charset + 8);
1787 if (this_enc > 0 && this_enc < best_enc)
1788 best_match = x_charset;
1789 }
1790 }
1791 }
1792
1793 /* If no match, encode the numeric value. */
1794 if (!best_match)
1795 {
1796 sprintf (buf, "*-#%u", fncharset);
1797 return buf;
1798 }
1799
1800 strncpy (buf, best_match, 31);
1801 /* If the charset is not fully specified, put -0 on the end. */
1802 if (!strchr (best_match, '-'))
1803 {
1804 int pos = strlen (best_match);
1805 /* Charset specifiers shouldn't be very long. If it is a made
1806 up one, truncating it should not do any harm since it isn't
1807 recognized anyway. */
1808 if (pos > 29)
1809 pos = 29;
1810 strcpy (buf + pos, "-0");
1811 }
1812 buf[31] = '\0';
1813 return buf;
1814 }
1815 }
1816
1817 static Lisp_Object
1818 w32_registry (w32_charset, font_type)
1819 LONG w32_charset;
1820 DWORD font_type;
1821 {
1822 char *charset;
1823
1824 /* If charset is defaulted, charset is unicode or unknown, depending on
1825 font type. */
1826 if (w32_charset == DEFAULT_CHARSET)
1827 return font_type == TRUETYPE_FONTTYPE ? Qiso10646_1 : Qunknown;
1828
1829 charset = w32_to_x_charset (w32_charset, NULL);
1830 return font_intern_prop (charset, strlen(charset), 1);
1831 }
1832
1833 static int
1834 w32_decode_weight (fnweight)
1835 int fnweight;
1836 {
1837 if (fnweight >= FW_HEAVY) return 210;
1838 if (fnweight >= FW_EXTRABOLD) return 205;
1839 if (fnweight >= FW_BOLD) return 200;
1840 if (fnweight >= FW_SEMIBOLD) return 180;
1841 if (fnweight >= FW_NORMAL) return 100;
1842 if (fnweight >= FW_LIGHT) return 50;
1843 if (fnweight >= FW_EXTRALIGHT) return 40;
1844 if (fnweight > FW_THIN) return 20;
1845 return 0;
1846 }
1847
1848 static int
1849 w32_encode_weight (n)
1850 int n;
1851 {
1852 if (n >= 210) return FW_HEAVY;
1853 if (n >= 205) return FW_EXTRABOLD;
1854 if (n >= 200) return FW_BOLD;
1855 if (n >= 180) return FW_SEMIBOLD;
1856 if (n >= 100) return FW_NORMAL;
1857 if (n >= 50) return FW_LIGHT;
1858 if (n >= 40) return FW_EXTRALIGHT;
1859 if (n >= 20) return FW_THIN;
1860 return 0;
1861 }
1862
1863 /* Convert a Windows font weight into one of the weights supported
1864 by fontconfig (see font.c:font_parse_fcname). */
1865 static Lisp_Object
1866 w32_to_fc_weight (n)
1867 int n;
1868 {
1869 if (n >= FW_EXTRABOLD) return intern ("black");
1870 if (n >= FW_BOLD) return intern ("bold");
1871 if (n >= FW_SEMIBOLD) return intern ("demibold");
1872 if (n >= FW_NORMAL) return intern ("medium");
1873 return intern ("light");
1874 }
1875
1876 /* Fill in all the available details of LOGFONT from FONT_SPEC. */
1877 static void
1878 fill_in_logfont (f, logfont, font_spec)
1879 FRAME_PTR f;
1880 LOGFONT *logfont;
1881 Lisp_Object font_spec;
1882 {
1883 Lisp_Object tmp, extra;
1884 int dpi = FRAME_W32_DISPLAY_INFO (f)->resy;
1885
1886 tmp = AREF (font_spec, FONT_DPI_INDEX);
1887 if (INTEGERP (tmp))
1888 {
1889 dpi = XINT (tmp);
1890 }
1891 else if (FLOATP (tmp))
1892 {
1893 dpi = (int) (XFLOAT_DATA (tmp) + 0.5);
1894 }
1895
1896 /* Height */
1897 tmp = AREF (font_spec, FONT_SIZE_INDEX);
1898 if (INTEGERP (tmp))
1899 logfont->lfHeight = -1 * XINT (tmp);
1900 else if (FLOATP (tmp))
1901 logfont->lfHeight = (int) (-1.0 * dpi * XFLOAT_DATA (tmp) / 72.27 + 0.5);
1902
1903 /* Escapement */
1904
1905 /* Orientation */
1906
1907 /* Weight */
1908 tmp = AREF (font_spec, FONT_WEIGHT_INDEX);
1909 if (INTEGERP (tmp))
1910 logfont->lfWeight = w32_encode_weight (FONT_WEIGHT_NUMERIC (font_spec));
1911
1912 /* Italic */
1913 tmp = AREF (font_spec, FONT_SLANT_INDEX);
1914 if (INTEGERP (tmp))
1915 {
1916 int slant = FONT_SLANT_NUMERIC (font_spec);
1917 logfont->lfItalic = slant > 150 ? 1 : 0;
1918 }
1919
1920 /* Underline */
1921
1922 /* Strikeout */
1923
1924 /* Charset */
1925 tmp = AREF (font_spec, FONT_REGISTRY_INDEX);
1926 if (! NILP (tmp))
1927 logfont->lfCharSet = registry_to_w32_charset (tmp);
1928 else
1929 logfont->lfCharSet = DEFAULT_CHARSET;
1930
1931 /* Out Precision */
1932
1933 /* Clip Precision */
1934
1935 /* Quality */
1936 logfont->lfQuality = DEFAULT_QUALITY;
1937
1938 /* Generic Family and Face Name */
1939 logfont->lfPitchAndFamily = FF_DONTCARE | DEFAULT_PITCH;
1940
1941 tmp = AREF (font_spec, FONT_FAMILY_INDEX);
1942 if (! NILP (tmp))
1943 {
1944 logfont->lfPitchAndFamily = w32_generic_family (tmp) | DEFAULT_PITCH;
1945 if ((logfont->lfPitchAndFamily & 0xF0) != FF_DONTCARE)
1946 ; /* Font name was generic, don't fill in font name. */
1947 /* Font families are interned, but allow for strings also in case of
1948 user input. */
1949 else if (SYMBOLP (tmp))
1950 strncpy (logfont->lfFaceName,
1951 SDATA (ENCODE_SYSTEM (SYMBOL_NAME (tmp))), LF_FACESIZE);
1952 }
1953
1954 tmp = AREF (font_spec, FONT_ADSTYLE_INDEX);
1955 if (!NILP (tmp))
1956 {
1957 /* Override generic family. */
1958 BYTE family = w32_generic_family (tmp);
1959 if (family != FF_DONTCARE)
1960 logfont->lfPitchAndFamily = family | DEFAULT_PITCH;
1961 }
1962
1963
1964 /* Set pitch based on the spacing property. */
1965 tmp = AREF (font_spec, FONT_SPACING_INDEX);
1966 if (INTEGERP (tmp))
1967 {
1968 int spacing = XINT (tmp);
1969 if (spacing < FONT_SPACING_MONO)
1970 logfont->lfPitchAndFamily
1971 = logfont->lfPitchAndFamily & 0xF0 | VARIABLE_PITCH;
1972 else
1973 logfont->lfPitchAndFamily
1974 = logfont->lfPitchAndFamily & 0xF0 | FIXED_PITCH;
1975 }
1976
1977 /* Process EXTRA info. */
1978 for (extra = AREF (font_spec, FONT_EXTRA_INDEX);
1979 CONSP (extra); extra = XCDR (extra))
1980 {
1981 tmp = XCAR (extra);
1982 if (CONSP (tmp))
1983 {
1984 Lisp_Object key, val;
1985 key = XCAR (tmp), val = XCDR (tmp);
1986 /* Only use QCscript if charset is not provided, or is unicode
1987 and a single script is specified. This is rather crude,
1988 and is only used to narrow down the fonts returned where
1989 there is a definite match. Some scripts, such as latin, han,
1990 cjk-misc match multiple lfCharSet values, so we can't pre-filter
1991 them. */
1992 if (EQ (key, QCscript)
1993 && logfont->lfCharSet == DEFAULT_CHARSET
1994 && SYMBOLP (val))
1995 {
1996 if (EQ (val, Qgreek))
1997 logfont->lfCharSet = GREEK_CHARSET;
1998 else if (EQ (val, Qhangul))
1999 logfont->lfCharSet = HANGUL_CHARSET;
2000 else if (EQ (val, Qkana) || EQ (val, Qkanbun))
2001 logfont->lfCharSet = SHIFTJIS_CHARSET;
2002 else if (EQ (val, Qbopomofo))
2003 logfont->lfCharSet = CHINESEBIG5_CHARSET;
2004 /* GB 18030 supports tibetan, yi, mongolian,
2005 fonts that support it should show up if we ask for
2006 GB2312 fonts. */
2007 else if (EQ (val, Qtibetan) || EQ (val, Qyi)
2008 || EQ (val, Qmongolian))
2009 logfont->lfCharSet = GB2312_CHARSET;
2010 else if (EQ (val, Qhebrew))
2011 logfont->lfCharSet = HEBREW_CHARSET;
2012 else if (EQ (val, Qarabic))
2013 logfont->lfCharSet = ARABIC_CHARSET;
2014 else if (EQ (val, Qthai))
2015 logfont->lfCharSet = THAI_CHARSET;
2016 }
2017 else if (EQ (key, QCantialias) && SYMBOLP (val))
2018 {
2019 logfont->lfQuality = w32_antialias_type (val);
2020 }
2021 }
2022 }
2023 }
2024
2025 static void
2026 list_all_matching_fonts (match_data)
2027 struct font_callback_data *match_data;
2028 {
2029 HDC dc;
2030 Lisp_Object families = w32font_list_family (match_data->frame);
2031 struct frame *f = XFRAME (match_data->frame);
2032
2033 dc = get_frame_dc (f);
2034
2035 while (!NILP (families))
2036 {
2037 /* Only fonts from the current locale are given localized names
2038 on Windows, so we can keep backwards compatibility with
2039 Windows 9x/ME by using non-Unicode font enumeration without
2040 sacrificing internationalization here. */
2041 char *name;
2042 Lisp_Object family = CAR (families);
2043 families = CDR (families);
2044 if (NILP (family))
2045 continue;
2046 else if (SYMBOLP (family))
2047 name = SDATA (ENCODE_SYSTEM (SYMBOL_NAME (family)));
2048 else
2049 continue;
2050
2051 strncpy (match_data->pattern.lfFaceName, name, LF_FACESIZE);
2052 match_data->pattern.lfFaceName[LF_FACESIZE - 1] = '\0';
2053
2054 EnumFontFamiliesEx (dc, &match_data->pattern,
2055 (FONTENUMPROC) add_font_entity_to_list,
2056 (LPARAM) match_data, 0);
2057 }
2058
2059 release_frame_dc (f, dc);
2060 }
2061
2062 static Lisp_Object
2063 lispy_antialias_type (type)
2064 BYTE type;
2065 {
2066 Lisp_Object lispy;
2067
2068 switch (type)
2069 {
2070 case NONANTIALIASED_QUALITY:
2071 lispy = Qnone;
2072 break;
2073 case ANTIALIASED_QUALITY:
2074 lispy = Qstandard;
2075 break;
2076 case CLEARTYPE_QUALITY:
2077 lispy = Qsubpixel;
2078 break;
2079 case CLEARTYPE_NATURAL_QUALITY:
2080 lispy = Qnatural;
2081 break;
2082 default:
2083 lispy = Qnil;
2084 break;
2085 }
2086 return lispy;
2087 }
2088
2089 /* Convert antialiasing symbols to lfQuality */
2090 static BYTE
2091 w32_antialias_type (type)
2092 Lisp_Object type;
2093 {
2094 if (EQ (type, Qnone))
2095 return NONANTIALIASED_QUALITY;
2096 else if (EQ (type, Qstandard))
2097 return ANTIALIASED_QUALITY;
2098 else if (EQ (type, Qsubpixel))
2099 return CLEARTYPE_QUALITY;
2100 else if (EQ (type, Qnatural))
2101 return CLEARTYPE_NATURAL_QUALITY;
2102 else
2103 return DEFAULT_QUALITY;
2104 }
2105
2106 /* Return a list of all the scripts that the font supports. */
2107 static Lisp_Object
2108 font_supported_scripts (FONTSIGNATURE * sig)
2109 {
2110 DWORD * subranges = sig->fsUsb;
2111 Lisp_Object supported = Qnil;
2112
2113 /* Match a single subrange. SYM is set if bit N is set in subranges. */
2114 #define SUBRANGE(n,sym) \
2115 if (subranges[(n) / 32] & (1 << ((n) % 32))) \
2116 supported = Fcons ((sym), supported)
2117
2118 /* Match multiple subranges. SYM is set if any MASK bit is set in
2119 subranges[0 - 3]. */
2120 #define MASK_ANY(mask0,mask1,mask2,mask3,sym) \
2121 if ((subranges[0] & (mask0)) || (subranges[1] & (mask1)) \
2122 || (subranges[2] & (mask2)) || (subranges[3] & (mask3))) \
2123 supported = Fcons ((sym), supported)
2124
2125 SUBRANGE (0, Qlatin);
2126 /* The following count as latin too, ASCII should be present in these fonts,
2127 so don't need to mark them separately. */
2128 /* 1: Latin-1 supplement, 2: Latin Extended A, 3: Latin Extended B. */
2129 SUBRANGE (4, Qphonetic);
2130 /* 5: Spacing and tone modifiers, 6: Combining Diacriticals. */
2131 SUBRANGE (7, Qgreek);
2132 SUBRANGE (8, Qcoptic);
2133 SUBRANGE (9, Qcyrillic);
2134 SUBRANGE (10, Qarmenian);
2135 SUBRANGE (11, Qhebrew);
2136 /* 12: Vai. */
2137 SUBRANGE (13, Qarabic);
2138 SUBRANGE (14, Qnko);
2139 SUBRANGE (15, Qdevanagari);
2140 SUBRANGE (16, Qbengali);
2141 SUBRANGE (17, Qgurmukhi);
2142 SUBRANGE (18, Qgujarati);
2143 SUBRANGE (19, Qoriya);
2144 SUBRANGE (20, Qtamil);
2145 SUBRANGE (21, Qtelugu);
2146 SUBRANGE (22, Qkannada);
2147 SUBRANGE (23, Qmalayalam);
2148 SUBRANGE (24, Qthai);
2149 SUBRANGE (25, Qlao);
2150 SUBRANGE (26, Qgeorgian);
2151 SUBRANGE (27, Qbalinese);
2152 /* 28: Hangul Jamo. */
2153 /* 29: Latin Extended, 30: Greek Extended, 31: Punctuation. */
2154 /* 32-47: Symbols (defined below). */
2155 SUBRANGE (48, Qcjk_misc);
2156 /* Match either 49: katakana or 50: hiragana for kana. */
2157 MASK_ANY (0, 0x00060000, 0, 0, Qkana);
2158 SUBRANGE (51, Qbopomofo);
2159 /* 52: Compatibility Jamo */
2160 SUBRANGE (53, Qphags_pa);
2161 /* 54: Enclosed CJK letters and months, 55: CJK Compatibility. */
2162 SUBRANGE (56, Qhangul);
2163 /* 57: Surrogates. */
2164 SUBRANGE (58, Qphoenician);
2165 SUBRANGE (59, Qhan); /* There are others, but this is the main one. */
2166 SUBRANGE (59, Qideographic_description); /* Windows lumps this in. */
2167 SUBRANGE (59, Qkanbun); /* And this. */
2168 /* 60: Private use, 61: CJK strokes and compatibility. */
2169 /* 62: Alphabetic Presentation, 63: Arabic Presentation A. */
2170 /* 64: Combining half marks, 65: Vertical and CJK compatibility. */
2171 /* 66: Small forms, 67: Arabic Presentation B, 68: Half and Full width. */
2172 /* 69: Specials. */
2173 SUBRANGE (70, Qtibetan);
2174 SUBRANGE (71, Qsyriac);
2175 SUBRANGE (72, Qthaana);
2176 SUBRANGE (73, Qsinhala);
2177 SUBRANGE (74, Qmyanmar);
2178 SUBRANGE (75, Qethiopic);
2179 SUBRANGE (76, Qcherokee);
2180 SUBRANGE (77, Qcanadian_aboriginal);
2181 SUBRANGE (78, Qogham);
2182 SUBRANGE (79, Qrunic);
2183 SUBRANGE (80, Qkhmer);
2184 SUBRANGE (81, Qmongolian);
2185 SUBRANGE (82, Qbraille);
2186 SUBRANGE (83, Qyi);
2187 SUBRANGE (84, Qbuhid);
2188 SUBRANGE (84, Qhanunoo);
2189 SUBRANGE (84, Qtagalog);
2190 SUBRANGE (84, Qtagbanwa);
2191 SUBRANGE (85, Qold_italic);
2192 SUBRANGE (86, Qgothic);
2193 SUBRANGE (87, Qdeseret);
2194 SUBRANGE (88, Qbyzantine_musical_symbol);
2195 SUBRANGE (88, Qmusical_symbol); /* Windows doesn't distinguish these. */
2196 SUBRANGE (89, Qmathematical);
2197 /* 90: Private use, 91: Variation selectors, 92: Tags. */
2198 SUBRANGE (93, Qlimbu);
2199 SUBRANGE (94, Qtai_le);
2200 /* 95: New Tai Le */
2201 SUBRANGE (90, Qbuginese);
2202 SUBRANGE (97, Qglagolitic);
2203 SUBRANGE (98, Qtifinagh);
2204 /* 99: Yijing Hexagrams. */
2205 SUBRANGE (100, Qsyloti_nagri);
2206 SUBRANGE (101, Qlinear_b);
2207 /* 102: Ancient Greek Numbers. */
2208 SUBRANGE (103, Qugaritic);
2209 SUBRANGE (104, Qold_persian);
2210 SUBRANGE (105, Qshavian);
2211 SUBRANGE (106, Qosmanya);
2212 SUBRANGE (107, Qcypriot);
2213 SUBRANGE (108, Qkharoshthi);
2214 /* 109: Tai Xuan Jing. */
2215 SUBRANGE (110, Qcuneiform);
2216 /* 111: Counting Rods, 112: Sundanese, 113: Lepcha, 114: Ol Chiki. */
2217 /* 115: Saurashtra, 116: Kayah Li, 117: Rejang. */
2218 SUBRANGE (118, Qcham);
2219 /* 119: Ancient symbols, 120: Phaistos Disc. */
2220 /* 121: Carian, Lycian, Lydian, 122: Dominos, Mah Jong tiles. */
2221 /* 123-127: Reserved. */
2222
2223 /* There isn't really a main symbol range, so include symbol if any
2224 relevant range is set. */
2225 MASK_ANY (0x8000000, 0x0000FFFF, 0, 0, Qsymbol);
2226
2227 /* Missing: Tai Viet (U+AA80-U+AADF). */
2228 #undef SUBRANGE
2229 #undef MASK_ANY
2230
2231 return supported;
2232 }
2233
2234 /* Generate a full name for a Windows font.
2235 The full name is in fcname format, with weight, slant and antialiasing
2236 specified if they are not "normal". */
2237 static int
2238 w32font_full_name (font, font_obj, pixel_size, name, nbytes)
2239 LOGFONT * font;
2240 Lisp_Object font_obj;
2241 int pixel_size;
2242 char *name;
2243 int nbytes;
2244 {
2245 int len, height, outline;
2246 char *p;
2247 Lisp_Object antialiasing, weight = Qnil;
2248
2249 len = strlen (font->lfFaceName);
2250
2251 outline = EQ (AREF (font_obj, FONT_FOUNDRY_INDEX), Qoutline);
2252
2253 /* Represent size of scalable fonts by point size. But use pixelsize for
2254 raster fonts to indicate that they are exactly that size. */
2255 if (outline)
2256 len += 11; /* -SIZE */
2257 else
2258 len += 21;
2259
2260 if (font->lfItalic)
2261 len += 7; /* :italic */
2262
2263 if (font->lfWeight && font->lfWeight != FW_NORMAL)
2264 {
2265 weight = w32_to_fc_weight (font->lfWeight);
2266 len += 1 + SBYTES (SYMBOL_NAME (weight)); /* :WEIGHT */
2267 }
2268
2269 antialiasing = lispy_antialias_type (font->lfQuality);
2270 if (! NILP (antialiasing))
2271 len += 11 + SBYTES (SYMBOL_NAME (antialiasing)); /* :antialias=NAME */
2272
2273 /* Check that the buffer is big enough */
2274 if (len > nbytes)
2275 return -1;
2276
2277 p = name;
2278 p += sprintf (p, "%s", font->lfFaceName);
2279
2280 height = font->lfHeight ? eabs (font->lfHeight) : pixel_size;
2281
2282 if (height > 0)
2283 {
2284 if (outline)
2285 {
2286 float pointsize = height * 72.0 / one_w32_display_info.resy;
2287 /* Round to nearest half point. floor is used, since round is not
2288 supported in MS library. */
2289 pointsize = floor (pointsize * 2 + 0.5) / 2;
2290 p += sprintf (p, "-%1.1f", pointsize);
2291 }
2292 else
2293 p += sprintf (p, ":pixelsize=%d", height);
2294 }
2295
2296 if (SYMBOLP (weight) && ! NILP (weight))
2297 p += sprintf (p, ":%s", SDATA (SYMBOL_NAME (weight)));
2298
2299 if (font->lfItalic)
2300 p += sprintf (p, ":italic");
2301
2302 if (SYMBOLP (antialiasing) && ! NILP (antialiasing))
2303 p += sprintf (p, ":antialias=%s", SDATA (SYMBOL_NAME (antialiasing)));
2304
2305 return (p - name);
2306 }
2307
2308 /* Convert a logfont and point size into a fontconfig style font name.
2309 POINTSIZE is in tenths of points.
2310 If SIZE indicates the size of buffer FCNAME, into which the font name
2311 is written. If the buffer is not large enough to contain the name,
2312 the function returns -1, otherwise it returns the number of bytes
2313 written to FCNAME. */
2314 static int logfont_to_fcname(font, pointsize, fcname, size)
2315 LOGFONT* font;
2316 int pointsize;
2317 char *fcname;
2318 int size;
2319 {
2320 int len, height;
2321 char *p = fcname;
2322 Lisp_Object weight = Qnil;
2323
2324 len = strlen (font->lfFaceName) + 2;
2325 height = pointsize / 10;
2326 while (height /= 10)
2327 len++;
2328
2329 if (pointsize % 10)
2330 len += 2;
2331
2332 if (font->lfItalic)
2333 len += 7; /* :italic */
2334 if (font->lfWeight && font->lfWeight != FW_NORMAL)
2335 {
2336 weight = w32_to_fc_weight (font->lfWeight);
2337 len += SBYTES (SYMBOL_NAME (weight)) + 1;
2338 }
2339
2340 if (len > size)
2341 return -1;
2342
2343 p += sprintf (p, "%s-%d", font->lfFaceName, pointsize / 10);
2344 if (pointsize % 10)
2345 p += sprintf (p, ".%d", pointsize % 10);
2346
2347 if (SYMBOLP (weight) && !NILP (weight))
2348 p += sprintf (p, ":%s", SDATA (SYMBOL_NAME (weight)));
2349
2350 if (font->lfItalic)
2351 p += sprintf (p, ":italic");
2352
2353 return (p - fcname);
2354 }
2355
2356 static void
2357 compute_metrics (dc, w32_font, code, metrics)
2358 HDC dc;
2359 struct w32font_info *w32_font;
2360 unsigned int code;
2361 struct w32_metric_cache *metrics;
2362 {
2363 GLYPHMETRICS gm;
2364 MAT2 transform;
2365 unsigned int options = GGO_METRICS;
2366
2367 if (w32_font->glyph_idx)
2368 options |= GGO_GLYPH_INDEX;
2369
2370 bzero (&transform, sizeof (transform));
2371 transform.eM11.value = 1;
2372 transform.eM22.value = 1;
2373
2374 if (GetGlyphOutlineW (dc, code, options, &gm, 0, NULL, &transform)
2375 != GDI_ERROR)
2376 {
2377 metrics->lbearing = gm.gmptGlyphOrigin.x;
2378 metrics->rbearing = gm.gmptGlyphOrigin.x + gm.gmBlackBoxX;
2379 metrics->width = gm.gmCellIncX;
2380 metrics->status = W32METRIC_SUCCESS;
2381 }
2382 else
2383 metrics->status = W32METRIC_FAIL;
2384 }
2385
2386 static void
2387 clear_cached_metrics (w32_font)
2388 struct w32font_info *w32_font;
2389 {
2390 int i;
2391 for (i = 0; i < w32_font->n_cache_blocks; i++)
2392 {
2393 if (w32_font->cached_metrics[i])
2394 bzero (w32_font->cached_metrics[i],
2395 CACHE_BLOCKSIZE * sizeof (struct font_metrics));
2396 }
2397 }
2398
2399 DEFUN ("x-select-font", Fx_select_font, Sx_select_font, 0, 2, 0,
2400 doc: /* Read a font name using a W32 font selection dialog.
2401 Return fontconfig style font string corresponding to the selection.
2402
2403 If FRAME is omitted or nil, it defaults to the selected frame.
2404 If EXCLUDE-PROPORTIONAL is non-nil, exclude proportional fonts
2405 in the font selection dialog. */)
2406 (frame, exclude_proportional)
2407 Lisp_Object frame, exclude_proportional;
2408 {
2409 FRAME_PTR f = check_x_frame (frame);
2410 CHOOSEFONT cf;
2411 LOGFONT lf;
2412 TEXTMETRIC tm;
2413 HDC hdc;
2414 HANDLE oldobj;
2415 char buf[100];
2416
2417 bzero (&cf, sizeof (cf));
2418 bzero (&lf, sizeof (lf));
2419
2420 cf.lStructSize = sizeof (cf);
2421 cf.hwndOwner = FRAME_W32_WINDOW (f);
2422 cf.Flags = CF_FORCEFONTEXIST | CF_SCREENFONTS | CF_NOVERTFONTS;
2423
2424 /* If exclude_proportional is non-nil, limit the selection to
2425 monospaced fonts. */
2426 if (!NILP (exclude_proportional))
2427 cf.Flags |= CF_FIXEDPITCHONLY;
2428
2429 cf.lpLogFont = &lf;
2430
2431 /* Initialize as much of the font details as we can from the current
2432 default font. */
2433 hdc = GetDC (FRAME_W32_WINDOW (f));
2434 oldobj = SelectObject (hdc, FONT_HANDLE (FRAME_FONT (f)));
2435 GetTextFace (hdc, LF_FACESIZE, lf.lfFaceName);
2436 if (GetTextMetrics (hdc, &tm))
2437 {
2438 lf.lfHeight = tm.tmInternalLeading - tm.tmHeight;
2439 lf.lfWeight = tm.tmWeight;
2440 lf.lfItalic = tm.tmItalic;
2441 lf.lfUnderline = tm.tmUnderlined;
2442 lf.lfStrikeOut = tm.tmStruckOut;
2443 lf.lfCharSet = tm.tmCharSet;
2444 cf.Flags |= CF_INITTOLOGFONTSTRUCT;
2445 }
2446 SelectObject (hdc, oldobj);
2447 ReleaseDC (FRAME_W32_WINDOW (f), hdc);
2448
2449 if (!ChooseFont (&cf)
2450 || logfont_to_fcname (&lf, cf.iPointSize, buf, 100) < 0)
2451 return Qnil;
2452
2453 return DECODE_SYSTEM (build_string (buf));
2454 }
2455
2456 struct font_driver w32font_driver =
2457 {
2458 0, /* Qgdi */
2459 0, /* case insensitive */
2460 w32font_get_cache,
2461 w32font_list,
2462 w32font_match,
2463 w32font_list_family,
2464 NULL, /* free_entity */
2465 w32font_open,
2466 w32font_close,
2467 NULL, /* prepare_face */
2468 NULL, /* done_face */
2469 w32font_has_char,
2470 w32font_encode_char,
2471 w32font_text_extents,
2472 w32font_draw,
2473 NULL, /* get_bitmap */
2474 NULL, /* free_bitmap */
2475 NULL, /* get_outline */
2476 NULL, /* free_outline */
2477 NULL, /* anchor_point */
2478 NULL, /* otf_capability */
2479 NULL, /* otf_drive */
2480 NULL, /* start_for_frame */
2481 NULL, /* end_for_frame */
2482 NULL /* shape */
2483 };
2484
2485
2486 /* Initialize state that does not change between invocations. This is only
2487 called when Emacs is dumped. */
2488 void
2489 syms_of_w32font ()
2490 {
2491 DEFSYM (Qgdi, "gdi");
2492 DEFSYM (Quniscribe, "uniscribe");
2493 DEFSYM (QCformat, ":format");
2494
2495 /* Generic font families. */
2496 DEFSYM (Qmonospace, "monospace");
2497 DEFSYM (Qserif, "serif");
2498 DEFSYM (Qsansserif, "sansserif");
2499 DEFSYM (Qscript, "script");
2500 DEFSYM (Qdecorative, "decorative");
2501 /* Aliases. */
2502 DEFSYM (Qsans_serif, "sans_serif");
2503 DEFSYM (Qsans, "sans");
2504 DEFSYM (Qmono, "mono");
2505
2506 /* Fake foundries. */
2507 DEFSYM (Qraster, "raster");
2508 DEFSYM (Qoutline, "outline");
2509 DEFSYM (Qunknown, "unknown");
2510
2511 /* Antialiasing. */
2512 DEFSYM (Qstandard, "standard");
2513 DEFSYM (Qsubpixel, "subpixel");
2514 DEFSYM (Qnatural, "natural");
2515
2516 /* Languages */
2517 DEFSYM (Qja, "ja");
2518 DEFSYM (Qko, "ko");
2519 DEFSYM (Qzh, "zh");
2520
2521 /* Scripts */
2522 DEFSYM (Qlatin, "latin");
2523 DEFSYM (Qgreek, "greek");
2524 DEFSYM (Qcoptic, "coptic");
2525 DEFSYM (Qcyrillic, "cyrillic");
2526 DEFSYM (Qarmenian, "armenian");
2527 DEFSYM (Qhebrew, "hebrew");
2528 DEFSYM (Qarabic, "arabic");
2529 DEFSYM (Qsyriac, "syriac");
2530 DEFSYM (Qnko, "nko");
2531 DEFSYM (Qthaana, "thaana");
2532 DEFSYM (Qdevanagari, "devanagari");
2533 DEFSYM (Qbengali, "bengali");
2534 DEFSYM (Qgurmukhi, "gurmukhi");
2535 DEFSYM (Qgujarati, "gujarati");
2536 DEFSYM (Qoriya, "oriya");
2537 DEFSYM (Qtamil, "tamil");
2538 DEFSYM (Qtelugu, "telugu");
2539 DEFSYM (Qkannada, "kannada");
2540 DEFSYM (Qmalayalam, "malayalam");
2541 DEFSYM (Qsinhala, "sinhala");
2542 DEFSYM (Qthai, "thai");
2543 DEFSYM (Qlao, "lao");
2544 DEFSYM (Qtibetan, "tibetan");
2545 DEFSYM (Qmyanmar, "myanmar");
2546 DEFSYM (Qgeorgian, "georgian");
2547 DEFSYM (Qhangul, "hangul");
2548 DEFSYM (Qethiopic, "ethiopic");
2549 DEFSYM (Qcherokee, "cherokee");
2550 DEFSYM (Qcanadian_aboriginal, "canadian-aboriginal");
2551 DEFSYM (Qogham, "ogham");
2552 DEFSYM (Qrunic, "runic");
2553 DEFSYM (Qkhmer, "khmer");
2554 DEFSYM (Qmongolian, "mongolian");
2555 DEFSYM (Qsymbol, "symbol");
2556 DEFSYM (Qbraille, "braille");
2557 DEFSYM (Qhan, "han");
2558 DEFSYM (Qideographic_description, "ideographic-description");
2559 DEFSYM (Qcjk_misc, "cjk-misc");
2560 DEFSYM (Qkana, "kana");
2561 DEFSYM (Qbopomofo, "bopomofo");
2562 DEFSYM (Qkanbun, "kanbun");
2563 DEFSYM (Qyi, "yi");
2564 DEFSYM (Qbyzantine_musical_symbol, "byzantine-musical-symbol");
2565 DEFSYM (Qmusical_symbol, "musical-symbol");
2566 DEFSYM (Qmathematical, "mathematical");
2567 DEFSYM (Qcham, "cham");
2568 DEFSYM (Qphonetic, "phonetic");
2569 DEFSYM (Qbalinese, "balinese");
2570 DEFSYM (Qbuginese, "buginese");
2571 DEFSYM (Qbuhid, "buhid");
2572 DEFSYM (Qcuneiform, "cuneiform");
2573 DEFSYM (Qcypriot, "cypriot");
2574 DEFSYM (Qdeseret, "deseret");
2575 DEFSYM (Qglagolitic, "glagolitic");
2576 DEFSYM (Qgothic, "gothic");
2577 DEFSYM (Qhanunoo, "hanunoo");
2578 DEFSYM (Qkharoshthi, "kharoshthi");
2579 DEFSYM (Qlimbu, "limbu");
2580 DEFSYM (Qlinear_b, "linear_b");
2581 DEFSYM (Qold_italic, "old_italic");
2582 DEFSYM (Qold_persian, "old_persian");
2583 DEFSYM (Qosmanya, "osmanya");
2584 DEFSYM (Qphags_pa, "phags-pa");
2585 DEFSYM (Qphoenician, "phoenician");
2586 DEFSYM (Qshavian, "shavian");
2587 DEFSYM (Qsyloti_nagri, "syloti_nagri");
2588 DEFSYM (Qtagalog, "tagalog");
2589 DEFSYM (Qtagbanwa, "tagbanwa");
2590 DEFSYM (Qtai_le, "tai_le");
2591 DEFSYM (Qtifinagh, "tifinagh");
2592 DEFSYM (Qugaritic, "ugaritic");
2593
2594 /* W32 font encodings. */
2595 DEFVAR_LISP ("w32-charset-info-alist",
2596 &Vw32_charset_info_alist,
2597 doc: /* Alist linking Emacs character sets to Windows fonts and codepages.
2598 Each entry should be of the form:
2599
2600 (CHARSET_NAME . (WINDOWS_CHARSET . CODEPAGE))
2601
2602 where CHARSET_NAME is a string used in font names to identify the charset,
2603 WINDOWS_CHARSET is a symbol that can be one of:
2604
2605 w32-charset-ansi, w32-charset-default, w32-charset-symbol,
2606 w32-charset-shiftjis, w32-charset-hangeul, w32-charset-gb2312,
2607 w32-charset-chinesebig5, w32-charset-johab, w32-charset-hebrew,
2608 w32-charset-arabic, w32-charset-greek, w32-charset-turkish,
2609 w32-charset-vietnamese, w32-charset-thai, w32-charset-easteurope,
2610 w32-charset-russian, w32-charset-mac, w32-charset-baltic,
2611 or w32-charset-oem.
2612
2613 CODEPAGE should be an integer specifying the codepage that should be used
2614 to display the character set, t to do no translation and output as Unicode,
2615 or nil to do no translation and output as 8 bit (or multibyte on far-east
2616 versions of Windows) characters. */);
2617 Vw32_charset_info_alist = Qnil;
2618
2619 DEFSYM (Qw32_charset_ansi, "w32-charset-ansi");
2620 DEFSYM (Qw32_charset_symbol, "w32-charset-symbol");
2621 DEFSYM (Qw32_charset_default, "w32-charset-default");
2622 DEFSYM (Qw32_charset_shiftjis, "w32-charset-shiftjis");
2623 DEFSYM (Qw32_charset_hangeul, "w32-charset-hangeul");
2624 DEFSYM (Qw32_charset_chinesebig5, "w32-charset-chinesebig5");
2625 DEFSYM (Qw32_charset_gb2312, "w32-charset-gb2312");
2626 DEFSYM (Qw32_charset_oem, "w32-charset-oem");
2627 DEFSYM (Qw32_charset_johab, "w32-charset-johab");
2628 DEFSYM (Qw32_charset_easteurope, "w32-charset-easteurope");
2629 DEFSYM (Qw32_charset_turkish, "w32-charset-turkish");
2630 DEFSYM (Qw32_charset_baltic, "w32-charset-baltic");
2631 DEFSYM (Qw32_charset_russian, "w32-charset-russian");
2632 DEFSYM (Qw32_charset_arabic, "w32-charset-arabic");
2633 DEFSYM (Qw32_charset_greek, "w32-charset-greek");
2634 DEFSYM (Qw32_charset_hebrew, "w32-charset-hebrew");
2635 DEFSYM (Qw32_charset_vietnamese, "w32-charset-vietnamese");
2636 DEFSYM (Qw32_charset_thai, "w32-charset-thai");
2637 DEFSYM (Qw32_charset_mac, "w32-charset-mac");
2638
2639 defsubr (&Sx_select_font);
2640
2641 w32font_driver.type = Qgdi;
2642 register_font_driver (&w32font_driver, NULL);
2643 }
2644
2645 /* arch-tag: 65b8a3cd-46aa-4c0d-a1f3-99e75b9c07ee
2646 (do not change this comment) */