* src/xdisp.c (safe_eval_handler): Distinguish symbols and strings.
[emacs.git] / src / font.c
blob449169dad1b2bd4e3047426a8c31aaa234d05628
1 /* font.c -- "Font" primitives.
3 Copyright (C) 2006-2011 Free Software Foundation, Inc.
4 Copyright (C) 2006, 2007, 2008, 2009, 2010, 2011
5 National Institute of Advanced Industrial Science and Technology (AIST)
6 Registration Number H13PRO009
8 This file is part of GNU Emacs.
10 GNU Emacs is free software: you can redistribute it and/or modify
11 it under the terms of the GNU General Public License as published by
12 the Free Software Foundation, either version 3 of the License, or
13 (at your option) any later version.
15 GNU Emacs is distributed in the hope that it will be useful,
16 but WITHOUT ANY WARRANTY; without even the implied warranty of
17 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
18 GNU General Public License for more details.
20 You should have received a copy of the GNU General Public License
21 along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>. */
23 #include <config.h>
24 #include <stdio.h>
25 #include <ctype.h>
26 #include <setjmp.h>
28 #include "lisp.h"
29 #include "buffer.h"
30 #include "frame.h"
31 #include "window.h"
32 #include "dispextern.h"
33 #include "charset.h"
34 #include "character.h"
35 #include "composite.h"
36 #include "fontset.h"
37 #include "font.h"
39 #ifdef HAVE_X_WINDOWS
40 #include "xterm.h"
41 #endif /* HAVE_X_WINDOWS */
43 #ifdef HAVE_NTGUI
44 #include "w32term.h"
45 #endif /* HAVE_NTGUI */
47 #ifdef HAVE_NS
48 #include "nsterm.h"
49 #endif /* HAVE_NS */
51 Lisp_Object Qopentype;
53 /* Important character set strings. */
54 Lisp_Object Qascii_0, Qiso8859_1, Qiso10646_1, Qunicode_bmp, Qunicode_sip;
56 #define DEFAULT_ENCODING Qiso8859_1
58 /* Unicode category `Cf'. */
59 static Lisp_Object QCf;
61 /* Special vector of zero length. This is repeatedly used by (struct
62 font_driver *)->list when a specified font is not found. */
63 static Lisp_Object null_vector;
65 /* Vector of Vfont_weight_table, Vfont_slant_table, and Vfont_width_table. */
66 static Lisp_Object font_style_table;
68 /* Structure used for tables mapping weight, slant, and width numeric
69 values and their names. */
71 struct table_entry
73 int numeric;
74 /* The first one is a valid name as a face attribute.
75 The second one (if any) is a typical name in XLFD field. */
76 const char *names[5];
79 /* Table of weight numeric values and their names. This table must be
80 sorted by numeric values in ascending order. */
82 static const struct table_entry weight_table[] =
84 { 0, { "thin" }},
85 { 20, { "ultra-light", "ultralight" }},
86 { 40, { "extra-light", "extralight" }},
87 { 50, { "light" }},
88 { 75, { "semi-light", "semilight", "demilight", "book" }},
89 { 100, { "normal", "medium", "regular", "unspecified" }},
90 { 180, { "semi-bold", "semibold", "demibold", "demi" }},
91 { 200, { "bold" }},
92 { 205, { "extra-bold", "extrabold" }},
93 { 210, { "ultra-bold", "ultrabold", "black" }}
96 /* Table of slant numeric values and their names. This table must be
97 sorted by numeric values in ascending order. */
99 static const struct table_entry slant_table[] =
101 { 0, { "reverse-oblique", "ro" }},
102 { 10, { "reverse-italic", "ri" }},
103 { 100, { "normal", "r", "unspecified" }},
104 { 200, { "italic" ,"i", "ot" }},
105 { 210, { "oblique", "o" }}
108 /* Table of width numeric values and their names. This table must be
109 sorted by numeric values in ascending order. */
111 static const struct table_entry width_table[] =
113 { 50, { "ultra-condensed", "ultracondensed" }},
114 { 63, { "extra-condensed", "extracondensed" }},
115 { 75, { "condensed", "compressed", "narrow" }},
116 { 87, { "semi-condensed", "semicondensed", "demicondensed" }},
117 { 100, { "normal", "medium", "regular", "unspecified" }},
118 { 113, { "semi-expanded", "semiexpanded", "demiexpanded" }},
119 { 125, { "expanded" }},
120 { 150, { "extra-expanded", "extraexpanded" }},
121 { 200, { "ultra-expanded", "ultraexpanded", "wide" }}
124 Lisp_Object QCfoundry;
125 static Lisp_Object QCadstyle, QCregistry;
126 /* Symbols representing keys of font extra info. */
127 Lisp_Object QCspacing, QCdpi, QCscalable, QCotf, QClang, QCscript, QCavgwidth;
128 Lisp_Object QCantialias, QCfont_entity, QCfc_unknown_spec;
129 /* Symbols representing values of font spacing property. */
130 Lisp_Object Qc, Qm, Qp, Qd;
131 /* Special ADSTYLE properties to avoid fonts used for Latin
132 characters; used in xfont.c and ftfont.c. */
133 Lisp_Object Qja, Qko;
135 Lisp_Object QCuser_spec;
137 /* Alist of font registry symbol and the corresponding charsets
138 information. The information is retrieved from
139 Vfont_encoding_alist on demand.
141 Eash element has the form:
142 (REGISTRY . (ENCODING-CHARSET-ID . REPERTORY-CHARSET-ID))
144 (REGISTRY . nil)
146 In the former form, ENCODING-CHARSET-ID is an ID of a charset that
147 encodes a character code to a glyph code of a font, and
148 REPERTORY-CHARSET-ID is an ID of a charset that tells if a
149 character is supported by a font.
151 The latter form means that the information for REGISTRY couldn't be
152 retrieved. */
153 static Lisp_Object font_charset_alist;
155 /* List of all font drivers. Each font-backend (XXXfont.c) calls
156 register_font_driver in syms_of_XXXfont to register its font-driver
157 here. */
158 static struct font_driver_list *font_driver_list;
162 /* Creaters of font-related Lisp object. */
164 static Lisp_Object
165 font_make_spec (void)
167 Lisp_Object font_spec;
168 struct font_spec *spec
169 = ((struct font_spec *)
170 allocate_pseudovector (VECSIZE (struct font_spec),
171 FONT_SPEC_MAX, PVEC_FONT));
172 XSETFONT (font_spec, spec);
173 return font_spec;
176 Lisp_Object
177 font_make_entity (void)
179 Lisp_Object font_entity;
180 struct font_entity *entity
181 = ((struct font_entity *)
182 allocate_pseudovector (VECSIZE (struct font_entity),
183 FONT_ENTITY_MAX, PVEC_FONT));
184 XSETFONT (font_entity, entity);
185 return font_entity;
188 /* Create a font-object whose structure size is SIZE. If ENTITY is
189 not nil, copy properties from ENTITY to the font-object. If
190 PIXELSIZE is positive, set the `size' property to PIXELSIZE. */
191 Lisp_Object
192 font_make_object (int size, Lisp_Object entity, int pixelsize)
194 Lisp_Object font_object;
195 struct font *font
196 = (struct font *) allocate_pseudovector (size, FONT_OBJECT_MAX, PVEC_FONT);
197 int i;
199 XSETFONT (font_object, font);
201 if (! NILP (entity))
203 for (i = 1; i < FONT_SPEC_MAX; i++)
204 font->props[i] = AREF (entity, i);
205 if (! NILP (AREF (entity, FONT_EXTRA_INDEX)))
206 font->props[FONT_EXTRA_INDEX]
207 = Fcopy_alist (AREF (entity, FONT_EXTRA_INDEX));
209 if (size > 0)
210 font->props[FONT_SIZE_INDEX] = make_number (pixelsize);
211 return font_object;
216 static int font_pixel_size (FRAME_PTR f, Lisp_Object);
217 static Lisp_Object font_open_entity (FRAME_PTR, Lisp_Object, int);
218 static Lisp_Object font_matching_entity (FRAME_PTR, Lisp_Object *,
219 Lisp_Object);
220 static unsigned font_encode_char (Lisp_Object, int);
222 /* Number of registered font drivers. */
223 static int num_font_drivers;
226 /* Return a Lispy value of a font property value at STR and LEN bytes.
227 If STR is "*", it returns nil.
228 If FORCE_SYMBOL is zero and all characters in STR are digits, it
229 returns an integer. Otherwise, it returns a symbol interned from
230 STR. */
232 Lisp_Object
233 font_intern_prop (const char *str, int len, int force_symbol)
235 int i;
236 Lisp_Object tem;
237 Lisp_Object obarray;
238 EMACS_INT nbytes, nchars;
240 if (len == 1 && *str == '*')
241 return Qnil;
242 if (!force_symbol && len >=1 && isdigit (*str))
244 for (i = 1; i < len; i++)
245 if (! isdigit (str[i]))
246 break;
247 if (i == len)
248 return make_number (atoi (str));
251 /* The following code is copied from the function intern (in
252 lread.c), and modified to suite our purpose. */
253 obarray = Vobarray;
254 if (!VECTORP (obarray) || XVECTOR (obarray)->size == 0)
255 obarray = check_obarray (obarray);
256 parse_str_as_multibyte ((unsigned char *) str, len, &nchars, &nbytes);
257 if (len == nchars || len != nbytes)
258 /* CONTENTS contains no multibyte sequences or contains an invalid
259 multibyte sequence. We'll make a unibyte string. */
260 tem = oblookup (obarray, str, len, len);
261 else
262 tem = oblookup (obarray, str, nchars, len);
263 if (SYMBOLP (tem))
264 return tem;
265 if (len == nchars || len != nbytes)
266 tem = make_unibyte_string (str, len);
267 else
268 tem = make_multibyte_string (str, nchars, len);
269 return Fintern (tem, obarray);
272 /* Return a pixel size of font-spec SPEC on frame F. */
274 static int
275 font_pixel_size (FRAME_PTR f, Lisp_Object spec)
277 #ifdef HAVE_WINDOW_SYSTEM
278 Lisp_Object size = AREF (spec, FONT_SIZE_INDEX);
279 double point_size;
280 int dpi, pixel_size;
281 Lisp_Object val;
283 if (INTEGERP (size))
284 return XINT (size);
285 if (NILP (size))
286 return 0;
287 font_assert (FLOATP (size));
288 point_size = XFLOAT_DATA (size);
289 val = AREF (spec, FONT_DPI_INDEX);
290 if (INTEGERP (val))
291 dpi = XINT (val);
292 else
293 dpi = f->resy;
294 pixel_size = POINT_TO_PIXEL (point_size, dpi);
295 return pixel_size;
296 #else
297 return 1;
298 #endif
302 /* Return a value of PROP's VAL (symbol or integer) to be stored in a
303 font vector. If VAL is not valid (i.e. not registered in
304 font_style_table), return -1 if NOERROR is zero, and return a
305 proper index if NOERROR is nonzero. In that case, register VAL in
306 font_style_table if VAL is a symbol, and return a closest index if
307 VAL is an integer. */
310 font_style_to_value (enum font_property_index prop, Lisp_Object val, int noerror)
312 Lisp_Object table = AREF (font_style_table, prop - FONT_WEIGHT_INDEX);
313 int len = ASIZE (table);
314 int i, j;
316 if (SYMBOLP (val))
318 unsigned char *s;
319 Lisp_Object args[2], elt;
321 /* At first try exact match. */
322 for (i = 0; i < len; i++)
323 for (j = 1; j < ASIZE (AREF (table, i)); j++)
324 if (EQ (val, AREF (AREF (table, i), j)))
325 return ((XINT (AREF (AREF (table, i), 0)) << 8)
326 | (i << 4) | (j - 1));
327 /* Try also with case-folding match. */
328 s = SDATA (SYMBOL_NAME (val));
329 for (i = 0; i < len; i++)
330 for (j = 1; j < ASIZE (AREF (table, i)); j++)
332 elt = AREF (AREF (table, i), j);
333 if (xstrcasecmp (s, SDATA (SYMBOL_NAME (elt))) == 0)
334 return ((XINT (AREF (AREF (table, i), 0)) << 8)
335 | (i << 4) | (j - 1));
337 if (! noerror)
338 return -1;
339 if (len == 255)
340 abort ();
341 elt = Fmake_vector (make_number (2), make_number (100));
342 ASET (elt, 1, val);
343 args[0] = table;
344 args[1] = Fmake_vector (make_number (1), elt);
345 ASET (font_style_table, prop - FONT_WEIGHT_INDEX, Fvconcat (2, args));
346 return (100 << 8) | (i << 4);
348 else
350 int i, last_n;
351 int numeric = XINT (val);
353 for (i = 0, last_n = -1; i < len; i++)
355 int n = XINT (AREF (AREF (table, i), 0));
357 if (numeric == n)
358 return (n << 8) | (i << 4);
359 if (numeric < n)
361 if (! noerror)
362 return -1;
363 return ((i == 0 || n - numeric < numeric - last_n)
364 ? (n << 8) | (i << 4): (last_n << 8 | ((i - 1) << 4)));
366 last_n = n;
368 if (! noerror)
369 return -1;
370 return ((last_n << 8) | ((i - 1) << 4));
374 Lisp_Object
375 font_style_symbolic (Lisp_Object font, enum font_property_index prop, int for_face)
377 Lisp_Object val = AREF (font, prop);
378 Lisp_Object table, elt;
379 int i;
381 if (NILP (val))
382 return Qnil;
383 table = AREF (font_style_table, prop - FONT_WEIGHT_INDEX);
384 i = XINT (val) & 0xFF;
385 font_assert (((i >> 4) & 0xF) < ASIZE (table));
386 elt = AREF (table, ((i >> 4) & 0xF));
387 font_assert ((i & 0xF) + 1 < ASIZE (elt));
388 return (for_face ? AREF (elt, 1) : AREF (elt, (i & 0xF) + 1));
391 /* Return ENCODING or a cons of ENCODING and REPERTORY of the font
392 FONTNAME. ENCODING is a charset symbol that specifies the encoding
393 of the font. REPERTORY is a charset symbol or nil. */
395 Lisp_Object
396 find_font_encoding (Lisp_Object fontname)
398 Lisp_Object tail, elt;
400 for (tail = Vfont_encoding_alist; CONSP (tail); tail = XCDR (tail))
402 elt = XCAR (tail);
403 if (CONSP (elt)
404 && STRINGP (XCAR (elt))
405 && fast_string_match_ignore_case (XCAR (elt), fontname) >= 0
406 && (SYMBOLP (XCDR (elt))
407 ? CHARSETP (XCDR (elt))
408 : CONSP (XCDR (elt)) && CHARSETP (XCAR (XCDR (elt)))))
409 return (XCDR (elt));
411 return Qnil;
414 /* Return encoding charset and repertory charset for REGISTRY in
415 ENCODING and REPERTORY correspondingly. If correct information for
416 REGISTRY is available, return 0. Otherwise return -1. */
419 font_registry_charsets (Lisp_Object registry, struct charset **encoding, struct charset **repertory)
421 Lisp_Object val;
422 int encoding_id, repertory_id;
424 val = Fassoc_string (registry, font_charset_alist, Qt);
425 if (! NILP (val))
427 val = XCDR (val);
428 if (NILP (val))
429 return -1;
430 encoding_id = XINT (XCAR (val));
431 repertory_id = XINT (XCDR (val));
433 else
435 val = find_font_encoding (SYMBOL_NAME (registry));
436 if (SYMBOLP (val) && CHARSETP (val))
438 encoding_id = repertory_id = XINT (CHARSET_SYMBOL_ID (val));
440 else if (CONSP (val))
442 if (! CHARSETP (XCAR (val)))
443 goto invalid_entry;
444 encoding_id = XINT (CHARSET_SYMBOL_ID (XCAR (val)));
445 if (NILP (XCDR (val)))
446 repertory_id = -1;
447 else
449 if (! CHARSETP (XCDR (val)))
450 goto invalid_entry;
451 repertory_id = XINT (CHARSET_SYMBOL_ID (XCDR (val)));
454 else
455 goto invalid_entry;
456 val = Fcons (make_number (encoding_id), make_number (repertory_id));
457 font_charset_alist
458 = nconc2 (font_charset_alist, Fcons (Fcons (registry, val), Qnil));
461 if (encoding)
462 *encoding = CHARSET_FROM_ID (encoding_id);
463 if (repertory)
464 *repertory = repertory_id >= 0 ? CHARSET_FROM_ID (repertory_id) : NULL;
465 return 0;
467 invalid_entry:
468 font_charset_alist
469 = nconc2 (font_charset_alist, Fcons (Fcons (registry, Qnil), Qnil));
470 return -1;
474 /* Font property value validaters. See the comment of
475 font_property_table for the meaning of the arguments. */
477 static Lisp_Object font_prop_validate (int, Lisp_Object, Lisp_Object);
478 static Lisp_Object font_prop_validate_symbol (Lisp_Object, Lisp_Object);
479 static Lisp_Object font_prop_validate_style (Lisp_Object, Lisp_Object);
480 static Lisp_Object font_prop_validate_non_neg (Lisp_Object, Lisp_Object);
481 static Lisp_Object font_prop_validate_spacing (Lisp_Object, Lisp_Object);
482 static int get_font_prop_index (Lisp_Object);
484 static Lisp_Object
485 font_prop_validate_symbol (Lisp_Object prop, Lisp_Object val)
487 if (STRINGP (val))
488 val = Fintern (val, Qnil);
489 if (! SYMBOLP (val))
490 val = Qerror;
491 else if (EQ (prop, QCregistry))
492 val = Fintern (Fdowncase (SYMBOL_NAME (val)), Qnil);
493 return val;
497 static Lisp_Object
498 font_prop_validate_style (Lisp_Object style, Lisp_Object val)
500 enum font_property_index prop = (EQ (style, QCweight) ? FONT_WEIGHT_INDEX
501 : EQ (style, QCslant) ? FONT_SLANT_INDEX
502 : FONT_WIDTH_INDEX);
503 int n;
504 if (INTEGERP (val))
506 n = XINT (val);
507 if (((n >> 4) & 0xF)
508 >= ASIZE (AREF (font_style_table, prop - FONT_WEIGHT_INDEX)))
509 val = Qerror;
510 else
512 Lisp_Object elt = AREF (AREF (font_style_table, prop - FONT_WEIGHT_INDEX), (n >> 4) & 0xF);
514 if ((n & 0xF) + 1 >= ASIZE (elt))
515 val = Qerror;
516 else if (XINT (AREF (elt, 0)) != (n >> 8))
517 val = Qerror;
520 else if (SYMBOLP (val))
522 int n = font_style_to_value (prop, val, 0);
524 val = n >= 0 ? make_number (n) : Qerror;
526 else
527 val = Qerror;
528 return val;
531 static Lisp_Object
532 font_prop_validate_non_neg (Lisp_Object prop, Lisp_Object val)
534 return (NATNUMP (val) || (FLOATP (val) && XFLOAT_DATA (val) >= 0)
535 ? val : Qerror);
538 static Lisp_Object
539 font_prop_validate_spacing (Lisp_Object prop, Lisp_Object val)
541 if (NILP (val) || (NATNUMP (val) && XINT (val) <= FONT_SPACING_CHARCELL))
542 return val;
543 if (SYMBOLP (val) && SBYTES (SYMBOL_NAME (val)) == 1)
545 char spacing = SDATA (SYMBOL_NAME (val))[0];
547 if (spacing == 'c' || spacing == 'C')
548 return make_number (FONT_SPACING_CHARCELL);
549 if (spacing == 'm' || spacing == 'M')
550 return make_number (FONT_SPACING_MONO);
551 if (spacing == 'p' || spacing == 'P')
552 return make_number (FONT_SPACING_PROPORTIONAL);
553 if (spacing == 'd' || spacing == 'D')
554 return make_number (FONT_SPACING_DUAL);
556 return Qerror;
559 static Lisp_Object
560 font_prop_validate_otf (Lisp_Object prop, Lisp_Object val)
562 Lisp_Object tail, tmp;
563 int i;
565 /* VAL = (SCRIPT [ LANGSYS [ GSUB-FEATURES [ GPOS-FEATURES ]]])
566 GSUB-FEATURES = (FEATURE ... [ nil FEATURE ... ]) | nil
567 GPOS-FEATURES = (FEATURE ... [ nil FEATURE ... ]) | nil */
568 if (! CONSP (val))
569 return Qerror;
570 if (! SYMBOLP (XCAR (val)))
571 return Qerror;
572 tail = XCDR (val);
573 if (NILP (tail))
574 return val;
575 if (! CONSP (tail) || ! SYMBOLP (XCAR (val)))
576 return Qerror;
577 for (i = 0; i < 2; i++)
579 tail = XCDR (tail);
580 if (NILP (tail))
581 return val;
582 if (! CONSP (tail))
583 return Qerror;
584 for (tmp = XCAR (tail); CONSP (tmp); tmp = XCDR (tmp))
585 if (! SYMBOLP (XCAR (tmp)))
586 return Qerror;
587 if (! NILP (tmp))
588 return Qerror;
590 return val;
593 /* Structure of known font property keys and validater of the
594 values. */
595 static const struct
597 /* Pointer to the key symbol. */
598 Lisp_Object *key;
599 /* Function to validate PROP's value VAL, or NULL if any value is
600 ok. The value is VAL or its regularized value if VAL is valid,
601 and Qerror if not. */
602 Lisp_Object (*validater) (Lisp_Object prop, Lisp_Object val);
603 } font_property_table[] =
604 { { &QCtype, font_prop_validate_symbol },
605 { &QCfoundry, font_prop_validate_symbol },
606 { &QCfamily, font_prop_validate_symbol },
607 { &QCadstyle, font_prop_validate_symbol },
608 { &QCregistry, font_prop_validate_symbol },
609 { &QCweight, font_prop_validate_style },
610 { &QCslant, font_prop_validate_style },
611 { &QCwidth, font_prop_validate_style },
612 { &QCsize, font_prop_validate_non_neg },
613 { &QCdpi, font_prop_validate_non_neg },
614 { &QCspacing, font_prop_validate_spacing },
615 { &QCavgwidth, font_prop_validate_non_neg },
616 /* The order of the above entries must match with enum
617 font_property_index. */
618 { &QClang, font_prop_validate_symbol },
619 { &QCscript, font_prop_validate_symbol },
620 { &QCotf, font_prop_validate_otf }
623 /* Size (number of elements) of the above table. */
624 #define FONT_PROPERTY_TABLE_SIZE \
625 ((sizeof font_property_table) / (sizeof *font_property_table))
627 /* Return an index number of font property KEY or -1 if KEY is not an
628 already known property. */
630 static int
631 get_font_prop_index (Lisp_Object key)
633 int i;
635 for (i = 0; i < FONT_PROPERTY_TABLE_SIZE; i++)
636 if (EQ (key, *font_property_table[i].key))
637 return i;
638 return -1;
641 /* Validate the font property. The property key is specified by the
642 symbol PROP, or the index IDX (if PROP is nil). If VAL is invalid,
643 signal an error. The value is VAL or the regularized one. */
645 static Lisp_Object
646 font_prop_validate (int idx, Lisp_Object prop, Lisp_Object val)
648 Lisp_Object validated;
650 if (NILP (val))
651 return val;
652 if (NILP (prop))
653 prop = *font_property_table[idx].key;
654 else
656 idx = get_font_prop_index (prop);
657 if (idx < 0)
658 return val;
660 validated = (font_property_table[idx].validater) (prop, val);
661 if (EQ (validated, Qerror))
662 signal_error ("invalid font property", Fcons (prop, val));
663 return validated;
667 /* Store VAL as a value of extra font property PROP in FONT while
668 keeping the sorting order. Don't check the validity of VAL. */
670 Lisp_Object
671 font_put_extra (Lisp_Object font, Lisp_Object prop, Lisp_Object val)
673 Lisp_Object extra = AREF (font, FONT_EXTRA_INDEX);
674 Lisp_Object slot = (NILP (extra) ? Qnil : assq_no_quit (prop, extra));
676 if (NILP (slot))
678 Lisp_Object prev = Qnil;
680 while (CONSP (extra)
681 && NILP (Fstring_lessp (prop, XCAR (XCAR (extra)))))
682 prev = extra, extra = XCDR (extra);
684 if (NILP (prev))
685 ASET (font, FONT_EXTRA_INDEX, Fcons (Fcons (prop, val), extra));
686 else
687 XSETCDR (prev, Fcons (Fcons (prop, val), extra));
689 return val;
691 XSETCDR (slot, val);
692 if (NILP (val))
693 ASET (font, FONT_EXTRA_INDEX, Fdelq (slot, extra));
694 return val;
698 /* Font name parser and unparser */
700 static int parse_matrix (const char *);
701 static int font_expand_wildcards (Lisp_Object *, int);
702 static int font_parse_name (char *, Lisp_Object);
704 /* An enumerator for each field of an XLFD font name. */
705 enum xlfd_field_index
707 XLFD_FOUNDRY_INDEX,
708 XLFD_FAMILY_INDEX,
709 XLFD_WEIGHT_INDEX,
710 XLFD_SLANT_INDEX,
711 XLFD_SWIDTH_INDEX,
712 XLFD_ADSTYLE_INDEX,
713 XLFD_PIXEL_INDEX,
714 XLFD_POINT_INDEX,
715 XLFD_RESX_INDEX,
716 XLFD_RESY_INDEX,
717 XLFD_SPACING_INDEX,
718 XLFD_AVGWIDTH_INDEX,
719 XLFD_REGISTRY_INDEX,
720 XLFD_ENCODING_INDEX,
721 XLFD_LAST_INDEX
724 /* An enumerator for mask bit corresponding to each XLFD field. */
725 enum xlfd_field_mask
727 XLFD_FOUNDRY_MASK = 0x0001,
728 XLFD_FAMILY_MASK = 0x0002,
729 XLFD_WEIGHT_MASK = 0x0004,
730 XLFD_SLANT_MASK = 0x0008,
731 XLFD_SWIDTH_MASK = 0x0010,
732 XLFD_ADSTYLE_MASK = 0x0020,
733 XLFD_PIXEL_MASK = 0x0040,
734 XLFD_POINT_MASK = 0x0080,
735 XLFD_RESX_MASK = 0x0100,
736 XLFD_RESY_MASK = 0x0200,
737 XLFD_SPACING_MASK = 0x0400,
738 XLFD_AVGWIDTH_MASK = 0x0800,
739 XLFD_REGISTRY_MASK = 0x1000,
740 XLFD_ENCODING_MASK = 0x2000
744 /* Parse P pointing the pixel/point size field of the form
745 `[A B C D]' which specifies a transformation matrix:
747 A B 0
748 C D 0
749 0 0 1
751 by which all glyphs of the font are transformed. The spec says
752 that scalar value N for the pixel/point size is equivalent to:
753 A = N * resx/resy, B = C = 0, D = N.
755 Return the scalar value N if the form is valid. Otherwise return
756 -1. */
758 static int
759 parse_matrix (const char *p)
761 double matrix[4];
762 char *end;
763 int i;
765 for (i = 0, p++; i < 4 && *p && *p != ']'; i++)
767 if (*p == '~')
768 matrix[i] = - strtod (p + 1, &end);
769 else
770 matrix[i] = strtod (p, &end);
771 p = end;
773 return (i == 4 ? (int) matrix[3] : -1);
776 /* Expand a wildcard field in FIELD (the first N fields are filled) to
777 multiple fields to fill in all 14 XLFD fields while restring a
778 field position by its contents. */
780 static int
781 font_expand_wildcards (Lisp_Object *field, int n)
783 /* Copy of FIELD. */
784 Lisp_Object tmp[XLFD_LAST_INDEX];
785 /* Array of information about where this element can go. Nth
786 element is for Nth element of FIELD. */
787 struct {
788 /* Minimum possible field. */
789 int from;
790 /* Maxinum possible field. */
791 int to;
792 /* Bit mask of possible field. Nth bit corresponds to Nth field. */
793 int mask;
794 } range[XLFD_LAST_INDEX];
795 int i, j;
796 int range_from, range_to;
797 unsigned range_mask;
799 #define XLFD_SYMBOL_MASK (XLFD_FOUNDRY_MASK | XLFD_FAMILY_MASK \
800 | XLFD_ADSTYLE_MASK | XLFD_REGISTRY_MASK)
801 #define XLFD_NULL_MASK (XLFD_FOUNDRY_MASK | XLFD_ADSTYLE_MASK)
802 #define XLFD_LARGENUM_MASK (XLFD_POINT_MASK | XLFD_RESX_MASK | XLFD_RESY_MASK \
803 | XLFD_AVGWIDTH_MASK)
804 #define XLFD_REGENC_MASK (XLFD_REGISTRY_MASK | XLFD_ENCODING_MASK)
806 /* Initialize RANGE_MASK for FIELD[0] which can be 0th to (14 - N)th
807 field. The value is shifted to left one bit by one in the
808 following loop. */
809 for (i = 0, range_mask = 0; i <= 14 - n; i++)
810 range_mask = (range_mask << 1) | 1;
812 /* The triplet RANGE_FROM, RANGE_TO, and RANGE_MASK is a
813 position-based retriction for FIELD[I]. */
814 for (i = 0, range_from = 0, range_to = 14 - n; i < n;
815 i++, range_from++, range_to++, range_mask <<= 1)
817 Lisp_Object val = field[i];
819 tmp[i] = val;
820 if (NILP (val))
822 /* Wildcard. */
823 range[i].from = range_from;
824 range[i].to = range_to;
825 range[i].mask = range_mask;
827 else
829 /* The triplet FROM, TO, and MASK is a value-based
830 retriction for FIELD[I]. */
831 int from, to;
832 unsigned mask;
834 if (INTEGERP (val))
836 int numeric = XINT (val);
838 if (i + 1 == n)
839 from = to = XLFD_ENCODING_INDEX,
840 mask = XLFD_ENCODING_MASK;
841 else if (numeric == 0)
842 from = XLFD_PIXEL_INDEX, to = XLFD_AVGWIDTH_INDEX,
843 mask = XLFD_PIXEL_MASK | XLFD_LARGENUM_MASK;
844 else if (numeric <= 48)
845 from = to = XLFD_PIXEL_INDEX,
846 mask = XLFD_PIXEL_MASK;
847 else
848 from = XLFD_POINT_INDEX, to = XLFD_AVGWIDTH_INDEX,
849 mask = XLFD_LARGENUM_MASK;
851 else if (SBYTES (SYMBOL_NAME (val)) == 0)
852 from = XLFD_FOUNDRY_INDEX, to = XLFD_ADSTYLE_INDEX,
853 mask = XLFD_NULL_MASK;
854 else if (i == 0)
855 from = to = XLFD_FOUNDRY_INDEX, mask = XLFD_FOUNDRY_MASK;
856 else if (i + 1 == n)
858 Lisp_Object name = SYMBOL_NAME (val);
860 if (SDATA (name)[SBYTES (name) - 1] == '*')
861 from = XLFD_REGISTRY_INDEX, to = XLFD_ENCODING_INDEX,
862 mask = XLFD_REGENC_MASK;
863 else
864 from = to = XLFD_ENCODING_INDEX,
865 mask = XLFD_ENCODING_MASK;
867 else if (range_from <= XLFD_WEIGHT_INDEX
868 && range_to >= XLFD_WEIGHT_INDEX
869 && FONT_WEIGHT_NAME_NUMERIC (val) >= 0)
870 from = to = XLFD_WEIGHT_INDEX, mask = XLFD_WEIGHT_MASK;
871 else if (range_from <= XLFD_SLANT_INDEX
872 && range_to >= XLFD_SLANT_INDEX
873 && FONT_SLANT_NAME_NUMERIC (val) >= 0)
874 from = to = XLFD_SLANT_INDEX, mask = XLFD_SLANT_MASK;
875 else if (range_from <= XLFD_SWIDTH_INDEX
876 && range_to >= XLFD_SWIDTH_INDEX
877 && FONT_WIDTH_NAME_NUMERIC (val) >= 0)
878 from = to = XLFD_SWIDTH_INDEX, mask = XLFD_SWIDTH_MASK;
879 else
881 if (EQ (val, Qc) || EQ (val, Qm) || EQ (val, Qp) || EQ (val, Qd))
882 from = to = XLFD_SPACING_INDEX, mask = XLFD_SPACING_MASK;
883 else
884 from = XLFD_FOUNDRY_INDEX, to = XLFD_ENCODING_INDEX,
885 mask = XLFD_SYMBOL_MASK;
888 /* Merge position-based and value-based restrictions. */
889 mask &= range_mask;
890 while (from < range_from)
891 mask &= ~(1 << from++);
892 while (from < 14 && ! (mask & (1 << from)))
893 from++;
894 while (to > range_to)
895 mask &= ~(1 << to--);
896 while (to >= 0 && ! (mask & (1 << to)))
897 to--;
898 if (from > to)
899 return -1;
900 range[i].from = from;
901 range[i].to = to;
902 range[i].mask = mask;
904 if (from > range_from || to < range_to)
906 /* The range is narrowed by value-based restrictions.
907 Reflect it to the other fields. */
909 /* Following fields should be after FROM. */
910 range_from = from;
911 /* Preceding fields should be before TO. */
912 for (j = i - 1, from--, to--; j >= 0; j--, from--, to--)
914 /* Check FROM for non-wildcard field. */
915 if (! NILP (tmp[j]) && range[j].from < from)
917 while (range[j].from < from)
918 range[j].mask &= ~(1 << range[j].from++);
919 while (from < 14 && ! (range[j].mask & (1 << from)))
920 from++;
921 range[j].from = from;
923 else
924 from = range[j].from;
925 if (range[j].to > to)
927 while (range[j].to > to)
928 range[j].mask &= ~(1 << range[j].to--);
929 while (to >= 0 && ! (range[j].mask & (1 << to)))
930 to--;
931 range[j].to = to;
933 else
934 to = range[j].to;
935 if (from > to)
936 return -1;
942 /* Decide all fileds from restrictions in RANGE. */
943 for (i = j = 0; i < n ; i++)
945 if (j < range[i].from)
947 if (i == 0 || ! NILP (tmp[i - 1]))
948 /* None of TMP[X] corresponds to Jth field. */
949 return -1;
950 for (; j < range[i].from; j++)
951 field[j] = Qnil;
953 field[j++] = tmp[i];
955 if (! NILP (tmp[n - 1]) && j < XLFD_REGISTRY_INDEX)
956 return -1;
957 for (; j < XLFD_LAST_INDEX; j++)
958 field[j] = Qnil;
959 if (INTEGERP (field[XLFD_ENCODING_INDEX]))
960 field[XLFD_ENCODING_INDEX]
961 = Fintern (Fnumber_to_string (field[XLFD_ENCODING_INDEX]), Qnil);
962 return 0;
966 /* Parse NAME (null terminated) as XLFD and store information in FONT
967 (font-spec or font-entity). Size property of FONT is set as
968 follows:
969 specified XLFD fields FONT property
970 --------------------- -------------
971 PIXEL_SIZE PIXEL_SIZE (Lisp integer)
972 POINT_SIZE and RESY calculated pixel size (Lisp integer)
973 POINT_SIZE POINT_SIZE/10 (Lisp float)
975 If NAME is successfully parsed, return 0. Otherwise return -1.
977 FONT is usually a font-spec, but when this function is called from
978 X font backend driver, it is a font-entity. In that case, NAME is
979 a fully specified XLFD. */
982 font_parse_xlfd (char *name, Lisp_Object font)
984 int len = strlen (name);
985 int i, j, n;
986 char *f[XLFD_LAST_INDEX + 1];
987 Lisp_Object val;
988 char *p;
990 if (len > 255 || !len)
991 /* Maximum XLFD name length is 255. */
992 return -1;
993 /* Accept "*-.." as a fully specified XLFD. */
994 if (name[0] == '*' && (len == 1 || name[1] == '-'))
995 i = 1, f[XLFD_FOUNDRY_INDEX] = name;
996 else
997 i = 0;
998 for (p = name + i; *p; p++)
999 if (*p == '-')
1001 f[i++] = p + 1;
1002 if (i == XLFD_LAST_INDEX)
1003 break;
1005 f[i] = name + len;
1007 #define INTERN_FIELD(N) font_intern_prop (f[N], f[(N) + 1] - 1 - f[N], 0)
1008 #define INTERN_FIELD_SYM(N) font_intern_prop (f[N], f[(N) + 1] - 1 - f[N], 1)
1010 if (i == XLFD_LAST_INDEX)
1012 /* Fully specified XLFD. */
1013 int pixel_size;
1015 ASET (font, FONT_FOUNDRY_INDEX, INTERN_FIELD_SYM (XLFD_FOUNDRY_INDEX));
1016 ASET (font, FONT_FAMILY_INDEX, INTERN_FIELD_SYM (XLFD_FAMILY_INDEX));
1017 for (i = XLFD_WEIGHT_INDEX, j = FONT_WEIGHT_INDEX;
1018 i <= XLFD_SWIDTH_INDEX; i++, j++)
1020 val = INTERN_FIELD_SYM (i);
1021 if (! NILP (val))
1023 if ((n = font_style_to_value (j, INTERN_FIELD_SYM (i), 0)) < 0)
1024 return -1;
1025 ASET (font, j, make_number (n));
1028 ASET (font, FONT_ADSTYLE_INDEX, INTERN_FIELD_SYM (XLFD_ADSTYLE_INDEX));
1029 if (strcmp (f[XLFD_REGISTRY_INDEX], "*-*") == 0)
1030 ASET (font, FONT_REGISTRY_INDEX, Qnil);
1031 else
1032 ASET (font, FONT_REGISTRY_INDEX,
1033 font_intern_prop (f[XLFD_REGISTRY_INDEX],
1034 f[XLFD_LAST_INDEX] - f[XLFD_REGISTRY_INDEX],
1035 1));
1036 p = f[XLFD_PIXEL_INDEX];
1037 if (*p == '[' && (pixel_size = parse_matrix (p)) >= 0)
1038 ASET (font, FONT_SIZE_INDEX, make_number (pixel_size));
1039 else
1041 val = INTERN_FIELD (XLFD_PIXEL_INDEX);
1042 if (INTEGERP (val))
1043 ASET (font, FONT_SIZE_INDEX, val);
1044 else if (FONT_ENTITY_P (font))
1045 return -1;
1046 else
1048 double point_size = -1;
1050 font_assert (FONT_SPEC_P (font));
1051 p = f[XLFD_POINT_INDEX];
1052 if (*p == '[')
1053 point_size = parse_matrix (p);
1054 else if (isdigit (*p))
1055 point_size = atoi (p), point_size /= 10;
1056 if (point_size >= 0)
1057 ASET (font, FONT_SIZE_INDEX, make_float (point_size));
1061 val = INTERN_FIELD (XLFD_RESY_INDEX);
1062 if (! NILP (val) && ! INTEGERP (val))
1063 return -1;
1064 ASET (font, FONT_DPI_INDEX, val);
1065 val = INTERN_FIELD (XLFD_SPACING_INDEX);
1066 if (! NILP (val))
1068 val = font_prop_validate_spacing (QCspacing, val);
1069 if (! INTEGERP (val))
1070 return -1;
1071 ASET (font, FONT_SPACING_INDEX, val);
1073 p = f[XLFD_AVGWIDTH_INDEX];
1074 if (*p == '~')
1075 p++;
1076 val = font_intern_prop (p, f[XLFD_REGISTRY_INDEX] - 1 - p, 0);
1077 if (! NILP (val) && ! INTEGERP (val))
1078 return -1;
1079 ASET (font, FONT_AVGWIDTH_INDEX, val);
1081 else
1083 int wild_card_found = 0;
1084 Lisp_Object prop[XLFD_LAST_INDEX];
1086 if (FONT_ENTITY_P (font))
1087 return -1;
1088 for (j = 0; j < i; j++)
1090 if (*f[j] == '*')
1092 if (f[j][1] && f[j][1] != '-')
1093 return -1;
1094 prop[j] = Qnil;
1095 wild_card_found = 1;
1097 else if (j + 1 < i)
1098 prop[j] = INTERN_FIELD (j);
1099 else
1100 prop[j] = font_intern_prop (f[j], f[i] - f[j], 0);
1102 if (! wild_card_found)
1103 return -1;
1104 if (font_expand_wildcards (prop, i) < 0)
1105 return -1;
1107 ASET (font, FONT_FOUNDRY_INDEX, prop[XLFD_FOUNDRY_INDEX]);
1108 ASET (font, FONT_FAMILY_INDEX, prop[XLFD_FAMILY_INDEX]);
1109 for (i = XLFD_WEIGHT_INDEX, j = FONT_WEIGHT_INDEX;
1110 i <= XLFD_SWIDTH_INDEX; i++, j++)
1111 if (! NILP (prop[i]))
1113 if ((n = font_style_to_value (j, prop[i], 1)) < 0)
1114 return -1;
1115 ASET (font, j, make_number (n));
1117 ASET (font, FONT_ADSTYLE_INDEX, prop[XLFD_ADSTYLE_INDEX]);
1118 val = prop[XLFD_REGISTRY_INDEX];
1119 if (NILP (val))
1121 val = prop[XLFD_ENCODING_INDEX];
1122 if (! NILP (val))
1123 val = concat2 (build_string ("*-"), SYMBOL_NAME (val));
1125 else if (NILP (prop[XLFD_ENCODING_INDEX]))
1126 val = concat2 (SYMBOL_NAME (val), build_string ("-*"));
1127 else
1128 val = concat3 (SYMBOL_NAME (val), build_string ("-"),
1129 SYMBOL_NAME (prop[XLFD_ENCODING_INDEX]));
1130 if (! NILP (val))
1131 ASET (font, FONT_REGISTRY_INDEX, Fintern (val, Qnil));
1133 if (INTEGERP (prop[XLFD_PIXEL_INDEX]))
1134 ASET (font, FONT_SIZE_INDEX, prop[XLFD_PIXEL_INDEX]);
1135 else if (INTEGERP (prop[XLFD_POINT_INDEX]))
1137 double point_size = XINT (prop[XLFD_POINT_INDEX]);
1139 ASET (font, FONT_SIZE_INDEX, make_float (point_size / 10));
1142 if (INTEGERP (prop[XLFD_RESX_INDEX]))
1143 ASET (font, FONT_DPI_INDEX, prop[XLFD_RESY_INDEX]);
1144 if (! NILP (prop[XLFD_SPACING_INDEX]))
1146 val = font_prop_validate_spacing (QCspacing,
1147 prop[XLFD_SPACING_INDEX]);
1148 if (! INTEGERP (val))
1149 return -1;
1150 ASET (font, FONT_SPACING_INDEX, val);
1152 if (INTEGERP (prop[XLFD_AVGWIDTH_INDEX]))
1153 ASET (font, FONT_AVGWIDTH_INDEX, prop[XLFD_AVGWIDTH_INDEX]);
1156 return 0;
1159 /* Store XLFD name of FONT (font-spec or font-entity) in NAME (NBYTES
1160 length), and return the name length. If FONT_SIZE_INDEX of FONT is
1161 0, use PIXEL_SIZE instead. */
1164 font_unparse_xlfd (Lisp_Object font, int pixel_size, char *name, int nbytes)
1166 char *f[XLFD_REGISTRY_INDEX + 1];
1167 Lisp_Object val;
1168 int i, j, len = 0;
1170 font_assert (FONTP (font));
1172 for (i = FONT_FOUNDRY_INDEX, j = XLFD_FOUNDRY_INDEX; i <= FONT_REGISTRY_INDEX;
1173 i++, j++)
1175 if (i == FONT_ADSTYLE_INDEX)
1176 j = XLFD_ADSTYLE_INDEX;
1177 else if (i == FONT_REGISTRY_INDEX)
1178 j = XLFD_REGISTRY_INDEX;
1179 val = AREF (font, i);
1180 if (NILP (val))
1182 if (j == XLFD_REGISTRY_INDEX)
1183 f[j] = "*-*", len += 4;
1184 else
1185 f[j] = "*", len += 2;
1187 else
1189 if (SYMBOLP (val))
1190 val = SYMBOL_NAME (val);
1191 if (j == XLFD_REGISTRY_INDEX
1192 && ! strchr (SSDATA (val), '-'))
1194 /* Change "jisx0208*" and "jisx0208" to "jisx0208*-*". */
1195 if (SDATA (val)[SBYTES (val) - 1] == '*')
1197 f[j] = alloca (SBYTES (val) + 3);
1198 sprintf (f[j], "%s-*", SDATA (val));
1199 len += SBYTES (val) + 3;
1201 else
1203 f[j] = alloca (SBYTES (val) + 4);
1204 sprintf (f[j], "%s*-*", SDATA (val));
1205 len += SBYTES (val) + 4;
1208 else
1209 f[j] = SSDATA (val), len += SBYTES (val) + 1;
1213 for (i = FONT_WEIGHT_INDEX, j = XLFD_WEIGHT_INDEX; i <= FONT_WIDTH_INDEX;
1214 i++, j++)
1216 val = font_style_symbolic (font, i, 0);
1217 if (NILP (val))
1218 f[j] = "*", len += 2;
1219 else
1221 val = SYMBOL_NAME (val);
1222 f[j] = SSDATA (val), len += SBYTES (val) + 1;
1226 val = AREF (font, FONT_SIZE_INDEX);
1227 font_assert (NUMBERP (val) || NILP (val));
1228 if (INTEGERP (val))
1230 i = XINT (val);
1231 if (i <= 0)
1232 i = pixel_size;
1233 if (i > 0)
1235 f[XLFD_PIXEL_INDEX] = alloca (22);
1236 len += sprintf (f[XLFD_PIXEL_INDEX], "%d-*", i) + 1;
1238 else
1239 f[XLFD_PIXEL_INDEX] = "*-*", len += 4;
1241 else if (FLOATP (val))
1243 i = XFLOAT_DATA (val) * 10;
1244 f[XLFD_PIXEL_INDEX] = alloca (12);
1245 len += sprintf (f[XLFD_PIXEL_INDEX], "*-%d", i) + 1;
1247 else
1248 f[XLFD_PIXEL_INDEX] = "*-*", len += 4;
1250 if (INTEGERP (AREF (font, FONT_DPI_INDEX)))
1252 i = XINT (AREF (font, FONT_DPI_INDEX));
1253 f[XLFD_RESX_INDEX] = alloca (22);
1254 len += sprintf (f[XLFD_RESX_INDEX],
1255 "%d-%d", i, i) + 1;
1257 else
1258 f[XLFD_RESX_INDEX] = "*-*", len += 4;
1259 if (INTEGERP (AREF (font, FONT_SPACING_INDEX)))
1261 int spacing = XINT (AREF (font, FONT_SPACING_INDEX));
1263 f[XLFD_SPACING_INDEX] = (spacing <= FONT_SPACING_PROPORTIONAL ? "p"
1264 : spacing <= FONT_SPACING_DUAL ? "d"
1265 : spacing <= FONT_SPACING_MONO ? "m"
1266 : "c");
1267 len += 2;
1269 else
1270 f[XLFD_SPACING_INDEX] = "*", len += 2;
1271 if (INTEGERP (AREF (font, FONT_AVGWIDTH_INDEX)))
1273 f[XLFD_AVGWIDTH_INDEX] = alloca (11);
1274 len += sprintf (f[XLFD_AVGWIDTH_INDEX], "%ld",
1275 (long) XINT (AREF (font, FONT_AVGWIDTH_INDEX))) + 1;
1277 else
1278 f[XLFD_AVGWIDTH_INDEX] = "*", len += 2;
1279 len++; /* for terminating '\0'. */
1280 if (len >= nbytes)
1281 return -1;
1282 return sprintf (name, "-%s-%s-%s-%s-%s-%s-%s-%s-%s-%s-%s",
1283 f[XLFD_FOUNDRY_INDEX], f[XLFD_FAMILY_INDEX],
1284 f[XLFD_WEIGHT_INDEX], f[XLFD_SLANT_INDEX],
1285 f[XLFD_SWIDTH_INDEX], f[XLFD_ADSTYLE_INDEX],
1286 f[XLFD_PIXEL_INDEX], f[XLFD_RESX_INDEX],
1287 f[XLFD_SPACING_INDEX], f[XLFD_AVGWIDTH_INDEX],
1288 f[XLFD_REGISTRY_INDEX]);
1291 /* Parse NAME (null terminated) and store information in FONT
1292 (font-spec or font-entity). NAME is supplied in either the
1293 Fontconfig or GTK font name format. If NAME is successfully
1294 parsed, return 0. Otherwise return -1.
1296 The fontconfig format is
1298 FAMILY[-SIZE][:PROP1[=VAL1][:PROP2[=VAL2]...]]
1300 The GTK format is
1302 FAMILY [PROPS...] [SIZE]
1304 This function tries to guess which format it is. */
1306 static int
1307 font_parse_fcname (char *name, Lisp_Object font)
1309 char *p, *q;
1310 char *size_beg = NULL, *size_end = NULL;
1311 char *props_beg = NULL, *family_end = NULL;
1312 int len = strlen (name);
1314 if (len == 0)
1315 return -1;
1317 for (p = name; *p; p++)
1319 if (*p == '\\' && p[1])
1320 p++;
1321 else if (*p == ':')
1323 props_beg = family_end = p;
1324 break;
1326 else if (*p == '-')
1328 int decimal = 0, size_found = 1;
1329 for (q = p + 1; *q && *q != ':'; q++)
1330 if (! isdigit(*q))
1332 if (*q != '.' || decimal)
1334 size_found = 0;
1335 break;
1337 decimal = 1;
1339 if (size_found)
1341 family_end = p;
1342 size_beg = p + 1;
1343 size_end = q;
1344 break;
1349 if (family_end)
1351 Lisp_Object extra_props = Qnil;
1353 /* A fontconfig name with size and/or property data. */
1354 if (family_end > name)
1356 Lisp_Object family;
1357 family = font_intern_prop (name, family_end - name, 1);
1358 ASET (font, FONT_FAMILY_INDEX, family);
1360 if (size_beg)
1362 double point_size = strtod (size_beg, &size_end);
1363 ASET (font, FONT_SIZE_INDEX, make_float (point_size));
1364 if (*size_end == ':' && size_end[1])
1365 props_beg = size_end;
1367 if (props_beg)
1369 /* Now parse ":KEY=VAL" patterns. */
1370 Lisp_Object val;
1372 for (p = props_beg; *p; p = q)
1374 for (q = p + 1; *q && *q != '=' && *q != ':'; q++);
1375 if (*q != '=')
1377 /* Must be an enumerated value. */
1378 int word_len;
1379 p = p + 1;
1380 word_len = q - p;
1381 val = font_intern_prop (p, q - p, 1);
1383 #define PROP_MATCH(STR,N) ((word_len == N) && memcmp (p, STR, N) == 0)
1385 if (PROP_MATCH ("light", 5)
1386 || PROP_MATCH ("medium", 6)
1387 || PROP_MATCH ("demibold", 8)
1388 || PROP_MATCH ("bold", 4)
1389 || PROP_MATCH ("black", 5))
1390 FONT_SET_STYLE (font, FONT_WEIGHT_INDEX, val);
1391 else if (PROP_MATCH ("roman", 5)
1392 || PROP_MATCH ("italic", 6)
1393 || PROP_MATCH ("oblique", 7))
1394 FONT_SET_STYLE (font, FONT_SLANT_INDEX, val);
1395 else if (PROP_MATCH ("charcell", 8))
1396 ASET (font, FONT_SPACING_INDEX,
1397 make_number (FONT_SPACING_CHARCELL));
1398 else if (PROP_MATCH ("mono", 4))
1399 ASET (font, FONT_SPACING_INDEX,
1400 make_number (FONT_SPACING_MONO));
1401 else if (PROP_MATCH ("proportional", 12))
1402 ASET (font, FONT_SPACING_INDEX,
1403 make_number (FONT_SPACING_PROPORTIONAL));
1404 #undef PROP_MATCH
1406 else
1408 /* KEY=VAL pairs */
1409 Lisp_Object key;
1410 int prop;
1412 if (q - p == 10 && memcmp (p + 1, "pixelsize", 9) == 0)
1413 prop = FONT_SIZE_INDEX;
1414 else
1416 key = font_intern_prop (p, q - p, 1);
1417 prop = get_font_prop_index (key);
1420 p = q + 1;
1421 for (q = p; *q && *q != ':'; q++);
1422 val = font_intern_prop (p, q - p, 0);
1424 if (prop >= FONT_FOUNDRY_INDEX
1425 && prop < FONT_EXTRA_INDEX)
1426 ASET (font, prop, font_prop_validate (prop, Qnil, val));
1427 else
1429 extra_props = nconc2 (extra_props,
1430 Fcons (Fcons (key, val), Qnil));
1433 p = q;
1437 if (! NILP (extra_props))
1439 struct font_driver_list *driver_list = font_driver_list;
1440 for ( ; driver_list; driver_list = driver_list->next)
1441 if (driver_list->driver->filter_properties)
1442 (*driver_list->driver->filter_properties) (font, extra_props);
1446 else
1448 /* Either a fontconfig-style name with no size and property
1449 data, or a GTK-style name. */
1450 Lisp_Object prop;
1451 Lisp_Object weight = Qnil, slant = Qnil;
1452 Lisp_Object width = Qnil, size = Qnil;
1453 char *word_start;
1454 int word_len;
1455 int size_found = 0;
1457 /* Scan backwards from the end, looking for a size. */
1458 for (p = name + len - 1; p >= name; p--)
1459 if (!isdigit (*p))
1460 break;
1462 if ((p < name + len - 1) && ((p + 1 == name) || *p == ' '))
1463 /* Found a font size. */
1464 size = make_float (strtod (p + 1, NULL));
1465 else
1466 p = name + len;
1468 /* Now P points to the termination of the string, sans size.
1469 Scan backwards, looking for font properties. */
1470 for (; p > name; p = q)
1472 for (q = p - 1; q >= name; q--)
1474 if (q > name && *(q-1) == '\\')
1475 --q; /* Skip quoting backslashes. */
1476 else if (*q == ' ')
1477 break;
1480 word_start = q + 1;
1481 word_len = p - word_start;
1483 #define PROP_MATCH(STR,N) \
1484 ((word_len == N) && memcmp (word_start, STR, N) == 0)
1485 #define PROP_SAVE(VAR,STR,N) \
1486 (VAR = NILP (VAR) ? font_intern_prop (STR, N, 1) : VAR)
1488 if (PROP_MATCH ("Ultra-Light", 11))
1489 PROP_SAVE (weight, "ultra-light", 11);
1490 else if (PROP_MATCH ("Light", 5))
1491 PROP_SAVE (weight, "light", 5);
1492 else if (PROP_MATCH ("Book", 4))
1493 PROP_SAVE (weight, "book", 4);
1494 else if (PROP_MATCH ("Medium", 6))
1495 PROP_SAVE (weight, "medium", 6);
1496 else if (PROP_MATCH ("Semi-Bold", 9))
1497 PROP_SAVE (weight, "semi-bold", 9);
1498 else if (PROP_MATCH ("Bold", 4))
1499 PROP_SAVE (weight, "bold", 4);
1500 else if (PROP_MATCH ("Italic", 6))
1501 PROP_SAVE (slant, "italic", 6);
1502 else if (PROP_MATCH ("Oblique", 7))
1503 PROP_SAVE (slant, "oblique", 7);
1504 else if (PROP_MATCH ("Semi-Condensed", 14))
1505 PROP_SAVE (width, "semi-condensed", 14);
1506 else if (PROP_MATCH ("Condensed", 9))
1507 PROP_SAVE (width, "condensed", 9);
1508 /* An unknown word must be part of the font name. */
1509 else
1511 family_end = p;
1512 break;
1515 #undef PROP_MATCH
1516 #undef PROP_SAVE
1518 if (family_end)
1519 ASET (font, FONT_FAMILY_INDEX,
1520 font_intern_prop (name, family_end - name, 1));
1521 if (!NILP (size))
1522 ASET (font, FONT_SIZE_INDEX, size);
1523 if (!NILP (weight))
1524 FONT_SET_STYLE (font, FONT_WEIGHT_INDEX, weight);
1525 if (!NILP (slant))
1526 FONT_SET_STYLE (font, FONT_SLANT_INDEX, slant);
1527 if (!NILP (width))
1528 FONT_SET_STYLE (font, FONT_WIDTH_INDEX, width);
1531 return 0;
1534 /* Store fontconfig's font name of FONT (font-spec or font-entity) in
1535 NAME (NBYTES length), and return the name length. If
1536 FONT_SIZE_INDEX of FONT is 0, use PIXEL_SIZE instead. */
1539 font_unparse_fcname (Lisp_Object font, int pixel_size, char *name, int nbytes)
1541 Lisp_Object family, foundry;
1542 Lisp_Object tail, val;
1543 int point_size;
1544 int i, len = 1;
1545 char *p;
1546 Lisp_Object styles[3];
1547 const char *style_names[3] = { "weight", "slant", "width" };
1548 char work[256];
1550 family = AREF (font, FONT_FAMILY_INDEX);
1551 if (! NILP (family))
1553 if (SYMBOLP (family))
1555 family = SYMBOL_NAME (family);
1556 len += SBYTES (family);
1558 else
1559 family = Qnil;
1562 val = AREF (font, FONT_SIZE_INDEX);
1563 if (INTEGERP (val))
1565 if (XINT (val) != 0)
1566 pixel_size = XINT (val);
1567 point_size = -1;
1568 len += 21; /* for ":pixelsize=NUM" */
1570 else if (FLOATP (val))
1572 pixel_size = -1;
1573 point_size = (int) XFLOAT_DATA (val);
1574 len += 11; /* for "-NUM" */
1577 foundry = AREF (font, FONT_FOUNDRY_INDEX);
1578 if (! NILP (foundry))
1580 if (SYMBOLP (foundry))
1582 foundry = SYMBOL_NAME (foundry);
1583 len += 9 + SBYTES (foundry); /* ":foundry=NAME" */
1585 else
1586 foundry = Qnil;
1589 for (i = 0; i < 3; i++)
1591 styles[i] = font_style_symbolic (font, FONT_WEIGHT_INDEX + i, 0);
1592 if (! NILP (styles[i]))
1593 len += sprintf (work, ":%s=%s", style_names[i],
1594 SDATA (SYMBOL_NAME (styles[i])));
1597 if (INTEGERP (AREF (font, FONT_DPI_INDEX)))
1598 len += sprintf (work, ":dpi=%ld", (long)XINT (AREF (font, FONT_DPI_INDEX)));
1599 if (INTEGERP (AREF (font, FONT_SPACING_INDEX)))
1600 len += strlen (":spacing=100");
1601 if (INTEGERP (AREF (font, FONT_AVGWIDTH_INDEX)))
1602 len += strlen (":scalable=false"); /* or ":scalable=true" */
1603 for (tail = AREF (font, FONT_EXTRA_INDEX); CONSP (tail); tail = XCDR (tail))
1605 Lisp_Object key = XCAR (XCAR (tail)), val = XCDR (XCAR (tail));
1607 len += SBYTES (SYMBOL_NAME (key)) + 1; /* for :KEY= */
1608 if (STRINGP (val))
1609 len += SBYTES (val);
1610 else if (INTEGERP (val))
1611 len += sprintf (work, "%ld", (long) XINT (val));
1612 else if (SYMBOLP (val))
1613 len += (NILP (val) ? 5 : 4); /* for "false" or "true" */
1616 if (len > nbytes)
1617 return -1;
1618 p = name;
1619 if (! NILP (family))
1620 p += sprintf (p, "%s", SDATA (family));
1621 if (point_size > 0)
1623 if (p == name)
1624 p += sprintf (p, "%d", point_size);
1625 else
1626 p += sprintf (p, "-%d", point_size);
1628 else if (pixel_size > 0)
1629 p += sprintf (p, ":pixelsize=%d", pixel_size);
1630 if (! NILP (AREF (font, FONT_FOUNDRY_INDEX)))
1631 p += sprintf (p, ":foundry=%s",
1632 SDATA (SYMBOL_NAME (AREF (font, FONT_FOUNDRY_INDEX))));
1633 for (i = 0; i < 3; i++)
1634 if (! NILP (styles[i]))
1635 p += sprintf (p, ":%s=%s", style_names[i],
1636 SDATA (SYMBOL_NAME (styles[i])));
1637 if (INTEGERP (AREF (font, FONT_DPI_INDEX)))
1638 p += sprintf (p, ":dpi=%ld", (long) XINT (AREF (font, FONT_DPI_INDEX)));
1639 if (INTEGERP (AREF (font, FONT_SPACING_INDEX)))
1640 p += sprintf (p, ":spacing=%ld",
1641 (long) XINT (AREF (font, FONT_SPACING_INDEX)));
1642 if (INTEGERP (AREF (font, FONT_AVGWIDTH_INDEX)))
1644 if (XINT (AREF (font, FONT_AVGWIDTH_INDEX)) == 0)
1645 p += sprintf (p, ":scalable=true");
1646 else
1647 p += sprintf (p, ":scalable=false");
1649 return (p - name);
1652 /* Parse NAME (null terminated) and store information in FONT
1653 (font-spec or font-entity). If NAME is successfully parsed, return
1654 0. Otherwise return -1. */
1656 static int
1657 font_parse_name (char *name, Lisp_Object font)
1659 if (name[0] == '-' || strchr (name, '*') || strchr (name, '?'))
1660 return font_parse_xlfd (name, font);
1661 return font_parse_fcname (name, font);
1665 /* Merge FAMILY and REGISTRY into FONT_SPEC. FAMILY may have the form
1666 "FAMILY-FOUNDRY". REGISTRY may not contain charset-encoding
1667 part. */
1669 void
1670 font_parse_family_registry (Lisp_Object family, Lisp_Object registry, Lisp_Object font_spec)
1672 int len;
1673 char *p0, *p1;
1675 if (! NILP (family)
1676 && NILP (AREF (font_spec, FONT_FAMILY_INDEX)))
1678 CHECK_STRING (family);
1679 len = SBYTES (family);
1680 p0 = SSDATA (family);
1681 p1 = strchr (p0, '-');
1682 if (p1)
1684 if ((*p0 != '*' && p1 - p0 > 0)
1685 && NILP (AREF (font_spec, FONT_FOUNDRY_INDEX)))
1686 Ffont_put (font_spec, QCfoundry, font_intern_prop (p0, p1 - p0, 1));
1687 p1++;
1688 len -= p1 - p0;
1689 Ffont_put (font_spec, QCfamily, font_intern_prop (p1, len, 1));
1691 else
1692 ASET (font_spec, FONT_FAMILY_INDEX, Fintern (family, Qnil));
1694 if (! NILP (registry))
1696 /* Convert "XXX" and "XXX*" to "XXX*-*". */
1697 CHECK_STRING (registry);
1698 len = SBYTES (registry);
1699 p0 = SSDATA (registry);
1700 p1 = strchr (p0, '-');
1701 if (! p1)
1703 if (SDATA (registry)[len - 1] == '*')
1704 registry = concat2 (registry, build_string ("-*"));
1705 else
1706 registry = concat2 (registry, build_string ("*-*"));
1708 registry = Fdowncase (registry);
1709 ASET (font_spec, FONT_REGISTRY_INDEX, Fintern (registry, Qnil));
1714 /* This part (through the next ^L) is still experimental and not
1715 tested much. We may drastically change codes. */
1717 /* OTF handler */
1719 #if 0
1721 #define LGSTRING_HEADER_SIZE 6
1722 #define LGSTRING_GLYPH_SIZE 8
1724 static int
1725 check_gstring (gstring)
1726 Lisp_Object gstring;
1728 Lisp_Object val;
1729 int i, j;
1731 CHECK_VECTOR (gstring);
1732 val = AREF (gstring, 0);
1733 CHECK_VECTOR (val);
1734 if (ASIZE (val) < LGSTRING_HEADER_SIZE)
1735 goto err;
1736 CHECK_FONT_OBJECT (LGSTRING_FONT (gstring));
1737 if (!NILP (LGSTRING_SLOT (gstring, LGSTRING_IX_LBEARING)))
1738 CHECK_NUMBER (LGSTRING_SLOT (gstring, LGSTRING_IX_LBEARING));
1739 if (!NILP (LGSTRING_SLOT (gstring, LGSTRING_IX_RBEARING)))
1740 CHECK_NUMBER (LGSTRING_SLOT (gstring, LGSTRING_IX_RBEARING));
1741 if (!NILP (LGSTRING_SLOT (gstring, LGSTRING_IX_WIDTH)))
1742 CHECK_NATNUM (LGSTRING_SLOT (gstring, LGSTRING_IX_WIDTH));
1743 if (!NILP (LGSTRING_SLOT (gstring, LGSTRING_IX_ASCENT)))
1744 CHECK_NUMBER (LGSTRING_SLOT (gstring, LGSTRING_IX_ASCENT));
1745 if (!NILP (LGSTRING_SLOT (gstring, LGSTRING_IX_ASCENT)))
1746 CHECK_NUMBER (LGSTRING_SLOT (gstring, LGSTRING_IX_ASCENT));
1748 for (i = 0; i < LGSTRING_GLYPH_LEN (gstring); i++)
1750 val = LGSTRING_GLYPH (gstring, i);
1751 CHECK_VECTOR (val);
1752 if (ASIZE (val) < LGSTRING_GLYPH_SIZE)
1753 goto err;
1754 if (NILP (AREF (val, LGLYPH_IX_CHAR)))
1755 break;
1756 CHECK_NATNUM (AREF (val, LGLYPH_IX_FROM));
1757 CHECK_NATNUM (AREF (val, LGLYPH_IX_TO));
1758 CHECK_CHARACTER (AREF (val, LGLYPH_IX_CHAR));
1759 if (!NILP (AREF (val, LGLYPH_IX_CODE)))
1760 CHECK_NATNUM (AREF (val, LGLYPH_IX_CODE));
1761 if (!NILP (AREF (val, LGLYPH_IX_WIDTH)))
1762 CHECK_NATNUM (AREF (val, LGLYPH_IX_WIDTH));
1763 if (!NILP (AREF (val, LGLYPH_IX_ADJUSTMENT)))
1765 val = AREF (val, LGLYPH_IX_ADJUSTMENT);
1766 CHECK_VECTOR (val);
1767 if (ASIZE (val) < 3)
1768 goto err;
1769 for (j = 0; j < 3; j++)
1770 CHECK_NUMBER (AREF (val, j));
1773 return i;
1774 err:
1775 error ("Invalid glyph-string format");
1776 return -1;
1779 static void
1780 check_otf_features (otf_features)
1781 Lisp_Object otf_features;
1783 Lisp_Object val;
1785 CHECK_CONS (otf_features);
1786 CHECK_SYMBOL (XCAR (otf_features));
1787 otf_features = XCDR (otf_features);
1788 CHECK_CONS (otf_features);
1789 CHECK_SYMBOL (XCAR (otf_features));
1790 otf_features = XCDR (otf_features);
1791 for (val = Fcar (otf_features); ! NILP (val); val = Fcdr (val))
1793 CHECK_SYMBOL (Fcar (val));
1794 if (SBYTES (SYMBOL_NAME (XCAR (val))) > 4)
1795 error ("Invalid OTF GSUB feature: %s", SYMBOL_NAME (XCAR (val)));
1797 otf_features = XCDR (otf_features);
1798 for (val = Fcar (otf_features); ! NILP (val); val = Fcdr (val))
1800 CHECK_SYMBOL (Fcar (val));
1801 if (SBYTES (SYMBOL_NAME (XCAR (val))) > 4)
1802 error ("Invalid OTF GPOS feature: %s", SYMBOL_NAME (XCAR (val)));
1806 #ifdef HAVE_LIBOTF
1807 #include <otf.h>
1809 Lisp_Object otf_list;
1811 static Lisp_Object
1812 otf_tag_symbol (tag)
1813 OTF_Tag tag;
1815 char name[5];
1817 OTF_tag_name (tag, name);
1818 return Fintern (make_unibyte_string (name, 4), Qnil);
1821 static OTF *
1822 otf_open (file)
1823 Lisp_Object file;
1825 Lisp_Object val = Fassoc (file, otf_list);
1826 OTF *otf;
1828 if (! NILP (val))
1829 otf = XSAVE_VALUE (XCDR (val))->pointer;
1830 else
1832 otf = STRINGP (file) ? OTF_open (SSDATA (file)) : NULL;
1833 val = make_save_value (otf, 0);
1834 otf_list = Fcons (Fcons (file, val), otf_list);
1836 return otf;
1840 /* Return a list describing which scripts/languages FONT supports by
1841 which GSUB/GPOS features of OpenType tables. See the comment of
1842 (struct font_driver).otf_capability. */
1844 Lisp_Object
1845 font_otf_capability (font)
1846 struct font *font;
1848 OTF *otf;
1849 Lisp_Object capability = Fcons (Qnil, Qnil);
1850 int i;
1852 otf = otf_open (font->props[FONT_FILE_INDEX]);
1853 if (! otf)
1854 return Qnil;
1855 for (i = 0; i < 2; i++)
1857 OTF_GSUB_GPOS *gsub_gpos;
1858 Lisp_Object script_list = Qnil;
1859 int j;
1861 if (OTF_get_features (otf, i == 0) < 0)
1862 continue;
1863 gsub_gpos = i == 0 ? otf->gsub : otf->gpos;
1864 for (j = gsub_gpos->ScriptList.ScriptCount - 1; j >= 0; j--)
1866 OTF_Script *script = gsub_gpos->ScriptList.Script + j;
1867 Lisp_Object langsys_list = Qnil;
1868 Lisp_Object script_tag = otf_tag_symbol (script->ScriptTag);
1869 int k;
1871 for (k = script->LangSysCount; k >= 0; k--)
1873 OTF_LangSys *langsys;
1874 Lisp_Object feature_list = Qnil;
1875 Lisp_Object langsys_tag;
1876 int l;
1878 if (k == script->LangSysCount)
1880 langsys = &script->DefaultLangSys;
1881 langsys_tag = Qnil;
1883 else
1885 langsys = script->LangSys + k;
1886 langsys_tag
1887 = otf_tag_symbol (script->LangSysRecord[k].LangSysTag);
1889 for (l = langsys->FeatureCount - 1; l >= 0; l--)
1891 OTF_Feature *feature
1892 = gsub_gpos->FeatureList.Feature + langsys->FeatureIndex[l];
1893 Lisp_Object feature_tag
1894 = otf_tag_symbol (feature->FeatureTag);
1896 feature_list = Fcons (feature_tag, feature_list);
1898 langsys_list = Fcons (Fcons (langsys_tag, feature_list),
1899 langsys_list);
1901 script_list = Fcons (Fcons (script_tag, langsys_list),
1902 script_list);
1905 if (i == 0)
1906 XSETCAR (capability, script_list);
1907 else
1908 XSETCDR (capability, script_list);
1911 return capability;
1914 /* Parse OTF features in SPEC and write a proper features spec string
1915 in FEATURES for the call of OTF_drive_gsub/gpos (of libotf). It is
1916 assured that the sufficient memory has already allocated for
1917 FEATURES. */
1919 static void
1920 generate_otf_features (spec, features)
1921 Lisp_Object spec;
1922 char *features;
1924 Lisp_Object val;
1925 char *p;
1926 int asterisk;
1928 p = features;
1929 *p = '\0';
1930 for (asterisk = 0; CONSP (spec); spec = XCDR (spec))
1932 val = XCAR (spec);
1933 CHECK_SYMBOL (val);
1934 if (p > features)
1935 *p++ = ',';
1936 if (SREF (SYMBOL_NAME (val), 0) == '*')
1938 asterisk = 1;
1939 *p++ = '*';
1941 else if (! asterisk)
1943 val = SYMBOL_NAME (val);
1944 p += sprintf (p, "%s", SDATA (val));
1946 else
1948 val = SYMBOL_NAME (val);
1949 p += sprintf (p, "~%s", SDATA (val));
1952 if (CONSP (spec))
1953 error ("OTF spec too long");
1956 Lisp_Object
1957 font_otf_DeviceTable (device_table)
1958 OTF_DeviceTable *device_table;
1960 int len = device_table->StartSize - device_table->EndSize + 1;
1962 return Fcons (make_number (len),
1963 make_unibyte_string (device_table->DeltaValue, len));
1966 Lisp_Object
1967 font_otf_ValueRecord (value_format, value_record)
1968 int value_format;
1969 OTF_ValueRecord *value_record;
1971 Lisp_Object val = Fmake_vector (make_number (8), Qnil);
1973 if (value_format & OTF_XPlacement)
1974 ASET (val, 0, make_number (value_record->XPlacement));
1975 if (value_format & OTF_YPlacement)
1976 ASET (val, 1, make_number (value_record->YPlacement));
1977 if (value_format & OTF_XAdvance)
1978 ASET (val, 2, make_number (value_record->XAdvance));
1979 if (value_format & OTF_YAdvance)
1980 ASET (val, 3, make_number (value_record->YAdvance));
1981 if (value_format & OTF_XPlaDevice)
1982 ASET (val, 4, font_otf_DeviceTable (&value_record->XPlaDevice));
1983 if (value_format & OTF_YPlaDevice)
1984 ASET (val, 4, font_otf_DeviceTable (&value_record->YPlaDevice));
1985 if (value_format & OTF_XAdvDevice)
1986 ASET (val, 4, font_otf_DeviceTable (&value_record->XAdvDevice));
1987 if (value_format & OTF_YAdvDevice)
1988 ASET (val, 4, font_otf_DeviceTable (&value_record->YAdvDevice));
1989 return val;
1992 Lisp_Object
1993 font_otf_Anchor (anchor)
1994 OTF_Anchor *anchor;
1996 Lisp_Object val;
1998 val = Fmake_vector (make_number (anchor->AnchorFormat + 1), Qnil);
1999 ASET (val, 0, make_number (anchor->XCoordinate));
2000 ASET (val, 1, make_number (anchor->YCoordinate));
2001 if (anchor->AnchorFormat == 2)
2002 ASET (val, 2, make_number (anchor->f.f1.AnchorPoint));
2003 else
2005 ASET (val, 3, font_otf_DeviceTable (&anchor->f.f2.XDeviceTable));
2006 ASET (val, 4, font_otf_DeviceTable (&anchor->f.f2.YDeviceTable));
2008 return val;
2010 #endif /* HAVE_LIBOTF */
2011 #endif /* 0 */
2014 /* Font sorting */
2016 static unsigned font_score (Lisp_Object, Lisp_Object *);
2017 static int font_compare (const void *, const void *);
2018 static Lisp_Object font_sort_entities (Lisp_Object, Lisp_Object,
2019 Lisp_Object, int);
2021 static double
2022 font_rescale_ratio (Lisp_Object font_entity)
2024 Lisp_Object tail, elt;
2025 Lisp_Object name = Qnil;
2027 for (tail = Vface_font_rescale_alist; CONSP (tail); tail = XCDR (tail))
2029 elt = XCAR (tail);
2030 if (FLOATP (XCDR (elt)))
2032 if (STRINGP (XCAR (elt)))
2034 if (NILP (name))
2035 name = Ffont_xlfd_name (font_entity, Qnil);
2036 if (fast_string_match_ignore_case (XCAR (elt), name) >= 0)
2037 return XFLOAT_DATA (XCDR (elt));
2039 else if (FONT_SPEC_P (XCAR (elt)))
2041 if (font_match_p (XCAR (elt), font_entity))
2042 return XFLOAT_DATA (XCDR (elt));
2046 return 1.0;
2049 /* We sort fonts by scoring each of them against a specified
2050 font-spec. The score value is 32 bit (`unsigned'), and the smaller
2051 the value is, the closer the font is to the font-spec.
2053 The lowest 2 bits of the score is used for driver type. The font
2054 available by the most preferred font driver is 0.
2056 Each 7-bit in the higher 28 bits are used for numeric properties
2057 WEIGHT, SLANT, WIDTH, and SIZE. */
2059 /* How many bits to shift to store the difference value of each font
2060 property in a score. Note that flots for FONT_TYPE_INDEX and
2061 FONT_REGISTRY_INDEX are not used. */
2062 static int sort_shift_bits[FONT_SIZE_INDEX + 1];
2064 /* Score font-entity ENTITY against properties of font-spec SPEC_PROP.
2065 The return value indicates how different ENTITY is compared with
2066 SPEC_PROP. */
2068 static unsigned
2069 font_score (Lisp_Object entity, Lisp_Object *spec_prop)
2071 unsigned score = 0;
2072 int i;
2074 /* Score three style numeric fields. Maximum difference is 127. */
2075 for (i = FONT_WEIGHT_INDEX; i <= FONT_WIDTH_INDEX; i++)
2076 if (! NILP (spec_prop[i]) && ! EQ (AREF (entity, i), spec_prop[i]))
2078 int diff = (XINT (AREF (entity, i)) >> 8) - (XINT (spec_prop[i]) >> 8);
2080 if (diff < 0)
2081 diff = - diff;
2082 if (diff > 0)
2083 score |= min (diff, 127) << sort_shift_bits[i];
2086 /* Score the size. Maximum difference is 127. */
2087 i = FONT_SIZE_INDEX;
2088 if (! NILP (spec_prop[FONT_SIZE_INDEX])
2089 && XINT (AREF (entity, FONT_SIZE_INDEX)) > 0)
2091 /* We use the higher 6-bit for the actual size difference. The
2092 lowest bit is set if the DPI is different. */
2093 int diff;
2094 int pixel_size = XINT (spec_prop[FONT_SIZE_INDEX]);
2096 if (CONSP (Vface_font_rescale_alist))
2097 pixel_size *= font_rescale_ratio (entity);
2098 diff = pixel_size - XINT (AREF (entity, FONT_SIZE_INDEX));
2099 if (diff < 0)
2100 diff = - diff;
2101 diff <<= 1;
2102 if (! NILP (spec_prop[FONT_DPI_INDEX])
2103 && ! EQ (spec_prop[FONT_DPI_INDEX], AREF (entity, FONT_DPI_INDEX)))
2104 diff |= 1;
2105 if (! NILP (spec_prop[FONT_AVGWIDTH_INDEX])
2106 && ! EQ (spec_prop[FONT_AVGWIDTH_INDEX], AREF (entity, FONT_AVGWIDTH_INDEX)))
2107 diff |= 1;
2108 score |= min (diff, 127) << sort_shift_bits[FONT_SIZE_INDEX];
2111 return score;
2115 /* Concatenate all elements of LIST into one vector. LIST is a list
2116 of font-entity vectors. */
2118 static Lisp_Object
2119 font_vconcat_entity_vectors (Lisp_Object list)
2121 int nargs = XINT (Flength (list));
2122 Lisp_Object *args = alloca (sizeof (Lisp_Object) * nargs);
2123 int i;
2125 for (i = 0; i < nargs; i++, list = XCDR (list))
2126 args[i] = XCAR (list);
2127 return Fvconcat (nargs, args);
2131 /* The structure for elements being sorted by qsort. */
2132 struct font_sort_data
2134 unsigned score;
2135 int font_driver_preference;
2136 Lisp_Object entity;
2140 /* The comparison function for qsort. */
2142 static int
2143 font_compare (const void *d1, const void *d2)
2145 const struct font_sort_data *data1 = d1;
2146 const struct font_sort_data *data2 = d2;
2148 if (data1->score < data2->score)
2149 return -1;
2150 else if (data1->score > data2->score)
2151 return 1;
2152 return (data1->font_driver_preference - data2->font_driver_preference);
2156 /* Sort each font-entity vector in LIST by closeness to font-spec PREFER.
2157 If PREFER specifies a point-size, calculate the corresponding
2158 pixel-size from QCdpi property of PREFER or from the Y-resolution
2159 of FRAME before sorting.
2161 If BEST-ONLY is nonzero, return the best matching entity (that
2162 supports the character BEST-ONLY if BEST-ONLY is positive, or any
2163 if BEST-ONLY is negative). Otherwise, return the sorted result as
2164 a single vector of font-entities.
2166 This function does no optimization for the case that the total
2167 number of elements is 1. The caller should avoid calling this in
2168 such a case. */
2170 static Lisp_Object
2171 font_sort_entities (Lisp_Object list, Lisp_Object prefer, Lisp_Object frame, int best_only)
2173 Lisp_Object prefer_prop[FONT_SPEC_MAX];
2174 int len, maxlen, i;
2175 struct font_sort_data *data;
2176 unsigned best_score;
2177 Lisp_Object best_entity;
2178 struct frame *f = XFRAME (frame);
2179 Lisp_Object tail, vec;
2180 USE_SAFE_ALLOCA;
2182 for (i = FONT_WEIGHT_INDEX; i <= FONT_AVGWIDTH_INDEX; i++)
2183 prefer_prop[i] = AREF (prefer, i);
2184 if (FLOATP (prefer_prop[FONT_SIZE_INDEX]))
2185 prefer_prop[FONT_SIZE_INDEX]
2186 = make_number (font_pixel_size (XFRAME (frame), prefer));
2188 if (NILP (XCDR (list)))
2190 /* What we have to take care of is this single vector. */
2191 vec = XCAR (list);
2192 maxlen = ASIZE (vec);
2194 else if (best_only)
2196 /* We don't have to perform sort, so there's no need of creating
2197 a single vector. But, we must find the length of the longest
2198 vector. */
2199 maxlen = 0;
2200 for (tail = list; CONSP (tail); tail = XCDR (tail))
2201 if (maxlen < ASIZE (XCAR (tail)))
2202 maxlen = ASIZE (XCAR (tail));
2204 else
2206 /* We have to create a single vector to sort it. */
2207 vec = font_vconcat_entity_vectors (list);
2208 maxlen = ASIZE (vec);
2211 SAFE_ALLOCA (data, struct font_sort_data *, (sizeof *data) * maxlen);
2212 best_score = 0xFFFFFFFF;
2213 best_entity = Qnil;
2215 for (tail = list; CONSP (tail); tail = XCDR (tail))
2217 int font_driver_preference = 0;
2218 Lisp_Object current_font_driver;
2220 if (best_only)
2221 vec = XCAR (tail);
2222 len = ASIZE (vec);
2224 /* We are sure that the length of VEC > 0. */
2225 current_font_driver = AREF (AREF (vec, 0), FONT_TYPE_INDEX);
2226 /* Score the elements. */
2227 for (i = 0; i < len; i++)
2229 data[i].entity = AREF (vec, i);
2230 data[i].score
2231 = ((best_only <= 0 || font_has_char (f, data[i].entity, best_only)
2232 > 0)
2233 ? font_score (data[i].entity, prefer_prop)
2234 : 0xFFFFFFFF);
2235 if (best_only && best_score > data[i].score)
2237 best_score = data[i].score;
2238 best_entity = data[i].entity;
2239 if (best_score == 0)
2240 break;
2242 if (! EQ (current_font_driver, AREF (AREF (vec, i), FONT_TYPE_INDEX)))
2244 current_font_driver = AREF (AREF (vec, i), FONT_TYPE_INDEX);
2245 font_driver_preference++;
2247 data[i].font_driver_preference = font_driver_preference;
2250 /* Sort if necessary. */
2251 if (! best_only)
2253 qsort (data, len, sizeof *data, font_compare);
2254 for (i = 0; i < len; i++)
2255 ASET (vec, i, data[i].entity);
2256 break;
2258 else
2259 vec = best_entity;
2262 SAFE_FREE ();
2264 FONT_ADD_LOG ("sort-by", prefer, vec);
2265 return vec;
2269 /* API of Font Service Layer. */
2271 /* Reflect ORDER (see the variable font_sort_order in xfaces.c) to
2272 sort_shift_bits. Finternal_set_font_selection_order calls this
2273 function with font_sort_order after setting up it. */
2275 void
2276 font_update_sort_order (int *order)
2278 int i, shift_bits;
2280 for (i = 0, shift_bits = 23; i < 4; i++, shift_bits -= 7)
2282 int xlfd_idx = order[i];
2284 if (xlfd_idx == XLFD_WEIGHT_INDEX)
2285 sort_shift_bits[FONT_WEIGHT_INDEX] = shift_bits;
2286 else if (xlfd_idx == XLFD_SLANT_INDEX)
2287 sort_shift_bits[FONT_SLANT_INDEX] = shift_bits;
2288 else if (xlfd_idx == XLFD_SWIDTH_INDEX)
2289 sort_shift_bits[FONT_WIDTH_INDEX] = shift_bits;
2290 else
2291 sort_shift_bits[FONT_SIZE_INDEX] = shift_bits;
2295 static int
2296 font_check_otf_features (Lisp_Object script, Lisp_Object langsys, Lisp_Object features, Lisp_Object table)
2298 Lisp_Object val;
2299 int negative;
2301 table = assq_no_quit (script, table);
2302 if (NILP (table))
2303 return 0;
2304 table = XCDR (table);
2305 if (! NILP (langsys))
2307 table = assq_no_quit (langsys, table);
2308 if (NILP (table))
2309 return 0;
2311 else
2313 val = assq_no_quit (Qnil, table);
2314 if (NILP (val))
2315 table = XCAR (table);
2316 else
2317 table = val;
2319 table = XCDR (table);
2320 for (negative = 0; CONSP (features); features = XCDR (features))
2322 if (NILP (XCAR (features)))
2324 negative = 1;
2325 continue;
2327 if (NILP (Fmemq (XCAR (features), table)) != negative)
2328 return 0;
2330 return 1;
2333 /* Check if OTF_CAPABILITY satisfies SPEC (otf-spec). */
2335 static int
2336 font_check_otf (Lisp_Object spec, Lisp_Object otf_capability)
2338 Lisp_Object script, langsys = Qnil, gsub = Qnil, gpos = Qnil;
2340 script = XCAR (spec);
2341 spec = XCDR (spec);
2342 if (! NILP (spec))
2344 langsys = XCAR (spec);
2345 spec = XCDR (spec);
2346 if (! NILP (spec))
2348 gsub = XCAR (spec);
2349 spec = XCDR (spec);
2350 if (! NILP (spec))
2351 gpos = XCAR (spec);
2355 if (! NILP (gsub) && ! font_check_otf_features (script, langsys, gsub,
2356 XCAR (otf_capability)))
2357 return 0;
2358 if (! NILP (gpos) && ! font_check_otf_features (script, langsys, gpos,
2359 XCDR (otf_capability)))
2360 return 0;
2361 return 1;
2366 /* Check if FONT (font-entity or font-object) matches with the font
2367 specification SPEC. */
2370 font_match_p (Lisp_Object spec, Lisp_Object font)
2372 Lisp_Object prop[FONT_SPEC_MAX], *props;
2373 Lisp_Object extra, font_extra;
2374 int i;
2376 for (i = FONT_FOUNDRY_INDEX; i <= FONT_REGISTRY_INDEX; i++)
2377 if (! NILP (AREF (spec, i))
2378 && ! NILP (AREF (font, i))
2379 && ! EQ (AREF (spec, i), AREF (font, i)))
2380 return 0;
2381 props = XFONT_SPEC (spec)->props;
2382 if (FLOATP (props[FONT_SIZE_INDEX]))
2384 for (i = FONT_FOUNDRY_INDEX; i < FONT_SIZE_INDEX; i++)
2385 prop[i] = AREF (spec, i);
2386 prop[FONT_SIZE_INDEX]
2387 = make_number (font_pixel_size (XFRAME (selected_frame), spec));
2388 props = prop;
2391 if (font_score (font, props) > 0)
2392 return 0;
2393 extra = AREF (spec, FONT_EXTRA_INDEX);
2394 font_extra = AREF (font, FONT_EXTRA_INDEX);
2395 for (; CONSP (extra); extra = XCDR (extra))
2397 Lisp_Object key = XCAR (XCAR (extra));
2398 Lisp_Object val = XCDR (XCAR (extra)), val2;
2400 if (EQ (key, QClang))
2402 val2 = assq_no_quit (key, font_extra);
2403 if (NILP (val2))
2404 return 0;
2405 val2 = XCDR (val2);
2406 if (CONSP (val))
2408 if (! CONSP (val2))
2409 return 0;
2410 while (CONSP (val))
2411 if (NILP (Fmemq (val, val2)))
2412 return 0;
2414 else
2415 if (CONSP (val2)
2416 ? NILP (Fmemq (val, XCDR (val2)))
2417 : ! EQ (val, val2))
2418 return 0;
2420 else if (EQ (key, QCscript))
2422 val2 = assq_no_quit (val, Vscript_representative_chars);
2423 if (CONSP (val2))
2425 val2 = XCDR (val2);
2426 if (CONSP (val2))
2428 /* All characters in the list must be supported. */
2429 for (; CONSP (val2); val2 = XCDR (val2))
2431 if (! NATNUMP (XCAR (val2)))
2432 continue;
2433 if (font_encode_char (font, XFASTINT (XCAR (val2)))
2434 == FONT_INVALID_CODE)
2435 return 0;
2438 else if (VECTORP (val2))
2440 /* At most one character in the vector must be supported. */
2441 for (i = 0; i < ASIZE (val2); i++)
2443 if (! NATNUMP (AREF (val2, i)))
2444 continue;
2445 if (font_encode_char (font, XFASTINT (AREF (val2, i)))
2446 != FONT_INVALID_CODE)
2447 break;
2449 if (i == ASIZE (val2))
2450 return 0;
2454 else if (EQ (key, QCotf))
2456 struct font *fontp;
2458 if (! FONT_OBJECT_P (font))
2459 return 0;
2460 fontp = XFONT_OBJECT (font);
2461 if (! fontp->driver->otf_capability)
2462 return 0;
2463 val2 = fontp->driver->otf_capability (fontp);
2464 if (NILP (val2) || ! font_check_otf (val, val2))
2465 return 0;
2469 return 1;
2473 /* Font cache
2475 Each font backend has the callback function get_cache, and it
2476 returns a cons cell of which cdr part can be freely used for
2477 caching fonts. The cons cell may be shared by multiple frames
2478 and/or multiple font drivers. So, we arrange the cdr part as this:
2480 ((DRIVER-TYPE NUM-FRAMES FONT-CACHE-DATA ...) ...)
2482 where DRIVER-TYPE is a symbol such as `x', `xft', etc., NUM-FRAMES
2483 is a number frames sharing this cache, and FONT-CACHE-DATA is a
2484 cons (FONT-SPEC FONT-ENTITY ...). */
2486 static void font_prepare_cache (FRAME_PTR, struct font_driver *);
2487 static void font_finish_cache (FRAME_PTR, struct font_driver *);
2488 static Lisp_Object font_get_cache (FRAME_PTR, struct font_driver *);
2489 static void font_clear_cache (FRAME_PTR, Lisp_Object,
2490 struct font_driver *);
2492 static void
2493 font_prepare_cache (FRAME_PTR f, struct font_driver *driver)
2495 Lisp_Object cache, val;
2497 cache = driver->get_cache (f);
2498 val = XCDR (cache);
2499 while (CONSP (val) && ! EQ (XCAR (XCAR (val)), driver->type))
2500 val = XCDR (val);
2501 if (NILP (val))
2503 val = Fcons (driver->type, Fcons (make_number (1), Qnil));
2504 XSETCDR (cache, Fcons (val, XCDR (cache)));
2506 else
2508 val = XCDR (XCAR (val));
2509 XSETCAR (val, make_number (XINT (XCAR (val)) + 1));
2514 static void
2515 font_finish_cache (FRAME_PTR f, struct font_driver *driver)
2517 Lisp_Object cache, val, tmp;
2520 cache = driver->get_cache (f);
2521 val = XCDR (cache);
2522 while (CONSP (val) && ! EQ (XCAR (XCAR (val)), driver->type))
2523 cache = val, val = XCDR (val);
2524 font_assert (! NILP (val));
2525 tmp = XCDR (XCAR (val));
2526 XSETCAR (tmp, make_number (XINT (XCAR (tmp)) - 1));
2527 if (XINT (XCAR (tmp)) == 0)
2529 font_clear_cache (f, XCAR (val), driver);
2530 XSETCDR (cache, XCDR (val));
2535 static Lisp_Object
2536 font_get_cache (FRAME_PTR f, struct font_driver *driver)
2538 Lisp_Object val = driver->get_cache (f);
2539 Lisp_Object type = driver->type;
2541 font_assert (CONSP (val));
2542 for (val = XCDR (val); ! EQ (XCAR (XCAR (val)), type); val = XCDR (val));
2543 font_assert (CONSP (val));
2544 /* VAL = ((DRIVER-TYPE NUM-FRAMES FONT-CACHE-DATA ...) ...) */
2545 val = XCDR (XCAR (val));
2546 return val;
2549 static int num_fonts;
2551 static void
2552 font_clear_cache (FRAME_PTR f, Lisp_Object cache, struct font_driver *driver)
2554 Lisp_Object tail, elt;
2555 Lisp_Object tail2, entity;
2557 /* CACHE = (DRIVER-TYPE NUM-FRAMES FONT-CACHE-DATA ...) */
2558 for (tail = XCDR (XCDR (cache)); CONSP (tail); tail = XCDR (tail))
2560 elt = XCAR (tail);
2561 /* elt should have the form (FONT-SPEC FONT-ENTITY ...) */
2562 if (CONSP (elt) && FONT_SPEC_P (XCAR (elt)))
2564 for (tail2 = XCDR (elt); CONSP (tail2); tail2 = XCDR (tail2))
2566 entity = XCAR (tail2);
2568 if (FONT_ENTITY_P (entity)
2569 && EQ (driver->type, AREF (entity, FONT_TYPE_INDEX)))
2571 Lisp_Object objlist = AREF (entity, FONT_OBJLIST_INDEX);
2573 for (; CONSP (objlist); objlist = XCDR (objlist))
2575 Lisp_Object val = XCAR (objlist);
2576 struct font *font = XFONT_OBJECT (val);
2578 if (! NILP (AREF (val, FONT_TYPE_INDEX)))
2580 font_assert (font && driver == font->driver);
2581 driver->close (f, font);
2582 num_fonts--;
2585 if (driver->free_entity)
2586 driver->free_entity (entity);
2591 XSETCDR (cache, Qnil);
2595 static Lisp_Object scratch_font_spec, scratch_font_prefer;
2597 /* Check each font-entity in VEC, and return a list of font-entities
2598 that satisfy this condition:
2599 (1) matches with SPEC and SIZE if SPEC is not nil, and
2600 (2) doesn't match with any regexps in Vface_ignored_fonts (if non-nil).
2603 Lisp_Object
2604 font_delete_unmatched (Lisp_Object vec, Lisp_Object spec, int size)
2606 Lisp_Object entity, val;
2607 enum font_property_index prop;
2608 int i;
2610 for (val = Qnil, i = ASIZE (vec) - 1; i >= 0; i--)
2612 entity = AREF (vec, i);
2613 if (! NILP (Vface_ignored_fonts))
2615 char name[256];
2616 Lisp_Object tail, regexp;
2618 if (font_unparse_xlfd (entity, 0, name, 256) >= 0)
2620 for (tail = Vface_ignored_fonts; CONSP (tail); tail = XCDR (tail))
2622 regexp = XCAR (tail);
2623 if (STRINGP (regexp)
2624 && fast_c_string_match_ignore_case (regexp, name) >= 0)
2625 break;
2627 if (CONSP (tail))
2628 continue;
2631 if (NILP (spec))
2633 val = Fcons (entity, val);
2634 continue;
2636 for (prop = FONT_WEIGHT_INDEX; prop < FONT_SIZE_INDEX; prop++)
2637 if (INTEGERP (AREF (spec, prop))
2638 && ((XINT (AREF (spec, prop)) >> 8)
2639 != (XINT (AREF (entity, prop)) >> 8)))
2640 prop = FONT_SPEC_MAX;
2641 if (prop < FONT_SPEC_MAX
2642 && size
2643 && XINT (AREF (entity, FONT_SIZE_INDEX)) > 0)
2645 int diff = XINT (AREF (entity, FONT_SIZE_INDEX)) - size;
2647 if (diff != 0
2648 && (diff < 0 ? -diff > FONT_PIXEL_SIZE_QUANTUM
2649 : diff > FONT_PIXEL_SIZE_QUANTUM))
2650 prop = FONT_SPEC_MAX;
2652 if (prop < FONT_SPEC_MAX
2653 && INTEGERP (AREF (spec, FONT_DPI_INDEX))
2654 && INTEGERP (AREF (entity, FONT_DPI_INDEX))
2655 && XINT (AREF (entity, FONT_DPI_INDEX)) != 0
2656 && ! EQ (AREF (spec, FONT_DPI_INDEX), AREF (entity, FONT_DPI_INDEX)))
2657 prop = FONT_SPEC_MAX;
2658 if (prop < FONT_SPEC_MAX
2659 && INTEGERP (AREF (spec, FONT_AVGWIDTH_INDEX))
2660 && INTEGERP (AREF (entity, FONT_AVGWIDTH_INDEX))
2661 && XINT (AREF (entity, FONT_AVGWIDTH_INDEX)) != 0
2662 && ! EQ (AREF (spec, FONT_AVGWIDTH_INDEX),
2663 AREF (entity, FONT_AVGWIDTH_INDEX)))
2664 prop = FONT_SPEC_MAX;
2665 if (prop < FONT_SPEC_MAX)
2666 val = Fcons (entity, val);
2668 return (Fvconcat (1, &val));
2672 /* Return a list of vectors of font-entities matching with SPEC on
2673 FRAME. Each elements in the list is a vector of entities from the
2674 same font-driver. */
2676 Lisp_Object
2677 font_list_entities (Lisp_Object frame, Lisp_Object spec)
2679 FRAME_PTR f = XFRAME (frame);
2680 struct font_driver_list *driver_list = f->font_driver_list;
2681 Lisp_Object ftype, val;
2682 Lisp_Object list = Qnil;
2683 int size;
2684 int need_filtering = 0;
2685 int i;
2687 font_assert (FONT_SPEC_P (spec));
2689 if (INTEGERP (AREF (spec, FONT_SIZE_INDEX)))
2690 size = XINT (AREF (spec, FONT_SIZE_INDEX));
2691 else if (FLOATP (AREF (spec, FONT_SIZE_INDEX)))
2692 size = font_pixel_size (f, spec);
2693 else
2694 size = 0;
2696 ftype = AREF (spec, FONT_TYPE_INDEX);
2697 for (i = FONT_FOUNDRY_INDEX; i <= FONT_REGISTRY_INDEX; i++)
2698 ASET (scratch_font_spec, i, AREF (spec, i));
2699 for (i = FONT_WEIGHT_INDEX; i < FONT_EXTRA_INDEX; i++)
2701 ASET (scratch_font_spec, i, Qnil);
2702 if (! NILP (AREF (spec, i)))
2703 need_filtering = 1;
2704 if (i == FONT_DPI_INDEX)
2705 /* Skip FONT_SPACING_INDEX */
2706 i++;
2708 ASET (scratch_font_spec, FONT_SPACING_INDEX, AREF (spec, FONT_SPACING_INDEX));
2709 ASET (scratch_font_spec, FONT_EXTRA_INDEX, AREF (spec, FONT_EXTRA_INDEX));
2711 for (i = 0; driver_list; driver_list = driver_list->next)
2712 if (driver_list->on
2713 && (NILP (ftype) || EQ (driver_list->driver->type, ftype)))
2715 Lisp_Object cache = font_get_cache (f, driver_list->driver);
2717 ASET (scratch_font_spec, FONT_TYPE_INDEX, driver_list->driver->type);
2718 val = assoc_no_quit (scratch_font_spec, XCDR (cache));
2719 if (CONSP (val))
2720 val = XCDR (val);
2721 else
2723 Lisp_Object copy;
2725 val = driver_list->driver->list (frame, scratch_font_spec);
2726 if (NILP (val))
2727 val = null_vector;
2728 else
2729 val = Fvconcat (1, &val);
2730 copy = Fcopy_font_spec (scratch_font_spec);
2731 ASET (copy, FONT_TYPE_INDEX, driver_list->driver->type);
2732 XSETCDR (cache, Fcons (Fcons (copy, val), XCDR (cache)));
2734 if (ASIZE (val) > 0
2735 && (need_filtering
2736 || ! NILP (Vface_ignored_fonts)))
2737 val = font_delete_unmatched (val, need_filtering ? spec : Qnil, size);
2738 if (ASIZE (val) > 0)
2739 list = Fcons (val, list);
2742 list = Fnreverse (list);
2743 FONT_ADD_LOG ("list", spec, list);
2744 return list;
2748 /* Return a font entity matching with SPEC on FRAME. ATTRS, if non
2749 nil, is an array of face's attributes, which specifies preferred
2750 font-related attributes. */
2752 static Lisp_Object
2753 font_matching_entity (FRAME_PTR f, Lisp_Object *attrs, Lisp_Object spec)
2755 struct font_driver_list *driver_list = f->font_driver_list;
2756 Lisp_Object ftype, size, entity;
2757 Lisp_Object frame;
2758 Lisp_Object work = Fcopy_font_spec (spec);
2760 XSETFRAME (frame, f);
2761 ftype = AREF (spec, FONT_TYPE_INDEX);
2762 size = AREF (spec, FONT_SIZE_INDEX);
2764 if (FLOATP (size))
2765 ASET (work, FONT_SIZE_INDEX, make_number (font_pixel_size (f, spec)));
2766 FONT_SET_STYLE (work, FONT_WEIGHT_INDEX, attrs[LFACE_WEIGHT_INDEX]);
2767 FONT_SET_STYLE (work, FONT_SLANT_INDEX, attrs[LFACE_SLANT_INDEX]);
2768 FONT_SET_STYLE (work, FONT_WIDTH_INDEX, attrs[LFACE_SWIDTH_INDEX]);
2770 entity = Qnil;
2771 for (; driver_list; driver_list = driver_list->next)
2772 if (driver_list->on
2773 && (NILP (ftype) || EQ (driver_list->driver->type, ftype)))
2775 Lisp_Object cache = font_get_cache (f, driver_list->driver);
2776 Lisp_Object copy;
2778 ASET (work, FONT_TYPE_INDEX, driver_list->driver->type);
2779 entity = assoc_no_quit (work, XCDR (cache));
2780 if (CONSP (entity))
2781 entity = XCDR (entity);
2782 else
2784 entity = driver_list->driver->match (frame, work);
2785 copy = Fcopy_font_spec (work);
2786 ASET (copy, FONT_TYPE_INDEX, driver_list->driver->type);
2787 XSETCDR (cache, Fcons (Fcons (copy, entity), XCDR (cache)));
2789 if (! NILP (entity))
2790 break;
2792 FONT_ADD_LOG ("match", work, entity);
2793 return entity;
2797 /* Open a font of ENTITY and PIXEL_SIZE on frame F, and return the
2798 opened font object. */
2800 static Lisp_Object
2801 font_open_entity (FRAME_PTR f, Lisp_Object entity, int pixel_size)
2803 struct font_driver_list *driver_list;
2804 Lisp_Object objlist, size, val, font_object;
2805 struct font *font;
2806 int min_width, height;
2807 int scaled_pixel_size;
2809 font_assert (FONT_ENTITY_P (entity));
2810 size = AREF (entity, FONT_SIZE_INDEX);
2811 if (XINT (size) != 0)
2812 scaled_pixel_size = pixel_size = XINT (size);
2813 else if (CONSP (Vface_font_rescale_alist))
2814 scaled_pixel_size = pixel_size * font_rescale_ratio (entity);
2816 val = AREF (entity, FONT_TYPE_INDEX);
2817 for (driver_list = f->font_driver_list;
2818 driver_list && ! EQ (driver_list->driver->type, val);
2819 driver_list = driver_list->next);
2820 if (! driver_list)
2821 return Qnil;
2823 for (objlist = AREF (entity, FONT_OBJLIST_INDEX); CONSP (objlist);
2824 objlist = XCDR (objlist))
2826 Lisp_Object fn = XCAR (objlist);
2827 if (! NILP (AREF (fn, FONT_TYPE_INDEX))
2828 && XFONT_OBJECT (fn)->pixel_size == pixel_size)
2830 if (driver_list->driver->cached_font_ok == NULL
2831 || driver_list->driver->cached_font_ok (f, fn, entity))
2832 return fn;
2836 font_object = driver_list->driver->open (f, entity, scaled_pixel_size);
2837 if (!NILP (font_object))
2838 ASET (font_object, FONT_SIZE_INDEX, make_number (pixel_size));
2839 FONT_ADD_LOG ("open", entity, font_object);
2840 if (NILP (font_object))
2841 return Qnil;
2842 ASET (entity, FONT_OBJLIST_INDEX,
2843 Fcons (font_object, AREF (entity, FONT_OBJLIST_INDEX)));
2844 num_fonts++;
2846 font = XFONT_OBJECT (font_object);
2847 min_width = (font->min_width ? font->min_width
2848 : font->average_width ? font->average_width
2849 : font->space_width ? font->space_width
2850 : 1);
2851 height = (font->height ? font->height : 1);
2852 #ifdef HAVE_WINDOW_SYSTEM
2853 FRAME_X_DISPLAY_INFO (f)->n_fonts++;
2854 if (FRAME_X_DISPLAY_INFO (f)->n_fonts == 1)
2856 FRAME_SMALLEST_CHAR_WIDTH (f) = min_width;
2857 FRAME_SMALLEST_FONT_HEIGHT (f) = height;
2858 fonts_changed_p = 1;
2860 else
2862 if (FRAME_SMALLEST_CHAR_WIDTH (f) > min_width)
2863 FRAME_SMALLEST_CHAR_WIDTH (f) = min_width, fonts_changed_p = 1;
2864 if (FRAME_SMALLEST_FONT_HEIGHT (f) > height)
2865 FRAME_SMALLEST_FONT_HEIGHT (f) = height, fonts_changed_p = 1;
2867 #endif
2869 return font_object;
2873 /* Close FONT_OBJECT that is opened on frame F. */
2875 void
2876 font_close_object (FRAME_PTR f, Lisp_Object font_object)
2878 struct font *font = XFONT_OBJECT (font_object);
2880 if (NILP (AREF (font_object, FONT_TYPE_INDEX)))
2881 /* Already closed. */
2882 return;
2883 FONT_ADD_LOG ("close", font_object, Qnil);
2884 font->driver->close (f, font);
2885 #ifdef HAVE_WINDOW_SYSTEM
2886 font_assert (FRAME_X_DISPLAY_INFO (f)->n_fonts);
2887 FRAME_X_DISPLAY_INFO (f)->n_fonts--;
2888 #endif
2889 num_fonts--;
2893 /* Return 1 if FONT on F has a glyph for character C, 0 if not, -1 if
2894 FONT is a font-entity and it must be opened to check. */
2897 font_has_char (FRAME_PTR f, Lisp_Object font, int c)
2899 struct font *fontp;
2901 if (FONT_ENTITY_P (font))
2903 Lisp_Object type = AREF (font, FONT_TYPE_INDEX);
2904 struct font_driver_list *driver_list;
2906 for (driver_list = f->font_driver_list;
2907 driver_list && ! EQ (driver_list->driver->type, type);
2908 driver_list = driver_list->next);
2909 if (! driver_list)
2910 return 0;
2911 if (! driver_list->driver->has_char)
2912 return -1;
2913 return driver_list->driver->has_char (font, c);
2916 font_assert (FONT_OBJECT_P (font));
2917 fontp = XFONT_OBJECT (font);
2918 if (fontp->driver->has_char)
2920 int result = fontp->driver->has_char (font, c);
2922 if (result >= 0)
2923 return result;
2925 return (fontp->driver->encode_char (fontp, c) != FONT_INVALID_CODE);
2929 /* Return the glyph ID of FONT_OBJECT for character C. */
2931 static unsigned
2932 font_encode_char (Lisp_Object font_object, int c)
2934 struct font *font;
2936 font_assert (FONT_OBJECT_P (font_object));
2937 font = XFONT_OBJECT (font_object);
2938 return font->driver->encode_char (font, c);
2942 /* Return the name of FONT_OBJECT. */
2944 Lisp_Object
2945 font_get_name (Lisp_Object font_object)
2947 font_assert (FONT_OBJECT_P (font_object));
2948 return AREF (font_object, FONT_NAME_INDEX);
2952 /* Return the specification of FONT_OBJECT. */
2954 Lisp_Object
2955 font_get_spec (Lisp_Object font_object)
2957 Lisp_Object spec = font_make_spec ();
2958 int i;
2960 for (i = 0; i < FONT_SIZE_INDEX; i++)
2961 ASET (spec, i, AREF (font_object, i));
2962 ASET (spec, FONT_SIZE_INDEX,
2963 make_number (XFONT_OBJECT (font_object)->pixel_size));
2964 return spec;
2968 /* Create a new font spec from FONT_NAME, and return it. If FONT_NAME
2969 could not be parsed by font_parse_name, return Qnil. */
2971 Lisp_Object
2972 font_spec_from_name (Lisp_Object font_name)
2974 Lisp_Object spec = Ffont_spec (0, NULL);
2976 CHECK_STRING (font_name);
2977 if (font_parse_name (SSDATA (font_name), spec) == -1)
2978 return Qnil;
2979 font_put_extra (spec, QCname, font_name);
2980 font_put_extra (spec, QCuser_spec, font_name);
2981 return spec;
2985 void
2986 font_clear_prop (Lisp_Object *attrs, enum font_property_index prop)
2988 Lisp_Object font = attrs[LFACE_FONT_INDEX];
2990 if (! FONTP (font))
2991 return;
2993 if (! NILP (Ffont_get (font, QCname)))
2995 font = Fcopy_font_spec (font);
2996 font_put_extra (font, QCname, Qnil);
2999 if (NILP (AREF (font, prop))
3000 && prop != FONT_FAMILY_INDEX
3001 && prop != FONT_FOUNDRY_INDEX
3002 && prop != FONT_WIDTH_INDEX
3003 && prop != FONT_SIZE_INDEX)
3004 return;
3005 if (EQ (font, attrs[LFACE_FONT_INDEX]))
3006 font = Fcopy_font_spec (font);
3007 ASET (font, prop, Qnil);
3008 if (prop == FONT_FAMILY_INDEX || prop == FONT_FOUNDRY_INDEX)
3010 if (prop == FONT_FAMILY_INDEX)
3012 ASET (font, FONT_FOUNDRY_INDEX, Qnil);
3013 /* If we are setting the font family, we must also clear
3014 FONT_WIDTH_INDEX to avoid rejecting families that lack
3015 support for some widths. */
3016 ASET (font, FONT_WIDTH_INDEX, Qnil);
3018 ASET (font, FONT_ADSTYLE_INDEX, Qnil);
3019 ASET (font, FONT_REGISTRY_INDEX, Qnil);
3020 ASET (font, FONT_SIZE_INDEX, Qnil);
3021 ASET (font, FONT_DPI_INDEX, Qnil);
3022 ASET (font, FONT_SPACING_INDEX, Qnil);
3023 ASET (font, FONT_AVGWIDTH_INDEX, Qnil);
3025 else if (prop == FONT_SIZE_INDEX)
3027 ASET (font, FONT_DPI_INDEX, Qnil);
3028 ASET (font, FONT_SPACING_INDEX, Qnil);
3029 ASET (font, FONT_AVGWIDTH_INDEX, Qnil);
3031 else if (prop == FONT_WIDTH_INDEX)
3032 ASET (font, FONT_AVGWIDTH_INDEX, Qnil);
3033 attrs[LFACE_FONT_INDEX] = font;
3036 /* Selecte a font from ENTITIES (list of font-entity vectors) that
3037 supports C and matches best with ATTRS and PIXEL_SIZE. */
3039 static Lisp_Object
3040 font_select_entity (Lisp_Object frame, Lisp_Object entities, Lisp_Object *attrs, int pixel_size, int c)
3042 Lisp_Object font_entity;
3043 Lisp_Object prefer;
3044 int result, i;
3045 FRAME_PTR f = XFRAME (frame);
3047 if (NILP (XCDR (entities))
3048 && ASIZE (XCAR (entities)) == 1)
3050 font_entity = AREF (XCAR (entities), 0);
3051 if (c < 0
3052 || (result = font_has_char (f, font_entity, c)) > 0)
3053 return font_entity;
3054 return Qnil;
3057 /* Sort fonts by properties specified in ATTRS. */
3058 prefer = scratch_font_prefer;
3060 for (i = FONT_WEIGHT_INDEX; i <= FONT_SIZE_INDEX; i++)
3061 ASET (prefer, i, Qnil);
3062 if (FONTP (attrs[LFACE_FONT_INDEX]))
3064 Lisp_Object face_font = attrs[LFACE_FONT_INDEX];
3066 for (i = FONT_WEIGHT_INDEX; i <= FONT_SIZE_INDEX; i++)
3067 ASET (prefer, i, AREF (face_font, i));
3069 if (NILP (AREF (prefer, FONT_WEIGHT_INDEX)))
3070 FONT_SET_STYLE (prefer, FONT_WEIGHT_INDEX, attrs[LFACE_WEIGHT_INDEX]);
3071 if (NILP (AREF (prefer, FONT_SLANT_INDEX)))
3072 FONT_SET_STYLE (prefer, FONT_SLANT_INDEX, attrs[LFACE_SLANT_INDEX]);
3073 if (NILP (AREF (prefer, FONT_WIDTH_INDEX)))
3074 FONT_SET_STYLE (prefer, FONT_WIDTH_INDEX, attrs[LFACE_SWIDTH_INDEX]);
3075 ASET (prefer, FONT_SIZE_INDEX, make_number (pixel_size));
3077 return font_sort_entities (entities, prefer, frame, c);
3080 /* Return a font-entity satisfying SPEC and best matching with face's
3081 font related attributes in ATTRS. C, if not negative, is a
3082 character that the entity must support. */
3084 Lisp_Object
3085 font_find_for_lface (FRAME_PTR f, Lisp_Object *attrs, Lisp_Object spec, int c)
3087 Lisp_Object work;
3088 Lisp_Object frame, entities, val;
3089 Lisp_Object size, foundry[3], *family, registry[3], adstyle[3];
3090 int pixel_size;
3091 int i, j, k, l;
3093 registry[0] = AREF (spec, FONT_REGISTRY_INDEX);
3094 if (NILP (registry[0]))
3096 registry[0] = DEFAULT_ENCODING;
3097 registry[1] = Qascii_0;
3098 registry[2] = null_vector;
3100 else
3101 registry[1] = null_vector;
3103 if (c >= 0 && ! NILP (AREF (spec, FONT_REGISTRY_INDEX)))
3105 struct charset *encoding, *repertory;
3107 if (font_registry_charsets (AREF (spec, FONT_REGISTRY_INDEX),
3108 &encoding, &repertory) < 0)
3109 return Qnil;
3110 if (repertory
3111 && ENCODE_CHAR (repertory, c) == CHARSET_INVALID_CODE (repertory))
3112 return Qnil;
3113 else if (c > encoding->max_char)
3114 return Qnil;
3117 work = Fcopy_font_spec (spec);
3118 ASET (work, FONT_TYPE_INDEX, AREF (spec, FONT_TYPE_INDEX));
3119 XSETFRAME (frame, f);
3120 size = AREF (spec, FONT_SIZE_INDEX);
3121 pixel_size = font_pixel_size (f, spec);
3122 if (pixel_size == 0)
3124 double pt = XINT (attrs[LFACE_HEIGHT_INDEX]);
3126 pixel_size = POINT_TO_PIXEL (pt / 10, f->resy);
3128 ASET (work, FONT_SIZE_INDEX, Qnil);
3129 foundry[0] = AREF (work, FONT_FOUNDRY_INDEX);
3130 if (! NILP (foundry[0]))
3131 foundry[1] = null_vector;
3132 else if (STRINGP (attrs[LFACE_FOUNDRY_INDEX]))
3134 val = attrs[LFACE_FOUNDRY_INDEX];
3135 foundry[0] = font_intern_prop (SSDATA (val), SBYTES (val), 1);
3136 foundry[1] = Qnil;
3137 foundry[2] = null_vector;
3139 else
3140 foundry[0] = Qnil, foundry[1] = null_vector;
3142 adstyle[0] = AREF (work, FONT_ADSTYLE_INDEX);
3143 if (! NILP (adstyle[0]))
3144 adstyle[1] = null_vector;
3145 else if (FONTP (attrs[LFACE_FONT_INDEX]))
3147 Lisp_Object face_font = attrs[LFACE_FONT_INDEX];
3149 if (! NILP (AREF (face_font, FONT_ADSTYLE_INDEX)))
3151 adstyle[0] = AREF (face_font, FONT_ADSTYLE_INDEX);
3152 adstyle[1] = Qnil;
3153 adstyle[2] = null_vector;
3155 else
3156 adstyle[0] = Qnil, adstyle[1] = null_vector;
3158 else
3159 adstyle[0] = Qnil, adstyle[1] = null_vector;
3162 val = AREF (work, FONT_FAMILY_INDEX);
3163 if (NILP (val) && STRINGP (attrs[LFACE_FAMILY_INDEX]))
3165 val = attrs[LFACE_FAMILY_INDEX];
3166 val = font_intern_prop (SSDATA (val), SBYTES (val), 1);
3168 if (NILP (val))
3170 family = alloca ((sizeof family[0]) * 2);
3171 family[0] = Qnil;
3172 family[1] = null_vector; /* terminator. */
3174 else
3176 Lisp_Object alters
3177 = Fassoc_string (val, Vface_alternative_font_family_alist,
3178 /* Font family names are case-sensitive under NS. */
3179 #ifndef HAVE_NS
3181 #else
3182 Qnil
3183 #endif
3186 if (! NILP (alters))
3188 family = alloca ((sizeof family[0]) * (XINT (Flength (alters)) + 2));
3189 for (i = 0; CONSP (alters); i++, alters = XCDR (alters))
3190 family[i] = XCAR (alters);
3191 if (NILP (AREF (spec, FONT_FAMILY_INDEX)))
3192 family[i++] = Qnil;
3193 family[i] = null_vector;
3195 else
3197 family = alloca ((sizeof family[0]) * 3);
3198 i = 0;
3199 family[i++] = val;
3200 if (NILP (AREF (spec, FONT_FAMILY_INDEX)))
3201 family[i++] = Qnil;
3202 family[i] = null_vector;
3206 for (i = 0; SYMBOLP (family[i]); i++)
3208 ASET (work, FONT_FAMILY_INDEX, family[i]);
3209 for (j = 0; SYMBOLP (foundry[j]); j++)
3211 ASET (work, FONT_FOUNDRY_INDEX, foundry[j]);
3212 for (k = 0; SYMBOLP (registry[k]); k++)
3214 ASET (work, FONT_REGISTRY_INDEX, registry[k]);
3215 for (l = 0; SYMBOLP (adstyle[l]); l++)
3217 ASET (work, FONT_ADSTYLE_INDEX, adstyle[l]);
3218 entities = font_list_entities (frame, work);
3219 if (! NILP (entities))
3221 val = font_select_entity (frame, entities,
3222 attrs, pixel_size, c);
3223 if (! NILP (val))
3224 return val;
3230 return Qnil;
3234 Lisp_Object
3235 font_open_for_lface (FRAME_PTR f, Lisp_Object entity, Lisp_Object *attrs, Lisp_Object spec)
3237 int size;
3239 if (INTEGERP (AREF (entity, FONT_SIZE_INDEX))
3240 && XINT (AREF (entity, FONT_SIZE_INDEX)) > 0)
3241 size = XINT (AREF (entity, FONT_SIZE_INDEX));
3242 else if (FONT_SPEC_P (spec) && ! NILP (AREF (spec, FONT_SIZE_INDEX)))
3243 size = font_pixel_size (f, spec);
3244 else
3246 double pt;
3247 if (INTEGERP (attrs[LFACE_HEIGHT_INDEX]))
3248 pt = XINT (attrs[LFACE_HEIGHT_INDEX]);
3249 else
3251 struct face *def = FACE_FROM_ID (f, DEFAULT_FACE_ID);
3252 Lisp_Object height = def->lface[LFACE_HEIGHT_INDEX];
3253 if (INTEGERP (height))
3254 pt = XINT (height);
3255 else
3256 abort(); /* We should never end up here. */
3259 pt /= 10;
3260 size = POINT_TO_PIXEL (pt, f->resy);
3261 #ifdef HAVE_NS
3262 if (size == 0)
3264 Lisp_Object ffsize = get_frame_param(f, Qfontsize);
3265 size = NUMBERP (ffsize) ? POINT_TO_PIXEL (XINT (ffsize), f->resy) : 0;
3267 #endif
3269 return font_open_entity (f, entity, size);
3273 /* Find a font satisfying SPEC and best matching with face's
3274 attributes in ATTRS on FRAME, and return the opened
3275 font-object. */
3277 Lisp_Object
3278 font_load_for_lface (FRAME_PTR f, Lisp_Object *attrs, Lisp_Object spec)
3280 Lisp_Object entity, name;
3282 entity = font_find_for_lface (f, attrs, spec, -1);
3283 if (NILP (entity))
3285 /* No font is listed for SPEC, but each font-backend may have
3286 the different criteria about "font matching". So, try
3287 it. */
3288 entity = font_matching_entity (f, attrs, spec);
3289 if (NILP (entity))
3290 return Qnil;
3292 /* Don't lose the original name that was put in initially. We need
3293 it to re-apply the font when font parameters (like hinting or dpi) have
3294 changed. */
3295 entity = font_open_for_lface (f, entity, attrs, spec);
3296 if (!NILP (entity))
3298 name = Ffont_get (spec, QCuser_spec);
3299 if (STRINGP (name)) font_put_extra (entity, QCuser_spec, name);
3301 return entity;
3305 /* Make FACE on frame F ready to use the font opened for FACE. */
3307 void
3308 font_prepare_for_face (FRAME_PTR f, struct face *face)
3310 if (face->font->driver->prepare_face)
3311 face->font->driver->prepare_face (f, face);
3315 /* Make FACE on frame F stop using the font opened for FACE. */
3317 void
3318 font_done_for_face (FRAME_PTR f, struct face *face)
3320 if (face->font->driver->done_face)
3321 face->font->driver->done_face (f, face);
3322 face->extra = NULL;
3326 /* Open a font matching with font-spec SPEC on frame F. If no proper
3327 font is found, return Qnil. */
3329 Lisp_Object
3330 font_open_by_spec (FRAME_PTR f, Lisp_Object spec)
3332 Lisp_Object attrs[LFACE_VECTOR_SIZE];
3334 /* We set up the default font-related attributes of a face to prefer
3335 a moderate font. */
3336 attrs[LFACE_FAMILY_INDEX] = attrs[LFACE_FOUNDRY_INDEX] = Qnil;
3337 attrs[LFACE_SWIDTH_INDEX] = attrs[LFACE_WEIGHT_INDEX]
3338 = attrs[LFACE_SLANT_INDEX] = Qnormal;
3339 #ifndef HAVE_NS
3340 attrs[LFACE_HEIGHT_INDEX] = make_number (120);
3341 #else
3342 attrs[LFACE_HEIGHT_INDEX] = make_number (0);
3343 #endif
3344 attrs[LFACE_FONT_INDEX] = Qnil;
3346 return font_load_for_lface (f, attrs, spec);
3350 /* Open a font matching with NAME on frame F. If no proper font is
3351 found, return Qnil. */
3353 Lisp_Object
3354 font_open_by_name (FRAME_PTR f, const char *name)
3356 Lisp_Object args[2];
3357 Lisp_Object spec, ret;
3359 args[0] = QCname;
3360 args[1] = make_unibyte_string (name, strlen (name));
3361 spec = Ffont_spec (2, args);
3362 ret = font_open_by_spec (f, spec);
3363 /* Do not lose name originally put in. */
3364 if (!NILP (ret))
3365 font_put_extra (ret, QCuser_spec, args[1]);
3367 return ret;
3371 /* Register font-driver DRIVER. This function is used in two ways.
3373 The first is with frame F non-NULL. In this case, make DRIVER
3374 available (but not yet activated) on F. All frame creaters
3375 (e.g. Fx_create_frame) must call this function at least once with
3376 an available font-driver.
3378 The second is with frame F NULL. In this case, DRIVER is globally
3379 registered in the variable `font_driver_list'. All font-driver
3380 implementations must call this function in its syms_of_XXXX
3381 (e.g. syms_of_xfont). */
3383 void
3384 register_font_driver (struct font_driver *driver, FRAME_PTR f)
3386 struct font_driver_list *root = f ? f->font_driver_list : font_driver_list;
3387 struct font_driver_list *prev, *list;
3389 if (f && ! driver->draw)
3390 error ("Unusable font driver for a frame: %s",
3391 SDATA (SYMBOL_NAME (driver->type)));
3393 for (prev = NULL, list = root; list; prev = list, list = list->next)
3394 if (EQ (list->driver->type, driver->type))
3395 error ("Duplicated font driver: %s", SDATA (SYMBOL_NAME (driver->type)));
3397 list = xmalloc (sizeof (struct font_driver_list));
3398 list->on = 0;
3399 list->driver = driver;
3400 list->next = NULL;
3401 if (prev)
3402 prev->next = list;
3403 else if (f)
3404 f->font_driver_list = list;
3405 else
3406 font_driver_list = list;
3407 if (! f)
3408 num_font_drivers++;
3411 void
3412 free_font_driver_list (FRAME_PTR f)
3414 struct font_driver_list *list, *next;
3416 for (list = f->font_driver_list; list; list = next)
3418 next = list->next;
3419 xfree (list);
3421 f->font_driver_list = NULL;
3425 /* Make the frame F use font backends listed in NEW_DRIVERS (list of
3426 symbols, e.g. xft, x). If NEW_DRIVERS is t, make F use all
3427 available font drivers. If NEW_DRIVERS is nil, finalize all drivers.
3429 A caller must free all realized faces if any in advance. The
3430 return value is a list of font backends actually made used on
3431 F. */
3433 Lisp_Object
3434 font_update_drivers (FRAME_PTR f, Lisp_Object new_drivers)
3436 Lisp_Object active_drivers = Qnil;
3437 struct font_driver *driver;
3438 struct font_driver_list *list;
3440 /* At first, turn off non-requested drivers, and turn on requested
3441 drivers. */
3442 for (list = f->font_driver_list; list; list = list->next)
3444 driver = list->driver;
3445 if ((EQ (new_drivers, Qt) || ! NILP (Fmemq (driver->type, new_drivers)))
3446 != list->on)
3448 if (list->on)
3450 if (driver->end_for_frame)
3451 driver->end_for_frame (f);
3452 font_finish_cache (f, driver);
3453 list->on = 0;
3455 else
3457 if (! driver->start_for_frame
3458 || driver->start_for_frame (f) == 0)
3460 font_prepare_cache (f, driver);
3461 list->on = 1;
3467 if (NILP (new_drivers))
3468 return Qnil;
3470 if (! EQ (new_drivers, Qt))
3472 /* Re-order the driver list according to new_drivers. */
3473 struct font_driver_list **list_table, **next;
3474 Lisp_Object tail;
3475 int i;
3477 list_table = alloca (sizeof list_table[0] * (num_font_drivers + 1));
3478 for (i = 0, tail = new_drivers; ! NILP (tail); tail = XCDR (tail))
3480 for (list = f->font_driver_list; list; list = list->next)
3481 if (list->on && EQ (list->driver->type, XCAR (tail)))
3482 break;
3483 if (list)
3484 list_table[i++] = list;
3486 for (list = f->font_driver_list; list; list = list->next)
3487 if (! list->on)
3488 list_table[i++] = list;
3489 list_table[i] = NULL;
3491 next = &f->font_driver_list;
3492 for (i = 0; list_table[i]; i++)
3494 *next = list_table[i];
3495 next = &(*next)->next;
3497 *next = NULL;
3499 if (! f->font_driver_list->on)
3500 { /* None of the drivers is enabled: enable them all.
3501 Happens if you set the list of drivers to (xft x) in your .emacs
3502 and then use it under w32 or ns. */
3503 for (list = f->font_driver_list; list; list = list->next)
3505 struct font_driver *driver = list->driver;
3506 eassert (! list->on);
3507 if (! driver->start_for_frame
3508 || driver->start_for_frame (f) == 0)
3510 font_prepare_cache (f, driver);
3511 list->on = 1;
3517 for (list = f->font_driver_list; list; list = list->next)
3518 if (list->on)
3519 active_drivers = nconc2 (active_drivers,
3520 Fcons (list->driver->type, Qnil));
3521 return active_drivers;
3525 font_put_frame_data (FRAME_PTR f, struct font_driver *driver, void *data)
3527 struct font_data_list *list, *prev;
3529 for (prev = NULL, list = f->font_data_list; list;
3530 prev = list, list = list->next)
3531 if (list->driver == driver)
3532 break;
3533 if (! data)
3535 if (list)
3537 if (prev)
3538 prev->next = list->next;
3539 else
3540 f->font_data_list = list->next;
3541 xfree (list);
3543 return 0;
3546 if (! list)
3548 list = xmalloc (sizeof (struct font_data_list));
3549 list->driver = driver;
3550 list->next = f->font_data_list;
3551 f->font_data_list = list;
3553 list->data = data;
3554 return 0;
3558 void *
3559 font_get_frame_data (FRAME_PTR f, struct font_driver *driver)
3561 struct font_data_list *list;
3563 for (list = f->font_data_list; list; list = list->next)
3564 if (list->driver == driver)
3565 break;
3566 if (! list)
3567 return NULL;
3568 return list->data;
3572 /* Sets attributes on a font. Any properties that appear in ALIST and
3573 BOOLEAN_PROPERTIES or NON_BOOLEAN_PROPERTIES are set on the font.
3574 BOOLEAN_PROPERTIES and NON_BOOLEAN_PROPERTIES are NULL-terminated
3575 arrays of strings. This function is intended for use by the font
3576 drivers to implement their specific font_filter_properties. */
3577 void
3578 font_filter_properties (Lisp_Object font,
3579 Lisp_Object alist,
3580 const char *const boolean_properties[],
3581 const char *const non_boolean_properties[])
3583 Lisp_Object it;
3584 int i;
3586 /* Set boolean values to Qt or Qnil */
3587 for (i = 0; boolean_properties[i] != NULL; ++i)
3588 for (it = alist; ! NILP (it); it = XCDR (it))
3590 Lisp_Object key = XCAR (XCAR (it));
3591 Lisp_Object val = XCDR (XCAR (it));
3592 char *keystr = SDATA (SYMBOL_NAME (key));
3594 if (strcmp (boolean_properties[i], keystr) == 0)
3596 const char *str = INTEGERP (val) ? (XINT (val) ? "true" : "false")
3597 : SYMBOLP (val) ? SSDATA (SYMBOL_NAME (val))
3598 : "true";
3600 if (strcmp ("false", str) == 0 || strcmp ("False", str) == 0
3601 || strcmp ("FALSE", str) == 0 || strcmp ("FcFalse", str) == 0
3602 || strcmp ("off", str) == 0 || strcmp ("OFF", str) == 0
3603 || strcmp ("Off", str) == 0)
3604 val = Qnil;
3605 else
3606 val = Qt;
3608 Ffont_put (font, key, val);
3612 for (i = 0; non_boolean_properties[i] != NULL; ++i)
3613 for (it = alist; ! NILP (it); it = XCDR (it))
3615 Lisp_Object key = XCAR (XCAR (it));
3616 Lisp_Object val = XCDR (XCAR (it));
3617 char *keystr = SDATA (SYMBOL_NAME (key));
3618 if (strcmp (non_boolean_properties[i], keystr) == 0)
3619 Ffont_put (font, key, val);
3624 /* Return the font used to draw character C by FACE at buffer position
3625 POS in window W. If STRING is non-nil, it is a string containing C
3626 at index POS. If C is negative, get C from the current buffer or
3627 STRING. */
3629 static Lisp_Object
3630 font_at (int c, EMACS_INT pos, struct face *face, struct window *w,
3631 Lisp_Object string)
3633 FRAME_PTR f;
3634 int multibyte;
3635 Lisp_Object font_object;
3637 multibyte = (NILP (string)
3638 ? ! NILP (current_buffer->enable_multibyte_characters)
3639 : STRING_MULTIBYTE (string));
3640 if (c < 0)
3642 if (NILP (string))
3644 if (multibyte)
3646 EMACS_INT pos_byte = CHAR_TO_BYTE (pos);
3648 c = FETCH_CHAR (pos_byte);
3650 else
3651 c = FETCH_BYTE (pos);
3653 else
3655 unsigned char *str;
3657 multibyte = STRING_MULTIBYTE (string);
3658 if (multibyte)
3660 EMACS_INT pos_byte = string_char_to_byte (string, pos);
3662 str = SDATA (string) + pos_byte;
3663 c = STRING_CHAR (str);
3665 else
3666 c = SDATA (string)[pos];
3670 f = XFRAME (w->frame);
3671 if (! FRAME_WINDOW_P (f))
3672 return Qnil;
3673 if (! face)
3675 int face_id;
3676 EMACS_INT endptr;
3678 if (STRINGP (string))
3679 face_id = face_at_string_position (w, string, pos, 0, -1, -1, &endptr,
3680 DEFAULT_FACE_ID, 0);
3681 else
3682 face_id = face_at_buffer_position (w, pos, -1, -1, &endptr,
3683 pos + 100, 0, -1);
3684 face = FACE_FROM_ID (f, face_id);
3686 if (multibyte)
3688 int face_id = FACE_FOR_CHAR (f, face, c, pos, string);
3689 face = FACE_FROM_ID (f, face_id);
3691 if (! face->font)
3692 return Qnil;
3694 XSETFONT (font_object, face->font);
3695 return font_object;
3699 #ifdef HAVE_WINDOW_SYSTEM
3701 /* Check how many characters after POS (at most to *LIMIT) can be
3702 displayed by the same font on the window W. FACE, if non-NULL, is
3703 the face selected for the character at POS. If STRING is not nil,
3704 it is the string to check instead of the current buffer. In that
3705 case, FACE must be not NULL.
3707 The return value is the font-object for the character at POS.
3708 *LIMIT is set to the position where that font can't be used.
3710 It is assured that the current buffer (or STRING) is multibyte. */
3712 Lisp_Object
3713 font_range (EMACS_INT pos, EMACS_INT *limit, struct window *w, struct face *face, Lisp_Object string)
3715 EMACS_INT pos_byte, ignore;
3716 int c;
3717 Lisp_Object font_object = Qnil;
3719 if (NILP (string))
3721 pos_byte = CHAR_TO_BYTE (pos);
3722 if (! face)
3724 int face_id;
3726 face_id = face_at_buffer_position (w, pos, 0, 0, &ignore,
3727 *limit, 0, -1);
3728 face = FACE_FROM_ID (XFRAME (w->frame), face_id);
3731 else
3733 font_assert (face);
3734 pos_byte = string_char_to_byte (string, pos);
3737 while (pos < *limit)
3739 Lisp_Object category;
3741 if (NILP (string))
3742 FETCH_CHAR_ADVANCE_NO_CHECK (c, pos, pos_byte);
3743 else
3744 FETCH_STRING_CHAR_ADVANCE_NO_CHECK (c, string, pos, pos_byte);
3745 category = CHAR_TABLE_REF (Vunicode_category_table, c);
3746 if (EQ (category, QCf)
3747 || CHAR_VARIATION_SELECTOR_P (c))
3748 continue;
3749 if (NILP (font_object))
3751 font_object = font_for_char (face, c, pos - 1, string);
3752 if (NILP (font_object))
3753 return Qnil;
3754 continue;
3756 if (font_encode_char (font_object, c) == FONT_INVALID_CODE)
3757 *limit = pos - 1;
3759 return font_object;
3761 #endif
3764 /* Lisp API */
3766 DEFUN ("fontp", Ffontp, Sfontp, 1, 2, 0,
3767 doc: /* Return t if OBJECT is a font-spec, font-entity, or font-object.
3768 Return nil otherwise.
3769 Optional 2nd argument EXTRA-TYPE, if non-nil, specifies to check
3770 which kind of font it is. It must be one of `font-spec', `font-entity',
3771 `font-object'. */)
3772 (Lisp_Object object, Lisp_Object extra_type)
3774 if (NILP (extra_type))
3775 return (FONTP (object) ? Qt : Qnil);
3776 if (EQ (extra_type, Qfont_spec))
3777 return (FONT_SPEC_P (object) ? Qt : Qnil);
3778 if (EQ (extra_type, Qfont_entity))
3779 return (FONT_ENTITY_P (object) ? Qt : Qnil);
3780 if (EQ (extra_type, Qfont_object))
3781 return (FONT_OBJECT_P (object) ? Qt : Qnil);
3782 wrong_type_argument (intern ("font-extra-type"), extra_type);
3785 DEFUN ("font-spec", Ffont_spec, Sfont_spec, 0, MANY, 0,
3786 doc: /* Return a newly created font-spec with arguments as properties.
3788 ARGS must come in pairs KEY VALUE of font properties. KEY must be a
3789 valid font property name listed below:
3791 `:family', `:weight', `:slant', `:width'
3793 They are the same as face attributes of the same name. See
3794 `set-face-attribute'.
3796 `:foundry'
3798 VALUE must be a string or a symbol specifying the font foundry, e.g. ``misc''.
3800 `:adstyle'
3802 VALUE must be a string or a symbol specifying the additional
3803 typographic style information of a font, e.g. ``sans''.
3805 `:registry'
3807 VALUE must be a string or a symbol specifying the charset registry and
3808 encoding of a font, e.g. ``iso8859-1''.
3810 `:size'
3812 VALUE must be a non-negative integer or a floating point number
3813 specifying the font size. It specifies the font size in pixels (if
3814 VALUE is an integer), or in points (if VALUE is a float).
3816 `:name'
3818 VALUE must be a string of XLFD-style or fontconfig-style font name.
3820 `:script'
3822 VALUE must be a symbol representing a script that the font must
3823 support. It may be a symbol representing a subgroup of a script
3824 listed in the variable `script-representative-chars'.
3826 `:lang'
3828 VALUE must be a symbol of two-letter ISO-639 language names,
3829 e.g. `ja'.
3831 `:otf'
3833 VALUE must be a list (SCRIPT-TAG LANGSYS-TAG GSUB [ GPOS ]) to specify
3834 required OpenType features.
3836 SCRIPT-TAG: OpenType script tag symbol (e.g. `deva').
3837 LANGSYS-TAG: OpenType language system tag symbol,
3838 or nil for the default language system.
3839 GSUB: List of OpenType GSUB feature tag symbols, or nil if none required.
3840 GPOS: List of OpenType GPOS feature tag symbols, or nil if none required.
3842 GSUB and GPOS may contain `nil' element. In such a case, the font
3843 must not have any of the remaining elements.
3845 For instance, if the VALUE is `(thai nil nil (mark))', the font must
3846 be an OpenType font, and whose GPOS table of `thai' script's default
3847 language system must contain `mark' feature.
3849 usage: (font-spec ARGS...) */)
3850 (int nargs, Lisp_Object *args)
3852 Lisp_Object spec = font_make_spec ();
3853 int i;
3855 for (i = 0; i < nargs; i += 2)
3857 Lisp_Object key = args[i], val;
3859 CHECK_SYMBOL (key);
3860 if (i + 1 >= nargs)
3861 error ("No value for key `%s'", SDATA (SYMBOL_NAME (key)));
3862 val = args[i + 1];
3864 if (EQ (key, QCname))
3866 CHECK_STRING (val);
3867 font_parse_name (SSDATA (val), spec);
3868 font_put_extra (spec, key, val);
3870 else
3872 int idx = get_font_prop_index (key);
3874 if (idx >= 0)
3876 val = font_prop_validate (idx, Qnil, val);
3877 if (idx < FONT_EXTRA_INDEX)
3878 ASET (spec, idx, val);
3879 else
3880 font_put_extra (spec, key, val);
3882 else
3883 font_put_extra (spec, key, font_prop_validate (0, key, val));
3886 return spec;
3889 DEFUN ("copy-font-spec", Fcopy_font_spec, Scopy_font_spec, 1, 1, 0,
3890 doc: /* Return a copy of FONT as a font-spec. */)
3891 (Lisp_Object font)
3893 Lisp_Object new_spec, tail, prev, extra;
3894 int i;
3896 CHECK_FONT (font);
3897 new_spec = font_make_spec ();
3898 for (i = 1; i < FONT_EXTRA_INDEX; i++)
3899 ASET (new_spec, i, AREF (font, i));
3900 extra = Fcopy_alist (AREF (font, FONT_EXTRA_INDEX));
3901 /* We must remove :font-entity property. */
3902 for (prev = Qnil, tail = extra; CONSP (tail); prev = tail, tail = XCDR (tail))
3903 if (EQ (XCAR (XCAR (tail)), QCfont_entity))
3905 if (NILP (prev))
3906 extra = XCDR (extra);
3907 else
3908 XSETCDR (prev, XCDR (tail));
3909 break;
3911 ASET (new_spec, FONT_EXTRA_INDEX, extra);
3912 return new_spec;
3915 DEFUN ("merge-font-spec", Fmerge_font_spec, Smerge_font_spec, 2, 2, 0,
3916 doc: /* Merge font-specs FROM and TO, and return a new font-spec.
3917 Every specified properties in FROM override the corresponding
3918 properties in TO. */)
3919 (Lisp_Object from, Lisp_Object to)
3921 Lisp_Object extra, tail;
3922 int i;
3924 CHECK_FONT (from);
3925 CHECK_FONT (to);
3926 to = Fcopy_font_spec (to);
3927 for (i = 0; i < FONT_EXTRA_INDEX; i++)
3928 ASET (to, i, AREF (from, i));
3929 extra = AREF (to, FONT_EXTRA_INDEX);
3930 for (tail = AREF (from, FONT_EXTRA_INDEX); CONSP (tail); tail = XCDR (tail))
3931 if (! EQ (XCAR (XCAR (tail)), Qfont_entity))
3933 Lisp_Object slot = assq_no_quit (XCAR (XCAR (tail)), extra);
3935 if (! NILP (slot))
3936 XSETCDR (slot, XCDR (XCAR (tail)));
3937 else
3938 extra = Fcons (Fcons (XCAR (XCAR (tail)), XCDR (XCAR (tail))), extra);
3940 ASET (to, FONT_EXTRA_INDEX, extra);
3941 return to;
3944 DEFUN ("font-get", Ffont_get, Sfont_get, 2, 2, 0,
3945 doc: /* Return the value of FONT's property KEY.
3946 FONT is a font-spec, a font-entity, or a font-object.
3947 KEY is any symbol, but these are reserved for specific meanings:
3948 :family, :weight, :slant, :width, :foundry, :adstyle, :registry,
3949 :size, :name, :script, :otf
3950 See the documentation of `font-spec' for their meanings.
3951 In addition, if FONT is a font-entity or a font-object, values of
3952 :script and :otf are different from those of a font-spec as below:
3954 The value of :script may be a list of scripts that are supported by the font.
3956 The value of :otf is a cons (GSUB . GPOS) where GSUB and GPOS are lists
3957 representing the OpenType features supported by the font by this form:
3958 ((SCRIPT (LANGSYS FEATURE ...) ...) ...)
3959 SCRIPT, LANGSYS, and FEATURE are all symbols representing OpenType
3960 Layout tags. */)
3961 (Lisp_Object font, Lisp_Object key)
3963 int idx;
3964 Lisp_Object val;
3966 CHECK_FONT (font);
3967 CHECK_SYMBOL (key);
3969 idx = get_font_prop_index (key);
3970 if (idx >= FONT_WEIGHT_INDEX && idx <= FONT_WIDTH_INDEX)
3971 return font_style_symbolic (font, idx, 0);
3972 if (idx >= 0 && idx < FONT_EXTRA_INDEX)
3973 return AREF (font, idx);
3974 val = Fassq (key, AREF (font, FONT_EXTRA_INDEX));
3975 if (NILP (val) && EQ (key, QCotf) && FONT_OBJECT_P (font))
3977 struct font *fontp = XFONT_OBJECT (font);
3979 if (fontp->driver->otf_capability)
3980 val = fontp->driver->otf_capability (fontp);
3981 else
3982 val = Fcons (Qnil, Qnil);
3983 font_put_extra (font, QCotf, val);
3985 else
3986 val = Fcdr (val);
3987 return val;
3990 #ifdef HAVE_WINDOW_SYSTEM
3992 DEFUN ("font-face-attributes", Ffont_face_attributes, Sfont_face_attributes, 1, 2, 0,
3993 doc: /* Return a plist of face attributes generated by FONT.
3994 FONT is a font name, a font-spec, a font-entity, or a font-object.
3995 The return value is a list of the form
3997 \(:family FAMILY :height HEIGHT :weight WEIGHT :slant SLANT :width WIDTH)
3999 where FAMILY, HEIGHT, WEIGHT, SLANT, and WIDTH are face attribute values
4000 compatible with `set-face-attribute'. Some of these key-attribute pairs
4001 may be omitted from the list if they are not specified by FONT.
4003 The optional argument FRAME specifies the frame that the face attributes
4004 are to be displayed on. If omitted, the selected frame is used. */)
4005 (Lisp_Object font, Lisp_Object frame)
4007 struct frame *f;
4008 Lisp_Object plist[10];
4009 Lisp_Object val;
4010 int n = 0;
4012 if (NILP (frame))
4013 frame = selected_frame;
4014 CHECK_LIVE_FRAME (frame);
4015 f = XFRAME (frame);
4017 if (STRINGP (font))
4019 int fontset = fs_query_fontset (font, 0);
4020 Lisp_Object name = font;
4021 if (fontset >= 0)
4022 font = fontset_ascii (fontset);
4023 font = font_spec_from_name (name);
4024 if (! FONTP (font))
4025 signal_error ("Invalid font name", name);
4027 else if (! FONTP (font))
4028 signal_error ("Invalid font object", font);
4030 val = AREF (font, FONT_FAMILY_INDEX);
4031 if (! NILP (val))
4033 plist[n++] = QCfamily;
4034 plist[n++] = SYMBOL_NAME (val);
4037 val = AREF (font, FONT_SIZE_INDEX);
4038 if (INTEGERP (val))
4040 Lisp_Object font_dpi = AREF (font, FONT_DPI_INDEX);
4041 int dpi = INTEGERP (font_dpi) ? XINT (font_dpi) : f->resy;
4042 plist[n++] = QCheight;
4043 plist[n++] = make_number (PIXEL_TO_POINT (XINT (val) * 10, dpi));
4045 else if (FLOATP (val))
4047 plist[n++] = QCheight;
4048 plist[n++] = make_number (10 * (int) XFLOAT_DATA (val));
4051 val = FONT_WEIGHT_FOR_FACE (font);
4052 if (! NILP (val))
4054 plist[n++] = QCweight;
4055 plist[n++] = val;
4058 val = FONT_SLANT_FOR_FACE (font);
4059 if (! NILP (val))
4061 plist[n++] = QCslant;
4062 plist[n++] = val;
4065 val = FONT_WIDTH_FOR_FACE (font);
4066 if (! NILP (val))
4068 plist[n++] = QCwidth;
4069 plist[n++] = val;
4072 return Flist (n, plist);
4075 #endif
4077 DEFUN ("font-put", Ffont_put, Sfont_put, 3, 3, 0,
4078 doc: /* Set one property of FONT: give property KEY value VAL.
4079 FONT is a font-spec, a font-entity, or a font-object.
4081 If FONT is a font-spec, KEY can be any symbol. But if KEY is the one
4082 accepted by the function `font-spec' (which see), VAL must be what
4083 allowed in `font-spec'.
4085 If FONT is a font-entity or a font-object, KEY must not be the one
4086 accepted by `font-spec'. */)
4087 (Lisp_Object font, Lisp_Object prop, Lisp_Object val)
4089 int idx;
4091 idx = get_font_prop_index (prop);
4092 if (idx >= 0 && idx < FONT_EXTRA_INDEX)
4094 CHECK_FONT_SPEC (font);
4095 ASET (font, idx, font_prop_validate (idx, Qnil, val));
4097 else
4099 if (EQ (prop, QCname)
4100 || EQ (prop, QCscript)
4101 || EQ (prop, QClang)
4102 || EQ (prop, QCotf))
4103 CHECK_FONT_SPEC (font);
4104 else
4105 CHECK_FONT (font);
4106 font_put_extra (font, prop, font_prop_validate (0, prop, val));
4108 return val;
4111 DEFUN ("list-fonts", Flist_fonts, Slist_fonts, 1, 4, 0,
4112 doc: /* List available fonts matching FONT-SPEC on the current frame.
4113 Optional 2nd argument FRAME specifies the target frame.
4114 Optional 3rd argument NUM, if non-nil, limits the number of returned fonts.
4115 Optional 4th argument PREFER, if non-nil, is a font-spec to
4116 control the order of the returned list. Fonts are sorted by
4117 how close they are to PREFER. */)
4118 (Lisp_Object font_spec, Lisp_Object frame, Lisp_Object num, Lisp_Object prefer)
4120 Lisp_Object vec, list;
4121 int n = 0;
4123 if (NILP (frame))
4124 frame = selected_frame;
4125 CHECK_LIVE_FRAME (frame);
4126 CHECK_FONT_SPEC (font_spec);
4127 if (! NILP (num))
4129 CHECK_NUMBER (num);
4130 n = XINT (num);
4131 if (n <= 0)
4132 return Qnil;
4134 if (! NILP (prefer))
4135 CHECK_FONT_SPEC (prefer);
4137 list = font_list_entities (frame, font_spec);
4138 if (NILP (list))
4139 return Qnil;
4140 if (NILP (XCDR (list))
4141 && ASIZE (XCAR (list)) == 1)
4142 return Fcons (AREF (XCAR (list), 0), Qnil);
4144 if (! NILP (prefer))
4145 vec = font_sort_entities (list, prefer, frame, 0);
4146 else
4147 vec = font_vconcat_entity_vectors (list);
4148 if (n == 0 || n >= ASIZE (vec))
4150 Lisp_Object args[2];
4152 args[0] = vec;
4153 args[1] = Qnil;
4154 list = Fappend (2, args);
4156 else
4158 for (list = Qnil, n--; n >= 0; n--)
4159 list = Fcons (AREF (vec, n), list);
4161 return list;
4164 DEFUN ("font-family-list", Ffont_family_list, Sfont_family_list, 0, 1, 0,
4165 doc: /* List available font families on the current frame.
4166 Optional argument FRAME, if non-nil, specifies the target frame. */)
4167 (Lisp_Object frame)
4169 FRAME_PTR f;
4170 struct font_driver_list *driver_list;
4171 Lisp_Object list;
4173 if (NILP (frame))
4174 frame = selected_frame;
4175 CHECK_LIVE_FRAME (frame);
4176 f = XFRAME (frame);
4177 list = Qnil;
4178 for (driver_list = f->font_driver_list; driver_list;
4179 driver_list = driver_list->next)
4180 if (driver_list->driver->list_family)
4182 Lisp_Object val = driver_list->driver->list_family (frame);
4183 Lisp_Object tail = list;
4185 for (; CONSP (val); val = XCDR (val))
4186 if (NILP (Fmemq (XCAR (val), tail))
4187 && SYMBOLP (XCAR (val)))
4188 list = Fcons (SYMBOL_NAME (XCAR (val)), list);
4190 return list;
4193 DEFUN ("find-font", Ffind_font, Sfind_font, 1, 2, 0,
4194 doc: /* Return a font-entity matching with FONT-SPEC on the current frame.
4195 Optional 2nd argument FRAME, if non-nil, specifies the target frame. */)
4196 (Lisp_Object font_spec, Lisp_Object frame)
4198 Lisp_Object val = Flist_fonts (font_spec, frame, make_number (1), Qnil);
4200 if (CONSP (val))
4201 val = XCAR (val);
4202 return val;
4205 DEFUN ("font-xlfd-name", Ffont_xlfd_name, Sfont_xlfd_name, 1, 2, 0,
4206 doc: /* Return XLFD name of FONT.
4207 FONT is a font-spec, font-entity, or font-object.
4208 If the name is too long for XLFD (maximum 255 chars), return nil.
4209 If the 2nd optional arg FOLD-WILDCARDS is non-nil,
4210 the consecutive wildcards are folded to one. */)
4211 (Lisp_Object font, Lisp_Object fold_wildcards)
4213 char name[256];
4214 int pixel_size = 0;
4216 CHECK_FONT (font);
4218 if (FONT_OBJECT_P (font))
4220 Lisp_Object font_name = AREF (font, FONT_NAME_INDEX);
4222 if (STRINGP (font_name)
4223 && SDATA (font_name)[0] == '-')
4225 if (NILP (fold_wildcards))
4226 return font_name;
4227 strcpy (name, SSDATA (font_name));
4228 goto done;
4230 pixel_size = XFONT_OBJECT (font)->pixel_size;
4232 if (font_unparse_xlfd (font, pixel_size, name, 256) < 0)
4233 return Qnil;
4234 done:
4235 if (! NILP (fold_wildcards))
4237 char *p0 = name, *p1;
4239 while ((p1 = strstr (p0, "-*-*")))
4241 strcpy (p1, p1 + 2);
4242 p0 = p1;
4246 return build_string (name);
4249 DEFUN ("clear-font-cache", Fclear_font_cache, Sclear_font_cache, 0, 0, 0,
4250 doc: /* Clear font cache. */)
4251 (void)
4253 Lisp_Object list, frame;
4255 FOR_EACH_FRAME (list, frame)
4257 FRAME_PTR f = XFRAME (frame);
4258 struct font_driver_list *driver_list = f->font_driver_list;
4260 for (; driver_list; driver_list = driver_list->next)
4261 if (driver_list->on)
4263 Lisp_Object cache = driver_list->driver->get_cache (f);
4264 Lisp_Object val, tmp;
4266 val = XCDR (cache);
4267 while (! NILP (val)
4268 && ! EQ (XCAR (XCAR (val)), driver_list->driver->type))
4269 val = XCDR (val);
4270 font_assert (! NILP (val));
4271 tmp = XCDR (XCAR (val));
4272 if (XINT (XCAR (tmp)) == 0)
4274 font_clear_cache (f, XCAR (val), driver_list->driver);
4275 XSETCDR (cache, XCDR (val));
4280 return Qnil;
4284 void
4285 font_fill_lglyph_metrics (Lisp_Object glyph, Lisp_Object font_object)
4287 struct font *font = XFONT_OBJECT (font_object);
4288 unsigned code;
4289 /* ecode used in LGLYPH_SET_CODE to avoid compiler warnings. */
4290 EMACS_INT ecode = font->driver->encode_char (font, LGLYPH_CHAR (glyph));
4291 struct font_metrics metrics;
4293 LGLYPH_SET_CODE (glyph, ecode);
4294 code = ecode;
4295 font->driver->text_extents (font, &code, 1, &metrics);
4296 LGLYPH_SET_LBEARING (glyph, metrics.lbearing);
4297 LGLYPH_SET_RBEARING (glyph, metrics.rbearing);
4298 LGLYPH_SET_WIDTH (glyph, metrics.width);
4299 LGLYPH_SET_ASCENT (glyph, metrics.ascent);
4300 LGLYPH_SET_DESCENT (glyph, metrics.descent);
4304 DEFUN ("font-shape-gstring", Ffont_shape_gstring, Sfont_shape_gstring, 1, 1, 0,
4305 doc: /* Shape the glyph-string GSTRING.
4306 Shaping means substituting glyphs and/or adjusting positions of glyphs
4307 to get the correct visual image of character sequences set in the
4308 header of the glyph-string.
4310 If the shaping was successful, the value is GSTRING itself or a newly
4311 created glyph-string. Otherwise, the value is nil. */)
4312 (Lisp_Object gstring)
4314 struct font *font;
4315 Lisp_Object font_object, n, glyph;
4316 int i, j, from, to;
4318 if (! composition_gstring_p (gstring))
4319 signal_error ("Invalid glyph-string: ", gstring);
4320 if (! NILP (LGSTRING_ID (gstring)))
4321 return gstring;
4322 font_object = LGSTRING_FONT (gstring);
4323 CHECK_FONT_OBJECT (font_object);
4324 font = XFONT_OBJECT (font_object);
4325 if (! font->driver->shape)
4326 return Qnil;
4328 /* Try at most three times with larger gstring each time. */
4329 for (i = 0; i < 3; i++)
4331 n = font->driver->shape (gstring);
4332 if (INTEGERP (n))
4333 break;
4334 gstring = larger_vector (gstring,
4335 ASIZE (gstring) + LGSTRING_GLYPH_LEN (gstring),
4336 Qnil);
4338 if (i == 3 || XINT (n) == 0)
4339 return Qnil;
4340 if (XINT (n) < LGSTRING_GLYPH_LEN (gstring))
4341 LGSTRING_SET_GLYPH (gstring, XINT (n), Qnil);
4343 glyph = LGSTRING_GLYPH (gstring, 0);
4344 from = LGLYPH_FROM (glyph);
4345 to = LGLYPH_TO (glyph);
4346 for (i = 1, j = 0; i < LGSTRING_GLYPH_LEN (gstring); i++)
4348 Lisp_Object this = LGSTRING_GLYPH (gstring, i);
4350 if (NILP (this))
4351 break;
4352 if (NILP (LGLYPH_ADJUSTMENT (this)))
4354 if (j < i - 1)
4355 for (; j < i; j++)
4357 glyph = LGSTRING_GLYPH (gstring, j);
4358 LGLYPH_SET_FROM (glyph, from);
4359 LGLYPH_SET_TO (glyph, to);
4361 from = LGLYPH_FROM (this);
4362 to = LGLYPH_TO (this);
4363 j = i;
4365 else
4367 if (from > LGLYPH_FROM (this))
4368 from = LGLYPH_FROM (this);
4369 if (to < LGLYPH_TO (this))
4370 to = LGLYPH_TO (this);
4373 if (j < i - 1)
4374 for (; j < i; j++)
4376 glyph = LGSTRING_GLYPH (gstring, j);
4377 LGLYPH_SET_FROM (glyph, from);
4378 LGLYPH_SET_TO (glyph, to);
4380 return composition_gstring_put_cache (gstring, XINT (n));
4383 DEFUN ("font-variation-glyphs", Ffont_variation_glyphs, Sfont_variation_glyphs,
4384 2, 2, 0,
4385 doc: /* Return a list of variation glyphs for CHAR in FONT-OBJECT.
4386 Each element of the value is a cons (VARIATION-SELECTOR . GLYPH-ID),
4387 where
4388 VARIATION-SELECTOR is a character code of variation selection
4389 (#xFE00..#xFE0F or #xE0100..#xE01EF)
4390 GLYPH-ID is a glyph code of the corresponding variation glyph. */)
4391 (Lisp_Object font_object, Lisp_Object character)
4393 unsigned variations[256];
4394 struct font *font;
4395 int i, n;
4396 Lisp_Object val;
4398 CHECK_FONT_OBJECT (font_object);
4399 CHECK_CHARACTER (character);
4400 font = XFONT_OBJECT (font_object);
4401 if (! font->driver->get_variation_glyphs)
4402 return Qnil;
4403 n = font->driver->get_variation_glyphs (font, XINT (character), variations);
4404 if (! n)
4405 return Qnil;
4406 val = Qnil;
4407 for (i = 0; i < 255; i++)
4408 if (variations[i])
4410 Lisp_Object code;
4411 int vs = (i < 16 ? 0xFE00 + i : 0xE0100 + (i - 16));
4412 /* Stops GCC whining about limited range of data type. */
4413 EMACS_INT var = variations[i];
4415 if (var > MOST_POSITIVE_FIXNUM)
4416 code = Fcons (make_number ((variations[i]) >> 16),
4417 make_number ((variations[i]) & 0xFFFF));
4418 else
4419 code = make_number (variations[i]);
4420 val = Fcons (Fcons (make_number (vs), code), val);
4422 return val;
4425 #if 0
4427 DEFUN ("font-drive-otf", Ffont_drive_otf, Sfont_drive_otf, 6, 6, 0,
4428 doc: /* Apply OpenType features on glyph-string GSTRING-IN.
4429 OTF-FEATURES specifies which features to apply in this format:
4430 (SCRIPT LANGSYS GSUB GPOS)
4431 where
4432 SCRIPT is a symbol specifying a script tag of OpenType,
4433 LANGSYS is a symbol specifying a langsys tag of OpenType,
4434 GSUB and GPOS, if non-nil, are lists of symbols specifying feature tags.
4436 If LANGYS is nil, the default langsys is selected.
4438 The features are applied in the order they appear in the list. The
4439 symbol `*' means to apply all available features not present in this
4440 list, and the remaining features are ignored. For instance, (vatu
4441 pstf * haln) is to apply vatu and pstf in this order, then to apply
4442 all available features other than vatu, pstf, and haln.
4444 The features are applied to the glyphs in the range FROM and TO of
4445 the glyph-string GSTRING-IN.
4447 If some feature is actually applicable, the resulting glyphs are
4448 produced in the glyph-string GSTRING-OUT from the index INDEX. In
4449 this case, the value is the number of produced glyphs.
4451 If no feature is applicable, no glyph is produced in GSTRING-OUT, and
4452 the value is 0.
4454 If GSTRING-OUT is too short to hold produced glyphs, no glyphs are
4455 produced in GSTRING-OUT, and the value is nil.
4457 See the documentation of `font-make-gstring' for the format of
4458 glyph-string. */)
4459 (Lisp_Object otf_features, Lisp_Object gstring_in, Lisp_Object from, Lisp_Object to, Lisp_Object gstring_out, Lisp_Object index)
4461 Lisp_Object font_object = LGSTRING_FONT (gstring_in);
4462 Lisp_Object val;
4463 struct font *font;
4464 int len, num;
4466 check_otf_features (otf_features);
4467 CHECK_FONT_OBJECT (font_object);
4468 font = XFONT_OBJECT (font_object);
4469 if (! font->driver->otf_drive)
4470 error ("Font backend %s can't drive OpenType GSUB table",
4471 SDATA (SYMBOL_NAME (font->driver->type)));
4472 CHECK_CONS (otf_features);
4473 CHECK_SYMBOL (XCAR (otf_features));
4474 val = XCDR (otf_features);
4475 CHECK_SYMBOL (XCAR (val));
4476 val = XCDR (otf_features);
4477 if (! NILP (val))
4478 CHECK_CONS (val);
4479 len = check_gstring (gstring_in);
4480 CHECK_VECTOR (gstring_out);
4481 CHECK_NATNUM (from);
4482 CHECK_NATNUM (to);
4483 CHECK_NATNUM (index);
4485 if (XINT (from) >= XINT (to) || XINT (to) > len)
4486 args_out_of_range_3 (from, to, make_number (len));
4487 if (XINT (index) >= ASIZE (gstring_out))
4488 args_out_of_range (index, make_number (ASIZE (gstring_out)));
4489 num = font->driver->otf_drive (font, otf_features,
4490 gstring_in, XINT (from), XINT (to),
4491 gstring_out, XINT (index), 0);
4492 if (num < 0)
4493 return Qnil;
4494 return make_number (num);
4497 DEFUN ("font-otf-alternates", Ffont_otf_alternates, Sfont_otf_alternates,
4498 3, 3, 0,
4499 doc: /* Return a list of alternate glyphs of CHARACTER in FONT-OBJECT.
4500 OTF-FEATURES specifies which features of the font FONT-OBJECT to apply
4501 in this format:
4502 (SCRIPT LANGSYS FEATURE ...)
4503 See the documentation of `font-drive-otf' for more detail.
4505 The value is a list of cons cells of the format (GLYPH-ID . CHARACTER),
4506 where GLYPH-ID is a glyph index of the font, and CHARACTER is a
4507 character code corresponding to the glyph or nil if there's no
4508 corresponding character. */)
4509 (Lisp_Object font_object, Lisp_Object character, Lisp_Object otf_features)
4511 struct font *font;
4512 Lisp_Object gstring_in, gstring_out, g;
4513 Lisp_Object alternates;
4514 int i, num;
4516 CHECK_FONT_GET_OBJECT (font_object, font);
4517 if (! font->driver->otf_drive)
4518 error ("Font backend %s can't drive OpenType GSUB table",
4519 SDATA (SYMBOL_NAME (font->driver->type)));
4520 CHECK_CHARACTER (character);
4521 CHECK_CONS (otf_features);
4523 gstring_in = Ffont_make_gstring (font_object, make_number (1));
4524 g = LGSTRING_GLYPH (gstring_in, 0);
4525 LGLYPH_SET_CHAR (g, XINT (character));
4526 gstring_out = Ffont_make_gstring (font_object, make_number (10));
4527 while ((num = font->driver->otf_drive (font, otf_features, gstring_in, 0, 1,
4528 gstring_out, 0, 1)) < 0)
4529 gstring_out = Ffont_make_gstring (font_object,
4530 make_number (ASIZE (gstring_out) * 2));
4531 alternates = Qnil;
4532 for (i = 0; i < num; i++)
4534 Lisp_Object g = LGSTRING_GLYPH (gstring_out, i);
4535 int c = LGLYPH_CHAR (g);
4536 unsigned code = LGLYPH_CODE (g);
4538 alternates = Fcons (Fcons (make_number (code),
4539 c > 0 ? make_number (c) : Qnil),
4540 alternates);
4542 return Fnreverse (alternates);
4544 #endif /* 0 */
4546 #ifdef FONT_DEBUG
4548 DEFUN ("open-font", Fopen_font, Sopen_font, 1, 3, 0,
4549 doc: /* Open FONT-ENTITY. */)
4550 (Lisp_Object font_entity, Lisp_Object size, Lisp_Object frame)
4552 int isize;
4554 CHECK_FONT_ENTITY (font_entity);
4555 if (NILP (frame))
4556 frame = selected_frame;
4557 CHECK_LIVE_FRAME (frame);
4559 if (NILP (size))
4560 isize = XINT (AREF (font_entity, FONT_SIZE_INDEX));
4561 else
4563 CHECK_NUMBER_OR_FLOAT (size);
4564 if (FLOATP (size))
4565 isize = POINT_TO_PIXEL (XFLOAT_DATA (size), XFRAME (frame)->resy);
4566 else
4567 isize = XINT (size);
4568 if (isize == 0)
4569 isize = 120;
4571 return font_open_entity (XFRAME (frame), font_entity, isize);
4574 DEFUN ("close-font", Fclose_font, Sclose_font, 1, 2, 0,
4575 doc: /* Close FONT-OBJECT. */)
4576 (Lisp_Object font_object, Lisp_Object frame)
4578 CHECK_FONT_OBJECT (font_object);
4579 if (NILP (frame))
4580 frame = selected_frame;
4581 CHECK_LIVE_FRAME (frame);
4582 font_close_object (XFRAME (frame), font_object);
4583 return Qnil;
4586 DEFUN ("query-font", Fquery_font, Squery_font, 1, 1, 0,
4587 doc: /* Return information about FONT-OBJECT.
4588 The value is a vector:
4589 [ NAME FILENAME PIXEL-SIZE SIZE ASCENT DESCENT SPACE-WIDTH AVERAGE-WIDTH
4590 CAPABILITY ]
4592 NAME is a string of the font name (or nil if the font backend doesn't
4593 provide a name).
4595 FILENAME is a string of the font file (or nil if the font backend
4596 doesn't provide a file name).
4598 PIXEL-SIZE is a pixel size by which the font is opened.
4600 SIZE is a maximum advance width of the font in pixels.
4602 ASCENT, DESCENT, SPACE-WIDTH, AVERAGE-WIDTH are metrics of the font in
4603 pixels.
4605 CAPABILITY is a list whose first element is a symbol representing the
4606 font format \(x, opentype, truetype, type1, pcf, or bdf) and the
4607 remaining elements describe the details of the font capability.
4609 If the font is OpenType font, the form of the list is
4610 \(opentype GSUB GPOS)
4611 where GSUB shows which "GSUB" features the font supports, and GPOS
4612 shows which "GPOS" features the font supports. Both GSUB and GPOS are
4613 lists of the format:
4614 \((SCRIPT (LANGSYS FEATURE ...) ...) ...)
4616 If the font is not OpenType font, currently the length of the form is
4617 one.
4619 SCRIPT is a symbol representing OpenType script tag.
4621 LANGSYS is a symbol representing OpenType langsys tag, or nil
4622 representing the default langsys.
4624 FEATURE is a symbol representing OpenType feature tag.
4626 If the font is not OpenType font, CAPABILITY is nil. */)
4627 (Lisp_Object font_object)
4629 struct font *font;
4630 Lisp_Object val;
4632 CHECK_FONT_GET_OBJECT (font_object, font);
4634 val = Fmake_vector (make_number (9), Qnil);
4635 ASET (val, 0, AREF (font_object, FONT_NAME_INDEX));
4636 ASET (val, 1, AREF (font_object, FONT_FILE_INDEX));
4637 ASET (val, 2, make_number (font->pixel_size));
4638 ASET (val, 3, make_number (font->max_width));
4639 ASET (val, 4, make_number (font->ascent));
4640 ASET (val, 5, make_number (font->descent));
4641 ASET (val, 6, make_number (font->space_width));
4642 ASET (val, 7, make_number (font->average_width));
4643 if (font->driver->otf_capability)
4644 ASET (val, 8, Fcons (Qopentype, font->driver->otf_capability (font)));
4645 return val;
4648 DEFUN ("font-get-glyphs", Ffont_get_glyphs, Sfont_get_glyphs, 3, 4, 0,
4649 doc:
4650 /* Return a vector of FONT-OBJECT's glyphs for the specified characters.
4651 FROM and TO are positions (integers or markers) specifying a region
4652 of the current buffer.
4653 If the optional fourth arg OBJECT is not nil, it is a string or a
4654 vector containing the target characters.
4656 Each element is a vector containing information of a glyph in this format:
4657 [FROM-IDX TO-IDX C CODE WIDTH LBEARING RBEARING ASCENT DESCENT ADJUSTMENT]
4658 where
4659 FROM is an index numbers of a character the glyph corresponds to.
4660 TO is the same as FROM.
4661 C is the character of the glyph.
4662 CODE is the glyph-code of C in FONT-OBJECT.
4663 WIDTH thru DESCENT are the metrics (in pixels) of the glyph.
4664 ADJUSTMENT is always nil.
4665 If FONT-OBJECT doesn't have a glyph for a character,
4666 the corresponding element is nil. */)
4667 (Lisp_Object font_object, Lisp_Object from, Lisp_Object to,
4668 Lisp_Object object)
4670 struct font *font;
4671 int i, len, c;
4672 Lisp_Object *chars, vec;
4673 USE_SAFE_ALLOCA;
4675 CHECK_FONT_GET_OBJECT (font_object, font);
4676 if (NILP (object))
4678 EMACS_INT charpos, bytepos;
4680 validate_region (&from, &to);
4681 if (EQ (from, to))
4682 return Qnil;
4683 len = XFASTINT (to) - XFASTINT (from);
4684 SAFE_ALLOCA_LISP (chars, len);
4685 charpos = XFASTINT (from);
4686 bytepos = CHAR_TO_BYTE (charpos);
4687 for (i = 0; charpos < XFASTINT (to); i++)
4689 FETCH_CHAR_ADVANCE (c, charpos, bytepos);
4690 chars[i] = make_number (c);
4693 else if (STRINGP (object))
4695 const unsigned char *p;
4697 CHECK_NUMBER (from);
4698 CHECK_NUMBER (to);
4699 if (XINT (from) < 0 || XINT (from) > XINT (to)
4700 || XINT (to) > SCHARS (object))
4701 args_out_of_range_3 (object, from, to);
4702 if (EQ (from, to))
4703 return Qnil;
4704 len = XFASTINT (to) - XFASTINT (from);
4705 SAFE_ALLOCA_LISP (chars, len);
4706 p = SDATA (object);
4707 if (STRING_MULTIBYTE (object))
4708 for (i = 0; i < len; i++)
4710 c = STRING_CHAR_ADVANCE (p);
4711 chars[i] = make_number (c);
4713 else
4714 for (i = 0; i < len; i++)
4715 chars[i] = make_number (p[i]);
4717 else
4719 CHECK_VECTOR (object);
4720 CHECK_NUMBER (from);
4721 CHECK_NUMBER (to);
4722 if (XINT (from) < 0 || XINT (from) > XINT (to)
4723 || XINT (to) > ASIZE (object))
4724 args_out_of_range_3 (object, from, to);
4725 if (EQ (from, to))
4726 return Qnil;
4727 len = XFASTINT (to) - XFASTINT (from);
4728 for (i = 0; i < len; i++)
4730 Lisp_Object elt = AREF (object, XFASTINT (from) + i);
4731 CHECK_CHARACTER (elt);
4733 chars = &(AREF (object, XFASTINT (from)));
4736 vec = Fmake_vector (make_number (len), Qnil);
4737 for (i = 0; i < len; i++)
4739 Lisp_Object g;
4740 int c = XFASTINT (chars[i]);
4741 unsigned code;
4742 EMACS_INT cod;
4743 struct font_metrics metrics;
4745 cod = code = font->driver->encode_char (font, c);
4746 if (code == FONT_INVALID_CODE)
4747 continue;
4748 g = Fmake_vector (make_number (LGLYPH_SIZE), Qnil);
4749 LGLYPH_SET_FROM (g, i);
4750 LGLYPH_SET_TO (g, i);
4751 LGLYPH_SET_CHAR (g, c);
4752 LGLYPH_SET_CODE (g, code);
4753 font->driver->text_extents (font, &code, 1, &metrics);
4754 LGLYPH_SET_WIDTH (g, metrics.width);
4755 LGLYPH_SET_LBEARING (g, metrics.lbearing);
4756 LGLYPH_SET_RBEARING (g, metrics.rbearing);
4757 LGLYPH_SET_ASCENT (g, metrics.ascent);
4758 LGLYPH_SET_DESCENT (g, metrics.descent);
4759 ASET (vec, i, g);
4761 if (! VECTORP (object))
4762 SAFE_FREE ();
4763 return vec;
4766 DEFUN ("font-match-p", Ffont_match_p, Sfont_match_p, 2, 2, 0,
4767 doc: /* Return t if and only if font-spec SPEC matches with FONT.
4768 FONT is a font-spec, font-entity, or font-object. */)
4769 (Lisp_Object spec, Lisp_Object font)
4771 CHECK_FONT_SPEC (spec);
4772 CHECK_FONT (font);
4774 return (font_match_p (spec, font) ? Qt : Qnil);
4777 DEFUN ("font-at", Ffont_at, Sfont_at, 1, 3, 0,
4778 doc: /* Return a font-object for displaying a character at POSITION.
4779 Optional second arg WINDOW, if non-nil, is a window displaying
4780 the current buffer. It defaults to the currently selected window. */)
4781 (Lisp_Object position, Lisp_Object window, Lisp_Object string)
4783 struct window *w;
4784 EMACS_INT pos;
4786 if (NILP (string))
4788 CHECK_NUMBER_COERCE_MARKER (position);
4789 pos = XINT (position);
4790 if (pos < BEGV || pos >= ZV)
4791 args_out_of_range_3 (position, make_number (BEGV), make_number (ZV));
4793 else
4795 CHECK_NUMBER (position);
4796 CHECK_STRING (string);
4797 pos = XINT (position);
4798 if (pos < 0 || pos >= SCHARS (string))
4799 args_out_of_range (string, position);
4801 if (NILP (window))
4802 window = selected_window;
4803 CHECK_LIVE_WINDOW (window);
4804 w = XWINDOW (window);
4806 return font_at (-1, pos, NULL, w, string);
4809 #if 0
4810 DEFUN ("draw-string", Fdraw_string, Sdraw_string, 2, 2, 0,
4811 doc: /* Draw STRING by FONT-OBJECT on the top left corner of the current frame.
4812 The value is a number of glyphs drawn.
4813 Type C-l to recover what previously shown. */)
4814 (Lisp_Object font_object, Lisp_Object string)
4816 Lisp_Object frame = selected_frame;
4817 FRAME_PTR f = XFRAME (frame);
4818 struct font *font;
4819 struct face *face;
4820 int i, len, width;
4821 unsigned *code;
4823 CHECK_FONT_GET_OBJECT (font_object, font);
4824 CHECK_STRING (string);
4825 len = SCHARS (string);
4826 code = alloca (sizeof (unsigned) * len);
4827 for (i = 0; i < len; i++)
4829 Lisp_Object ch = Faref (string, make_number (i));
4830 Lisp_Object val;
4831 int c = XINT (ch);
4833 code[i] = font->driver->encode_char (font, c);
4834 if (code[i] == FONT_INVALID_CODE)
4835 break;
4837 face = FACE_FROM_ID (f, DEFAULT_FACE_ID);
4838 face->fontp = font;
4839 if (font->driver->prepare_face)
4840 font->driver->prepare_face (f, face);
4841 width = font->driver->text_extents (font, code, i, NULL);
4842 len = font->driver->draw_text (f, face, 0, font->ascent, code, i, width);
4843 if (font->driver->done_face)
4844 font->driver->done_face (f, face);
4845 face->fontp = NULL;
4846 return make_number (len);
4848 #endif
4850 #endif /* FONT_DEBUG */
4852 #ifdef HAVE_WINDOW_SYSTEM
4854 DEFUN ("font-info", Ffont_info, Sfont_info, 1, 2, 0,
4855 doc: /* Return information about a font named NAME on frame FRAME.
4856 If FRAME is omitted or nil, use the selected frame.
4857 The returned value is a vector of OPENED-NAME, FULL-NAME, SIZE,
4858 HEIGHT, BASELINE-OFFSET, RELATIVE-COMPOSE, and DEFAULT-ASCENT,
4859 where
4860 OPENED-NAME is the name used for opening the font,
4861 FULL-NAME is the full name of the font,
4862 SIZE is the pixelsize of the font,
4863 HEIGHT is the pixel-height of the font (i.e ascent + descent),
4864 BASELINE-OFFSET is the upward offset pixels from ASCII baseline,
4865 RELATIVE-COMPOSE and DEFAULT-ASCENT are the numbers controlling
4866 how to compose characters.
4867 If the named font is not yet loaded, return nil. */)
4868 (Lisp_Object name, Lisp_Object frame)
4870 FRAME_PTR f;
4871 struct font *font;
4872 Lisp_Object info;
4873 Lisp_Object font_object;
4875 (*check_window_system_func) ();
4877 if (! FONTP (name))
4878 CHECK_STRING (name);
4879 if (NILP (frame))
4880 frame = selected_frame;
4881 CHECK_LIVE_FRAME (frame);
4882 f = XFRAME (frame);
4884 if (STRINGP (name))
4886 int fontset = fs_query_fontset (name, 0);
4888 if (fontset >= 0)
4889 name = fontset_ascii (fontset);
4890 font_object = font_open_by_name (f, SSDATA (name));
4892 else if (FONT_OBJECT_P (name))
4893 font_object = name;
4894 else if (FONT_ENTITY_P (name))
4895 font_object = font_open_entity (f, name, 0);
4896 else
4898 struct face *face = FACE_FROM_ID (f, DEFAULT_FACE_ID);
4899 Lisp_Object entity = font_matching_entity (f, face->lface, name);
4901 font_object = ! NILP (entity) ? font_open_entity (f, entity, 0) : Qnil;
4903 if (NILP (font_object))
4904 return Qnil;
4905 font = XFONT_OBJECT (font_object);
4907 info = Fmake_vector (make_number (7), Qnil);
4908 XVECTOR (info)->contents[0] = AREF (font_object, FONT_NAME_INDEX);
4909 XVECTOR (info)->contents[1] = AREF (font_object, FONT_FULLNAME_INDEX);
4910 XVECTOR (info)->contents[2] = make_number (font->pixel_size);
4911 XVECTOR (info)->contents[3] = make_number (font->height);
4912 XVECTOR (info)->contents[4] = make_number (font->baseline_offset);
4913 XVECTOR (info)->contents[5] = make_number (font->relative_compose);
4914 XVECTOR (info)->contents[6] = make_number (font->default_ascent);
4916 #if 0
4917 /* As font_object is still in FONT_OBJLIST of the entity, we can't
4918 close it now. Perhaps, we should manage font-objects
4919 by `reference-count'. */
4920 font_close_object (f, font_object);
4921 #endif
4922 return info;
4924 #endif
4927 #define BUILD_STYLE_TABLE(TBL) \
4928 build_style_table ((TBL), sizeof TBL / sizeof (struct table_entry))
4930 static Lisp_Object
4931 build_style_table (const struct table_entry *entry, int nelement)
4933 int i, j;
4934 Lisp_Object table, elt;
4936 table = Fmake_vector (make_number (nelement), Qnil);
4937 for (i = 0; i < nelement; i++)
4939 for (j = 0; entry[i].names[j]; j++);
4940 elt = Fmake_vector (make_number (j + 1), Qnil);
4941 ASET (elt, 0, make_number (entry[i].numeric));
4942 for (j = 0; entry[i].names[j]; j++)
4943 ASET (elt, j + 1, intern_c_string (entry[i].names[j]));
4944 ASET (table, i, elt);
4946 return table;
4949 /* The deferred font-log data of the form [ACTION ARG RESULT].
4950 If ACTION is not nil, that is added to the log when font_add_log is
4951 called next time. At that time, ACTION is set back to nil. */
4952 static Lisp_Object Vfont_log_deferred;
4954 /* Prepend the font-related logging data in Vfont_log if it is not
4955 `t'. ACTION describes a kind of font-related action (e.g. listing,
4956 opening), ARG is the argument for the action, and RESULT is the
4957 result of the action. */
4958 void
4959 font_add_log (const char *action, Lisp_Object arg, Lisp_Object result)
4961 Lisp_Object tail, val;
4962 int i;
4964 if (EQ (Vfont_log, Qt))
4965 return;
4966 if (STRINGP (AREF (Vfont_log_deferred, 0)))
4968 char *str = SSDATA (AREF (Vfont_log_deferred, 0));
4970 ASET (Vfont_log_deferred, 0, Qnil);
4971 font_add_log (str, AREF (Vfont_log_deferred, 1),
4972 AREF (Vfont_log_deferred, 2));
4975 if (FONTP (arg))
4977 Lisp_Object tail, elt;
4978 Lisp_Object equalstr = build_string ("=");
4980 val = Ffont_xlfd_name (arg, Qt);
4981 for (tail = AREF (arg, FONT_EXTRA_INDEX); CONSP (tail);
4982 tail = XCDR (tail))
4984 elt = XCAR (tail);
4985 if (EQ (XCAR (elt), QCscript)
4986 && SYMBOLP (XCDR (elt)))
4987 val = concat3 (val, SYMBOL_NAME (QCscript),
4988 concat2 (equalstr, SYMBOL_NAME (XCDR (elt))));
4989 else if (EQ (XCAR (elt), QClang)
4990 && SYMBOLP (XCDR (elt)))
4991 val = concat3 (val, SYMBOL_NAME (QClang),
4992 concat2 (equalstr, SYMBOL_NAME (XCDR (elt))));
4993 else if (EQ (XCAR (elt), QCotf)
4994 && CONSP (XCDR (elt)) && SYMBOLP (XCAR (XCDR (elt))))
4995 val = concat3 (val, SYMBOL_NAME (QCotf),
4996 concat2 (equalstr,
4997 SYMBOL_NAME (XCAR (XCDR (elt)))));
4999 arg = val;
5002 if (CONSP (result)
5003 && VECTORP (XCAR (result))
5004 && ASIZE (XCAR (result)) > 0
5005 && FONTP (AREF (XCAR (result), 0)))
5006 result = font_vconcat_entity_vectors (result);
5007 if (FONTP (result))
5009 val = Ffont_xlfd_name (result, Qt);
5010 if (! FONT_SPEC_P (result))
5011 val = concat3 (SYMBOL_NAME (AREF (result, FONT_TYPE_INDEX)),
5012 build_string (":"), val);
5013 result = val;
5015 else if (CONSP (result))
5017 result = Fcopy_sequence (result);
5018 for (tail = result; CONSP (tail); tail = XCDR (tail))
5020 val = XCAR (tail);
5021 if (FONTP (val))
5022 val = Ffont_xlfd_name (val, Qt);
5023 XSETCAR (tail, val);
5026 else if (VECTORP (result))
5028 result = Fcopy_sequence (result);
5029 for (i = 0; i < ASIZE (result); i++)
5031 val = AREF (result, i);
5032 if (FONTP (val))
5033 val = Ffont_xlfd_name (val, Qt);
5034 ASET (result, i, val);
5037 Vfont_log = Fcons (list3 (intern (action), arg, result), Vfont_log);
5040 /* Record a font-related logging data to be added to Vfont_log when
5041 font_add_log is called next time. ACTION, ARG, RESULT are the same
5042 as font_add_log. */
5044 void
5045 font_deferred_log (const char *action, Lisp_Object arg, Lisp_Object result)
5047 if (EQ (Vfont_log, Qt))
5048 return;
5049 ASET (Vfont_log_deferred, 0, build_string (action));
5050 ASET (Vfont_log_deferred, 1, arg);
5051 ASET (Vfont_log_deferred, 2, result);
5054 void
5055 syms_of_font (void)
5057 sort_shift_bits[FONT_TYPE_INDEX] = 0;
5058 sort_shift_bits[FONT_SLANT_INDEX] = 2;
5059 sort_shift_bits[FONT_WEIGHT_INDEX] = 9;
5060 sort_shift_bits[FONT_SIZE_INDEX] = 16;
5061 sort_shift_bits[FONT_WIDTH_INDEX] = 23;
5062 /* Note that the other elements in sort_shift_bits are not used. */
5064 staticpro (&font_charset_alist);
5065 font_charset_alist = Qnil;
5067 DEFSYM (Qopentype, "opentype");
5069 DEFSYM (Qascii_0, "ascii-0");
5070 DEFSYM (Qiso8859_1, "iso8859-1");
5071 DEFSYM (Qiso10646_1, "iso10646-1");
5072 DEFSYM (Qunicode_bmp, "unicode-bmp");
5073 DEFSYM (Qunicode_sip, "unicode-sip");
5075 DEFSYM (QCf, "Cf");
5077 DEFSYM (QCotf, ":otf");
5078 DEFSYM (QClang, ":lang");
5079 DEFSYM (QCscript, ":script");
5080 DEFSYM (QCantialias, ":antialias");
5082 DEFSYM (QCfoundry, ":foundry");
5083 DEFSYM (QCadstyle, ":adstyle");
5084 DEFSYM (QCregistry, ":registry");
5085 DEFSYM (QCspacing, ":spacing");
5086 DEFSYM (QCdpi, ":dpi");
5087 DEFSYM (QCscalable, ":scalable");
5088 DEFSYM (QCavgwidth, ":avgwidth");
5089 DEFSYM (QCfont_entity, ":font-entity");
5090 DEFSYM (QCfc_unknown_spec, ":fc-unknown-spec");
5092 DEFSYM (Qc, "c");
5093 DEFSYM (Qm, "m");
5094 DEFSYM (Qp, "p");
5095 DEFSYM (Qd, "d");
5097 DEFSYM (Qja, "ja");
5098 DEFSYM (Qko, "ko");
5100 DEFSYM (QCuser_spec, "user-spec");
5102 staticpro (&null_vector);
5103 null_vector = Fmake_vector (make_number (0), Qnil);
5105 staticpro (&scratch_font_spec);
5106 scratch_font_spec = Ffont_spec (0, NULL);
5107 staticpro (&scratch_font_prefer);
5108 scratch_font_prefer = Ffont_spec (0, NULL);
5110 staticpro (&Vfont_log_deferred);
5111 Vfont_log_deferred = Fmake_vector (make_number (3), Qnil);
5113 #if 0
5114 #ifdef HAVE_LIBOTF
5115 staticpro (&otf_list);
5116 otf_list = Qnil;
5117 #endif /* HAVE_LIBOTF */
5118 #endif /* 0 */
5120 defsubr (&Sfontp);
5121 defsubr (&Sfont_spec);
5122 defsubr (&Sfont_get);
5123 #ifdef HAVE_WINDOW_SYSTEM
5124 defsubr (&Sfont_face_attributes);
5125 #endif
5126 defsubr (&Sfont_put);
5127 defsubr (&Slist_fonts);
5128 defsubr (&Sfont_family_list);
5129 defsubr (&Sfind_font);
5130 defsubr (&Sfont_xlfd_name);
5131 defsubr (&Sclear_font_cache);
5132 defsubr (&Sfont_shape_gstring);
5133 defsubr (&Sfont_variation_glyphs);
5134 #if 0
5135 defsubr (&Sfont_drive_otf);
5136 defsubr (&Sfont_otf_alternates);
5137 #endif /* 0 */
5139 #ifdef FONT_DEBUG
5140 defsubr (&Sopen_font);
5141 defsubr (&Sclose_font);
5142 defsubr (&Squery_font);
5143 defsubr (&Sfont_get_glyphs);
5144 defsubr (&Sfont_match_p);
5145 defsubr (&Sfont_at);
5146 #if 0
5147 defsubr (&Sdraw_string);
5148 #endif
5149 #endif /* FONT_DEBUG */
5150 #ifdef HAVE_WINDOW_SYSTEM
5151 defsubr (&Sfont_info);
5152 #endif
5154 DEFVAR_LISP ("font-encoding-alist", Vfont_encoding_alist,
5155 doc: /*
5156 Alist of fontname patterns vs the corresponding encoding and repertory info.
5157 Each element looks like (REGEXP . (ENCODING . REPERTORY)),
5158 where ENCODING is a charset or a char-table,
5159 and REPERTORY is a charset, a char-table, or nil.
5161 If ENCODING and REPERTORY are the same, the element can have the form
5162 \(REGEXP . ENCODING).
5164 ENCODING is for converting a character to a glyph code of the font.
5165 If ENCODING is a charset, encoding a character by the charset gives
5166 the corresponding glyph code. If ENCODING is a char-table, looking up
5167 the table by a character gives the corresponding glyph code.
5169 REPERTORY specifies a repertory of characters supported by the font.
5170 If REPERTORY is a charset, all characters beloging to the charset are
5171 supported. If REPERTORY is a char-table, all characters who have a
5172 non-nil value in the table are supported. If REPERTORY is nil, Emacs
5173 gets the repertory information by an opened font and ENCODING. */);
5174 Vfont_encoding_alist = Qnil;
5176 /* FIXME: These 3 vars are not quite what they appear: setq on them
5177 won't have any effect other than disconnect them from the style
5178 table used by the font display code. So we make them read-only,
5179 to avoid this confusing situation. */
5181 DEFVAR_LISP_NOPRO ("font-weight-table", Vfont_weight_table,
5182 doc: /* Vector of valid font weight values.
5183 Each element has the form:
5184 [NUMERIC-VALUE SYMBOLIC-NAME ALIAS-NAME ...]
5185 NUMERIC-VALUE is an integer, and SYMBOLIC-NAME and ALIAS-NAME are symbols. */);
5186 Vfont_weight_table = BUILD_STYLE_TABLE (weight_table);
5187 XSYMBOL (intern_c_string ("font-weight-table"))->constant = 1;
5189 DEFVAR_LISP_NOPRO ("font-slant-table", Vfont_slant_table,
5190 doc: /* Vector of font slant symbols vs the corresponding numeric values.
5191 See `font-weight-table' for the format of the vector. */);
5192 Vfont_slant_table = BUILD_STYLE_TABLE (slant_table);
5193 XSYMBOL (intern_c_string ("font-slant-table"))->constant = 1;
5195 DEFVAR_LISP_NOPRO ("font-width-table", Vfont_width_table,
5196 doc: /* Alist of font width symbols vs the corresponding numeric values.
5197 See `font-weight-table' for the format of the vector. */);
5198 Vfont_width_table = BUILD_STYLE_TABLE (width_table);
5199 XSYMBOL (intern_c_string ("font-width-table"))->constant = 1;
5201 staticpro (&font_style_table);
5202 font_style_table = Fmake_vector (make_number (3), Qnil);
5203 ASET (font_style_table, 0, Vfont_weight_table);
5204 ASET (font_style_table, 1, Vfont_slant_table);
5205 ASET (font_style_table, 2, Vfont_width_table);
5207 DEFVAR_LISP ("font-log", Vfont_log, doc: /*
5208 *Logging list of font related actions and results.
5209 The value t means to suppress the logging.
5210 The initial value is set to nil if the environment variable
5211 EMACS_FONT_LOG is set. Otherwise, it is set to t. */);
5212 Vfont_log = Qnil;
5214 #ifdef HAVE_WINDOW_SYSTEM
5215 #ifdef HAVE_FREETYPE
5216 syms_of_ftfont ();
5217 #ifdef HAVE_X_WINDOWS
5218 syms_of_xfont ();
5219 syms_of_ftxfont ();
5220 #ifdef HAVE_XFT
5221 syms_of_xftfont ();
5222 #endif /* HAVE_XFT */
5223 #endif /* HAVE_X_WINDOWS */
5224 #else /* not HAVE_FREETYPE */
5225 #ifdef HAVE_X_WINDOWS
5226 syms_of_xfont ();
5227 #endif /* HAVE_X_WINDOWS */
5228 #endif /* not HAVE_FREETYPE */
5229 #ifdef HAVE_BDFFONT
5230 syms_of_bdffont ();
5231 #endif /* HAVE_BDFFONT */
5232 #ifdef WINDOWSNT
5233 syms_of_w32font ();
5234 #endif /* WINDOWSNT */
5235 #ifdef HAVE_NS
5236 syms_of_nsfont ();
5237 #endif /* HAVE_NS */
5238 #endif /* HAVE_WINDOW_SYSTEM */
5241 void
5242 init_font (void)
5244 Vfont_log = egetenv ("EMACS_FONT_LOG") ? Qnil : Qt;