Add 2010 to copyright years.
[bpt/emacs.git] / src / font.c
CommitLineData
c2f5bfd6 1/* font.c -- "Font" primitives.
114f9c96
GM
2 Copyright (C) 2006, 2007, 2008, 2009, 2010 Free Software Foundation, Inc.
3 Copyright (C) 2006, 2007, 2008, 2009, 2010
c2f5bfd6
KH
4 National Institute of Advanced Industrial Science and Technology (AIST)
5 Registration Number H13PRO009
6
7This file is part of GNU Emacs.
8
9ec0b715 9GNU Emacs is free software: you can redistribute it and/or modify
c2f5bfd6 10it under the terms of the GNU General Public License as published by
9ec0b715
GM
11the Free Software Foundation, either version 3 of the License, or
12(at your option) any later version.
c2f5bfd6
KH
13
14GNU Emacs is distributed in the hope that it will be useful,
15but WITHOUT ANY WARRANTY; without even the implied warranty of
16MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
17GNU General Public License for more details.
18
19You should have received a copy of the GNU General Public License
9ec0b715 20along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>. */
c2f5bfd6
KH
21
22#include <config.h>
23#include <stdio.h>
24#include <stdlib.h>
25#include <ctype.h>
d7306fe6 26#include <setjmp.h>
c2f5bfd6
KH
27
28#include "lisp.h"
29#include "buffer.h"
30#include "frame.h"
10d16101 31#include "window.h"
c2f5bfd6
KH
32#include "dispextern.h"
33#include "charset.h"
34#include "character.h"
35#include "composite.h"
36#include "fontset.h"
37#include "font.h"
38
43c0454d
KH
39#ifdef HAVE_X_WINDOWS
40#include "xterm.h"
41#endif /* HAVE_X_WINDOWS */
42
43#ifdef HAVE_NTGUI
44#include "w32term.h"
45#endif /* HAVE_NTGUI */
46
edfda783
AR
47#ifdef HAVE_NS
48#include "nsterm.h"
49#endif /* HAVE_NS */
50
ed96cde8
AR
51#ifdef HAVE_NS
52extern Lisp_Object Qfontsize;
53#endif
c2f5bfd6 54
e0708580
KH
55Lisp_Object Qopentype;
56
35027d0c 57/* Important character set strings. */
9e1bb909 58Lisp_Object Qascii_0, Qiso8859_1, Qiso10646_1, Qunicode_bmp, Qunicode_sip;
1bb1d99b 59
edfda783 60#define DEFAULT_ENCODING Qiso8859_1
edfda783 61
071132a9
KH
62/* Unicode category `Cf'. */
63static Lisp_Object QCf;
64
c2f5bfd6
KH
65/* Special vector of zero length. This is repeatedly used by (struct
66 font_driver *)->list when a specified font is not found. */
35027d0c 67static Lisp_Object null_vector;
c2f5bfd6 68
d0ab1ebe
KH
69static Lisp_Object Vfont_weight_table, Vfont_slant_table, Vfont_width_table;
70
71/* Vector of Vfont_weight_table, Vfont_slant_table, and Vfont_width_table. */
c2f5bfd6
KH
72static Lisp_Object font_style_table;
73
d0ab1ebe
KH
74/* Structure used for tables mapping weight, slant, and width numeric
75 values and their names. */
76
77struct table_entry
78{
79 int numeric;
80 /* The first one is a valid name as a face attribute.
81 The second one (if any) is a typical name in XLFD field. */
5e2327cf 82 const char *names[5];
d0ab1ebe
KH
83};
84
85/* Table of weight numeric values and their names. This table must be
86 sorted by numeric values in ascending order. */
87
5e2327cf 88static const struct table_entry weight_table[] =
d0ab1ebe
KH
89{
90 { 0, { "thin" }},
91 { 20, { "ultra-light", "ultralight" }},
92 { 40, { "extra-light", "extralight" }},
93 { 50, { "light" }},
94 { 75, { "semi-light", "semilight", "demilight", "book" }},
c2694a06 95 { 100, { "normal", "medium", "regular", "unspecified" }},
d0ab1ebe
KH
96 { 180, { "semi-bold", "semibold", "demibold", "demi" }},
97 { 200, { "bold" }},
98 { 205, { "extra-bold", "extrabold" }},
99 { 210, { "ultra-bold", "ultrabold", "black" }}
100};
101
102/* Table of slant numeric values and their names. This table must be
103 sorted by numeric values in ascending order. */
104
5e2327cf 105static const struct table_entry slant_table[] =
d0ab1ebe
KH
106{
107 { 0, { "reverse-oblique", "ro" }},
108 { 10, { "reverse-italic", "ri" }},
c2694a06 109 { 100, { "normal", "r", "unspecified" }},
d0ab1ebe
KH
110 { 200, { "italic" ,"i", "ot" }},
111 { 210, { "oblique", "o" }}
112};
113
114/* Table of width numeric values and their names. This table must be
115 sorted by numeric values in ascending order. */
116
5e2327cf 117static const struct table_entry width_table[] =
d0ab1ebe
KH
118{
119 { 50, { "ultra-condensed", "ultracondensed" }},
120 { 63, { "extra-condensed", "extracondensed" }},
121 { 75, { "condensed", "compressed", "narrow" }},
122 { 87, { "semi-condensed", "semicondensed", "demicondensed" }},
c2694a06 123 { 100, { "normal", "medium", "regular", "unspecified" }},
d0ab1ebe
KH
124 { 113, { "semi-expanded", "semiexpanded", "demiexpanded" }},
125 { 125, { "expanded" }},
126 { 150, { "extra-expanded", "extraexpanded" }},
127 { 200, { "ultra-expanded", "ultraexpanded", "wide" }}
128};
129
35027d0c 130extern Lisp_Object Qnormal;
c2f5bfd6
KH
131
132/* Symbols representing keys of normal font properties. */
b1868a1a
CY
133extern Lisp_Object QCtype, QCfamily, QCweight, QCslant, QCwidth;
134extern Lisp_Object QCheight, QCsize, QCname;
135
35027d0c 136Lisp_Object QCfoundry, QCadstyle, QCregistry;
c2f5bfd6 137/* Symbols representing keys of font extra info. */
35027d0c
KH
138Lisp_Object QCspacing, QCdpi, QCscalable, QCotf, QClang, QCscript, QCavgwidth;
139Lisp_Object QCantialias, QCfont_entity, QCfc_unknown_spec;
ec6fe57c
KH
140/* Symbols representing values of font spacing property. */
141Lisp_Object Qc, Qm, Qp, Qd;
cf702558
CY
142/* Special ADSTYLE properties to avoid fonts used for Latin
143 characters; used in xfont.c and ftfont.c. */
144Lisp_Object Qja, Qko;
c2f5bfd6 145
42707278
JD
146Lisp_Object QCuser_spec;
147
819e81df
KH
148Lisp_Object Vfont_encoding_alist;
149
1701724c
KH
150/* Alist of font registry symbol and the corresponding charsets
151 information. The information is retrieved from
152 Vfont_encoding_alist on demand.
153
154 Eash element has the form:
155 (REGISTRY . (ENCODING-CHARSET-ID . REPERTORY-CHARSET-ID))
156 or
157 (REGISTRY . nil)
158
159 In the former form, ENCODING-CHARSET-ID is an ID of a charset that
160 encodes a character code to a glyph code of a font, and
161 REPERTORY-CHARSET-ID is an ID of a charset that tells if a
162 character is supported by a font.
163
164 The latter form means that the information for REGISTRY couldn't be
165 retrieved. */
166static Lisp_Object font_charset_alist;
167
f697fff0
KH
168/* List of all font drivers. Each font-backend (XXXfont.c) calls
169 register_font_driver in syms_of_XXXfont to register its font-driver
c2f5bfd6
KH
170 here. */
171static struct font_driver_list *font_driver_list;
172
35027d0c
KH
173\f
174
175/* Creaters of font-related Lisp object. */
176
177Lisp_Object
178font_make_spec ()
179{
180 Lisp_Object font_spec;
181 struct font_spec *spec
182 = ((struct font_spec *)
183 allocate_pseudovector (VECSIZE (struct font_spec),
184 FONT_SPEC_MAX, PVEC_FONT));
185 XSETFONT (font_spec, spec);
186 return font_spec;
187}
188
189Lisp_Object
190font_make_entity ()
191{
192 Lisp_Object font_entity;
193 struct font_entity *entity
194 = ((struct font_entity *)
195 allocate_pseudovector (VECSIZE (struct font_entity),
196 FONT_ENTITY_MAX, PVEC_FONT));
197 XSETFONT (font_entity, entity);
198 return font_entity;
199}
200
51c13510
KH
201/* Create a font-object whose structure size is SIZE. If ENTITY is
202 not nil, copy properties from ENTITY to the font-object. If
203 PIXELSIZE is positive, set the `size' property to PIXELSIZE. */
35027d0c 204Lisp_Object
51c13510 205font_make_object (size, entity, pixelsize)
35027d0c 206 int size;
51c13510
KH
207 Lisp_Object entity;
208 int pixelsize;
35027d0c
KH
209{
210 Lisp_Object font_object;
211 struct font *font
212 = (struct font *) allocate_pseudovector (size, FONT_OBJECT_MAX, PVEC_FONT);
51c13510
KH
213 int i;
214
35027d0c
KH
215 XSETFONT (font_object, font);
216
51c13510
KH
217 if (! NILP (entity))
218 {
219 for (i = 1; i < FONT_SPEC_MAX; i++)
220 font->props[i] = AREF (entity, i);
221 if (! NILP (AREF (entity, FONT_EXTRA_INDEX)))
222 font->props[FONT_EXTRA_INDEX]
581e51e8 223 = Fcopy_alist (AREF (entity, FONT_EXTRA_INDEX));
51c13510
KH
224 }
225 if (size > 0)
226 font->props[FONT_SIZE_INDEX] = make_number (pixelsize);
35027d0c
KH
227 return font_object;
228}
229
230\f
231
ec6fe57c 232static int font_pixel_size P_ ((FRAME_PTR f, Lisp_Object));
c2f5bfd6 233static Lisp_Object font_open_entity P_ ((FRAME_PTR, Lisp_Object, int));
35027d0c
KH
234static Lisp_Object font_matching_entity P_ ((FRAME_PTR, Lisp_Object *,
235 Lisp_Object));
c2f5bfd6
KH
236
237/* Number of registered font drivers. */
238static int num_font_drivers;
239
35027d0c
KH
240
241/* Return a Lispy value of a font property value at STR and LEN bytes.
242 If STR is "*", it returns nil.
2f286d4f
KH
243 If FORCE_SYMBOL is zero and all characters in STR are digits, it
244 returns an integer. Otherwise, it returns a symbol interned from
245 STR. */
35027d0c
KH
246
247Lisp_Object
2f286d4f 248font_intern_prop (str, len, force_symbol)
35027d0c
KH
249 char *str;
250 int len;
2f286d4f 251 int force_symbol;
35027d0c
KH
252{
253 int i;
d0ab1ebe 254 Lisp_Object tem;
35027d0c 255 Lisp_Object obarray;
545312c2 256 int nbytes, nchars;
35027d0c
KH
257
258 if (len == 1 && *str == '*')
259 return Qnil;
2f286d4f 260 if (!force_symbol && len >=1 && isdigit (*str))
35027d0c
KH
261 {
262 for (i = 1; i < len; i++)
263 if (! isdigit (str[i]))
264 break;
265 if (i == len)
266 return make_number (atoi (str));
267 }
268
545312c2
KH
269 /* The following code is copied from the function intern (in
270 lread.c), and modified to suite our purpose. */
35027d0c
KH
271 obarray = Vobarray;
272 if (!VECTORP (obarray) || XVECTOR (obarray)->size == 0)
273 obarray = check_obarray (obarray);
72d36834 274 parse_str_as_multibyte ((unsigned char *) str, len, &nchars, &nbytes);
545312c2
KH
275 if (len == nchars || len != nbytes)
276 /* CONTENTS contains no multibyte sequences or contains an invalid
277 multibyte sequence. We'll make a unibyte string. */
278 tem = oblookup (obarray, str, len, len);
279 else
280 tem = oblookup (obarray, str, nchars, len);
35027d0c
KH
281 if (SYMBOLP (tem))
282 return tem;
545312c2
KH
283 if (len == nchars || len != nbytes)
284 tem = make_unibyte_string (str, len);
285 else
286 tem = make_multibyte_string (str, nchars, len);
287 return Fintern (tem, obarray);
35027d0c
KH
288}
289
9331887d 290/* Return a pixel size of font-spec SPEC on frame F. */
ec6fe57c 291
9331887d
KH
292static int
293font_pixel_size (f, spec)
294 FRAME_PTR f;
295 Lisp_Object spec;
296{
819e81df 297#ifdef HAVE_WINDOW_SYSTEM
9331887d
KH
298 Lisp_Object size = AREF (spec, FONT_SIZE_INDEX);
299 double point_size;
35027d0c 300 int dpi, pixel_size;
d0ab1ebe 301 Lisp_Object val;
51c01100 302
9331887d
KH
303 if (INTEGERP (size))
304 return XINT (size);
305 if (NILP (size))
819e81df 306 return 0;
d0ab1ebe 307 font_assert (FLOATP (size));
9331887d 308 point_size = XFLOAT_DATA (size);
35027d0c
KH
309 val = AREF (spec, FONT_DPI_INDEX);
310 if (INTEGERP (val))
17e28f6d 311 dpi = XINT (val);
9331887d
KH
312 else
313 dpi = f->resy;
314 pixel_size = POINT_TO_PIXEL (point_size, dpi);
315 return pixel_size;
819e81df
KH
316#else
317 return 1;
318#endif
9331887d
KH
319}
320
c2f5bfd6 321
35027d0c
KH
322/* Return a value of PROP's VAL (symbol or integer) to be stored in a
323 font vector. If VAL is not valid (i.e. not registered in
324 font_style_table), return -1 if NOERROR is zero, and return a
325 proper index if NOERROR is nonzero. In that case, register VAL in
326 font_style_table if VAL is a symbol, and return a closest index if
327 VAL is an integer. */
c2f5bfd6 328
35027d0c
KH
329int
330font_style_to_value (prop, val, noerror)
c2f5bfd6 331 enum font_property_index prop;
35027d0c
KH
332 Lisp_Object val;
333 int noerror;
c2f5bfd6 334{
35027d0c
KH
335 Lisp_Object table = AREF (font_style_table, prop - FONT_WEIGHT_INDEX);
336 int len = ASIZE (table);
d0ab1ebe 337 int i, j;
c2f5bfd6 338
35027d0c 339 if (SYMBOLP (val))
c2f5bfd6 340 {
72606e45 341 unsigned char *s;
35027d0c
KH
342 Lisp_Object args[2], elt;
343
344 /* At first try exact match. */
345 for (i = 0; i < len; i++)
d0ab1ebe
KH
346 for (j = 1; j < ASIZE (AREF (table, i)); j++)
347 if (EQ (val, AREF (AREF (table, i), j)))
348 return ((XINT (AREF (AREF (table, i), 0)) << 8)
349 | (i << 4) | (j - 1));
35027d0c 350 /* Try also with case-folding match. */
72606e45 351 s = SDATA (SYMBOL_NAME (val));
35027d0c 352 for (i = 0; i < len; i++)
d0ab1ebe
KH
353 for (j = 1; j < ASIZE (AREF (table, i)); j++)
354 {
355 elt = AREF (AREF (table, i), j);
72606e45 356 if (xstrcasecmp (s, SDATA (SYMBOL_NAME (elt))) == 0)
d0ab1ebe
KH
357 return ((XINT (AREF (AREF (table, i), 0)) << 8)
358 | (i << 4) | (j - 1));
359 }
35027d0c
KH
360 if (! noerror)
361 return -1;
362 if (len == 255)
363 abort ();
c2694a06 364 elt = Fmake_vector (make_number (2), make_number (100));
d0ab1ebe 365 ASET (elt, 1, val);
35027d0c 366 args[0] = table;
d0ab1ebe 367 args[1] = Fmake_vector (make_number (1), elt);
35027d0c 368 ASET (font_style_table, prop - FONT_WEIGHT_INDEX, Fvconcat (2, args));
c2694a06 369 return (100 << 8) | (i << 4);
c2f5bfd6 370 }
35027d0c
KH
371 else
372 {
d0ab1ebe 373 int i, last_n;
35027d0c 374 int numeric = XINT (val);
c2f5bfd6 375
d0ab1ebe 376 for (i = 0, last_n = -1; i < len; i++)
35027d0c 377 {
d0ab1ebe 378 int n = XINT (AREF (AREF (table, i), 0));
c2f5bfd6 379
35027d0c 380 if (numeric == n)
d0ab1ebe 381 return (n << 8) | (i << 4);
35027d0c
KH
382 if (numeric < n)
383 {
384 if (! noerror)
385 return -1;
d0ab1ebe
KH
386 return ((i == 0 || n - numeric < numeric - last_n)
387 ? (n << 8) | (i << 4): (last_n << 8 | ((i - 1) << 4)));
35027d0c 388 }
35027d0c 389 last_n = n;
35027d0c
KH
390 }
391 if (! noerror)
392 return -1;
d0ab1ebe 393 return ((last_n << 8) | ((i - 1) << 4));
35027d0c
KH
394 }
395}
c2f5bfd6
KH
396
397Lisp_Object
3ef8c1b4
JR
398font_style_symbolic (font, prop, for_face)
399 Lisp_Object font;
35027d0c
KH
400 enum font_property_index prop;
401 int for_face;
c2f5bfd6 402{
3ef8c1b4 403 Lisp_Object val = AREF (font, prop);
d0ab1ebe
KH
404 Lisp_Object table, elt;
405 int i;
c2f5bfd6 406
35027d0c
KH
407 if (NILP (val))
408 return Qnil;
409 table = AREF (font_style_table, prop - FONT_WEIGHT_INDEX);
d0ab1ebe
KH
410 i = XINT (val) & 0xFF;
411 font_assert (((i >> 4) & 0xF) < ASIZE (table));
412 elt = AREF (table, ((i >> 4) & 0xF));
413 font_assert ((i & 0xF) + 1 < ASIZE (elt));
ba3de0e8 414 return (for_face ? AREF (elt, 1) : AREF (elt, (i & 0xF) + 1));
6fe9826d
JR
415}
416
c2f5bfd6
KH
417extern Lisp_Object Vface_alternative_font_family_alist;
418
1701724c
KH
419extern Lisp_Object find_font_encoding P_ ((Lisp_Object));
420
35027d0c 421
819e81df
KH
422/* Return ENCODING or a cons of ENCODING and REPERTORY of the font
423 FONTNAME. ENCODING is a charset symbol that specifies the encoding
424 of the font. REPERTORY is a charset symbol or nil. */
425
426Lisp_Object
427find_font_encoding (fontname)
428 Lisp_Object fontname;
429{
430 Lisp_Object tail, elt;
431
432 for (tail = Vfont_encoding_alist; CONSP (tail); tail = XCDR (tail))
433 {
434 elt = XCAR (tail);
435 if (CONSP (elt)
436 && STRINGP (XCAR (elt))
437 && fast_string_match_ignore_case (XCAR (elt), fontname) >= 0
438 && (SYMBOLP (XCDR (elt))
439 ? CHARSETP (XCDR (elt))
440 : CONSP (XCDR (elt)) && CHARSETP (XCAR (XCDR (elt)))))
441 return (XCDR (elt));
442 }
182ba28c 443 return Qnil;
819e81df
KH
444}
445
1701724c
KH
446/* Return encoding charset and repertory charset for REGISTRY in
447 ENCODING and REPERTORY correspondingly. If correct information for
448 REGISTRY is available, return 0. Otherwise return -1. */
449
450int
451font_registry_charsets (registry, encoding, repertory)
452 Lisp_Object registry;
453 struct charset **encoding, **repertory;
454{
455 Lisp_Object val;
456 int encoding_id, repertory_id;
457
35027d0c 458 val = Fassoc_string (registry, font_charset_alist, Qt);
1701724c
KH
459 if (! NILP (val))
460 {
461 val = XCDR (val);
462 if (NILP (val))
463 return -1;
464 encoding_id = XINT (XCAR (val));
465 repertory_id = XINT (XCDR (val));
466 }
467 else
468 {
469 val = find_font_encoding (SYMBOL_NAME (registry));
470 if (SYMBOLP (val) && CHARSETP (val))
471 {
472 encoding_id = repertory_id = XINT (CHARSET_SYMBOL_ID (val));
473 }
474 else if (CONSP (val))
475 {
476 if (! CHARSETP (XCAR (val)))
477 goto invalid_entry;
478 encoding_id = XINT (CHARSET_SYMBOL_ID (XCAR (val)));
479 if (NILP (XCDR (val)))
480 repertory_id = -1;
481 else
482 {
483 if (! CHARSETP (XCDR (val)))
484 goto invalid_entry;
485 repertory_id = XINT (CHARSET_SYMBOL_ID (XCDR (val)));
486 }
51c01100 487 }
1701724c
KH
488 else
489 goto invalid_entry;
490 val = Fcons (make_number (encoding_id), make_number (repertory_id));
491 font_charset_alist
492 = nconc2 (font_charset_alist, Fcons (Fcons (registry, val), Qnil));
493 }
494
495 if (encoding)
496 *encoding = CHARSET_FROM_ID (encoding_id);
497 if (repertory)
498 *repertory = repertory_id >= 0 ? CHARSET_FROM_ID (repertory_id) : NULL;
499 return 0;
500
501 invalid_entry:
502 font_charset_alist
503 = nconc2 (font_charset_alist, Fcons (Fcons (registry, Qnil), Qnil));
504 return -1;
505}
506
c2f5bfd6 507\f
45eb10fb
KH
508/* Font property value validaters. See the comment of
509 font_property_table for the meaning of the arguments. */
510
35027d0c 511static Lisp_Object font_prop_validate P_ ((int, Lisp_Object, Lisp_Object));
45eb10fb
KH
512static Lisp_Object font_prop_validate_symbol P_ ((Lisp_Object, Lisp_Object));
513static Lisp_Object font_prop_validate_style P_ ((Lisp_Object, Lisp_Object));
514static Lisp_Object font_prop_validate_non_neg P_ ((Lisp_Object, Lisp_Object));
515static Lisp_Object font_prop_validate_spacing P_ ((Lisp_Object, Lisp_Object));
35027d0c 516static int get_font_prop_index P_ ((Lisp_Object));
c2f5bfd6
KH
517
518static Lisp_Object
45eb10fb 519font_prop_validate_symbol (prop, val)
ec6fe57c 520 Lisp_Object prop, val;
c2f5bfd6
KH
521{
522 if (STRINGP (val))
35027d0c
KH
523 val = Fintern (val, Qnil);
524 if (! SYMBOLP (val))
c2f5bfd6 525 val = Qerror;
35027d0c
KH
526 else if (EQ (prop, QCregistry))
527 val = Fintern (Fdowncase (SYMBOL_NAME (val)), Qnil);
c2f5bfd6
KH
528 return val;
529}
530
35027d0c 531
c2f5bfd6 532static Lisp_Object
35027d0c
KH
533font_prop_validate_style (style, val)
534 Lisp_Object style, val;
c2f5bfd6 535{
35027d0c
KH
536 enum font_property_index prop = (EQ (style, QCweight) ? FONT_WEIGHT_INDEX
537 : EQ (style, QCslant) ? FONT_SLANT_INDEX
538 : FONT_WIDTH_INDEX);
539 int n;
540 if (INTEGERP (val))
c2f5bfd6 541 {
35027d0c 542 n = XINT (val);
64b900e3 543 if (((n >> 4) & 0xF)
35027d0c 544 >= ASIZE (AREF (font_style_table, prop - FONT_WEIGHT_INDEX)))
c2f5bfd6
KH
545 val = Qerror;
546 else
547 {
64b900e3
KH
548 Lisp_Object elt = AREF (AREF (font_style_table, prop - FONT_WEIGHT_INDEX), (n >> 4) & 0xF);
549
550 if ((n & 0xF) + 1 >= ASIZE (elt))
551 val = Qerror;
552 else if (XINT (AREF (elt, 0)) != (n >> 8))
c2f5bfd6
KH
553 val = Qerror;
554 }
555 }
35027d0c
KH
556 else if (SYMBOLP (val))
557 {
558 int n = font_style_to_value (prop, val, 0);
559
560 val = n >= 0 ? make_number (n) : Qerror;
561 }
562 else
563 val = Qerror;
c2f5bfd6
KH
564 return val;
565}
566
567static Lisp_Object
45eb10fb 568font_prop_validate_non_neg (prop, val)
ec6fe57c 569 Lisp_Object prop, val;
c2f5bfd6
KH
570{
571 return (NATNUMP (val) || (FLOATP (val) && XFLOAT_DATA (val) >= 0)
572 ? val : Qerror);
573}
574
575static Lisp_Object
45eb10fb 576font_prop_validate_spacing (prop, val)
ec6fe57c
KH
577 Lisp_Object prop, val;
578{
579 if (NILP (val) || (NATNUMP (val) && XINT (val) <= FONT_SPACING_CHARCELL))
580 return val;
3692570f
KH
581 if (SYMBOLP (val) && SBYTES (SYMBOL_NAME (val)) == 1)
582 {
583 char spacing = SDATA (SYMBOL_NAME (val))[0];
584
585 if (spacing == 'c' || spacing == 'C')
586 return make_number (FONT_SPACING_CHARCELL);
587 if (spacing == 'm' || spacing == 'M')
588 return make_number (FONT_SPACING_MONO);
0615d903 589 if (spacing == 'p' || spacing == 'P')
3692570f
KH
590 return make_number (FONT_SPACING_PROPORTIONAL);
591 if (spacing == 'd' || spacing == 'D')
592 return make_number (FONT_SPACING_DUAL);
593 }
ec6fe57c
KH
594 return Qerror;
595}
596
1701724c
KH
597static Lisp_Object
598font_prop_validate_otf (prop, val)
599 Lisp_Object prop, val;
600{
601 Lisp_Object tail, tmp;
602 int i;
603
604 /* VAL = (SCRIPT [ LANGSYS [ GSUB-FEATURES [ GPOS-FEATURES ]]])
605 GSUB-FEATURES = (FEATURE ... [ nil FEATURE ... ]) | nil
606 GPOS-FEATURES = (FEATURE ... [ nil FEATURE ... ]) | nil */
607 if (! CONSP (val))
608 return Qerror;
609 if (! SYMBOLP (XCAR (val)))
610 return Qerror;
611 tail = XCDR (val);
612 if (NILP (tail))
613 return val;
614 if (! CONSP (tail) || ! SYMBOLP (XCAR (val)))
615 return Qerror;
616 for (i = 0; i < 2; i++)
617 {
618 tail = XCDR (tail);
619 if (NILP (tail))
620 return val;
621 if (! CONSP (tail))
622 return Qerror;
623 for (tmp = XCAR (tail); CONSP (tmp); tmp = XCDR (tmp))
624 if (! SYMBOLP (XCAR (tmp)))
625 return Qerror;
626 if (! NILP (tmp))
627 return Qerror;
628 }
629 return val;
630}
631
ec6fe57c
KH
632/* Structure of known font property keys and validater of the
633 values. */
c2f5bfd6
KH
634struct
635{
ec6fe57c 636 /* Pointer to the key symbol. */
c2f5bfd6 637 Lisp_Object *key;
45eb10fb
KH
638 /* Function to validate PROP's value VAL, or NULL if any value is
639 ok. The value is VAL or its regularized value if VAL is valid,
640 and Qerror if not. */
641 Lisp_Object (*validater) P_ ((Lisp_Object prop, Lisp_Object val));
ec6fe57c
KH
642} font_property_table[] =
643 { { &QCtype, font_prop_validate_symbol },
c2f5bfd6
KH
644 { &QCfoundry, font_prop_validate_symbol },
645 { &QCfamily, font_prop_validate_symbol },
646 { &QCadstyle, font_prop_validate_symbol },
647 { &QCregistry, font_prop_validate_symbol },
648 { &QCweight, font_prop_validate_style },
649 { &QCslant, font_prop_validate_style },
650 { &QCwidth, font_prop_validate_style },
ec6fe57c 651 { &QCsize, font_prop_validate_non_neg },
ec6fe57c
KH
652 { &QCdpi, font_prop_validate_non_neg },
653 { &QCspacing, font_prop_validate_spacing },
35027d0c
KH
654 { &QCavgwidth, font_prop_validate_non_neg },
655 /* The order of the above entries must match with enum
656 font_property_index. */
657 { &QClang, font_prop_validate_symbol },
658 { &QCscript, font_prop_validate_symbol },
659 { &QCotf, font_prop_validate_otf }
c2f5bfd6
KH
660 };
661
45eb10fb 662/* Size (number of elements) of the above table. */
ec6fe57c
KH
663#define FONT_PROPERTY_TABLE_SIZE \
664 ((sizeof font_property_table) / (sizeof *font_property_table))
665
45eb10fb 666/* Return an index number of font property KEY or -1 if KEY is not an
35027d0c 667 already known property. */
45eb10fb 668
ec6fe57c 669static int
35027d0c 670get_font_prop_index (key)
c2f5bfd6
KH
671 Lisp_Object key;
672{
35027d0c
KH
673 int i;
674
675 for (i = 0; i < FONT_PROPERTY_TABLE_SIZE; i++)
676 if (EQ (key, *font_property_table[i].key))
677 return i;
ec6fe57c 678 return -1;
c2f5bfd6
KH
679}
680
35027d0c
KH
681/* Validate the font property. The property key is specified by the
682 symbol PROP, or the index IDX (if PROP is nil). If VAL is invalid,
683 signal an error. The value is VAL or the regularized one. */
45eb10fb 684
c2f5bfd6 685static Lisp_Object
35027d0c
KH
686font_prop_validate (idx, prop, val)
687 int idx;
688 Lisp_Object prop, val;
c2f5bfd6 689{
35027d0c 690 Lisp_Object validated;
c2f5bfd6 691
1f09f444
KH
692 if (NILP (val))
693 return val;
35027d0c
KH
694 if (NILP (prop))
695 prop = *font_property_table[idx].key;
696 else
ec6fe57c 697 {
35027d0c
KH
698 idx = get_font_prop_index (prop);
699 if (idx < 0)
700 return val;
ec6fe57c 701 }
35027d0c
KH
702 validated = (font_property_table[idx].validater) (prop, val);
703 if (EQ (validated, Qerror))
704 signal_error ("invalid font property", Fcons (prop, val));
705 return validated;
c2f5bfd6 706}
51c01100 707
35027d0c
KH
708
709/* Store VAL as a value of extra font property PROP in FONT while
710 keeping the sorting order. Don't check the validity of VAL. */
45eb10fb 711
01dbeb0b 712Lisp_Object
ec6fe57c 713font_put_extra (font, prop, val)
9331887d 714 Lisp_Object font, prop, val;
9331887d
KH
715{
716 Lisp_Object extra = AREF (font, FONT_EXTRA_INDEX);
ec6fe57c 717 Lisp_Object slot = (NILP (extra) ? Qnil : assq_no_quit (prop, extra));
9331887d
KH
718
719 if (NILP (slot))
720 {
35027d0c
KH
721 Lisp_Object prev = Qnil;
722
723 while (CONSP (extra)
724 && NILP (Fstring_lessp (prop, XCAR (XCAR (extra)))))
725 prev = extra, extra = XCDR (extra);
581e51e8 726
ce75f06e 727 if (NILP (prev))
581e51e8 728 ASET (font, FONT_EXTRA_INDEX, Fcons (Fcons (prop, val), extra));
ce75f06e 729 else
581e51e8 730 XSETCDR (prev, Fcons (Fcons (prop, val), extra));
ce75f06e 731
ec6fe57c 732 return val;
9331887d 733 }
9331887d 734 XSETCDR (slot, val);
483670b5
KH
735 if (NILP (val))
736 ASET (font, FONT_EXTRA_INDEX, Fdelq (slot, extra));
ec6fe57c 737 return val;
9331887d
KH
738}
739
c2f5bfd6
KH
740\f
741/* Font name parser and unparser */
742
ec6fe57c
KH
743static int parse_matrix P_ ((char *));
744static int font_expand_wildcards P_ ((Lisp_Object *, int));
745static int font_parse_name P_ ((char *, Lisp_Object));
c2f5bfd6 746
ec6fe57c 747/* An enumerator for each field of an XLFD font name. */
c2f5bfd6
KH
748enum xlfd_field_index
749{
750 XLFD_FOUNDRY_INDEX,
751 XLFD_FAMILY_INDEX,
752 XLFD_WEIGHT_INDEX,
753 XLFD_SLANT_INDEX,
754 XLFD_SWIDTH_INDEX,
755 XLFD_ADSTYLE_INDEX,
4485a28e
KH
756 XLFD_PIXEL_INDEX,
757 XLFD_POINT_INDEX,
c2f5bfd6
KH
758 XLFD_RESX_INDEX,
759 XLFD_RESY_INDEX,
760 XLFD_SPACING_INDEX,
761 XLFD_AVGWIDTH_INDEX,
762 XLFD_REGISTRY_INDEX,
763 XLFD_ENCODING_INDEX,
764 XLFD_LAST_INDEX
765};
766
ec6fe57c 767/* An enumerator for mask bit corresponding to each XLFD field. */
4485a28e
KH
768enum xlfd_field_mask
769{
770 XLFD_FOUNDRY_MASK = 0x0001,
771 XLFD_FAMILY_MASK = 0x0002,
772 XLFD_WEIGHT_MASK = 0x0004,
773 XLFD_SLANT_MASK = 0x0008,
774 XLFD_SWIDTH_MASK = 0x0010,
775 XLFD_ADSTYLE_MASK = 0x0020,
776 XLFD_PIXEL_MASK = 0x0040,
777 XLFD_POINT_MASK = 0x0080,
778 XLFD_RESX_MASK = 0x0100,
779 XLFD_RESY_MASK = 0x0200,
780 XLFD_SPACING_MASK = 0x0400,
781 XLFD_AVGWIDTH_MASK = 0x0800,
782 XLFD_REGISTRY_MASK = 0x1000,
783 XLFD_ENCODING_MASK = 0x2000
784};
785
786
c2f5bfd6
KH
787/* Parse P pointing the pixel/point size field of the form
788 `[A B C D]' which specifies a transformation matrix:
789
790 A B 0
791 C D 0
792 0 0 1
793
794 by which all glyphs of the font are transformed. The spec says
795 that scalar value N for the pixel/point size is equivalent to:
796 A = N * resx/resy, B = C = 0, D = N.
797
798 Return the scalar value N if the form is valid. Otherwise return
799 -1. */
800
801static int
802parse_matrix (p)
803 char *p;
804{
805 double matrix[4];
806 char *end;
807 int i;
808
809 for (i = 0, p++; i < 4 && *p && *p != ']'; i++)
810 {
811 if (*p == '~')
812 matrix[i] = - strtod (p + 1, &end);
813 else
814 matrix[i] = strtod (p, &end);
815 p = end;
816 }
817 return (i == 4 ? (int) matrix[3] : -1);
818}
819
4485a28e
KH
820/* Expand a wildcard field in FIELD (the first N fields are filled) to
821 multiple fields to fill in all 14 XLFD fields while restring a
822 field position by its contents. */
823
ec6fe57c 824static int
4485a28e
KH
825font_expand_wildcards (field, n)
826 Lisp_Object field[XLFD_LAST_INDEX];
827 int n;
828{
829 /* Copy of FIELD. */
830 Lisp_Object tmp[XLFD_LAST_INDEX];
831 /* Array of information about where this element can go. Nth
832 element is for Nth element of FIELD. */
833 struct {
834 /* Minimum possible field. */
835 int from;
836 /* Maxinum possible field. */
837 int to;
838 /* Bit mask of possible field. Nth bit corresponds to Nth field. */
839 int mask;
840 } range[XLFD_LAST_INDEX];
841 int i, j;
ec6fe57c 842 int range_from, range_to;
4485a28e
KH
843 unsigned range_mask;
844
845#define XLFD_SYMBOL_MASK (XLFD_FOUNDRY_MASK | XLFD_FAMILY_MASK \
846 | XLFD_ADSTYLE_MASK | XLFD_REGISTRY_MASK)
847#define XLFD_NULL_MASK (XLFD_FOUNDRY_MASK | XLFD_ADSTYLE_MASK)
4485a28e 848#define XLFD_LARGENUM_MASK (XLFD_POINT_MASK | XLFD_RESX_MASK | XLFD_RESY_MASK \
ef18374f 849 | XLFD_AVGWIDTH_MASK)
4485a28e
KH
850#define XLFD_REGENC_MASK (XLFD_REGISTRY_MASK | XLFD_ENCODING_MASK)
851
852 /* Initialize RANGE_MASK for FIELD[0] which can be 0th to (14 - N)th
853 field. The value is shifted to left one bit by one in the
854 following loop. */
855 for (i = 0, range_mask = 0; i <= 14 - n; i++)
856 range_mask = (range_mask << 1) | 1;
857
ec6fe57c
KH
858 /* The triplet RANGE_FROM, RANGE_TO, and RANGE_MASK is a
859 position-based retriction for FIELD[I]. */
860 for (i = 0, range_from = 0, range_to = 14 - n; i < n;
861 i++, range_from++, range_to++, range_mask <<= 1)
4485a28e 862 {
4485a28e
KH
863 Lisp_Object val = field[i];
864
865 tmp[i] = val;
866 if (NILP (val))
867 {
868 /* Wildcard. */
869 range[i].from = range_from;
870 range[i].to = range_to;
871 range[i].mask = range_mask;
872 }
873 else
874 {
875 /* The triplet FROM, TO, and MASK is a value-based
876 retriction for FIELD[I]. */
877 int from, to;
878 unsigned mask;
879
880 if (INTEGERP (val))
881 {
882 int numeric = XINT (val);
883
ef18374f
KH
884 if (i + 1 == n)
885 from = to = XLFD_ENCODING_INDEX,
886 mask = XLFD_ENCODING_MASK;
ec6fe57c
KH
887 else if (numeric == 0)
888 from = XLFD_PIXEL_INDEX, to = XLFD_AVGWIDTH_INDEX,
889 mask = XLFD_PIXEL_MASK | XLFD_LARGENUM_MASK;
ef18374f
KH
890 else if (numeric <= 48)
891 from = to = XLFD_PIXEL_INDEX,
892 mask = XLFD_PIXEL_MASK;
51c01100 893 else
ec6fe57c 894 from = XLFD_POINT_INDEX, to = XLFD_AVGWIDTH_INDEX,
4485a28e
KH
895 mask = XLFD_LARGENUM_MASK;
896 }
35027d0c 897 else if (SBYTES (SYMBOL_NAME (val)) == 0)
4485a28e
KH
898 from = XLFD_FOUNDRY_INDEX, to = XLFD_ADSTYLE_INDEX,
899 mask = XLFD_NULL_MASK;
900 else if (i == 0)
901 from = to = XLFD_FOUNDRY_INDEX, mask = XLFD_FOUNDRY_MASK;
902 else if (i + 1 == n)
903 {
904 Lisp_Object name = SYMBOL_NAME (val);
905
906 if (SDATA (name)[SBYTES (name) - 1] == '*')
907 from = XLFD_REGISTRY_INDEX, to = XLFD_ENCODING_INDEX,
908 mask = XLFD_REGENC_MASK;
909 else
910 from = to = XLFD_ENCODING_INDEX,
911 mask = XLFD_ENCODING_MASK;
912 }
ef18374f
KH
913 else if (range_from <= XLFD_WEIGHT_INDEX
914 && range_to >= XLFD_WEIGHT_INDEX
35027d0c 915 && FONT_WEIGHT_NAME_NUMERIC (val) >= 0)
4485a28e 916 from = to = XLFD_WEIGHT_INDEX, mask = XLFD_WEIGHT_MASK;
ef18374f
KH
917 else if (range_from <= XLFD_SLANT_INDEX
918 && range_to >= XLFD_SLANT_INDEX
35027d0c 919 && FONT_SLANT_NAME_NUMERIC (val) >= 0)
4485a28e 920 from = to = XLFD_SLANT_INDEX, mask = XLFD_SLANT_MASK;
ef18374f
KH
921 else if (range_from <= XLFD_SWIDTH_INDEX
922 && range_to >= XLFD_SWIDTH_INDEX
35027d0c 923 && FONT_WIDTH_NAME_NUMERIC (val) >= 0)
4485a28e
KH
924 from = to = XLFD_SWIDTH_INDEX, mask = XLFD_SWIDTH_MASK;
925 else
926 {
ec6fe57c 927 if (EQ (val, Qc) || EQ (val, Qm) || EQ (val, Qp) || EQ (val, Qd))
4485a28e
KH
928 from = to = XLFD_SPACING_INDEX, mask = XLFD_SPACING_MASK;
929 else
930 from = XLFD_FOUNDRY_INDEX, to = XLFD_ENCODING_INDEX,
931 mask = XLFD_SYMBOL_MASK;
932 }
933
934 /* Merge position-based and value-based restrictions. */
935 mask &= range_mask;
936 while (from < range_from)
937 mask &= ~(1 << from++);
938 while (from < 14 && ! (mask & (1 << from)))
939 from++;
940 while (to > range_to)
941 mask &= ~(1 << to--);
942 while (to >= 0 && ! (mask & (1 << to)))
943 to--;
944 if (from > to)
945 return -1;
946 range[i].from = from;
947 range[i].to = to;
948 range[i].mask = mask;
949
950 if (from > range_from || to < range_to)
ec6fe57c
KH
951 {
952 /* The range is narrowed by value-based restrictions.
953 Reflect it to the other fields. */
954
955 /* Following fields should be after FROM. */
956 range_from = from;
957 /* Preceding fields should be before TO. */
958 for (j = i - 1, from--, to--; j >= 0; j--, from--, to--)
959 {
960 /* Check FROM for non-wildcard field. */
961 if (! NILP (tmp[j]) && range[j].from < from)
962 {
963 while (range[j].from < from)
964 range[j].mask &= ~(1 << range[j].from++);
965 while (from < 14 && ! (range[j].mask & (1 << from)))
966 from++;
967 range[j].from = from;
968 }
969 else
970 from = range[j].from;
971 if (range[j].to > to)
972 {
973 while (range[j].to > to)
974 range[j].mask &= ~(1 << range[j].to--);
975 while (to >= 0 && ! (range[j].mask & (1 << to)))
976 to--;
977 range[j].to = to;
978 }
979 else
980 to = range[j].to;
981 if (from > to)
982 return -1;
983 }
984 }
4485a28e
KH
985 }
986 }
987
988 /* Decide all fileds from restrictions in RANGE. */
989 for (i = j = 0; i < n ; i++)
990 {
991 if (j < range[i].from)
992 {
993 if (i == 0 || ! NILP (tmp[i - 1]))
994 /* None of TMP[X] corresponds to Jth field. */
995 return -1;
996 for (; j < range[i].from; j++)
997 field[j] = Qnil;
998 }
999 field[j++] = tmp[i];
1000 }
1001 if (! NILP (tmp[n - 1]) && j < XLFD_REGISTRY_INDEX)
1002 return -1;
1003 for (; j < XLFD_LAST_INDEX; j++)
1004 field[j] = Qnil;
1005 if (INTEGERP (field[XLFD_ENCODING_INDEX]))
1006 field[XLFD_ENCODING_INDEX]
1007 = Fintern (Fnumber_to_string (field[XLFD_ENCODING_INDEX]), Qnil);
1008 return 0;
1009}
1010
43a1d19b
SM
1011
1012#ifdef ENABLE_CHECKING
1013/* Match a 14-field XLFD pattern against a full XLFD font name. */
1014static int
1015font_match_xlfd (char *pattern, char *name)
1016{
1017 while (*pattern && *name)
1018 {
1019 if (*pattern == *name)
1020 pattern++;
1021 else if (*pattern == '*')
1022 if (*name == pattern[1])
1023 pattern += 2;
1024 else
1025 ;
1026 else
1027 return 0;
1028 name++;
1029 }
1030 return 1;
1031}
1032
1033/* Make sure the font object matches the XLFD font name. */
1034static int
1035font_check_xlfd_parse (Lisp_Object font, char *name)
1036{
1037 char name_check[256];
1038 font_unparse_xlfd (font, 0, name_check, 255);
1039 return font_match_xlfd (name_check, name);
1040}
1041
1042#endif
1043
35027d0c 1044
ef18374f 1045/* Parse NAME (null terminated) as XLFD and store information in FONT
9331887d
KH
1046 (font-spec or font-entity). Size property of FONT is set as
1047 follows:
1048 specified XLFD fields FONT property
1049 --------------------- -------------
1050 PIXEL_SIZE PIXEL_SIZE (Lisp integer)
1051 POINT_SIZE and RESY calculated pixel size (Lisp integer)
1052 POINT_SIZE POINT_SIZE/10 (Lisp float)
1053
ec6fe57c 1054 If NAME is successfully parsed, return 0. Otherwise return -1.
9331887d 1055
ec6fe57c
KH
1056 FONT is usually a font-spec, but when this function is called from
1057 X font backend driver, it is a font-entity. In that case, NAME is
35027d0c 1058 a fully specified XLFD. */
c2f5bfd6
KH
1059
1060int
ec6fe57c 1061font_parse_xlfd (name, font)
c2f5bfd6
KH
1062 char *name;
1063 Lisp_Object font;
c2f5bfd6
KH
1064{
1065 int len = strlen (name);
35027d0c 1066 int i, j, n;
cf23b845 1067 char *f[XLFD_LAST_INDEX + 1];
c2f5bfd6 1068 Lisp_Object val;
4485a28e 1069 char *p;
c2f5bfd6 1070
e3928081 1071 if (len > 255 || !len)
c2f5bfd6
KH
1072 /* Maximum XLFD name length is 255. */
1073 return -1;
ec6fe57c 1074 /* Accept "*-.." as a fully specified XLFD. */
e3928081 1075 if (name[0] == '*' && (len == 1 || name[1] == '-'))
ec6fe57c
KH
1076 i = 1, f[XLFD_FOUNDRY_INDEX] = name;
1077 else
1078 i = 0;
1079 for (p = name + i; *p; p++)
35027d0c
KH
1080 if (*p == '-')
1081 {
1082 f[i++] = p + 1;
1083 if (i == XLFD_LAST_INDEX)
1084 break;
1085 }
1086 f[i] = name + len;
c2f5bfd6 1087
2f286d4f
KH
1088#define INTERN_FIELD(N) font_intern_prop (f[N], f[(N) + 1] - 1 - f[N], 0)
1089#define INTERN_FIELD_SYM(N) font_intern_prop (f[N], f[(N) + 1] - 1 - f[N], 1)
4485a28e 1090
ec6fe57c 1091 if (i == XLFD_LAST_INDEX)
4485a28e 1092 {
35027d0c 1093 /* Fully specified XLFD. */
ec6fe57c
KH
1094 int pixel_size;
1095
2f286d4f
KH
1096 ASET (font, FONT_FOUNDRY_INDEX, INTERN_FIELD_SYM (XLFD_FOUNDRY_INDEX));
1097 ASET (font, FONT_FAMILY_INDEX, INTERN_FIELD_SYM (XLFD_FAMILY_INDEX));
35027d0c
KH
1098 for (i = XLFD_WEIGHT_INDEX, j = FONT_WEIGHT_INDEX;
1099 i <= XLFD_SWIDTH_INDEX; i++, j++)
4485a28e 1100 {
2f286d4f 1101 val = INTERN_FIELD_SYM (i);
ec6fe57c 1102 if (! NILP (val))
4485a28e 1103 {
2f286d4f 1104 if ((n = font_style_to_value (j, INTERN_FIELD_SYM (i), 0)) < 0)
35027d0c
KH
1105 return -1;
1106 ASET (font, j, make_number (n));
ec6fe57c
KH
1107 }
1108 }
2f286d4f 1109 ASET (font, FONT_ADSTYLE_INDEX, INTERN_FIELD_SYM (XLFD_ADSTYLE_INDEX));
35027d0c
KH
1110 if (strcmp (f[XLFD_REGISTRY_INDEX], "*-*") == 0)
1111 ASET (font, FONT_REGISTRY_INDEX, Qnil);
1112 else
1113 ASET (font, FONT_REGISTRY_INDEX,
1114 font_intern_prop (f[XLFD_REGISTRY_INDEX],
2f286d4f
KH
1115 f[XLFD_LAST_INDEX] - f[XLFD_REGISTRY_INDEX],
1116 1));
ec6fe57c
KH
1117 p = f[XLFD_PIXEL_INDEX];
1118 if (*p == '[' && (pixel_size = parse_matrix (p)) >= 0)
51c01100 1119 ASET (font, FONT_SIZE_INDEX, make_number (pixel_size));
ec6fe57c
KH
1120 else
1121 {
35027d0c
KH
1122 val = INTERN_FIELD (XLFD_PIXEL_INDEX);
1123 if (INTEGERP (val))
ec6fe57c
KH
1124 ASET (font, FONT_SIZE_INDEX, val);
1125 else
1126 {
1127 double point_size = -1;
1128
d0ab1ebe 1129 font_assert (FONT_SPEC_P (font));
ec6fe57c
KH
1130 p = f[XLFD_POINT_INDEX];
1131 if (*p == '[')
1132 point_size = parse_matrix (p);
1133 else if (isdigit (*p))
1134 point_size = atoi (p), point_size /= 10;
1135 if (point_size >= 0)
1136 ASET (font, FONT_SIZE_INDEX, make_float (point_size));
4485a28e
KH
1137 }
1138 }
ec6fe57c 1139
087048cd
KH
1140 val = INTERN_FIELD (XLFD_RESY_INDEX);
1141 if (! NILP (val) && ! INTEGERP (val))
1142 return -1;
1143 ASET (font, FONT_DPI_INDEX, val);
35027d0c
KH
1144 val = INTERN_FIELD (XLFD_SPACING_INDEX);
1145 if (! NILP (val))
ec6fe57c 1146 {
35027d0c
KH
1147 val = font_prop_validate_spacing (QCspacing, val);
1148 if (! INTEGERP (val))
1149 return -1;
1150 ASET (font, FONT_SPACING_INDEX, val);
ec6fe57c 1151 }
ec6fe57c
KH
1152 p = f[XLFD_AVGWIDTH_INDEX];
1153 if (*p == '~')
1154 p++;
087048cd
KH
1155 val = font_intern_prop (p, f[XLFD_REGISTRY_INDEX] - 1 - p, 0);
1156 if (! NILP (val) && ! INTEGERP (val))
1157 return -1;
1158 ASET (font, FONT_AVGWIDTH_INDEX, val);
4485a28e
KH
1159 }
1160 else
c2f5bfd6 1161 {
4485a28e 1162 int wild_card_found = 0;
ec6fe57c 1163 Lisp_Object prop[XLFD_LAST_INDEX];
4485a28e 1164
35027d0c
KH
1165 if (FONT_ENTITY_P (font))
1166 return -1;
ec6fe57c 1167 for (j = 0; j < i; j++)
4485a28e 1168 {
ec6fe57c 1169 if (*f[j] == '*')
4485a28e 1170 {
ec6fe57c
KH
1171 if (f[j][1] && f[j][1] != '-')
1172 return -1;
1173 prop[j] = Qnil;
1174 wild_card_found = 1;
1175 }
ec6fe57c 1176 else if (j + 1 < i)
35027d0c 1177 prop[j] = INTERN_FIELD (j);
ec6fe57c 1178 else
2f286d4f 1179 prop[j] = font_intern_prop (f[j], f[i] - f[j], 0);
4485a28e
KH
1180 }
1181 if (! wild_card_found)
c2f5bfd6 1182 return -1;
ec6fe57c 1183 if (font_expand_wildcards (prop, i) < 0)
4485a28e 1184 return -1;
ec6fe57c 1185
35027d0c
KH
1186 ASET (font, FONT_FOUNDRY_INDEX, prop[XLFD_FOUNDRY_INDEX]);
1187 ASET (font, FONT_FAMILY_INDEX, prop[XLFD_FAMILY_INDEX]);
1188 for (i = XLFD_WEIGHT_INDEX, j = FONT_WEIGHT_INDEX;
1189 i <= XLFD_SWIDTH_INDEX; i++, j++)
ec6fe57c 1190 if (! NILP (prop[i]))
35027d0c
KH
1191 {
1192 if ((n = font_style_to_value (j, prop[i], 1)) < 0)
1193 return -1;
1194 ASET (font, j, make_number (n));
1195 }
1196 ASET (font, FONT_ADSTYLE_INDEX, prop[XLFD_ADSTYLE_INDEX]);
ec6fe57c
KH
1197 val = prop[XLFD_REGISTRY_INDEX];
1198 if (NILP (val))
c2f5bfd6 1199 {
ec6fe57c
KH
1200 val = prop[XLFD_ENCODING_INDEX];
1201 if (! NILP (val))
35027d0c 1202 val = concat2 (build_string ("*-"), SYMBOL_NAME (val));
4485a28e 1203 }
ec6fe57c 1204 else if (NILP (prop[XLFD_ENCODING_INDEX]))
35027d0c 1205 val = concat2 (SYMBOL_NAME (val), build_string ("-*"));
4485a28e 1206 else
35027d0c
KH
1207 val = concat3 (SYMBOL_NAME (val), build_string ("-"),
1208 SYMBOL_NAME (prop[XLFD_ENCODING_INDEX]));
ec6fe57c 1209 if (! NILP (val))
35027d0c 1210 ASET (font, FONT_REGISTRY_INDEX, Fintern (val, Qnil));
ec6fe57c
KH
1211
1212 if (INTEGERP (prop[XLFD_PIXEL_INDEX]))
1213 ASET (font, FONT_SIZE_INDEX, prop[XLFD_PIXEL_INDEX]);
1214 else if (INTEGERP (prop[XLFD_POINT_INDEX]))
4485a28e 1215 {
ec6fe57c 1216 double point_size = XINT (prop[XLFD_POINT_INDEX]);
c2f5bfd6 1217
ec6fe57c
KH
1218 ASET (font, FONT_SIZE_INDEX, make_float (point_size / 10));
1219 }
c2f5bfd6 1220
35027d0c
KH
1221 if (INTEGERP (prop[XLFD_RESX_INDEX]))
1222 ASET (font, FONT_DPI_INDEX, prop[XLFD_RESY_INDEX]);
1223 if (! NILP (prop[XLFD_SPACING_INDEX]))
1224 {
1225 val = font_prop_validate_spacing (QCspacing,
1226 prop[XLFD_SPACING_INDEX]);
1227 if (! INTEGERP (val))
1228 return -1;
1229 ASET (font, FONT_SPACING_INDEX, val);
1230 }
ec6fe57c 1231 if (INTEGERP (prop[XLFD_AVGWIDTH_INDEX]))
35027d0c 1232 ASET (font, FONT_AVGWIDTH_INDEX, prop[XLFD_AVGWIDTH_INDEX]);
c2f5bfd6
KH
1233 }
1234
ec6fe57c 1235 return 0;
c2f5bfd6
KH
1236}
1237
1238/* Store XLFD name of FONT (font-spec or font-entity) in NAME (NBYTES
1239 length), and return the name length. If FONT_SIZE_INDEX of FONT is
1240 0, use PIXEL_SIZE instead. */
1241
1242int
1243font_unparse_xlfd (font, pixel_size, name, nbytes)
1244 Lisp_Object font;
1bb1d99b 1245 int pixel_size;
c2f5bfd6
KH
1246 char *name;
1247 int nbytes;
1248{
ec6fe57c 1249 char *f[XLFD_REGISTRY_INDEX + 1];
c2f5bfd6
KH
1250 Lisp_Object val;
1251 int i, j, len = 0;
1252
d0ab1ebe 1253 font_assert (FONTP (font));
c2f5bfd6
KH
1254
1255 for (i = FONT_FOUNDRY_INDEX, j = XLFD_FOUNDRY_INDEX; i <= FONT_REGISTRY_INDEX;
1256 i++, j++)
1257 {
1258 if (i == FONT_ADSTYLE_INDEX)
1259 j = XLFD_ADSTYLE_INDEX;
1260 else if (i == FONT_REGISTRY_INDEX)
1261 j = XLFD_REGISTRY_INDEX;
1262 val = AREF (font, i);
1263 if (NILP (val))
1bb1d99b
KH
1264 {
1265 if (j == XLFD_REGISTRY_INDEX)
1266 f[j] = "*-*", len += 4;
1267 else
1268 f[j] = "*", len += 2;
1269 }
c2f5bfd6
KH
1270 else
1271 {
1272 if (SYMBOLP (val))
1273 val = SYMBOL_NAME (val);
1bb1d99b
KH
1274 if (j == XLFD_REGISTRY_INDEX
1275 && ! strchr ((char *) SDATA (val), '-'))
1276 {
1277 /* Change "jisx0208*" and "jisx0208" to "jisx0208*-*". */
1278 if (SDATA (val)[SBYTES (val) - 1] == '*')
1279 {
1280 f[j] = alloca (SBYTES (val) + 3);
1281 sprintf (f[j], "%s-*", SDATA (val));
1282 len += SBYTES (val) + 3;
1283 }
1284 else
1285 {
1286 f[j] = alloca (SBYTES (val) + 4);
1287 sprintf (f[j], "%s*-*", SDATA (val));
1288 len += SBYTES (val) + 4;
1289 }
1290 }
1291 else
1292 f[j] = (char *) SDATA (val), len += SBYTES (val) + 1;
c2f5bfd6
KH
1293 }
1294 }
1295
1296 for (i = FONT_WEIGHT_INDEX, j = XLFD_WEIGHT_INDEX; i <= FONT_WIDTH_INDEX;
1297 i++, j++)
1298 {
35027d0c 1299 val = font_style_symbolic (font, i, 0);
c2f5bfd6
KH
1300 if (NILP (val))
1301 f[j] = "*", len += 2;
1302 else
1303 {
35027d0c 1304 val = SYMBOL_NAME (val);
c2f5bfd6
KH
1305 f[j] = (char *) SDATA (val), len += SBYTES (val) + 1;
1306 }
1307 }
1308
1309 val = AREF (font, FONT_SIZE_INDEX);
d0ab1ebe 1310 font_assert (NUMBERP (val) || NILP (val));
c2f5bfd6
KH
1311 if (INTEGERP (val))
1312 {
35027d0c 1313 i = XINT (val);
81aefea4
SM
1314 if (i <= 0)
1315 i = pixel_size;
c2f5bfd6 1316 if (i > 0)
81aefea4
SM
1317 {
1318 f[XLFD_PIXEL_INDEX] = alloca (22);
1319 len += sprintf (f[XLFD_PIXEL_INDEX], "%d-*", i) + 1;
1320 }
1321 else
1322 f[XLFD_PIXEL_INDEX] = "*-*", len += 4;
c2f5bfd6
KH
1323 }
1324 else if (FLOATP (val))
1325 {
35027d0c 1326 i = XFLOAT_DATA (val) * 10;
ec6fe57c 1327 f[XLFD_PIXEL_INDEX] = alloca (12);
ec6fe57c 1328 len += sprintf (f[XLFD_PIXEL_INDEX], "*-%d", i) + 1;
c2f5bfd6
KH
1329 }
1330 else
ec6fe57c
KH
1331 f[XLFD_PIXEL_INDEX] = "*-*", len += 4;
1332
35027d0c 1333 if (INTEGERP (AREF (font, FONT_DPI_INDEX)))
c2f5bfd6 1334 {
35027d0c
KH
1335 i = XINT (AREF (font, FONT_DPI_INDEX));
1336 f[XLFD_RESX_INDEX] = alloca (22);
1337 len += sprintf (f[XLFD_RESX_INDEX],
1338 "%d-%d", i, i) + 1;
c2f5bfd6
KH
1339 }
1340 else
35027d0c
KH
1341 f[XLFD_RESX_INDEX] = "*-*", len += 4;
1342 if (INTEGERP (AREF (font, FONT_SPACING_INDEX)))
ec6fe57c 1343 {
35027d0c 1344 int spacing = XINT (AREF (font, FONT_SPACING_INDEX));
ec6fe57c 1345
35027d0c
KH
1346 f[XLFD_SPACING_INDEX] = (spacing <= FONT_SPACING_PROPORTIONAL ? "p"
1347 : spacing <= FONT_SPACING_DUAL ? "d"
1348 : spacing <= FONT_SPACING_MONO ? "m"
1349 : "c");
1350 len += 2;
ec6fe57c 1351 }
35027d0c
KH
1352 else
1353 f[XLFD_SPACING_INDEX] = "*", len += 2;
1354 if (INTEGERP (AREF (font, FONT_AVGWIDTH_INDEX)))
1355 {
1356 f[XLFD_AVGWIDTH_INDEX] = alloca (11);
c56c14a1
AR
1357 len += sprintf (f[XLFD_AVGWIDTH_INDEX], "%ld",
1358 (long) XINT (AREF (font, FONT_AVGWIDTH_INDEX))) + 1;
35027d0c
KH
1359 }
1360 else
1361 f[XLFD_AVGWIDTH_INDEX] = "*", len += 2;
ec6fe57c 1362 len++; /* for terminating '\0'. */
c2f5bfd6
KH
1363 if (len >= nbytes)
1364 return -1;
35027d0c 1365 return sprintf (name, "-%s-%s-%s-%s-%s-%s-%s-%s-%s-%s-%s",
c2f5bfd6
KH
1366 f[XLFD_FOUNDRY_INDEX], f[XLFD_FAMILY_INDEX],
1367 f[XLFD_WEIGHT_INDEX], f[XLFD_SLANT_INDEX],
35027d0c
KH
1368 f[XLFD_SWIDTH_INDEX], f[XLFD_ADSTYLE_INDEX],
1369 f[XLFD_PIXEL_INDEX], f[XLFD_RESX_INDEX],
1370 f[XLFD_SPACING_INDEX], f[XLFD_AVGWIDTH_INDEX],
1371 f[XLFD_REGISTRY_INDEX]);
c2f5bfd6
KH
1372}
1373
8c102d5b
CY
1374/* Parse NAME (null terminated) and store information in FONT
1375 (font-spec or font-entity). NAME is supplied in either the
1376 Fontconfig or GTK font name format. If NAME is successfully
1377 parsed, return 0. Otherwise return -1.
1378
1379 The fontconfig format is
1380
1381 FAMILY[-SIZE][:PROP1[=VAL1][:PROP2[=VAL2]...]]
1382
1383 The GTK format is
1384
1385 FAMILY [PROPS...] [SIZE]
1386
1387 This function tries to guess which format it is. */
ef18374f
KH
1388
1389int
ec6fe57c 1390font_parse_fcname (name, font)
ef18374f
KH
1391 char *name;
1392 Lisp_Object font;
ef18374f 1393{
8c102d5b
CY
1394 char *p, *q;
1395 char *size_beg = NULL, *size_end = NULL;
1396 char *props_beg = NULL, *family_end = NULL;
9331887d 1397 int len = strlen (name);
ef18374f 1398
ec6fe57c
KH
1399 if (len == 0)
1400 return -1;
8c102d5b
CY
1401
1402 for (p = name; *p; p++)
ef18374f 1403 {
8c102d5b
CY
1404 if (*p == '\\' && p[1])
1405 p++;
1406 else if (*p == ':')
ef18374f 1407 {
59facb78 1408 props_beg = family_end = p;
8c102d5b
CY
1409 break;
1410 }
1411 else if (*p == '-')
1412 {
b1868a1a 1413 int decimal = 0, size_found = 1;
8c102d5b 1414 for (q = p + 1; *q && *q != ':'; q++)
b1868a1a 1415 if (! isdigit(*q))
8c102d5b 1416 {
b1868a1a
CY
1417 if (*q != '.' || decimal)
1418 {
1419 size_found = 0;
1420 break;
1421 }
1422 decimal = 1;
8c102d5b
CY
1423 }
1424 if (size_found)
1425 {
1426 family_end = p;
1427 size_beg = p + 1;
1428 size_end = q;
1429 break;
1430 }
ef18374f 1431 }
ef18374f 1432 }
9331887d 1433
8c102d5b
CY
1434 if (family_end)
1435 {
637fa988
JD
1436 Lisp_Object extra_props = Qnil;
1437
8c102d5b
CY
1438 /* A fontconfig name with size and/or property data. */
1439 if (family_end > name)
1440 {
1441 Lisp_Object family;
1442 family = font_intern_prop (name, family_end - name, 1);
1443 ASET (font, FONT_FAMILY_INDEX, family);
1444 }
1445 if (size_beg)
1446 {
1447 double point_size = strtod (size_beg, &size_end);
1448 ASET (font, FONT_SIZE_INDEX, make_float (point_size));
1449 if (*size_end == ':' && size_end[1])
59facb78 1450 props_beg = size_end;
8c102d5b
CY
1451 }
1452 if (props_beg)
1453 {
d26424c5 1454 /* Now parse ":KEY=VAL" patterns. */
59facb78 1455 Lisp_Object val;
8c102d5b 1456
59facb78 1457 for (p = props_beg; *p; p = q)
8c102d5b 1458 {
8c102d5b 1459 for (q = p + 1; *q && *q != '=' && *q != ':'; q++);
8c102d5b
CY
1460 if (*q != '=')
1461 {
1462 /* Must be an enumerated value. */
59facb78
CY
1463 int word_len;
1464 p = p + 1;
1465 word_len = q - p;
8c102d5b 1466 val = font_intern_prop (p, q - p, 1);
9277a69d
CY
1467
1468#define PROP_MATCH(STR,N) ((word_len == N) && memcmp (p, STR, N) == 0)
1469
8c102d5b
CY
1470 if (PROP_MATCH ("light", 5)
1471 || PROP_MATCH ("medium", 6)
1472 || PROP_MATCH ("demibold", 8)
1473 || PROP_MATCH ("bold", 4)
1474 || PROP_MATCH ("black", 5))
1475 FONT_SET_STYLE (font, FONT_WEIGHT_INDEX, val);
1476 else if (PROP_MATCH ("roman", 5)
1477 || PROP_MATCH ("italic", 6)
1478 || PROP_MATCH ("oblique", 7))
1479 FONT_SET_STYLE (font, FONT_SLANT_INDEX, val);
1480 else if (PROP_MATCH ("charcell", 8))
1481 ASET (font, FONT_SPACING_INDEX,
1482 make_number (FONT_SPACING_CHARCELL));
1483 else if (PROP_MATCH ("mono", 4))
1484 ASET (font, FONT_SPACING_INDEX,
1485 make_number (FONT_SPACING_MONO));
1486 else if (PROP_MATCH ("proportional", 12))
1487 ASET (font, FONT_SPACING_INDEX,
1488 make_number (FONT_SPACING_PROPORTIONAL));
9277a69d 1489#undef PROP_MATCH
8c102d5b 1490 }
59facb78 1491 else
8c102d5b 1492 {
59facb78 1493 /* KEY=VAL pairs */
8c102d5b 1494 Lisp_Object key;
59facb78 1495 int prop;
51c01100 1496
59facb78 1497 if (q - p == 10 && memcmp (p + 1, "pixelsize", 9) == 0)
8c102d5b
CY
1498 prop = FONT_SIZE_INDEX;
1499 else
1500 {
1501 key = font_intern_prop (p, q - p, 1);
1502 prop = get_font_prop_index (key);
1503 }
77989187 1504
8c102d5b
CY
1505 p = q + 1;
1506 for (q = p; *q && *q != ':'; q++);
90c00b01 1507 val = font_intern_prop (p, q - p, 0);
77989187 1508
d26424c5
KH
1509 if (prop >= FONT_FOUNDRY_INDEX
1510 && prop < FONT_EXTRA_INDEX)
637fa988 1511 ASET (font, prop, font_prop_validate (prop, Qnil, val));
ce75f06e 1512 else
637fa988
JD
1513 {
1514 extra_props = nconc2 (extra_props,
1515 Fcons (Fcons (key, val), Qnil));
1516 }
8c102d5b 1517 }
d26424c5 1518 p = q;
8c102d5b 1519 }
8c102d5b 1520 }
637fa988
JD
1521
1522 if (! NILP (extra_props))
1523 {
1524 struct font_driver_list *driver_list = font_driver_list;
1525 for ( ; driver_list; driver_list = driver_list->next)
1526 if (driver_list->driver->filter_properties)
1527 (*driver_list->driver->filter_properties) (font, extra_props);
1528 }
ce75f06e 1529
8c102d5b
CY
1530 }
1531 else
ef18374f 1532 {
8c102d5b
CY
1533 /* Either a fontconfig-style name with no size and property
1534 data, or a GTK-style name. */
1535 Lisp_Object prop;
1536 int word_len, prop_found = 0;
ef18374f 1537
8c102d5b 1538 for (p = name; *p; p = *q ? q + 1 : q)
ef18374f 1539 {
8c102d5b 1540 if (isdigit (*p))
9331887d 1541 {
8c102d5b 1542 int size_found = 1;
7181ea6a 1543
8c102d5b
CY
1544 for (q = p + 1; *q && *q != ' '; q++)
1545 if (! isdigit (*q))
1546 {
1547 size_found = 0;
1548 break;
1549 }
1550 if (size_found)
1551 {
1552 double point_size = strtod (p, &q);
1553 ASET (font, FONT_SIZE_INDEX, make_float (point_size));
1554 continue;
1555 }
027a33c0 1556 }
8c102d5b
CY
1557
1558 for (q = p + 1; *q && *q != ' '; q++)
1559 if (*q == '\\' && q[1])
1560 q++;
1561 word_len = q - p;
1562
1563#define PROP_MATCH(STR,N) ((word_len == N) && memcmp (p, STR, N) == 0)
1564
1565 if (PROP_MATCH ("Ultra-Light", 11))
9331887d 1566 {
8c102d5b
CY
1567 prop_found = 1;
1568 prop = font_intern_prop ("ultra-light", 11, 1);
1569 FONT_SET_STYLE (font, FONT_WEIGHT_INDEX, prop);
9331887d 1570 }
8c102d5b 1571 else if (PROP_MATCH ("Light", 5))
9331887d 1572 {
8c102d5b
CY
1573 prop_found = 1;
1574 prop = font_intern_prop ("light", 5, 1);
1575 FONT_SET_STYLE (font, FONT_WEIGHT_INDEX, prop);
9331887d 1576 }
8c102d5b 1577 else if (PROP_MATCH ("Semi-Bold", 9))
9331887d 1578 {
8c102d5b
CY
1579 prop_found = 1;
1580 prop = font_intern_prop ("semi-bold", 9, 1);
1581 FONT_SET_STYLE (font, FONT_WEIGHT_INDEX, prop);
1582 }
1583 else if (PROP_MATCH ("Bold", 4))
1584 {
1585 prop_found = 1;
1586 prop = font_intern_prop ("bold", 4, 1);
1587 FONT_SET_STYLE (font, FONT_WEIGHT_INDEX, prop);
ef18374f 1588 }
8c102d5b
CY
1589 else if (PROP_MATCH ("Italic", 6))
1590 {
1591 prop_found = 1;
1592 prop = font_intern_prop ("italic", 4, 1);
1593 FONT_SET_STYLE (font, FONT_SLANT_INDEX, prop);
1594 }
1595 else if (PROP_MATCH ("Oblique", 7))
1596 {
1597 prop_found = 1;
1598 prop = font_intern_prop ("oblique", 7, 1);
1599 FONT_SET_STYLE (font, FONT_SLANT_INDEX, prop);
1600 }
1601 else {
1602 if (prop_found)
1603 return -1; /* Unknown property in GTK-style font name. */
1604 family_end = q;
1605 }
ef18374f 1606 }
8c102d5b 1607#undef PROP_MATCH
9ba6fd41 1608
8c102d5b
CY
1609 if (family_end)
1610 {
1611 Lisp_Object family;
1612 family = font_intern_prop (name, family_end - name, 1);
1613 ASET (font, FONT_FAMILY_INDEX, family);
1614 }
1615 }
17ab8f5d 1616
9331887d 1617 return 0;
ef18374f
KH
1618}
1619
1620/* Store fontconfig's font name of FONT (font-spec or font-entity) in
1621 NAME (NBYTES length), and return the name length. If
1622 FONT_SIZE_INDEX of FONT is 0, use PIXEL_SIZE instead. */
1623
1624int
1625font_unparse_fcname (font, pixel_size, name, nbytes)
1626 Lisp_Object font;
1627 int pixel_size;
1628 char *name;
1629 int nbytes;
1630{
b1868a1a 1631 Lisp_Object family, foundry;
35027d0c 1632 Lisp_Object tail, val;
ec6fe57c 1633 int point_size;
ec6fe57c 1634 int i, len = 1;
ef18374f 1635 char *p;
a9262bb8 1636 Lisp_Object styles[3];
417a1b10 1637 char *style_names[3] = { "weight", "slant", "width" };
35027d0c 1638 char work[256];
ef18374f 1639
b1868a1a
CY
1640 family = AREF (font, FONT_FAMILY_INDEX);
1641 if (! NILP (family))
1642 {
1643 if (SYMBOLP (family))
1644 {
1645 family = SYMBOL_NAME (family);
1646 len += SBYTES (family);
1647 }
1648 else
1649 family = Qnil;
1650 }
ec6fe57c
KH
1651
1652 val = AREF (font, FONT_SIZE_INDEX);
1653 if (INTEGERP (val))
ef18374f 1654 {
ec6fe57c
KH
1655 if (XINT (val) != 0)
1656 pixel_size = XINT (val);
1657 point_size = -1;
1658 len += 21; /* for ":pixelsize=NUM" */
ef18374f 1659 }
ec6fe57c 1660 else if (FLOATP (val))
ef18374f 1661 {
ec6fe57c
KH
1662 pixel_size = -1;
1663 point_size = (int) XFLOAT_DATA (val);
1664 len += 11; /* for "-NUM" */
ef18374f 1665 }
ec6fe57c 1666
b1868a1a
CY
1667 foundry = AREF (font, FONT_FOUNDRY_INDEX);
1668 if (! NILP (foundry))
1669 {
1670 if (SYMBOLP (foundry))
1671 {
1672 foundry = SYMBOL_NAME (foundry);
1673 len += 9 + SBYTES (foundry); /* ":foundry=NAME" */
1674 }
1675 else
1676 foundry = Qnil;
1677 }
ec6fe57c 1678
35027d0c 1679 for (i = 0; i < 3; i++)
a9262bb8 1680 {
35027d0c
KH
1681 styles[i] = font_style_symbolic (font, FONT_WEIGHT_INDEX + i, 0);
1682 if (! NILP (styles[i]))
1683 len += sprintf (work, ":%s=%s", style_names[i],
1684 SDATA (SYMBOL_NAME (styles[i])));
ec6fe57c 1685 }
35027d0c
KH
1686
1687 if (INTEGERP (AREF (font, FONT_DPI_INDEX)))
c56c14a1 1688 len += sprintf (work, ":dpi=%ld", (long)XINT (AREF (font, FONT_DPI_INDEX)));
35027d0c
KH
1689 if (INTEGERP (AREF (font, FONT_SPACING_INDEX)))
1690 len += strlen (":spacing=100");
1691 if (INTEGERP (AREF (font, FONT_AVGWIDTH_INDEX)))
1692 len += strlen (":scalable=false"); /* or ":scalable=true" */
1693 for (tail = AREF (font, FONT_EXTRA_INDEX); CONSP (tail); tail = XCDR (tail))
ec6fe57c 1694 {
35027d0c
KH
1695 Lisp_Object key = XCAR (XCAR (tail)), val = XCDR (XCAR (tail));
1696
1697 len += SBYTES (SYMBOL_NAME (key)) + 1; /* for :KEY= */
1698 if (STRINGP (val))
1699 len += SBYTES (val);
1700 else if (INTEGERP (val))
c56c14a1 1701 len += sprintf (work, "%ld", (long) XINT (val));
35027d0c
KH
1702 else if (SYMBOLP (val))
1703 len += (NILP (val) ? 5 : 4); /* for "false" or "true" */
ec6fe57c
KH
1704 }
1705
ef18374f
KH
1706 if (len > nbytes)
1707 return -1;
1708 p = name;
b1868a1a
CY
1709 if (! NILP (family))
1710 p += sprintf (p, "%s", SDATA (family));
ec6fe57c
KH
1711 if (point_size > 0)
1712 {
1713 if (p == name)
1714 p += sprintf (p, "%d", point_size);
1715 else
1716 p += sprintf (p, "-%d", point_size);
1717 }
ef18374f
KH
1718 else if (pixel_size > 0)
1719 p += sprintf (p, ":pixelsize=%d", pixel_size);
35027d0c 1720 if (! NILP (AREF (font, FONT_FOUNDRY_INDEX)))
a9262bb8
KH
1721 p += sprintf (p, ":foundry=%s",
1722 SDATA (SYMBOL_NAME (AREF (font, FONT_FOUNDRY_INDEX))));
1723 for (i = 0; i < 3; i++)
35027d0c 1724 if (! NILP (styles[i]))
a9262bb8 1725 p += sprintf (p, ":%s=%s", style_names[i],
35027d0c
KH
1726 SDATA (SYMBOL_NAME (styles[i])));
1727 if (INTEGERP (AREF (font, FONT_DPI_INDEX)))
c56c14a1 1728 p += sprintf (p, ":dpi=%ld", (long) XINT (AREF (font, FONT_DPI_INDEX)));
35027d0c 1729 if (INTEGERP (AREF (font, FONT_SPACING_INDEX)))
c56c14a1
AR
1730 p += sprintf (p, ":spacing=%ld",
1731 (long) XINT (AREF (font, FONT_SPACING_INDEX)));
35027d0c
KH
1732 if (INTEGERP (AREF (font, FONT_AVGWIDTH_INDEX)))
1733 {
1734 if (XINT (AREF (font, FONT_AVGWIDTH_INDEX)) == 0)
1735 p += sprintf (p, ":scalable=true");
1736 else
1737 p += sprintf (p, ":scalable=false");
1738 }
ef18374f
KH
1739 return (p - name);
1740}
1741
b1868a1a
CY
1742/* Store GTK-style font name of FONT (font-spec or font-entity) in
1743 NAME (NBYTES length), and return the name length. F is the frame
1744 on which the font is displayed; it is used to calculate the point
1745 size. */
1746
1747int
1748font_unparse_gtkname (font, f, name, nbytes)
1749 Lisp_Object font;
1750 struct frame *f;
1751 char *name;
1752 int nbytes;
1753{
1754 char *p;
1755 int len = 1;
1756 Lisp_Object family, weight, slant, size;
1757 int point_size = -1;
1758
1759 family = AREF (font, FONT_FAMILY_INDEX);
1760 if (! NILP (family))
1761 {
1762 if (! SYMBOLP (family))
1763 return -1;
1764 family = SYMBOL_NAME (family);
1765 len += SBYTES (family);
1766 }
1767
1768 weight = font_style_symbolic (font, FONT_WEIGHT_INDEX, 0);
93eed26b 1769 if (EQ (weight, Qnormal))
b1868a1a
CY
1770 weight = Qnil;
1771 else if (! NILP (weight))
1772 {
1773 weight = SYMBOL_NAME (weight);
1774 len += SBYTES (weight);
1775 }
1776
1777 slant = font_style_symbolic (font, FONT_SLANT_INDEX, 0);
93eed26b 1778 if (EQ (slant, Qnormal))
b1868a1a
CY
1779 slant = Qnil;
1780 else if (! NILP (slant))
1781 {
1782 slant = SYMBOL_NAME (slant);
1783 len += SBYTES (slant);
1784 }
1785
1786 size = AREF (font, FONT_SIZE_INDEX);
1787 /* Convert pixel size to point size. */
1788 if (INTEGERP (size))
1789 {
1790 Lisp_Object font_dpi = AREF (font, FONT_DPI_INDEX);
1791 int dpi = 75;
1792 if (INTEGERP (font_dpi))
1793 dpi = XINT (font_dpi);
1794 else if (f)
1795 dpi = f->resy;
1796 point_size = PIXEL_TO_POINT (XINT (size), dpi);
1797 len += 11;
1798 }
1799 else if (FLOATP (size))
1800 {
1801 point_size = (int) XFLOAT_DATA (size);
1802 len += 11;
1803 }
1804
1805 if (len > nbytes)
1806 return -1;
1807
1808 p = name + sprintf (name, "%s", SDATA (family));
1809
1810 if (! NILP (weight))
1811 {
1812 char *q = p;
1813 p += sprintf (p, " %s", SDATA (weight));
1814 q[1] = toupper (q[1]);
1815 }
1816
1817 if (! NILP (slant))
1818 {
1819 char *q = p;
1820 p += sprintf (p, " %s", SDATA (slant));
1821 q[1] = toupper (q[1]);
1822 }
1823
1824 if (point_size > 0)
1825 p += sprintf (p, " %d", point_size);
1826
1827 return (p - name);
1828}
1829
ef18374f
KH
1830/* Parse NAME (null terminated) and store information in FONT
1831 (font-spec or font-entity). If NAME is successfully parsed, return
35027d0c 1832 0. Otherwise return -1. */
ef18374f
KH
1833
1834static int
ec6fe57c 1835font_parse_name (name, font)
ef18374f
KH
1836 char *name;
1837 Lisp_Object font;
ef18374f 1838{
05802645 1839 if (name[0] == '-' || index (name, '*') || index (name, '?'))
e950d6f1 1840 return font_parse_xlfd (name, font);
ec6fe57c 1841 return font_parse_fcname (name, font);
ef18374f
KH
1842}
1843
35027d0c
KH
1844
1845/* Merge FAMILY and REGISTRY into FONT_SPEC. FAMILY may have the form
1846 "FAMILY-FOUNDRY". REGISTRY may not contain charset-encoding
1847 part. */
45eb10fb 1848
c2f5bfd6 1849void
35027d0c
KH
1850font_parse_family_registry (family, registry, font_spec)
1851 Lisp_Object family, registry, font_spec;
c2f5bfd6 1852{
35027d0c
KH
1853 int len;
1854 char *p0, *p1;
1855
d0ab1ebe
KH
1856 if (! NILP (family)
1857 && NILP (AREF (font_spec, FONT_FAMILY_INDEX)))
c2f5bfd6 1858 {
35027d0c
KH
1859 CHECK_STRING (family);
1860 len = SBYTES (family);
1861 p0 = (char *) SDATA (family);
1862 p1 = index (p0, '-');
1863 if (p1)
c2f5bfd6 1864 {
9903d1e6 1865 if ((*p0 != '*' && p1 - p0 > 0)
d0ab1ebe 1866 && NILP (AREF (font_spec, FONT_FOUNDRY_INDEX)))
2f286d4f 1867 Ffont_put (font_spec, QCfoundry, font_intern_prop (p0, p1 - p0, 1));
35027d0c
KH
1868 p1++;
1869 len -= p1 - p0;
2f286d4f 1870 Ffont_put (font_spec, QCfamily, font_intern_prop (p1, len, 1));
c2f5bfd6 1871 }
35027d0c
KH
1872 else
1873 ASET (font_spec, FONT_FAMILY_INDEX, Fintern (family, Qnil));
c2f5bfd6 1874 }
35027d0c 1875 if (! NILP (registry))
c2f5bfd6 1876 {
35027d0c
KH
1877 /* Convert "XXX" and "XXX*" to "XXX*-*". */
1878 CHECK_STRING (registry);
1879 len = SBYTES (registry);
1880 p0 = (char *) SDATA (registry);
1881 p1 = index (p0, '-');
1882 if (! p1)
c2f5bfd6 1883 {
35027d0c
KH
1884 if (SDATA (registry)[len - 1] == '*')
1885 registry = concat2 (registry, build_string ("-*"));
1886 else
1887 registry = concat2 (registry, build_string ("*-*"));
c2f5bfd6 1888 }
35027d0c
KH
1889 registry = Fdowncase (registry);
1890 ASET (font_spec, FONT_REGISTRY_INDEX, Fintern (registry, Qnil));
c2f5bfd6
KH
1891 }
1892}
1893
45eb10fb 1894\f
35027d0c
KH
1895/* This part (through the next ^L) is still experimental and not
1896 tested much. We may drastically change codes. */
10d16101 1897
45eb10fb 1898/* OTF handler */
10d16101 1899
6a3dadd2
KH
1900#if 0
1901
e950d6f1
KH
1902#define LGSTRING_HEADER_SIZE 6
1903#define LGSTRING_GLYPH_SIZE 8
1904
1905static int
1906check_gstring (gstring)
1907 Lisp_Object gstring;
1908{
1909 Lisp_Object val;
1910 int i, j;
1911
1912 CHECK_VECTOR (gstring);
1913 val = AREF (gstring, 0);
1914 CHECK_VECTOR (val);
1915 if (ASIZE (val) < LGSTRING_HEADER_SIZE)
1916 goto err;
1917 CHECK_FONT_OBJECT (LGSTRING_FONT (gstring));
f9ffa1ea
SM
1918 if (!NILP (LGSTRING_SLOT (gstring, LGSTRING_IX_LBEARING)))
1919 CHECK_NUMBER (LGSTRING_SLOT (gstring, LGSTRING_IX_LBEARING));
1920 if (!NILP (LGSTRING_SLOT (gstring, LGSTRING_IX_RBEARING)))
1921 CHECK_NUMBER (LGSTRING_SLOT (gstring, LGSTRING_IX_RBEARING));
1922 if (!NILP (LGSTRING_SLOT (gstring, LGSTRING_IX_WIDTH)))
1923 CHECK_NATNUM (LGSTRING_SLOT (gstring, LGSTRING_IX_WIDTH));
1924 if (!NILP (LGSTRING_SLOT (gstring, LGSTRING_IX_ASCENT)))
1925 CHECK_NUMBER (LGSTRING_SLOT (gstring, LGSTRING_IX_ASCENT));
1926 if (!NILP (LGSTRING_SLOT (gstring, LGSTRING_IX_ASCENT)))
1927 CHECK_NUMBER (LGSTRING_SLOT (gstring, LGSTRING_IX_ASCENT));
e950d6f1 1928
071132a9 1929 for (i = 0; i < LGSTRING_GLYPH_LEN (gstring); i++)
e950d6f1
KH
1930 {
1931 val = LGSTRING_GLYPH (gstring, i);
1932 CHECK_VECTOR (val);
1933 if (ASIZE (val) < LGSTRING_GLYPH_SIZE)
1934 goto err;
f9ffa1ea 1935 if (NILP (AREF (val, LGLYPH_IX_CHAR)))
e950d6f1 1936 break;
f9ffa1ea
SM
1937 CHECK_NATNUM (AREF (val, LGLYPH_IX_FROM));
1938 CHECK_NATNUM (AREF (val, LGLYPH_IX_TO));
1939 CHECK_CHARACTER (AREF (val, LGLYPH_IX_CHAR));
1940 if (!NILP (AREF (val, LGLYPH_IX_CODE)))
1941 CHECK_NATNUM (AREF (val, LGLYPH_IX_CODE));
1942 if (!NILP (AREF (val, LGLYPH_IX_WIDTH)))
1943 CHECK_NATNUM (AREF (val, LGLYPH_IX_WIDTH));
1944 if (!NILP (AREF (val, LGLYPH_IX_ADJUSTMENT)))
e950d6f1 1945 {
f9ffa1ea 1946 val = AREF (val, LGLYPH_IX_ADJUSTMENT);
e950d6f1
KH
1947 CHECK_VECTOR (val);
1948 if (ASIZE (val) < 3)
1949 goto err;
1950 for (j = 0; j < 3; j++)
1951 CHECK_NUMBER (AREF (val, j));
1952 }
1953 }
1954 return i;
1955 err:
1956 error ("Invalid glyph-string format");
1957 return -1;
1958}
1959
cf385d93
KH
1960static void
1961check_otf_features (otf_features)
1962 Lisp_Object otf_features;
1963{
35027d0c 1964 Lisp_Object val;
cf385d93
KH
1965
1966 CHECK_CONS (otf_features);
1967 CHECK_SYMBOL (XCAR (otf_features));
1968 otf_features = XCDR (otf_features);
1969 CHECK_CONS (otf_features);
1970 CHECK_SYMBOL (XCAR (otf_features));
1971 otf_features = XCDR (otf_features);
1972 for (val = Fcar (otf_features); ! NILP (val); val = Fcdr (val))
1973 {
1974 CHECK_SYMBOL (Fcar (val));
1975 if (SBYTES (SYMBOL_NAME (XCAR (val))) > 4)
1976 error ("Invalid OTF GSUB feature: %s", SYMBOL_NAME (XCAR (val)));
1977 }
1978 otf_features = XCDR (otf_features);
1979 for (val = Fcar (otf_features); ! NILP (val); val = Fcdr (val))
1980 {
1981 CHECK_SYMBOL (Fcar (val));
1982 if (SBYTES (SYMBOL_NAME (XCAR (val))) > 4)
1983 error ("Invalid OTF GPOS feature: %s", SYMBOL_NAME (XCAR (val)));
1984 }
1985}
1986
c2f5bfd6
KH
1987#ifdef HAVE_LIBOTF
1988#include <otf.h>
1989
733fd013 1990Lisp_Object otf_list;
c2f5bfd6
KH
1991
1992static Lisp_Object
1993otf_tag_symbol (tag)
1994 OTF_Tag tag;
1995{
1996 char name[5];
1997
1998 OTF_tag_name (tag, name);
1999 return Fintern (make_unibyte_string (name, 4), Qnil);
2000}
2001
2002static OTF *
35027d0c
KH
2003otf_open (file)
2004 Lisp_Object file;
c2f5bfd6 2005{
35027d0c 2006 Lisp_Object val = Fassoc (file, otf_list);
733fd013
KH
2007 OTF *otf;
2008
2009 if (! NILP (val))
2010 otf = XSAVE_VALUE (XCDR (val))->pointer;
2011 else
c2f5bfd6 2012 {
35027d0c 2013 otf = STRINGP (file) ? OTF_open ((char *) SDATA (file)) : NULL;
733fd013 2014 val = make_save_value (otf, 0);
35027d0c 2015 otf_list = Fcons (Fcons (file, val), otf_list);
c2f5bfd6 2016 }
733fd013 2017 return otf;
c2f5bfd6
KH
2018}
2019
2020
2021/* Return a list describing which scripts/languages FONT supports by
2022 which GSUB/GPOS features of OpenType tables. See the comment of
51c01100 2023 (struct font_driver).otf_capability. */
c2f5bfd6
KH
2024
2025Lisp_Object
2026font_otf_capability (font)
2027 struct font *font;
2028{
2029 OTF *otf;
2030 Lisp_Object capability = Fcons (Qnil, Qnil);
2031 int i;
2032
35027d0c 2033 otf = otf_open (font->props[FONT_FILE_INDEX]);
c2f5bfd6
KH
2034 if (! otf)
2035 return Qnil;
2036 for (i = 0; i < 2; i++)
2037 {
2038 OTF_GSUB_GPOS *gsub_gpos;
2039 Lisp_Object script_list = Qnil;
2040 int j;
2041
2042 if (OTF_get_features (otf, i == 0) < 0)
2043 continue;
2044 gsub_gpos = i == 0 ? otf->gsub : otf->gpos;
2045 for (j = gsub_gpos->ScriptList.ScriptCount - 1; j >= 0; j--)
2046 {
2047 OTF_Script *script = gsub_gpos->ScriptList.Script + j;
2048 Lisp_Object langsys_list = Qnil;
2049 Lisp_Object script_tag = otf_tag_symbol (script->ScriptTag);
2050 int k;
2051
2052 for (k = script->LangSysCount; k >= 0; k--)
2053 {
2054 OTF_LangSys *langsys;
2055 Lisp_Object feature_list = Qnil;
2056 Lisp_Object langsys_tag;
2057 int l;
2058
e80e09b4 2059 if (k == script->LangSysCount)
c2f5bfd6
KH
2060 {
2061 langsys = &script->DefaultLangSys;
2062 langsys_tag = Qnil;
2063 }
2064 else
2065 {
2066 langsys = script->LangSys + k;
2067 langsys_tag
2068 = otf_tag_symbol (script->LangSysRecord[k].LangSysTag);
2069 }
e80e09b4 2070 for (l = langsys->FeatureCount - 1; l >= 0; l--)
c2f5bfd6
KH
2071 {
2072 OTF_Feature *feature
2073 = gsub_gpos->FeatureList.Feature + langsys->FeatureIndex[l];
2074 Lisp_Object feature_tag
2075 = otf_tag_symbol (feature->FeatureTag);
2076
2077 feature_list = Fcons (feature_tag, feature_list);
2078 }
2079 langsys_list = Fcons (Fcons (langsys_tag, feature_list),
2080 langsys_list);
2081 }
2082 script_list = Fcons (Fcons (script_tag, langsys_list),
2083 script_list);
2084 }
2085
2086 if (i == 0)
2087 XSETCAR (capability, script_list);
2088 else
2089 XSETCDR (capability, script_list);
2090 }
2091
2092 return capability;
2093}
2094
733fd013
KH
2095/* Parse OTF features in SPEC and write a proper features spec string
2096 in FEATURES for the call of OTF_drive_gsub/gpos (of libotf). It is
2097 assured that the sufficient memory has already allocated for
2098 FEATURES. */
2099
e80e09b4 2100static void
733fd013 2101generate_otf_features (spec, features)
c2f5bfd6 2102 Lisp_Object spec;
733fd013 2103 char *features;
c2f5bfd6
KH
2104{
2105 Lisp_Object val;
35027d0c 2106 char *p;
c2f5bfd6
KH
2107 int asterisk;
2108
733fd013 2109 p = features;
e80e09b4 2110 *p = '\0';
c2f5bfd6
KH
2111 for (asterisk = 0; CONSP (spec); spec = XCDR (spec))
2112 {
2113 val = XCAR (spec);
e80e09b4
KH
2114 CHECK_SYMBOL (val);
2115 if (p > features)
733fd013 2116 *p++ = ',';
c2f5bfd6
KH
2117 if (SREF (SYMBOL_NAME (val), 0) == '*')
2118 {
2119 asterisk = 1;
e80e09b4 2120 *p++ = '*';
c2f5bfd6
KH
2121 }
2122 else if (! asterisk)
e80e09b4
KH
2123 {
2124 val = SYMBOL_NAME (val);
e80e09b4
KH
2125 p += sprintf (p, "%s", SDATA (val));
2126 }
c2f5bfd6 2127 else
e80e09b4
KH
2128 {
2129 val = SYMBOL_NAME (val);
e80e09b4
KH
2130 p += sprintf (p, "~%s", SDATA (val));
2131 }
c2f5bfd6 2132 }
e80e09b4
KH
2133 if (CONSP (spec))
2134 error ("OTF spec too long");
2135}
2136
733fd013
KH
2137Lisp_Object
2138font_otf_DeviceTable (device_table)
2139 OTF_DeviceTable *device_table;
2140{
2141 int len = device_table->StartSize - device_table->EndSize + 1;
2142
2143 return Fcons (make_number (len),
2144 make_unibyte_string (device_table->DeltaValue, len));
2145}
2146
2147Lisp_Object
2148font_otf_ValueRecord (value_format, value_record)
2149 int value_format;
2150 OTF_ValueRecord *value_record;
2151{
2152 Lisp_Object val = Fmake_vector (make_number (8), Qnil);
2153
2154 if (value_format & OTF_XPlacement)
43c0454d 2155 ASET (val, 0, make_number (value_record->XPlacement));
733fd013 2156 if (value_format & OTF_YPlacement)
43c0454d 2157 ASET (val, 1, make_number (value_record->YPlacement));
733fd013 2158 if (value_format & OTF_XAdvance)
43c0454d 2159 ASET (val, 2, make_number (value_record->XAdvance));
733fd013 2160 if (value_format & OTF_YAdvance)
43c0454d 2161 ASET (val, 3, make_number (value_record->YAdvance));
733fd013
KH
2162 if (value_format & OTF_XPlaDevice)
2163 ASET (val, 4, font_otf_DeviceTable (&value_record->XPlaDevice));
2164 if (value_format & OTF_YPlaDevice)
2165 ASET (val, 4, font_otf_DeviceTable (&value_record->YPlaDevice));
2166 if (value_format & OTF_XAdvDevice)
2167 ASET (val, 4, font_otf_DeviceTable (&value_record->XAdvDevice));
2168 if (value_format & OTF_YAdvDevice)
2169 ASET (val, 4, font_otf_DeviceTable (&value_record->YAdvDevice));
2170 return val;
2171}
2172
2173Lisp_Object
2174font_otf_Anchor (anchor)
2175 OTF_Anchor *anchor;
2176{
2177 Lisp_Object val;
2178
2179 val = Fmake_vector (make_number (anchor->AnchorFormat + 1), Qnil);
2180 ASET (val, 0, make_number (anchor->XCoordinate));
2181 ASET (val, 1, make_number (anchor->YCoordinate));
2182 if (anchor->AnchorFormat == 2)
2183 ASET (val, 2, make_number (anchor->f.f1.AnchorPoint));
2184 else
2185 {
2186 ASET (val, 3, font_otf_DeviceTable (&anchor->f.f2.XDeviceTable));
2187 ASET (val, 4, font_otf_DeviceTable (&anchor->f.f2.YDeviceTable));
2188 }
2189 return val;
2190}
c2f5bfd6 2191#endif /* HAVE_LIBOTF */
6a3dadd2 2192#endif /* 0 */
c2f5bfd6 2193
c2f5bfd6
KH
2194\f
2195/* Font sorting */
2196
4007dd1c 2197static unsigned font_score P_ ((Lisp_Object, Lisp_Object *));
c2f5bfd6 2198static int font_compare P_ ((const void *, const void *));
2645d15b 2199static Lisp_Object font_sort_entities P_ ((Lisp_Object, Lisp_Object,
7181ea6a 2200 Lisp_Object, int));
c2f5bfd6 2201
55e41770
KH
2202/* Return a rescaling ratio of FONT_ENTITY. */
2203extern Lisp_Object Vface_font_rescale_alist;
2204
2205static double
2206font_rescale_ratio (font_entity)
2207 Lisp_Object font_entity;
2208{
2209 Lisp_Object tail, elt;
2210 Lisp_Object name = Qnil;
2211
2212 for (tail = Vface_font_rescale_alist; CONSP (tail); tail = XCDR (tail))
2213 {
2214 elt = XCAR (tail);
2215 if (FLOATP (XCDR (elt)))
2216 {
2217 if (STRINGP (XCAR (elt)))
2218 {
2219 if (NILP (name))
2220 name = Ffont_xlfd_name (font_entity, Qnil);
2221 if (fast_string_match_ignore_case (XCAR (elt), name) >= 0)
2222 return XFLOAT_DATA (XCDR (elt));
2223 }
2224 else if (FONT_SPEC_P (XCAR (elt)))
2225 {
2226 if (font_match_p (XCAR (elt), font_entity))
2227 return XFLOAT_DATA (XCDR (elt));
2228 }
2229 }
2230 }
2231 return 1.0;
2232}
2233
c2f5bfd6
KH
2234/* We sort fonts by scoring each of them against a specified
2235 font-spec. The score value is 32 bit (`unsigned'), and the smaller
2236 the value is, the closer the font is to the font-spec.
2237
4007dd1c
KH
2238 The lowest 2 bits of the score is used for driver type. The font
2239 available by the most preferred font driver is 0.
35027d0c 2240
4007dd1c 2241 Each 7-bit in the higher 28 bits are used for numeric properties
c2f5bfd6
KH
2242 WEIGHT, SLANT, WIDTH, and SIZE. */
2243
2244/* How many bits to shift to store the difference value of each font
35027d0c
KH
2245 property in a score. Note that flots for FONT_TYPE_INDEX and
2246 FONT_REGISTRY_INDEX are not used. */
c2f5bfd6
KH
2247static int sort_shift_bits[FONT_SIZE_INDEX + 1];
2248
9331887d
KH
2249/* Score font-entity ENTITY against properties of font-spec SPEC_PROP.
2250 The return value indicates how different ENTITY is compared with
51c13510 2251 SPEC_PROP. */
c2f5bfd6
KH
2252
2253static unsigned
4007dd1c 2254font_score (entity, spec_prop)
9331887d 2255 Lisp_Object entity, *spec_prop;
c2f5bfd6
KH
2256{
2257 unsigned score = 0;
2258 int i;
c2f5bfd6 2259
35027d0c
KH
2260 /* Score three style numeric fields. Maximum difference is 127. */
2261 for (i = FONT_WEIGHT_INDEX; i <= FONT_WIDTH_INDEX; i++)
2262 if (! NILP (spec_prop[i]) && ! EQ (AREF (entity, i), spec_prop[i]))
2263 {
2264 int diff = (XINT (AREF (entity, i)) >> 8) - (XINT (spec_prop[i]) >> 8);
2265
2266 if (diff < 0)
2267 diff = - diff;
f4cc0153
KH
2268 if (diff > 0)
2269 score |= min (diff, 127) << sort_shift_bits[i];
35027d0c
KH
2270 }
2271
2272 /* Score the size. Maximum difference is 127. */
2273 i = FONT_SIZE_INDEX;
55e41770
KH
2274 if (! NILP (spec_prop[FONT_SIZE_INDEX])
2275 && XINT (AREF (entity, FONT_SIZE_INDEX)) > 0)
35027d0c
KH
2276 {
2277 /* We use the higher 6-bit for the actual size difference. The
2278 lowest bit is set if the DPI is different. */
55e41770
KH
2279 int diff;
2280 int pixel_size = XINT (spec_prop[FONT_SIZE_INDEX]);
35027d0c 2281
55e41770
KH
2282 if (CONSP (Vface_font_rescale_alist))
2283 pixel_size *= font_rescale_ratio (entity);
2284 diff = pixel_size - XINT (AREF (entity, FONT_SIZE_INDEX));
35027d0c
KH
2285 if (diff < 0)
2286 diff = - diff;
d0ab1ebe 2287 diff <<= 1;
35027d0c
KH
2288 if (! NILP (spec_prop[FONT_DPI_INDEX])
2289 && ! EQ (spec_prop[FONT_DPI_INDEX], AREF (entity, FONT_DPI_INDEX)))
2290 diff |= 1;
c0a6070d
KH
2291 if (! NILP (spec_prop[FONT_AVGWIDTH_INDEX])
2292 && ! EQ (spec_prop[FONT_AVGWIDTH_INDEX], AREF (entity, FONT_AVGWIDTH_INDEX)))
2293 diff |= 1;
35027d0c 2294 score |= min (diff, 127) << sort_shift_bits[FONT_SIZE_INDEX];
c2f5bfd6
KH
2295 }
2296
2297 return score;
2298}
2299
2300
72d36834
KH
2301/* Concatenate all elements of LIST into one vector. LIST is a list
2302 of font-entity vectors. */
c2f5bfd6 2303
72d36834
KH
2304static Lisp_Object
2305font_vconcat_entity_vectors (Lisp_Object list)
c2f5bfd6 2306{
72d36834
KH
2307 int nargs = XINT (Flength (list));
2308 Lisp_Object *args = alloca (sizeof (Lisp_Object) * nargs);
2309 int i;
2310
2311 for (i = 0; i < nargs; i++, list = XCDR (list))
2312 args[i] = XCAR (list);
2313 return Fvconcat (nargs, args);
c2f5bfd6
KH
2314}
2315
2316
2317/* The structure for elements being sorted by qsort. */
2318struct font_sort_data
2319{
2320 unsigned score;
72d36834 2321 int font_driver_preference;
c2f5bfd6
KH
2322 Lisp_Object entity;
2323};
2324
2325
72d36834
KH
2326/* The comparison function for qsort. */
2327
2328static int
2329font_compare (d1, d2)
2330 const void *d1, *d2;
2331{
2332 const struct font_sort_data *data1 = d1;
2333 const struct font_sort_data *data2 = d2;
2334
2335 if (data1->score < data2->score)
2336 return -1;
2337 else if (data1->score > data2->score)
2338 return 1;
2339 return (data1->font_driver_preference - data2->font_driver_preference);
2340}
2341
2342
2343/* Sort each font-entity vector in LIST by closeness to font-spec PREFER.
c2f5bfd6 2344 If PREFER specifies a point-size, calculate the corresponding
9331887d 2345 pixel-size from QCdpi property of PREFER or from the Y-resolution
7181ea6a 2346 of FRAME before sorting.
35027d0c 2347
c9477f01
KH
2348 If BEST-ONLY is nonzero, return the best matching entity (that
2349 supports the character BEST-ONLY if BEST-ONLY is positive, or any
72d36834
KH
2350 if BEST-ONLY is negative). Otherwise, return the sorted result as
2351 a single vector of font-entities.
c9477f01 2352
72d36834
KH
2353 This function does no optimization for the case that the total
2354 number of elements is 1. The caller should avoid calling this in
2355 such a case. */
c2f5bfd6
KH
2356
2357static Lisp_Object
72d36834
KH
2358font_sort_entities (list, prefer, frame, best_only)
2359 Lisp_Object list, prefer, frame;
35027d0c 2360 int best_only;
c2f5bfd6 2361{
9331887d 2362 Lisp_Object prefer_prop[FONT_SPEC_MAX];
72d36834 2363 int len, maxlen, i;
c2f5bfd6 2364 struct font_sort_data *data;
35027d0c 2365 unsigned best_score;
72d36834 2366 Lisp_Object best_entity;
4007dd1c 2367 struct frame *f = XFRAME (frame);
72d36834 2368 Lisp_Object tail, vec;
c2f5bfd6
KH
2369 USE_SAFE_ALLOCA;
2370
9903d1e6 2371 for (i = FONT_WEIGHT_INDEX; i <= FONT_AVGWIDTH_INDEX; i++)
9331887d 2372 prefer_prop[i] = AREF (prefer, i);
9331887d
KH
2373 if (FLOATP (prefer_prop[FONT_SIZE_INDEX]))
2374 prefer_prop[FONT_SIZE_INDEX]
2375 = make_number (font_pixel_size (XFRAME (frame), prefer));
2376
72d36834
KH
2377 if (NILP (XCDR (list)))
2378 {
2379 /* What we have to take care of is this single vector. */
2380 vec = XCAR (list);
2381 maxlen = ASIZE (vec);
2382 }
2383 else if (best_only)
2384 {
2385 /* We don't have to perform sort, so there's no need of creating
2386 a single vector. But, we must find the length of the longest
2387 vector. */
2388 maxlen = 0;
2389 for (tail = list; CONSP (tail); tail = XCDR (tail))
2390 if (maxlen < ASIZE (XCAR (tail)))
2391 maxlen = ASIZE (XCAR (tail));
2392 }
2393 else
2394 {
2395 /* We have to create a single vector to sort it. */
2396 vec = font_vconcat_entity_vectors (list);
2397 maxlen = ASIZE (vec);
2398 }
2399
2400 SAFE_ALLOCA (data, struct font_sort_data *, (sizeof *data) * maxlen);
c9477f01
KH
2401 best_score = 0xFFFFFFFF;
2402 best_entity = Qnil;
72d36834
KH
2403
2404 for (tail = list; CONSP (tail); tail = XCDR (tail))
c2f5bfd6 2405 {
72d36834
KH
2406 int font_driver_preference = 0;
2407 Lisp_Object current_font_driver;
ce75f06e 2408
72d36834
KH
2409 if (best_only)
2410 vec = XCAR (tail);
2411 len = ASIZE (vec);
2412
2413 /* We are sure that the length of VEC > 0. */
2414 current_font_driver = AREF (AREF (vec, 0), FONT_TYPE_INDEX);
2415 /* Score the elements. */
2416 for (i = 0; i < len; i++)
35027d0c 2417 {
72d36834
KH
2418 data[i].entity = AREF (vec, i);
2419 data[i].score
2420 = ((best_only <= 0 || font_has_char (f, data[i].entity, best_only)
2421 > 0)
2422 ? font_score (data[i].entity, prefer_prop)
2423 : 0xFFFFFFFF);
2424 if (best_only && best_score > data[i].score)
2425 {
2426 best_score = data[i].score;
2427 best_entity = data[i].entity;
2428 if (best_score == 0)
2429 break;
2430 }
2431 if (! EQ (current_font_driver, AREF (AREF (vec, i), FONT_TYPE_INDEX)))
2432 {
2433 current_font_driver = AREF (AREF (vec, i), FONT_TYPE_INDEX);
2434 font_driver_preference++;
2435 }
2436 data[i].font_driver_preference = font_driver_preference;
35027d0c 2437 }
72d36834
KH
2438
2439 /* Sort if necessary. */
2440 if (! best_only)
2441 {
2442 qsort (data, len, sizeof *data, font_compare);
2443 for (i = 0; i < len; i++)
2444 ASET (vec, i, data[i].entity);
2445 break;
2446 }
2447 else
2448 vec = best_entity;
c2f5bfd6 2449 }
72d36834 2450
c2f5bfd6
KH
2451 SAFE_FREE ();
2452
652b9560 2453 FONT_ADD_LOG ("sort-by", prefer, vec);
c2f5bfd6
KH
2454 return vec;
2455}
2456
2457\f
2458/* API of Font Service Layer. */
2459
45eb10fb
KH
2460/* Reflect ORDER (see the variable font_sort_order in xfaces.c) to
2461 sort_shift_bits. Finternal_set_font_selection_order calls this
2462 function with font_sort_order after setting up it. */
2463
c2f5bfd6
KH
2464void
2465font_update_sort_order (order)
2466 int *order;
2467{
35027d0c 2468 int i, shift_bits;
c2f5bfd6 2469
943b7eea 2470 for (i = 0, shift_bits = 23; i < 4; i++, shift_bits -= 7)
c2f5bfd6
KH
2471 {
2472 int xlfd_idx = order[i];
2473
2474 if (xlfd_idx == XLFD_WEIGHT_INDEX)
2475 sort_shift_bits[FONT_WEIGHT_INDEX] = shift_bits;
2476 else if (xlfd_idx == XLFD_SLANT_INDEX)
2477 sort_shift_bits[FONT_SLANT_INDEX] = shift_bits;
2478 else if (xlfd_idx == XLFD_SWIDTH_INDEX)
2479 sort_shift_bits[FONT_WIDTH_INDEX] = shift_bits;
2480 else
2481 sort_shift_bits[FONT_SIZE_INDEX] = shift_bits;
2482 }
2483}
2484
51c13510
KH
2485static int
2486font_check_otf_features (script, langsys, features, table)
2487 Lisp_Object script, langsys, features, table;
2488{
2489 Lisp_Object val;
2490 int negative;
2491
2492 table = assq_no_quit (script, table);
2493 if (NILP (table))
2494 return 0;
2495 table = XCDR (table);
2496 if (! NILP (langsys))
2497 {
2498 table = assq_no_quit (langsys, table);
2499 if (NILP (table))
2500 return 0;
2501 }
2502 else
2503 {
2504 val = assq_no_quit (Qnil, table);
2505 if (NILP (val))
2506 table = XCAR (table);
2507 else
2508 table = val;
2509 }
2510 table = XCDR (table);
2511 for (negative = 0; CONSP (features); features = XCDR (features))
2512 {
2513 if (NILP (XCAR (features)))
c423ecca
KH
2514 {
2515 negative = 1;
2516 continue;
2517 }
51c13510
KH
2518 if (NILP (Fmemq (XCAR (features), table)) != negative)
2519 return 0;
2520 }
2521 return 1;
2522}
2523
2524/* Check if OTF_CAPABILITY satisfies SPEC (otf-spec). */
2525
2526static int
3cba9369 2527font_check_otf (Lisp_Object spec, Lisp_Object otf_capability)
51c13510
KH
2528{
2529 Lisp_Object script, langsys = Qnil, gsub = Qnil, gpos = Qnil;
2530
2531 script = XCAR (spec);
2532 spec = XCDR (spec);
2533 if (! NILP (spec))
2534 {
2535 langsys = XCAR (spec);
2536 spec = XCDR (spec);
2537 if (! NILP (spec))
2538 {
2539 gsub = XCAR (spec);
2540 spec = XCDR (spec);
2541 if (! NILP (spec))
2542 gpos = XCAR (spec);
2543 }
2544 }
2545
2546 if (! NILP (gsub) && ! font_check_otf_features (script, langsys, gsub,
2547 XCAR (otf_capability)))
2548 return 0;
2549 if (! NILP (gpos) && ! font_check_otf_features (script, langsys, gpos,
2550 XCDR (otf_capability)))
2551 return 0;
2552 return 1;
2553}
2554
45eb10fb 2555
51c13510
KH
2556
2557/* Check if FONT (font-entity or font-object) matches with the font
2558 specification SPEC. */
45eb10fb 2559
ef18374f 2560int
51c13510
KH
2561font_match_p (spec, font)
2562 Lisp_Object spec, font;
ef18374f 2563{
51c13510
KH
2564 Lisp_Object prop[FONT_SPEC_MAX], *props;
2565 Lisp_Object extra, font_extra;
ef18374f
KH
2566 int i;
2567
51c13510
KH
2568 for (i = FONT_FOUNDRY_INDEX; i <= FONT_REGISTRY_INDEX; i++)
2569 if (! NILP (AREF (spec, i))
2570 && ! NILP (AREF (font, i))
2571 && ! EQ (AREF (spec, i), AREF (font, i)))
2572 return 0;
2573 props = XFONT_SPEC (spec)->props;
2574 if (FLOATP (props[FONT_SIZE_INDEX]))
2575 {
2576 for (i = FONT_FOUNDRY_INDEX; i < FONT_SIZE_INDEX; i++)
2577 prop[i] = AREF (spec, i);
2578 prop[FONT_SIZE_INDEX]
2579 = make_number (font_pixel_size (XFRAME (selected_frame), spec));
2580 props = prop;
2581 }
2582
2583 if (font_score (font, props) > 0)
2584 return 0;
2585 extra = AREF (spec, FONT_EXTRA_INDEX);
2586 font_extra = AREF (font, FONT_EXTRA_INDEX);
2587 for (; CONSP (extra); extra = XCDR (extra))
35027d0c 2588 {
51c13510
KH
2589 Lisp_Object key = XCAR (XCAR (extra));
2590 Lisp_Object val = XCDR (XCAR (extra)), val2;
2591
2592 if (EQ (key, QClang))
2593 {
2594 val2 = assq_no_quit (key, font_extra);
2595 if (NILP (val2))
2596 return 0;
2597 val2 = XCDR (val2);
2598 if (CONSP (val))
2599 {
2600 if (! CONSP (val2))
2601 return 0;
2602 while (CONSP (val))
2603 if (NILP (Fmemq (val, val2)))
2604 return 0;
2605 }
2606 else
2607 if (CONSP (val2)
2608 ? NILP (Fmemq (val, XCDR (val2)))
2609 : ! EQ (val, val2))
2610 return 0;
2611 }
2612 else if (EQ (key, QCscript))
2613 {
2614 val2 = assq_no_quit (val, Vscript_representative_chars);
5bdd4dd2
KH
2615 if (CONSP (val2))
2616 {
2617 val2 = XCDR (val2);
2618 if (CONSP (val2))
2619 {
2620 /* All characters in the list must be supported. */
2621 for (; CONSP (val2); val2 = XCDR (val2))
2622 {
2623 if (! NATNUMP (XCAR (val2)))
2624 continue;
2625 if (font_encode_char (font, XFASTINT (XCAR (val2)))
2626 == FONT_INVALID_CODE)
2627 return 0;
2628 }
2629 }
2630 else if (VECTORP (val2))
2631 {
2632 /* At most one character in the vector must be supported. */
2633 for (i = 0; i < ASIZE (val2); i++)
2634 {
2635 if (! NATNUMP (AREF (val2, i)))
2636 continue;
2637 if (font_encode_char (font, XFASTINT (AREF (val2, i)))
2638 != FONT_INVALID_CODE)
f5485732 2639 break;
5bdd4dd2
KH
2640 }
2641 if (i == ASIZE (val2))
2642 return 0;
2643 }
2644 }
51c13510
KH
2645 }
2646 else if (EQ (key, QCotf))
2647 {
2648 struct font *fontp;
2649
2650 if (! FONT_OBJECT_P (font))
2651 return 0;
2652 fontp = XFONT_OBJECT (font);
2653 if (! fontp->driver->otf_capability)
2654 return 0;
2655 val2 = fontp->driver->otf_capability (fontp);
2656 if (NILP (val2) || ! font_check_otf (val, val2))
2657 return 0;
2658 }
35027d0c
KH
2659 }
2660
51c13510 2661 return 1;
ef18374f 2662}
ca4da08a 2663\f
819e81df 2664
ca4da08a
KH
2665/* Font cache
2666
2667 Each font backend has the callback function get_cache, and it
2668 returns a cons cell of which cdr part can be freely used for
2669 caching fonts. The cons cell may be shared by multiple frames
2670 and/or multiple font drivers. So, we arrange the cdr part as this:
2671
2672 ((DRIVER-TYPE NUM-FRAMES FONT-CACHE-DATA ...) ...)
2673
2674 where DRIVER-TYPE is a symbol such as `x', `xft', etc., NUM-FRAMES
2675 is a number frames sharing this cache, and FONT-CACHE-DATA is a
2676 cons (FONT-SPEC FONT-ENTITY ...). */
2677
2678static void font_prepare_cache P_ ((FRAME_PTR, struct font_driver *));
2679static void font_finish_cache P_ ((FRAME_PTR, struct font_driver *));
2680static Lisp_Object font_get_cache P_ ((FRAME_PTR, struct font_driver *));
2681static void font_clear_cache P_ ((FRAME_PTR, Lisp_Object,
2682 struct font_driver *));
2683
2684static void
2685font_prepare_cache (f, driver)
2686 FRAME_PTR f;
2687 struct font_driver *driver;
2688{
2689 Lisp_Object cache, val;
2690
2691 cache = driver->get_cache (f);
2692 val = XCDR (cache);
2693 while (CONSP (val) && ! EQ (XCAR (XCAR (val)), driver->type))
2694 val = XCDR (val);
2695 if (NILP (val))
2696 {
2697 val = Fcons (driver->type, Fcons (make_number (1), Qnil));
2698 XSETCDR (cache, Fcons (val, XCDR (cache)));
2699 }
2700 else
2701 {
2702 val = XCDR (XCAR (val));
2703 XSETCAR (val, make_number (XINT (XCAR (val)) + 1));
2704 }
2705}
2706
43c0454d 2707
ca4da08a
KH
2708static void
2709font_finish_cache (f, driver)
2710 FRAME_PTR f;
2711 struct font_driver *driver;
2712{
2713 Lisp_Object cache, val, tmp;
2714
2715
2716 cache = driver->get_cache (f);
2717 val = XCDR (cache);
2718 while (CONSP (val) && ! EQ (XCAR (XCAR (val)), driver->type))
2719 cache = val, val = XCDR (val);
d0ab1ebe 2720 font_assert (! NILP (val));
ca4da08a 2721 tmp = XCDR (XCAR (val));
43c0454d 2722 XSETCAR (tmp, make_number (XINT (XCAR (tmp)) - 1));
ca4da08a
KH
2723 if (XINT (XCAR (tmp)) == 0)
2724 {
2725 font_clear_cache (f, XCAR (val), driver);
2726 XSETCDR (cache, XCDR (val));
2727 }
ca4da08a
KH
2728}
2729
43c0454d 2730
ca4da08a
KH
2731static Lisp_Object
2732font_get_cache (f, driver)
2733 FRAME_PTR f;
2734 struct font_driver *driver;
2735{
2736 Lisp_Object val = driver->get_cache (f);
2737 Lisp_Object type = driver->type;
2738
d0ab1ebe 2739 font_assert (CONSP (val));
ca4da08a 2740 for (val = XCDR (val); ! EQ (XCAR (XCAR (val)), type); val = XCDR (val));
d0ab1ebe 2741 font_assert (CONSP (val));
ca4da08a
KH
2742 /* VAL = ((DRIVER-TYPE NUM-FRAMES FONT-CACHE-DATA ...) ...) */
2743 val = XCDR (XCAR (val));
2744 return val;
2745}
2746
43c0454d
KH
2747static int num_fonts;
2748
ca4da08a
KH
2749static void
2750font_clear_cache (f, cache, driver)
2751 FRAME_PTR f;
2752 Lisp_Object cache;
2753 struct font_driver *driver;
2754{
2755 Lisp_Object tail, elt;
6136b72f 2756 Lisp_Object tail2, entity;
51c01100 2757
ca4da08a
KH
2758 /* CACHE = (DRIVER-TYPE NUM-FRAMES FONT-CACHE-DATA ...) */
2759 for (tail = XCDR (XCDR (cache)); CONSP (tail); tail = XCDR (tail))
2760 {
2761 elt = XCAR (tail);
6136b72f
CY
2762 /* elt should have the form (FONT-SPEC FONT-ENTITY ...) */
2763 if (CONSP (elt) && FONT_SPEC_P (XCAR (elt)))
ca4da08a 2764 {
6136b72f 2765 for (tail2 = XCDR (elt); CONSP (tail2); tail2 = XCDR (tail2))
ca4da08a 2766 {
6136b72f 2767 entity = XCAR (tail2);
ca4da08a 2768
6136b72f
CY
2769 if (FONT_ENTITY_P (entity)
2770 && EQ (driver->type, AREF (entity, FONT_TYPE_INDEX)))
ca4da08a
KH
2771 {
2772 Lisp_Object objlist = AREF (entity, FONT_OBJLIST_INDEX);
2773
2774 for (; CONSP (objlist); objlist = XCDR (objlist))
2775 {
2776 Lisp_Object val = XCAR (objlist);
35027d0c 2777 struct font *font = XFONT_OBJECT (val);
ca4da08a 2778
5e634ec9
KH
2779 if (! NILP (AREF (val, FONT_TYPE_INDEX)))
2780 {
2781 font_assert (font && driver == font->driver);
2782 driver->close (f, font);
2783 num_fonts--;
2784 }
ca4da08a
KH
2785 }
2786 if (driver->free_entity)
2787 driver->free_entity (entity);
2788 }
2789 }
2790 }
2791 }
2792 XSETCDR (cache, Qnil);
2793}
2794\f
2795
c2f5bfd6
KH
2796static Lisp_Object scratch_font_spec, scratch_font_prefer;
2797
35027d0c 2798Lisp_Object
72d36834
KH
2799font_delete_unmatched (vec, spec, size)
2800 Lisp_Object vec, spec;
35027d0c
KH
2801 int size;
2802{
d0ab1ebe 2803 Lisp_Object entity, val;
35027d0c 2804 enum font_property_index prop;
72d36834 2805 int i;
45eb10fb 2806
72d36834 2807 for (val = Qnil, i = ASIZE (vec) - 1; i >= 0; i--)
35027d0c 2808 {
72d36834 2809 entity = AREF (vec, i);
35027d0c
KH
2810 for (prop = FONT_WEIGHT_INDEX; prop < FONT_SIZE_INDEX; prop++)
2811 if (INTEGERP (AREF (spec, prop))
2812 && ((XINT (AREF (spec, prop)) >> 8)
2813 != (XINT (AREF (entity, prop)) >> 8)))
2814 prop = FONT_SPEC_MAX;
7181ea6a 2815 if (prop < FONT_SPEC_MAX
35027d0c
KH
2816 && size
2817 && XINT (AREF (entity, FONT_SIZE_INDEX)) > 0)
2818 {
2819 int diff = XINT (AREF (entity, FONT_SIZE_INDEX)) - size;
c2f5bfd6 2820
35027d0c
KH
2821 if (diff != 0
2822 && (diff < 0 ? -diff > FONT_PIXEL_SIZE_QUANTUM
2823 : diff > FONT_PIXEL_SIZE_QUANTUM))
2824 prop = FONT_SPEC_MAX;
2825 }
7181ea6a
KH
2826 if (prop < FONT_SPEC_MAX
2827 && INTEGERP (AREF (spec, FONT_DPI_INDEX))
2828 && INTEGERP (AREF (entity, FONT_DPI_INDEX))
c576d6dc 2829 && XINT (AREF (entity, FONT_DPI_INDEX)) != 0
7181ea6a
KH
2830 && ! EQ (AREF (spec, FONT_DPI_INDEX), AREF (entity, FONT_DPI_INDEX)))
2831 prop = FONT_SPEC_MAX;
2832 if (prop < FONT_SPEC_MAX
2833 && INTEGERP (AREF (spec, FONT_AVGWIDTH_INDEX))
2834 && INTEGERP (AREF (entity, FONT_AVGWIDTH_INDEX))
c576d6dc 2835 && XINT (AREF (entity, FONT_AVGWIDTH_INDEX)) != 0
7181ea6a
KH
2836 && ! EQ (AREF (spec, FONT_AVGWIDTH_INDEX),
2837 AREF (entity, FONT_AVGWIDTH_INDEX)))
2838 prop = FONT_SPEC_MAX;
35027d0c 2839 if (prop < FONT_SPEC_MAX)
d0ab1ebe 2840 val = Fcons (entity, val);
35027d0c 2841 }
72d36834 2842 return (Fvconcat (1, &val));
35027d0c
KH
2843}
2844
2845
72d36834 2846/* Return a list of vectors of font-entities matching with SPEC on
ce75f06e
CY
2847 FRAME. Each elements in the list is a vector of entities from the
2848 same font-driver. */
35027d0c
KH
2849
2850Lisp_Object
c2f5bfd6
KH
2851font_list_entities (frame, spec)
2852 Lisp_Object frame, spec;
2853{
2854 FRAME_PTR f = XFRAME (frame);
2855 struct font_driver_list *driver_list = f->font_driver_list;
4007dd1c 2856 Lisp_Object ftype, val;
72d36834 2857 Lisp_Object list = Qnil;
35027d0c
KH
2858 int size;
2859 int need_filtering = 0;
c2f5bfd6
KH
2860 int i;
2861
d0ab1ebe 2862 font_assert (FONT_SPEC_P (spec));
c2f5bfd6 2863
35027d0c
KH
2864 if (INTEGERP (AREF (spec, FONT_SIZE_INDEX)))
2865 size = XINT (AREF (spec, FONT_SIZE_INDEX));
2866 else if (FLOATP (AREF (spec, FONT_SIZE_INDEX)))
2867 size = font_pixel_size (f, spec);
2868 else
2869 size = 0;
2870
c2f5bfd6 2871 ftype = AREF (spec, FONT_TYPE_INDEX);
4007dd1c 2872 for (i = FONT_FOUNDRY_INDEX; i <= FONT_REGISTRY_INDEX; i++)
35027d0c 2873 ASET (scratch_font_spec, i, AREF (spec, i));
4007dd1c 2874 for (i = FONT_WEIGHT_INDEX; i < FONT_EXTRA_INDEX; i++)
35027d0c
KH
2875 {
2876 ASET (scratch_font_spec, i, Qnil);
2877 if (! NILP (AREF (spec, i)))
2878 need_filtering = 1;
4007dd1c
KH
2879 if (i == FONT_DPI_INDEX)
2880 /* Skip FONT_SPACING_INDEX */
2881 i++;
35027d0c 2882 }
aa50ca2f 2883 ASET (scratch_font_spec, FONT_SPACING_INDEX, AREF (spec, FONT_SPACING_INDEX));
35027d0c
KH
2884 ASET (scratch_font_spec, FONT_EXTRA_INDEX, AREF (spec, FONT_EXTRA_INDEX));
2885
c2f5bfd6 2886 for (i = 0; driver_list; driver_list = driver_list->next)
417a1b10
KH
2887 if (driver_list->on
2888 && (NILP (ftype) || EQ (driver_list->driver->type, ftype)))
c2f5bfd6 2889 {
ca4da08a 2890 Lisp_Object cache = font_get_cache (f, driver_list->driver);
c2f5bfd6 2891
e4c93315 2892 ASET (scratch_font_spec, FONT_TYPE_INDEX, driver_list->driver->type);
4007dd1c
KH
2893 val = assoc_no_quit (scratch_font_spec, XCDR (cache));
2894 if (CONSP (val))
2895 val = XCDR (val);
2896 else
c2f5bfd6 2897 {
4007dd1c 2898 Lisp_Object copy;
35027d0c 2899
4007dd1c 2900 val = driver_list->driver->list (frame, scratch_font_spec);
72d36834
KH
2901 if (NILP (val))
2902 val = null_vector;
2903 else
2904 val = Fvconcat (1, &val);
4007dd1c
KH
2905 copy = Fcopy_font_spec (scratch_font_spec);
2906 ASET (copy, FONT_TYPE_INDEX, driver_list->driver->type);
2907 XSETCDR (cache, Fcons (Fcons (copy, val), XCDR (cache)));
c2f5bfd6 2908 }
72d36834 2909 if (ASIZE (val) > 0 && need_filtering)
4007dd1c 2910 val = font_delete_unmatched (val, spec, size);
72d36834
KH
2911 if (ASIZE (val) > 0)
2912 list = Fcons (val, list);
c2f5bfd6 2913 }
35027d0c 2914
72d36834
KH
2915 list = Fnreverse (list);
2916 FONT_ADD_LOG ("list", spec, list);
2917 return list;
c2f5bfd6
KH
2918}
2919
45eb10fb 2920
35027d0c
KH
2921/* Return a font entity matching with SPEC on FRAME. ATTRS, if non
2922 nil, is an array of face's attributes, which specifies preferred
2923 font-related attributes. */
45eb10fb 2924
e950d6f1 2925static Lisp_Object
35027d0c
KH
2926font_matching_entity (f, attrs, spec)
2927 FRAME_PTR f;
2928 Lisp_Object *attrs, spec;
e950d6f1 2929{
e950d6f1
KH
2930 struct font_driver_list *driver_list = f->font_driver_list;
2931 Lisp_Object ftype, size, entity;
35027d0c 2932 Lisp_Object frame;
819ab95f 2933 Lisp_Object work = Fcopy_font_spec (spec);
e950d6f1 2934
35027d0c 2935 XSETFRAME (frame, f);
e950d6f1
KH
2936 ftype = AREF (spec, FONT_TYPE_INDEX);
2937 size = AREF (spec, FONT_SIZE_INDEX);
819ab95f 2938
8d0e382e
AR
2939 if (FLOATP (size))
2940 ASET (work, FONT_SIZE_INDEX, make_number (font_pixel_size (f, spec)));
819ab95f
KH
2941 FONT_SET_STYLE (work, FONT_WEIGHT_INDEX, attrs[LFACE_WEIGHT_INDEX]);
2942 FONT_SET_STYLE (work, FONT_SLANT_INDEX, attrs[LFACE_SLANT_INDEX]);
2943 FONT_SET_STYLE (work, FONT_WIDTH_INDEX, attrs[LFACE_SWIDTH_INDEX]);
2944
e950d6f1
KH
2945 entity = Qnil;
2946 for (; driver_list; driver_list = driver_list->next)
2947 if (driver_list->on
2948 && (NILP (ftype) || EQ (driver_list->driver->type, ftype)))
2949 {
ca4da08a 2950 Lisp_Object cache = font_get_cache (f, driver_list->driver);
7cee5d63 2951 Lisp_Object copy;
e950d6f1 2952
819ab95f
KH
2953 ASET (work, FONT_TYPE_INDEX, driver_list->driver->type);
2954 entity = assoc_no_quit (work, XCDR (cache));
7cee5d63 2955 if (CONSP (entity))
e950d6f1
KH
2956 entity = XCDR (entity);
2957 else
2958 {
819ab95f
KH
2959 entity = driver_list->driver->match (frame, work);
2960 copy = Fcopy_font_spec (work);
7cee5d63
KH
2961 ASET (copy, FONT_TYPE_INDEX, driver_list->driver->type);
2962 XSETCDR (cache, Fcons (Fcons (copy, entity), XCDR (cache)));
e950d6f1
KH
2963 }
2964 if (! NILP (entity))
2965 break;
2966 }
652b9560 2967 FONT_ADD_LOG ("match", work, entity);
e950d6f1
KH
2968 return entity;
2969}
2970
45eb10fb
KH
2971
2972/* Open a font of ENTITY and PIXEL_SIZE on frame F, and return the
2973 opened font object. */
2974
c2f5bfd6
KH
2975static Lisp_Object
2976font_open_entity (f, entity, pixel_size)
2977 FRAME_PTR f;
2978 Lisp_Object entity;
2979 int pixel_size;
2980{
2981 struct font_driver_list *driver_list;
43c0454d 2982 Lisp_Object objlist, size, val, font_object;
c2f5bfd6 2983 struct font *font;
d26424c5 2984 int min_width, height;
a35dd56b 2985 int scaled_pixel_size;
c2f5bfd6 2986
d0ab1ebe 2987 font_assert (FONT_ENTITY_P (entity));
c2f5bfd6 2988 size = AREF (entity, FONT_SIZE_INDEX);
c2f5bfd6 2989 if (XINT (size) != 0)
a35dd56b 2990 scaled_pixel_size = pixel_size = XINT (size);
55e41770 2991 else if (CONSP (Vface_font_rescale_alist))
a35dd56b 2992 scaled_pixel_size = pixel_size * font_rescale_ratio (entity);
c2f5bfd6 2993
35027d0c
KH
2994 val = AREF (entity, FONT_TYPE_INDEX);
2995 for (driver_list = f->font_driver_list;
2996 driver_list && ! EQ (driver_list->driver->type, val);
2997 driver_list = driver_list->next);
2998 if (! driver_list)
2999 return Qnil;
c2f5bfd6 3000
d0cf45b7
JD
3001 for (objlist = AREF (entity, FONT_OBJLIST_INDEX); CONSP (objlist);
3002 objlist = XCDR (objlist))
3003 {
3004 Lisp_Object fn = XCAR (objlist);
3005 if (! NILP (AREF (fn, FONT_TYPE_INDEX))
3006 && XFONT_OBJECT (fn)->pixel_size == pixel_size)
3007 {
3008 if (driver_list->driver->cached_font_ok == NULL
3009 || driver_list->driver->cached_font_ok (f, fn, entity))
3010 return fn;
3011 }
3012 }
3013
a35dd56b 3014 font_object = driver_list->driver->open (f, entity, scaled_pixel_size);
66f5ced0
YM
3015 if (!NILP (font_object))
3016 ASET (font_object, FONT_SIZE_INDEX, make_number (pixel_size));
652b9560 3017 FONT_ADD_LOG ("open", entity, font_object);
43c0454d 3018 if (NILP (font_object))
35027d0c
KH
3019 return Qnil;
3020 ASET (entity, FONT_OBJLIST_INDEX,
3021 Fcons (font_object, AREF (entity, FONT_OBJLIST_INDEX)));
5e634ec9 3022 ASET (font_object, FONT_OBJLIST_INDEX, Qnil);
35027d0c
KH
3023 num_fonts++;
3024
3025 font = XFONT_OBJECT (font_object);
3026 min_width = (font->min_width ? font->min_width
3027 : font->average_width ? font->average_width
3028 : font->space_width ? font->space_width
3029 : 1);
d26424c5 3030 height = (font->height ? font->height : 1);
819e81df 3031#ifdef HAVE_WINDOW_SYSTEM
35027d0c
KH
3032 FRAME_X_DISPLAY_INFO (f)->n_fonts++;
3033 if (FRAME_X_DISPLAY_INFO (f)->n_fonts == 1)
43c0454d 3034 {
35027d0c 3035 FRAME_SMALLEST_CHAR_WIDTH (f) = min_width;
d26424c5 3036 FRAME_SMALLEST_FONT_HEIGHT (f) = height;
35027d0c
KH
3037 fonts_changed_p = 1;
3038 }
3039 else
3040 {
3041 if (FRAME_SMALLEST_CHAR_WIDTH (f) > min_width)
3042 FRAME_SMALLEST_CHAR_WIDTH (f) = min_width, fonts_changed_p = 1;
d26424c5
KH
3043 if (FRAME_SMALLEST_FONT_HEIGHT (f) > height)
3044 FRAME_SMALLEST_FONT_HEIGHT (f) = height, fonts_changed_p = 1;
43c0454d 3045 }
819e81df 3046#endif
43c0454d
KH
3047
3048 return font_object;
c2f5bfd6
KH
3049}
3050
45eb10fb
KH
3051
3052/* Close FONT_OBJECT that is opened on frame F. */
3053
c2f5bfd6
KH
3054void
3055font_close_object (f, font_object)
3056 FRAME_PTR f;
3057 Lisp_Object font_object;
3058{
35027d0c 3059 struct font *font = XFONT_OBJECT (font_object);
c2f5bfd6 3060
5e634ec9
KH
3061 if (NILP (AREF (font_object, FONT_TYPE_INDEX)))
3062 /* Already closed. */
3063 return;
652b9560 3064 FONT_ADD_LOG ("close", font_object, Qnil);
5e634ec9 3065 font->driver->close (f, font);
819e81df 3066#ifdef HAVE_WINDOW_SYSTEM
5e634ec9
KH
3067 font_assert (FRAME_X_DISPLAY_INFO (f)->n_fonts);
3068 FRAME_X_DISPLAY_INFO (f)->n_fonts--;
819e81df 3069#endif
5e634ec9 3070 num_fonts--;
c2f5bfd6
KH
3071}
3072
45eb10fb 3073
1701724c
KH
3074/* Return 1 if FONT on F has a glyph for character C, 0 if not, -1 if
3075 FONT is a font-entity and it must be opened to check. */
45eb10fb 3076
c2f5bfd6 3077int
1b834a8d 3078font_has_char (f, font, c)
c2f5bfd6 3079 FRAME_PTR f;
1b834a8d 3080 Lisp_Object font;
c2f5bfd6
KH
3081 int c;
3082{
1b834a8d 3083 struct font *fontp;
c2f5bfd6 3084
1b834a8d
KH
3085 if (FONT_ENTITY_P (font))
3086 {
3087 Lisp_Object type = AREF (font, FONT_TYPE_INDEX);
3088 struct font_driver_list *driver_list;
3089
3090 for (driver_list = f->font_driver_list;
3091 driver_list && ! EQ (driver_list->driver->type, type);
3092 driver_list = driver_list->next);
3093 if (! driver_list)
3094 return 0;
3095 if (! driver_list->driver->has_char)
3096 return -1;
3097 return driver_list->driver->has_char (font, c);
3098 }
3099
d0ab1ebe 3100 font_assert (FONT_OBJECT_P (font));
35027d0c 3101 fontp = XFONT_OBJECT (font);
1b834a8d
KH
3102 if (fontp->driver->has_char)
3103 {
35027d0c 3104 int result = fontp->driver->has_char (font, c);
1b834a8d
KH
3105
3106 if (result >= 0)
3107 return result;
3108 }
3109 return (fontp->driver->encode_char (fontp, c) != FONT_INVALID_CODE);
c2f5bfd6
KH
3110}
3111
45eb10fb
KH
3112
3113/* Return the glyph ID of FONT_OBJECT for character C. */
3114
c2f5bfd6
KH
3115unsigned
3116font_encode_char (font_object, c)
3117 Lisp_Object font_object;
3118 int c;
3119{
35027d0c 3120 struct font *font;
c2f5bfd6 3121
d0ab1ebe 3122 font_assert (FONT_OBJECT_P (font_object));
35027d0c 3123 font = XFONT_OBJECT (font_object);
c2f5bfd6
KH
3124 return font->driver->encode_char (font, c);
3125}
3126
45eb10fb
KH
3127
3128/* Return the name of FONT_OBJECT. */
3129
ef18374f 3130Lisp_Object
c2f5bfd6
KH
3131font_get_name (font_object)
3132 Lisp_Object font_object;
3133{
d0ab1ebe 3134 font_assert (FONT_OBJECT_P (font_object));
35027d0c 3135 return AREF (font_object, FONT_NAME_INDEX);
ef18374f
KH
3136}
3137
45eb10fb
KH
3138
3139/* Return the specification of FONT_OBJECT. */
3140
ef18374f
KH
3141Lisp_Object
3142font_get_spec (font_object)
3143 Lisp_Object font_object;
3144{
35027d0c 3145 Lisp_Object spec = font_make_spec ();
ef18374f
KH
3146 int i;
3147
3148 for (i = 0; i < FONT_SIZE_INDEX; i++)
35027d0c
KH
3149 ASET (spec, i, AREF (font_object, i));
3150 ASET (spec, FONT_SIZE_INDEX,
3151 make_number (XFONT_OBJECT (font_object)->pixel_size));
ef18374f 3152 return spec;
c2f5bfd6
KH
3153}
3154
05802645
CY
3155
3156/* Create a new font spec from FONT_NAME, and return it. If FONT_NAME
3157 could not be parsed by font_parse_name, return Qnil. */
3158
35027d0c
KH
3159Lisp_Object
3160font_spec_from_name (font_name)
3161 Lisp_Object font_name;
3162{
05802645 3163 Lisp_Object spec = Ffont_spec (0, NULL);
35027d0c 3164
05802645
CY
3165 CHECK_STRING (font_name);
3166 if (font_parse_name ((char *) SDATA (font_name), spec) == -1)
3167 return Qnil;
3168 font_put_extra (spec, QCname, font_name);
42707278 3169 font_put_extra (spec, QCuser_spec, font_name);
05802645 3170 return spec;
35027d0c
KH
3171}
3172
45eb10fb 3173
35027d0c
KH
3174void
3175font_clear_prop (attrs, prop)
3176 Lisp_Object *attrs;
3177 enum font_property_index prop;
3178{
3179 Lisp_Object font = attrs[LFACE_FONT_INDEX];
45eb10fb 3180
35027d0c
KH
3181 if (! FONTP (font))
3182 return;
42707278 3183
483670b5
KH
3184 if (! NILP (Ffont_get (font, QCname)))
3185 {
3186 font = Fcopy_font_spec (font);
3187 font_put_extra (font, QCname, Qnil);
3188 }
3189
35027d0c 3190 if (NILP (AREF (font, prop))
e234927a
CY
3191 && prop != FONT_FAMILY_INDEX
3192 && prop != FONT_FOUNDRY_INDEX
3193 && prop != FONT_WIDTH_INDEX
4007dd1c 3194 && prop != FONT_SIZE_INDEX)
35027d0c 3195 return;
483670b5
KH
3196 if (EQ (font, attrs[LFACE_FONT_INDEX]))
3197 font = Fcopy_font_spec (font);
35027d0c 3198 ASET (font, prop, Qnil);
4007dd1c 3199 if (prop == FONT_FAMILY_INDEX || prop == FONT_FOUNDRY_INDEX)
35027d0c 3200 {
4007dd1c 3201 if (prop == FONT_FAMILY_INDEX)
962e8aa9
CY
3202 {
3203 ASET (font, FONT_FOUNDRY_INDEX, Qnil);
3204 /* If we are setting the font family, we must also clear
3205 FONT_WIDTH_INDEX to avoid rejecting families that lack
3206 support for some widths. */
3207 ASET (font, FONT_WIDTH_INDEX, Qnil);
3208 }
35027d0c 3209 ASET (font, FONT_ADSTYLE_INDEX, Qnil);
4007dd1c 3210 ASET (font, FONT_REGISTRY_INDEX, Qnil);
35027d0c
KH
3211 ASET (font, FONT_SIZE_INDEX, Qnil);
3212 ASET (font, FONT_DPI_INDEX, Qnil);
3213 ASET (font, FONT_SPACING_INDEX, Qnil);
3214 ASET (font, FONT_AVGWIDTH_INDEX, Qnil);
3215 }
3216 else if (prop == FONT_SIZE_INDEX)
3217 {
3218 ASET (font, FONT_DPI_INDEX, Qnil);
3219 ASET (font, FONT_SPACING_INDEX, Qnil);
3220 ASET (font, FONT_AVGWIDTH_INDEX, Qnil);
3221 }
e234927a
CY
3222 else if (prop == FONT_WIDTH_INDEX)
3223 ASET (font, FONT_AVGWIDTH_INDEX, Qnil);
35027d0c
KH
3224 attrs[LFACE_FONT_INDEX] = font;
3225}
3226
3227void
3228font_update_lface (f, attrs)
3229 FRAME_PTR f;
3230 Lisp_Object *attrs;
c2f5bfd6 3231{
d0ab1ebe 3232 Lisp_Object spec;
35027d0c
KH
3233
3234 spec = attrs[LFACE_FONT_INDEX];
3235 if (! FONT_SPEC_P (spec))
3236 return;
3237
4007dd1c
KH
3238 if (! NILP (AREF (spec, FONT_FOUNDRY_INDEX)))
3239 attrs[LFACE_FOUNDRY_INDEX] = SYMBOL_NAME (AREF (spec, FONT_FOUNDRY_INDEX));
3240 if (! NILP (AREF (spec, FONT_FAMILY_INDEX)))
3241 attrs[LFACE_FAMILY_INDEX] = SYMBOL_NAME (AREF (spec, FONT_FAMILY_INDEX));
35027d0c
KH
3242 if (! NILP (AREF (spec, FONT_WEIGHT_INDEX)))
3243 attrs[LFACE_WEIGHT_INDEX] = FONT_WEIGHT_FOR_FACE (spec);
3244 if (! NILP (AREF (spec, FONT_SLANT_INDEX)))
8510724d 3245 attrs[LFACE_SLANT_INDEX] = FONT_SLANT_FOR_FACE (spec);
35027d0c
KH
3246 if (! NILP (AREF (spec, FONT_WIDTH_INDEX)))
3247 attrs[LFACE_SWIDTH_INDEX] = FONT_WIDTH_FOR_FACE (spec);
3248 if (! NILP (AREF (spec, FONT_SIZE_INDEX)))
3249 {
3250 int point;
3251
3252 if (INTEGERP (AREF (spec, FONT_SIZE_INDEX)))
3253 {
3254 Lisp_Object val;
3255 int dpi = f->resy;
3256
3257 val = Ffont_get (spec, QCdpi);
3258 if (! NILP (val))
3259 dpi = XINT (val);
3260 point = PIXEL_TO_POINT (XINT (AREF (spec, FONT_SIZE_INDEX)) * 10,
3261 dpi);
2cf4d521 3262 attrs[LFACE_HEIGHT_INDEX] = make_number (point);
35027d0c
KH
3263 }
3264 else if (FLOATP (AREF (spec, FONT_SIZE_INDEX)))
2cf4d521
CY
3265 {
3266 point = XFLOAT_DATA (AREF (spec, FONT_SIZE_INDEX)) * 10;
3267 attrs[LFACE_HEIGHT_INDEX] = make_number (point);
3268 }
35027d0c 3269 }
c2f5bfd6
KH
3270}
3271
45eb10fb 3272
72d36834
KH
3273/* Selecte a font from ENTITIES (list of font-entity vectors) that
3274 supports C and matches best with ATTRS and PIXEL_SIZE. */
988a7ddb
KH
3275
3276static Lisp_Object
3277font_select_entity (frame, entities, attrs, pixel_size, c)
3278 Lisp_Object frame, entities, *attrs;
3279 int pixel_size, c;
3280{
3281 Lisp_Object font_entity;
3282 Lisp_Object prefer;
988a7ddb
KH
3283 int result, i;
3284 FRAME_PTR f = XFRAME (frame);
3285
72d36834
KH
3286 if (NILP (XCDR (entities))
3287 && ASIZE (XCAR (entities)) == 1)
988a7ddb 3288 {
72d36834 3289 font_entity = AREF (XCAR (entities), 0);
988a7ddb
KH
3290 if (c < 0
3291 || (result = font_has_char (f, font_entity, c)) > 0)
3292 return font_entity;
3293 return Qnil;
3294 }
3295
3296 /* Sort fonts by properties specified in ATTRS. */
3297 prefer = scratch_font_prefer;
3298
3299 for (i = FONT_WEIGHT_INDEX; i <= FONT_SIZE_INDEX; i++)
3300 ASET (prefer, i, Qnil);
3301 if (FONTP (attrs[LFACE_FONT_INDEX]))
3302 {
3303 Lisp_Object face_font = attrs[LFACE_FONT_INDEX];
3304
3305 for (i = FONT_WEIGHT_INDEX; i <= FONT_SIZE_INDEX; i++)
3306 ASET (prefer, i, AREF (face_font, i));
3307 }
3308 if (NILP (AREF (prefer, FONT_WEIGHT_INDEX)))
3309 FONT_SET_STYLE (prefer, FONT_WEIGHT_INDEX, attrs[LFACE_WEIGHT_INDEX]);
3310 if (NILP (AREF (prefer, FONT_SLANT_INDEX)))
3311 FONT_SET_STYLE (prefer, FONT_SLANT_INDEX, attrs[LFACE_SLANT_INDEX]);
3312 if (NILP (AREF (prefer, FONT_WIDTH_INDEX)))
3313 FONT_SET_STYLE (prefer, FONT_WIDTH_INDEX, attrs[LFACE_SWIDTH_INDEX]);
3314 ASET (prefer, FONT_SIZE_INDEX, make_number (pixel_size));
988a7ddb 3315
2645d15b 3316 return font_sort_entities (entities, prefer, frame, c);
988a7ddb
KH
3317}
3318
35027d0c
KH
3319/* Return a font-entity satisfying SPEC and best matching with face's
3320 font related attributes in ATTRS. C, if not negative, is a
1701724c 3321 character that the entity must support. */
c2f5bfd6
KH
3322
3323Lisp_Object
35027d0c 3324font_find_for_lface (f, attrs, spec, c)
c2f5bfd6 3325 FRAME_PTR f;
35027d0c 3326 Lisp_Object *attrs;
c2f5bfd6 3327 Lisp_Object spec;
1701724c 3328 int c;
c2f5bfd6 3329{
4007dd1c 3330 Lisp_Object work;
72d36834 3331 Lisp_Object frame, entities, val;
22459668 3332 Lisp_Object size, foundry[3], *family, registry[3], adstyle[3];
1d1e1245 3333 int pixel_size;
72d36834 3334 int i, j, k, l;
d0a47776
KH
3335
3336 registry[0] = AREF (spec, FONT_REGISTRY_INDEX);
3337 if (NILP (registry[0]))
3338 {
edfda783 3339 registry[0] = DEFAULT_ENCODING;
d0a47776
KH
3340 registry[1] = Qascii_0;
3341 registry[2] = null_vector;
3342 }
3343 else
3344 registry[1] = null_vector;
c2f5bfd6 3345
4007dd1c 3346 if (c >= 0 && ! NILP (AREF (spec, FONT_REGISTRY_INDEX)))
fe5ddfbc 3347 {
35027d0c 3348 struct charset *encoding, *repertory;
1701724c 3349
4007dd1c
KH
3350 if (font_registry_charsets (AREF (spec, FONT_REGISTRY_INDEX),
3351 &encoding, &repertory) < 0)
35027d0c 3352 return Qnil;
72d36834
KH
3353 if (repertory
3354 && ENCODE_CHAR (repertory, c) == CHARSET_INVALID_CODE (repertory))
3355 return Qnil;
35027d0c
KH
3356 else if (c > encoding->max_char)
3357 return Qnil;
c2f5bfd6
KH
3358 }
3359
4007dd1c 3360 work = Fcopy_font_spec (spec);
227f12fa 3361 ASET (work, FONT_TYPE_INDEX, AREF (spec, FONT_TYPE_INDEX));
35027d0c
KH
3362 XSETFRAME (frame, f);
3363 size = AREF (spec, FONT_SIZE_INDEX);
1d1e1245
KH
3364 pixel_size = font_pixel_size (f, spec);
3365 if (pixel_size == 0)
3366 {
3367 double pt = XINT (attrs[LFACE_HEIGHT_INDEX]);
3368
3369 pixel_size = POINT_TO_PIXEL (pt / 10, f->resy);
3370 }
4007dd1c
KH
3371 ASET (work, FONT_SIZE_INDEX, Qnil);
3372 foundry[0] = AREF (work, FONT_FOUNDRY_INDEX);
3373 if (! NILP (foundry[0]))
3374 foundry[1] = null_vector;
3375 else if (STRINGP (attrs[LFACE_FOUNDRY_INDEX]))
3376 {
071132a9
KH
3377 val = attrs[LFACE_FOUNDRY_INDEX];
3378 foundry[0] = font_intern_prop ((char *) SDATA (val), SBYTES (val), 1);
4007dd1c
KH
3379 foundry[1] = Qnil;
3380 foundry[2] = null_vector;
3381 }
3382 else
3383 foundry[0] = Qnil, foundry[1] = null_vector;
3384
22459668
KH
3385 adstyle[0] = AREF (work, FONT_ADSTYLE_INDEX);
3386 if (! NILP (adstyle[0]))
3387 adstyle[1] = null_vector;
3388 else if (FONTP (attrs[LFACE_FONT_INDEX]))
3389 {
3390 Lisp_Object face_font = attrs[LFACE_FONT_INDEX];
3391
3392 if (! NILP (AREF (face_font, FONT_ADSTYLE_INDEX)))
3393 {
3394 adstyle[0] = AREF (face_font, FONT_ADSTYLE_INDEX);
3395 adstyle[1] = Qnil;
3396 adstyle[2] = null_vector;
3397 }
3398 else
3399 adstyle[0] = Qnil, adstyle[1] = null_vector;
3400 }
3401 else
3402 adstyle[0] = Qnil, adstyle[1] = null_vector;
3403
3404
4007dd1c
KH
3405 val = AREF (work, FONT_FAMILY_INDEX);
3406 if (NILP (val) && STRINGP (attrs[LFACE_FAMILY_INDEX]))
071132a9
KH
3407 {
3408 val = attrs[LFACE_FAMILY_INDEX];
3409 val = font_intern_prop ((char *) SDATA (val), SBYTES (val), 1);
3410 }
4007dd1c
KH
3411 if (NILP (val))
3412 {
3413 family = alloca ((sizeof family[0]) * 2);
3414 family[0] = Qnil;
3415 family[1] = null_vector; /* terminator. */
3416 }
3417 else
3418 {
3419 Lisp_Object alters
819ab95f 3420 = Fassoc_string (val, Vface_alternative_font_family_alist,
7107c29e 3421 /* Font family names are case-sensitive under NS. */
819ab95f
KH
3422#ifndef HAVE_NS
3423 Qt
3424#else
3425 Qnil
3426#endif
3427 );
4007dd1c
KH
3428
3429 if (! NILP (alters))
3430 {
3431 family = alloca ((sizeof family[0]) * (XINT (Flength (alters)) + 2));
3432 for (i = 0; CONSP (alters); i++, alters = XCDR (alters))
3433 family[i] = XCAR (alters);
3434 if (NILP (AREF (spec, FONT_FAMILY_INDEX)))
3435 family[i++] = Qnil;
3436 family[i] = null_vector;
3437 }
3438 else
3439 {
3440 family = alloca ((sizeof family[0]) * 3);
3441 i = 0;
3442 family[i++] = val;
3443 if (NILP (AREF (spec, FONT_FAMILY_INDEX)))
3444 family[i++] = Qnil;
3445 family[i] = null_vector;
3446 }
3447 }
3448
d0a47776 3449 for (i = 0; SYMBOLP (family[i]); i++)
4007dd1c 3450 {
d0a47776
KH
3451 ASET (work, FONT_FAMILY_INDEX, family[i]);
3452 for (j = 0; SYMBOLP (foundry[j]); j++)
4007dd1c 3453 {
d0a47776
KH
3454 ASET (work, FONT_FOUNDRY_INDEX, foundry[j]);
3455 for (k = 0; SYMBOLP (registry[k]); k++)
3456 {
904a2e0e 3457 ASET (work, FONT_REGISTRY_INDEX, registry[k]);
22459668
KH
3458 for (l = 0; SYMBOLP (adstyle[l]); l++)
3459 {
3460 ASET (work, FONT_ADSTYLE_INDEX, adstyle[l]);
3461 entities = font_list_entities (frame, work);
72d36834 3462 if (! NILP (entities))
988a7ddb
KH
3463 {
3464 val = font_select_entity (frame, entities,
3465 attrs, pixel_size, c);
3466 if (! NILP (val))
637fa988 3467 return val;
988a7ddb 3468 }
22459668 3469 }
d0a47776 3470 }
4007dd1c 3471 }
4007dd1c 3472 }
d0a47776 3473 return Qnil;
1701724c 3474}
45eb10fb
KH
3475
3476
c2f5bfd6 3477Lisp_Object
35027d0c 3478font_open_for_lface (f, entity, attrs, spec)
c2f5bfd6 3479 FRAME_PTR f;
c2f5bfd6 3480 Lisp_Object entity;
35027d0c 3481 Lisp_Object *attrs;
733fd013 3482 Lisp_Object spec;
c2f5bfd6 3483{
9331887d 3484 int size;
c2f5bfd6 3485
4007dd1c
KH
3486 if (INTEGERP (AREF (entity, FONT_SIZE_INDEX))
3487 && XINT (AREF (entity, FONT_SIZE_INDEX)) > 0)
3488 size = XINT (AREF (entity, FONT_SIZE_INDEX));
3489 else if (FONT_SPEC_P (spec) && ! NILP (AREF (spec, FONT_SIZE_INDEX)))
1d1e1245 3490 size = font_pixel_size (f, spec);
733fd013
KH
3491 else
3492 {
50b0cd29
CY
3493 double pt;
3494 if (INTEGERP (attrs[LFACE_HEIGHT_INDEX]))
3495 pt = XINT (attrs[LFACE_HEIGHT_INDEX]);
3496 else
3497 {
3498 struct face *def = FACE_FROM_ID (f, DEFAULT_FACE_ID);
3499 Lisp_Object height = def->lface[LFACE_HEIGHT_INDEX];
3500 if (INTEGERP (height))
3501 pt = XINT (height);
3502 else
3503 abort(); /* We should never end up here. */
3504 }
733fd013
KH
3505
3506 pt /= 10;
3507 size = POINT_TO_PIXEL (pt, f->resy);
ed96cde8
AR
3508#ifdef HAVE_NS
3509 if (size == 0)
3510 {
3511 Lisp_Object ffsize = get_frame_param(f, Qfontsize);
3512 size = NUMBERP (ffsize) ? POINT_TO_PIXEL (XINT (ffsize), f->resy) : 0;
3513 }
3514#endif
733fd013 3515 }
c2f5bfd6
KH
3516 return font_open_entity (f, entity, size);
3517}
3518
45eb10fb 3519
35027d0c
KH
3520/* Find a font satisfying SPEC and best matching with face's
3521 attributes in ATTRS on FRAME, and return the opened
3522 font-object. */
45eb10fb 3523
35027d0c
KH
3524Lisp_Object
3525font_load_for_lface (f, attrs, spec)
c2f5bfd6 3526 FRAME_PTR f;
35027d0c 3527 Lisp_Object *attrs, spec;
c2f5bfd6 3528{
637fa988 3529 Lisp_Object entity, name;
ef18374f 3530
908567ef 3531 entity = font_find_for_lface (f, attrs, spec, -1);
35027d0c 3532 if (NILP (entity))
ef18374f 3533 {
35027d0c
KH
3534 /* No font is listed for SPEC, but each font-backend may have
3535 the different criteria about "font matching". So, try
3536 it. */
3537 entity = font_matching_entity (f, attrs, spec);
3538 if (NILP (entity))
3539 return Qnil;
c2f5bfd6 3540 }
637fa988
JD
3541 /* Don't loose the original name that was put in initially. We need
3542 it to re-apply the font when font parameters (like hinting or dpi) have
3543 changed. */
3544 entity = font_open_for_lface (f, entity, attrs, spec);
8096a0ff
YM
3545 if (!NILP (entity))
3546 {
42707278
JD
3547 name = Ffont_get (spec, QCuser_spec);
3548 if (STRINGP (name)) font_put_extra (entity, QCuser_spec, name);
8096a0ff 3549 }
637fa988 3550 return entity;
c2f5bfd6
KH
3551}
3552
45eb10fb
KH
3553
3554/* Make FACE on frame F ready to use the font opened for FACE. */
3555
c2f5bfd6
KH
3556void
3557font_prepare_for_face (f, face)
3558 FRAME_PTR f;
3559 struct face *face;
3560{
35027d0c
KH
3561 if (face->font->driver->prepare_face)
3562 face->font->driver->prepare_face (f, face);
c2f5bfd6
KH
3563}
3564
45eb10fb
KH
3565
3566/* Make FACE on frame F stop using the font opened for FACE. */
3567
c2f5bfd6
KH
3568void
3569font_done_for_face (f, face)
3570 FRAME_PTR f;
3571 struct face *face;
3572{
35027d0c
KH
3573 if (face->font->driver->done_face)
3574 face->font->driver->done_face (f, face);
c2f5bfd6
KH
3575 face->extra = NULL;
3576}
3577
45eb10fb 3578
c50b7e98
KH
3579/* Open a font matching with font-spec SPEC on frame F. If no proper
3580 font is found, return Qnil. */
45eb10fb 3581
c2f5bfd6 3582Lisp_Object
c50b7e98 3583font_open_by_spec (f, spec)
c2f5bfd6 3584 FRAME_PTR f;
c50b7e98 3585 Lisp_Object spec;
c2f5bfd6 3586{
c50b7e98 3587 Lisp_Object attrs[LFACE_VECTOR_SIZE];
a9262bb8 3588
4007dd1c
KH
3589 /* We set up the default font-related attributes of a face to prefer
3590 a moderate font. */
3591 attrs[LFACE_FAMILY_INDEX] = attrs[LFACE_FOUNDRY_INDEX] = Qnil;
3592 attrs[LFACE_SWIDTH_INDEX] = attrs[LFACE_WEIGHT_INDEX]
3593 = attrs[LFACE_SLANT_INDEX] = Qnormal;
ed96cde8 3594#ifndef HAVE_NS
4007dd1c 3595 attrs[LFACE_HEIGHT_INDEX] = make_number (120);
ed96cde8
AR
3596#else
3597 attrs[LFACE_HEIGHT_INDEX] = make_number (0);
3598#endif
4007dd1c
KH
3599 attrs[LFACE_FONT_INDEX] = Qnil;
3600
3601 return font_load_for_lface (f, attrs, spec);
c2f5bfd6
KH
3602}
3603
3604
c50b7e98
KH
3605/* Open a font matching with NAME on frame F. If no proper font is
3606 found, return Qnil. */
3607
3608Lisp_Object
3609font_open_by_name (f, name)
3610 FRAME_PTR f;
3611 char *name;
3612{
3613 Lisp_Object args[2];
581e51e8 3614 Lisp_Object spec, ret;
c50b7e98
KH
3615
3616 args[0] = QCname;
3617 args[1] = make_unibyte_string (name, strlen (name));
3618 spec = Ffont_spec (2, args);
581e51e8
JD
3619 ret = font_open_by_spec (f, spec);
3620 /* Do not loose name originally put in. */
8096a0ff 3621 if (!NILP (ret))
42707278 3622 font_put_extra (ret, QCuser_spec, args[1]);
581e51e8
JD
3623
3624 return ret;
c50b7e98
KH
3625}
3626
3627
c2f5bfd6
KH
3628/* Register font-driver DRIVER. This function is used in two ways.
3629
417a1b10
KH
3630 The first is with frame F non-NULL. In this case, make DRIVER
3631 available (but not yet activated) on F. All frame creaters
3632 (e.g. Fx_create_frame) must call this function at least once with
3633 an available font-driver.
c2f5bfd6
KH
3634
3635 The second is with frame F NULL. In this case, DRIVER is globally
3636 registered in the variable `font_driver_list'. All font-driver
3637 implementations must call this function in its syms_of_XXXX
3638 (e.g. syms_of_xfont). */
3639
3640void
3641register_font_driver (driver, f)
3642 struct font_driver *driver;
3643 FRAME_PTR f;
3644{
3645 struct font_driver_list *root = f ? f->font_driver_list : font_driver_list;
3646 struct font_driver_list *prev, *list;
3647
3648 if (f && ! driver->draw)
43a1d19b 3649 error ("Unusable font driver for a frame: %s",
c2f5bfd6
KH
3650 SDATA (SYMBOL_NAME (driver->type)));
3651
3652 for (prev = NULL, list = root; list; prev = list, list = list->next)
cf23b845 3653 if (EQ (list->driver->type, driver->type))
c2f5bfd6
KH
3654 error ("Duplicated font driver: %s", SDATA (SYMBOL_NAME (driver->type)));
3655
c115043b 3656 list = xmalloc (sizeof (struct font_driver_list));
417a1b10 3657 list->on = 0;
c2f5bfd6
KH
3658 list->driver = driver;
3659 list->next = NULL;
3660 if (prev)
3661 prev->next = list;
3662 else if (f)
3663 f->font_driver_list = list;
3664 else
3665 font_driver_list = list;
72606e45
KH
3666 if (! f)
3667 num_font_drivers++;
c2f5bfd6
KH
3668}
3669
2ed98482
CY
3670void
3671free_font_driver_list (f)
3672 FRAME_PTR f;
3673{
3674 struct font_driver_list *list, *next;
3675
3676 for (list = f->font_driver_list; list; list = next)
3677 {
3678 next = list->next;
3679 xfree (list);
3680 }
3681 f->font_driver_list = NULL;
3682}
3683
45eb10fb 3684
f697fff0 3685/* Make the frame F use font backends listed in NEW_DRIVERS (list of
ca4da08a
KH
3686 symbols, e.g. xft, x). If NEW_DRIVERS is t, make F use all
3687 available font drivers. If NEW_DRIVERS is nil, finalize all drivers.
417a1b10 3688
ca4da08a
KH
3689 A caller must free all realized faces if any in advance. The
3690 return value is a list of font backends actually made used on
3691 F. */
e950d6f1
KH
3692
3693Lisp_Object
3694font_update_drivers (f, new_drivers)
417a1b10
KH
3695 FRAME_PTR f;
3696 Lisp_Object new_drivers;
417a1b10
KH
3697{
3698 Lisp_Object active_drivers = Qnil;
4007dd1c 3699 struct font_driver *driver;
417a1b10
KH
3700 struct font_driver_list *list;
3701
4007dd1c
KH
3702 /* At first, turn off non-requested drivers, and turn on requested
3703 drivers. */
f697fff0 3704 for (list = f->font_driver_list; list; list = list->next)
4007dd1c
KH
3705 {
3706 driver = list->driver;
3707 if ((EQ (new_drivers, Qt) || ! NILP (Fmemq (driver->type, new_drivers)))
3708 != list->on)
3709 {
3710 if (list->on)
3711 {
3712 if (driver->end_for_frame)
3713 driver->end_for_frame (f);
3714 font_finish_cache (f, driver);
3715 list->on = 0;
3716 }
3717 else
3718 {
3719 if (! driver->start_for_frame
3720 || driver->start_for_frame (f) == 0)
3721 {
3722 font_prepare_cache (f, driver);
3723 list->on = 1;
3724 }
3725 }
3726 }
3727 }
3728
3729 if (NILP (new_drivers))
3730 return Qnil;
3731
3732 if (! EQ (new_drivers, Qt))
3733 {
3734 /* Re-order the driver list according to new_drivers. */
3306c6dc 3735 struct font_driver_list **list_table, **next;
4007dd1c
KH
3736 Lisp_Object tail;
3737 int i;
3738
3739 list_table = alloca (sizeof list_table[0] * (num_font_drivers + 1));
3740 for (i = 0, tail = new_drivers; ! NILP (tail); tail = XCDR (tail))
3741 {
3742 for (list = f->font_driver_list; list; list = list->next)
3743 if (list->on && EQ (list->driver->type, XCAR (tail)))
3744 break;
3745 if (list)
3746 list_table[i++] = list;
3747 }
3748 for (list = f->font_driver_list; list; list = list->next)
3749 if (! list->on)
6136b72f 3750 list_table[i++] = list;
4007dd1c
KH
3751 list_table[i] = NULL;
3752
3306c6dc 3753 next = &f->font_driver_list;
4007dd1c
KH
3754 for (i = 0; list_table[i]; i++)
3755 {
3306c6dc
AS
3756 *next = list_table[i];
3757 next = &(*next)->next;
4007dd1c 3758 }
3306c6dc 3759 *next = NULL;
ba98e3a0
SM
3760
3761 if (! f->font_driver_list->on)
3762 { /* None of the drivers is enabled: enable them all.
3763 Happens if you set the list of drivers to (xft x) in your .emacs
3764 and then use it under w32 or ns. */
3765 for (list = f->font_driver_list; list; list = list->next)
3766 {
3767 struct font_driver *driver = list->driver;
3768 eassert (! list->on);
3769 if (! driver->start_for_frame
3770 || driver->start_for_frame (f) == 0)
3771 {
3772 font_prepare_cache (f, driver);
3773 list->on = 1;
3774 }
3775 }
3776 }
4007dd1c 3777 }
417a1b10 3778
4007dd1c
KH
3779 for (list = f->font_driver_list; list; list = list->next)
3780 if (list->on)
3781 active_drivers = nconc2 (active_drivers,
3782 Fcons (list->driver->type, Qnil));
e950d6f1 3783 return active_drivers;
417a1b10
KH
3784}
3785
f697fff0
KH
3786int
3787font_put_frame_data (f, driver, data)
3788 FRAME_PTR f;
3789 struct font_driver *driver;
3790 void *data;
3791{
3792 struct font_data_list *list, *prev;
3793
3794 for (prev = NULL, list = f->font_data_list; list;
3795 prev = list, list = list->next)
3796 if (list->driver == driver)
3797 break;
3798 if (! data)
3799 {
3800 if (list)
3801 {
3802 if (prev)
3803 prev->next = list->next;
3804 else
3805 f->font_data_list = list->next;
973e7849 3806 xfree (list);
f697fff0
KH
3807 }
3808 return 0;
3809 }
3810
3811 if (! list)
3812 {
c115043b 3813 list = xmalloc (sizeof (struct font_data_list));
f697fff0
KH
3814 list->driver = driver;
3815 list->next = f->font_data_list;
3816 f->font_data_list = list;
3817 }
3818 list->data = data;
3819 return 0;
3820}
3821
3822
3823void *
3824font_get_frame_data (f, driver)
3825 FRAME_PTR f;
3826 struct font_driver *driver;
3827{
3828 struct font_data_list *list;
3829
3830 for (list = f->font_data_list; list; list = list->next)
3831 if (list->driver == driver)
3832 break;
3833 if (! list)
3834 return NULL;
3835 return list->data;
3836}
3837
417a1b10 3838
45eb10fb 3839/* Return the font used to draw character C by FACE at buffer position
e3ee0340
KH
3840 POS in window W. If STRING is non-nil, it is a string containing C
3841 at index POS. If C is negative, get C from the current buffer or
3842 STRING. */
45eb10fb 3843
10d16101 3844Lisp_Object
e3ee0340 3845font_at (c, pos, face, w, string)
10d16101
KH
3846 int c;
3847 EMACS_INT pos;
3848 struct face *face;
3849 struct window *w;
e3ee0340 3850 Lisp_Object string;
10d16101
KH
3851{
3852 FRAME_PTR f;
e3ee0340 3853 int multibyte;
35027d0c 3854 Lisp_Object font_object;
e3ee0340 3855
e500c47d
KH
3856 multibyte = (NILP (string)
3857 ? ! NILP (current_buffer->enable_multibyte_characters)
3858 : STRING_MULTIBYTE (string));
e3ee0340
KH
3859 if (c < 0)
3860 {
3861 if (NILP (string))
3862 {
e3ee0340
KH
3863 if (multibyte)
3864 {
3865 EMACS_INT pos_byte = CHAR_TO_BYTE (pos);
3866
3867 c = FETCH_CHAR (pos_byte);
3868 }
3869 else
3870 c = FETCH_BYTE (pos);
3871 }
3872 else
3873 {
3874 unsigned char *str;
3875
3876 multibyte = STRING_MULTIBYTE (string);
3877 if (multibyte)
3878 {
3879 EMACS_INT pos_byte = string_char_to_byte (string, pos);
3880
3881 str = SDATA (string) + pos_byte;
62a6e103 3882 c = STRING_CHAR (str);
e3ee0340
KH
3883 }
3884 else
3885 c = SDATA (string)[pos];
3886 }
3887 }
10d16101
KH
3888
3889 f = XFRAME (w->frame);
1385a806
KH
3890 if (! FRAME_WINDOW_P (f))
3891 return Qnil;
10d16101
KH
3892 if (! face)
3893 {
e3ee0340 3894 int face_id;
0f8b27ea 3895 EMACS_INT endptr;
e3ee0340
KH
3896
3897 if (STRINGP (string))
3898 face_id = face_at_string_position (w, string, pos, 0, -1, -1, &endptr,
10d16101
KH
3899 DEFAULT_FACE_ID, 0);
3900 else
e3ee0340 3901 face_id = face_at_buffer_position (w, pos, -1, -1, &endptr,
6970f632 3902 pos + 100, 0, -1);
10d16101
KH
3903 face = FACE_FROM_ID (f, face_id);
3904 }
e3ee0340
KH
3905 if (multibyte)
3906 {
3907 int face_id = FACE_FOR_CHAR (f, face, c, pos, string);
3908 face = FACE_FROM_ID (f, face_id);
3909 }
35027d0c 3910 if (! face->font)
10d16101 3911 return Qnil;
35027d0c 3912
35027d0c
KH
3913 XSETFONT (font_object, face->font);
3914 return font_object;
3915}
3916
3917
071132a9
KH
3918#ifdef HAVE_WINDOW_SYSTEM
3919
3920/* Check how many characters after POS (at most to *LIMIT) can be
3921 displayed by the same font on the window W. FACE, if non-NULL, is
3922 the face selected for the character at POS. If STRING is not nil,
3923 it is the string to check instead of the current buffer. In that
3924 case, FACE must be not NULL.
027a33c0 3925
071132a9
KH
3926 The return value is the font-object for the character at POS.
3927 *LIMIT is set to the position where that font can't be used.
35027d0c 3928
071132a9
KH
3929 It is assured that the current buffer (or STRING) is multibyte. */
3930
3931Lisp_Object
3932font_range (pos, limit, w, face, string)
3933 EMACS_INT pos, *limit;
3934 struct window *w;
35027d0c 3935 struct face *face;
35027d0c
KH
3936 Lisp_Object string;
3937{
071132a9 3938 EMACS_INT pos_byte, ignore, start, start_byte;
35027d0c 3939 int c;
071132a9 3940 Lisp_Object font_object = Qnil;
35027d0c
KH
3941
3942 if (NILP (string))
3943 {
35027d0c 3944 pos_byte = CHAR_TO_BYTE (pos);
071132a9
KH
3945 if (! face)
3946 {
3947 int face_id;
3948
6970f632
CY
3949 face_id = face_at_buffer_position (w, pos, 0, 0, &ignore,
3950 *limit, 0, -1);
071132a9
KH
3951 face = FACE_FROM_ID (XFRAME (w->frame), face_id);
3952 }
35027d0c
KH
3953 }
3954 else
3955 {
071132a9 3956 font_assert (face);
35027d0c
KH
3957 pos_byte = string_char_to_byte (string, pos);
3958 }
3959
071132a9
KH
3960 start = pos, start_byte = pos_byte;
3961 while (pos < *limit)
35027d0c 3962 {
071132a9 3963 Lisp_Object category;
35027d0c
KH
3964
3965 if (NILP (string))
3966 FETCH_CHAR_ADVANCE_NO_CHECK (c, pos, pos_byte);
3967 else
3968 FETCH_STRING_CHAR_ADVANCE_NO_CHECK (c, string, pos, pos_byte);
071132a9 3969 if (NILP (font_object))
35027d0c 3970 {
071132a9
KH
3971 font_object = font_for_char (face, c, pos - 1, string);
3972 if (NILP (font_object))
3973 return Qnil;
35027d0c
KH
3974 continue;
3975 }
071132a9
KH
3976
3977 category = CHAR_TABLE_REF (Vunicode_category_table, c);
3978 if (! EQ (category, QCf)
78a2f9cd 3979 && ! CHAR_VARIATION_SELECTOR_P (c)
071132a9 3980 && font_encode_char (font_object, c) == FONT_INVALID_CODE)
35027d0c 3981 {
071132a9
KH
3982 Lisp_Object f = font_for_char (face, c, pos - 1, string);
3983 EMACS_INT i, i_byte;
3984
3985
3986 if (NILP (f))
3987 {
3988 *limit = pos - 1;
3989 return font_object;
3990 }
3991 i = start, i_byte = start_byte;
3992 while (i < pos - 1)
3993 {
3994
3995 if (NILP (string))
3996 FETCH_CHAR_ADVANCE_NO_CHECK (c, i, i_byte);
3997 else
3998 FETCH_STRING_CHAR_ADVANCE_NO_CHECK (c, string, i, i_byte);
3999 category = CHAR_TABLE_REF (Vunicode_category_table, c);
4000 if (! EQ (category, QCf)
78a2f9cd 4001 && ! CHAR_VARIATION_SELECTOR_P (c)
071132a9
KH
4002 && font_encode_char (f, c) == FONT_INVALID_CODE)
4003 {
4004 *limit = pos - 1;
4005 return font_object;
4006 }
4007 }
4008 font_object = f;
35027d0c
KH
4009 }
4010 }
071132a9 4011 return font_object;
10d16101 4012}
071132a9 4013#endif
10d16101 4014
c2f5bfd6
KH
4015\f
4016/* Lisp API */
4017
35027d0c 4018DEFUN ("fontp", Ffontp, Sfontp, 1, 2, 0,
6c8ec042 4019 doc: /* Return t if OBJECT is a font-spec, font-entity, or font-object.
35027d0c
KH
4020Return nil otherwise.
4021Optional 2nd argument EXTRA-TYPE, if non-nil, specifies to check
027a33c0 4022which kind of font it is. It must be one of `font-spec', `font-entity',
35027d0c
KH
4023`font-object'. */)
4024 (object, extra_type)
4025 Lisp_Object object, extra_type;
c2f5bfd6 4026{
35027d0c
KH
4027 if (NILP (extra_type))
4028 return (FONTP (object) ? Qt : Qnil);
4029 if (EQ (extra_type, Qfont_spec))
4030 return (FONT_SPEC_P (object) ? Qt : Qnil);
4031 if (EQ (extra_type, Qfont_entity))
4032 return (FONT_ENTITY_P (object) ? Qt : Qnil);
4033 if (EQ (extra_type, Qfont_object))
4034 return (FONT_OBJECT_P (object) ? Qt : Qnil);
4035 wrong_type_argument (intern ("font-extra-type"), extra_type);
c2f5bfd6
KH
4036}
4037
4038DEFUN ("font-spec", Ffont_spec, Sfont_spec, 0, MANY, 0,
45eb10fb
KH
4039 doc: /* Return a newly created font-spec with arguments as properties.
4040
4041ARGS must come in pairs KEY VALUE of font properties. KEY must be a
4042valid font property name listed below:
4043
4044`:family', `:weight', `:slant', `:width'
4045
4046They are the same as face attributes of the same name. See
51c01100 4047`set-face-attribute'.
45eb10fb
KH
4048
4049`:foundry'
4050
4051VALUE must be a string or a symbol specifying the font foundry, e.g. ``misc''.
4052
4053`:adstyle'
4054
4055VALUE must be a string or a symbol specifying the additional
35027d0c 4056typographic style information of a font, e.g. ``sans''.
45eb10fb
KH
4057
4058`:registry'
4059
4060VALUE must be a string or a symbol specifying the charset registry and
4061encoding of a font, e.g. ``iso8859-1''.
4062
4063`:size'
4064
4065VALUE must be a non-negative integer or a floating point number
c423ecca
KH
4066specifying the font size. It specifies the font size in pixels (if
4067VALUE is an integer), or in points (if VALUE is a float).
2babb359
KH
4068
4069`:name'
4070
7a18a178 4071VALUE must be a string of XLFD-style or fontconfig-style font name.
5bdd4dd2
KH
4072
4073`:script'
4074
4075VALUE must be a symbol representing a script that the font must
209f39ac
KH
4076support. It may be a symbol representing a subgroup of a script
4077listed in the variable `script-representative-chars'.
c423ecca
KH
4078
4079`:lang'
4080
4081VALUE must be a symbol of two-letter ISO-639 language names,
4082e.g. `ja'.
4083
4084`:otf'
4085
4086VALUE must be a list (SCRIPT-TAG LANGSYS-TAG GSUB [ GPOS ]) to specify
4087required OpenType features.
4088
4089 SCRIPT-TAG: OpenType script tag symbol (e.g. `deva').
4090 LANGSYS-TAG: OpenType language system tag symbol,
4091 or nil for the default language system.
4092 GSUB: List of OpenType GSUB feature tag symbols, or nil if none required.
4093 GPOS: List of OpenType GPOS feature tag symbols, or nil if none required.
4094
4095GSUB and GPOS may contain `nil' element. In such a case, the font
4096must not have any of the remaining elements.
4097
4098For instance, if the VALUE is `(thai nil nil (mark))', the font must
22f79966 4099be an OpenType font, and whose GPOS table of `thai' script's default
c423ecca
KH
4100language system must contain `mark' feature.
4101
ba3de0e8 4102usage: (font-spec ARGS...) */)
c2f5bfd6
KH
4103 (nargs, args)
4104 int nargs;
4105 Lisp_Object *args;
4106{
35027d0c 4107 Lisp_Object spec = font_make_spec ();
c2f5bfd6
KH
4108 int i;
4109
4110 for (i = 0; i < nargs; i += 2)
4111 {
cccd42d5
KH
4112 Lisp_Object key = args[i], val;
4113
4114 CHECK_SYMBOL (key);
4115 if (i + 1 >= nargs)
4116 error ("No value for key `%s'", SDATA (SYMBOL_NAME (key)));
4117 val = args[i + 1];
c2f5bfd6 4118
35027d0c
KH
4119 if (EQ (key, QCname))
4120 {
4121 CHECK_STRING (val);
4122 font_parse_name ((char *) SDATA (val), spec);
4123 font_put_extra (spec, key, val);
4124 }
c2f5bfd6 4125 else
4485a28e 4126 {
35027d0c
KH
4127 int idx = get_font_prop_index (key);
4128
4129 if (idx >= 0)
ec6fe57c 4130 {
35027d0c
KH
4131 val = font_prop_validate (idx, Qnil, val);
4132 if (idx < FONT_EXTRA_INDEX)
4133 ASET (spec, idx, val);
4134 else
4135 font_put_extra (spec, key, val);
ec6fe57c 4136 }
35027d0c
KH
4137 else
4138 font_put_extra (spec, key, font_prop_validate (0, key, val));
4485a28e 4139 }
e950d6f1 4140 }
c2f5bfd6
KH
4141 return spec;
4142}
4143
35027d0c
KH
4144DEFUN ("copy-font-spec", Fcopy_font_spec, Scopy_font_spec, 1, 1, 0,
4145 doc: /* Return a copy of FONT as a font-spec. */)
4146 (font)
4147 Lisp_Object font;
4148{
d26424c5 4149 Lisp_Object new_spec, tail, prev, extra;
35027d0c
KH
4150 int i;
4151
4152 CHECK_FONT (font);
4153 new_spec = font_make_spec ();
4154 for (i = 1; i < FONT_EXTRA_INDEX; i++)
4155 ASET (new_spec, i, AREF (font, i));
581e51e8 4156 extra = Fcopy_alist (AREF (font, FONT_EXTRA_INDEX));
d26424c5
KH
4157 /* We must remove :font-entity property. */
4158 for (prev = Qnil, tail = extra; CONSP (tail); prev = tail, tail = XCDR (tail))
4159 if (EQ (XCAR (XCAR (tail)), QCfont_entity))
4160 {
4161 if (NILP (prev))
4162 extra = XCDR (extra);
4163 else
4164 XSETCDR (prev, XCDR (tail));
4165 break;
4166 }
35027d0c
KH
4167 ASET (new_spec, FONT_EXTRA_INDEX, extra);
4168 return new_spec;
4169}
4170
4171DEFUN ("merge-font-spec", Fmerge_font_spec, Smerge_font_spec, 2, 2, 0,
4172 doc: /* Merge font-specs FROM and TO, and return a new font-spec.
4173Every specified properties in FROM override the corresponding
4174properties in TO. */)
4175 (from, to)
4176 Lisp_Object from, to;
4177{
4178 Lisp_Object extra, tail;
4179 int i;
4180
4181 CHECK_FONT (from);
4182 CHECK_FONT (to);
4183 to = Fcopy_font_spec (to);
4184 for (i = 0; i < FONT_EXTRA_INDEX; i++)
4185 ASET (to, i, AREF (from, i));
4186 extra = AREF (to, FONT_EXTRA_INDEX);
4187 for (tail = AREF (from, FONT_EXTRA_INDEX); CONSP (tail); tail = XCDR (tail))
4188 if (! EQ (XCAR (XCAR (tail)), Qfont_entity))
4189 {
4190 Lisp_Object slot = assq_no_quit (XCAR (XCAR (tail)), extra);
4191
4192 if (! NILP (slot))
4193 XSETCDR (slot, XCDR (XCAR (tail)));
4194 else
4195 extra = Fcons (Fcons (XCAR (XCAR (tail)), XCDR (XCAR (tail))), extra);
4196 }
4197 ASET (to, FONT_EXTRA_INDEX, extra);
4198 return to;
4199}
c2f5bfd6
KH
4200
4201DEFUN ("font-get", Ffont_get, Sfont_get, 2, 2, 0,
45eb10fb 4202 doc: /* Return the value of FONT's property KEY.
5bdd4dd2
KH
4203FONT is a font-spec, a font-entity, or a font-object.
4204KEY must be one of these symbols:
4205 :family, :weight, :slant, :width, :foundry, :adstyle, :registry,
4206 :size, :name, :script
4207See the documentation of `font-spec' for their meanings.
4208If FONT is a font-entity or font-object, the value of :script may be
4209a list of scripts that are supported by the font. */)
45eb10fb
KH
4210 (font, key)
4211 Lisp_Object font, key;
c2f5bfd6 4212{
35027d0c 4213 int idx;
c2f5bfd6 4214
35027d0c
KH
4215 CHECK_FONT (font);
4216 CHECK_SYMBOL (key);
e80e09b4 4217
35027d0c 4218 idx = get_font_prop_index (key);
2babb359
KH
4219 if (idx >= FONT_WEIGHT_INDEX && idx <= FONT_WIDTH_INDEX)
4220 return font_style_symbolic (font, idx, 0);
35027d0c 4221 if (idx >= 0 && idx < FONT_EXTRA_INDEX)
c2f5bfd6 4222 return AREF (font, idx);
35027d0c 4223 return Fcdr (Fassq (key, AREF (font, FONT_EXTRA_INDEX)));
c2f5bfd6
KH
4224}
4225
51cf11be
AS
4226#ifdef HAVE_WINDOW_SYSTEM
4227
b1868a1a
CY
4228DEFUN ("font-face-attributes", Ffont_face_attributes, Sfont_face_attributes, 1, 2, 0,
4229 doc: /* Return a plist of face attributes generated by FONT.
4230FONT is a font name, a font-spec, a font-entity, or a font-object.
4231The return value is a list of the form
4232
6f568955 4233\(:family FAMILY :height HEIGHT :weight WEIGHT :slant SLANT :width WIDTH)
b1868a1a 4234
48105a6a 4235where FAMILY, HEIGHT, WEIGHT, SLANT, and WIDTH are face attribute values
5989ba2f
CY
4236compatible with `set-face-attribute'. Some of these key-attribute pairs
4237may be omitted from the list if they are not specified by FONT.
b1868a1a 4238
48105a6a
JB
4239The optional argument FRAME specifies the frame that the face attributes
4240are to be displayed on. If omitted, the selected frame is used. */)
b1868a1a 4241 (font, frame)
6f568955 4242 Lisp_Object font, frame;
b1868a1a
CY
4243{
4244 struct frame *f;
4245 Lisp_Object plist[10];
4246 Lisp_Object val;
5989ba2f 4247 int n = 0;
b1868a1a
CY
4248
4249 if (NILP (frame))
4250 frame = selected_frame;
4251 CHECK_LIVE_FRAME (frame);
4252 f = XFRAME (frame);
4253
4254 if (STRINGP (font))
4255 {
4256 int fontset = fs_query_fontset (font, 0);
4257 Lisp_Object name = font;
4258 if (fontset >= 0)
4259 font = fontset_ascii (fontset);
4260 font = font_spec_from_name (name);
4261 if (! FONTP (font))
4262 signal_error ("Invalid font name", name);
4263 }
4264 else if (! FONTP (font))
4265 signal_error ("Invalid font object", font);
4266
b1868a1a 4267 val = AREF (font, FONT_FAMILY_INDEX);
5989ba2f
CY
4268 if (! NILP (val))
4269 {
4270 plist[n++] = QCfamily;
4271 plist[n++] = SYMBOL_NAME (val);
4272 }
b1868a1a 4273
b1868a1a
CY
4274 val = AREF (font, FONT_SIZE_INDEX);
4275 if (INTEGERP (val))
4276 {
4277 Lisp_Object font_dpi = AREF (font, FONT_DPI_INDEX);
4278 int dpi = INTEGERP (font_dpi) ? XINT (font_dpi) : f->resy;
5989ba2f 4279 plist[n++] = QCheight;
c3bb5465 4280 plist[n++] = make_number (PIXEL_TO_POINT (XINT (val) * 10, dpi));
b1868a1a
CY
4281 }
4282 else if (FLOATP (val))
5989ba2f
CY
4283 {
4284 plist[n++] = QCheight;
4285 plist[n++] = make_number (10 * (int) XFLOAT_DATA (val));
4286 }
b1868a1a 4287
b1868a1a 4288 val = FONT_WEIGHT_FOR_FACE (font);
5989ba2f
CY
4289 if (! NILP (val))
4290 {
4291 plist[n++] = QCweight;
4292 plist[n++] = val;
4293 }
b1868a1a 4294
b1868a1a 4295 val = FONT_SLANT_FOR_FACE (font);
5989ba2f
CY
4296 if (! NILP (val))
4297 {
4298 plist[n++] = QCslant;
4299 plist[n++] = val;
4300 }
b1868a1a 4301
b1868a1a 4302 val = FONT_WIDTH_FOR_FACE (font);
5989ba2f
CY
4303 if (! NILP (val))
4304 {
4305 plist[n++] = QCwidth;
4306 plist[n++] = val;
4307 }
b1868a1a 4308
5989ba2f 4309 return Flist (n, plist);
b1868a1a 4310}
c2f5bfd6 4311
51cf11be
AS
4312#endif
4313
c2f5bfd6 4314DEFUN ("font-put", Ffont_put, Sfont_put, 3, 3, 0,
51c01100 4315 doc: /* Set one property of FONT-SPEC: give property PROP value VAL. */)
c2f5bfd6
KH
4316 (font_spec, prop, val)
4317 Lisp_Object font_spec, prop, val;
4318{
35027d0c 4319 int idx;
c2f5bfd6
KH
4320
4321 CHECK_FONT_SPEC (font_spec);
35027d0c
KH
4322 idx = get_font_prop_index (prop);
4323 if (idx >= 0 && idx < FONT_EXTRA_INDEX)
69eb9e8b 4324 ASET (font_spec, idx, font_prop_validate (idx, Qnil, val));
c2f5bfd6 4325 else
35027d0c 4326 font_put_extra (font_spec, prop, font_prop_validate (0, prop, val));
c2f5bfd6
KH
4327 return val;
4328}
4329
4330DEFUN ("list-fonts", Flist_fonts, Slist_fonts, 1, 4, 0,
4331 doc: /* List available fonts matching FONT-SPEC on the current frame.
4332Optional 2nd argument FRAME specifies the target frame.
4333Optional 3rd argument NUM, if non-nil, limits the number of returned fonts.
45eb10fb
KH
4334Optional 4th argument PREFER, if non-nil, is a font-spec to
4335control the order of the returned list. Fonts are sorted by
027a33c0 4336how close they are to PREFER. */)
c2f5bfd6
KH
4337 (font_spec, frame, num, prefer)
4338 Lisp_Object font_spec, frame, num, prefer;
4339{
72d36834
KH
4340 Lisp_Object vec, list;
4341 int n = 0;
c2f5bfd6
KH
4342
4343 if (NILP (frame))
4344 frame = selected_frame;
4345 CHECK_LIVE_FRAME (frame);
35027d0c 4346 CHECK_FONT_SPEC (font_spec);
c2f5bfd6
KH
4347 if (! NILP (num))
4348 {
4349 CHECK_NUMBER (num);
4350 n = XINT (num);
4351 if (n <= 0)
4352 return Qnil;
4353 }
4354 if (! NILP (prefer))
35027d0c 4355 CHECK_FONT_SPEC (prefer);
c2f5bfd6 4356
72d36834
KH
4357 list = font_list_entities (frame, font_spec);
4358 if (NILP (list))
c2f5bfd6 4359 return Qnil;
72d36834
KH
4360 if (NILP (XCDR (list))
4361 && ASIZE (XCAR (list)) == 1)
4362 return Fcons (AREF (XCAR (list), 0), Qnil);
c2f5bfd6
KH
4363
4364 if (! NILP (prefer))
72d36834
KH
4365 vec = font_sort_entities (list, prefer, frame, 0);
4366 else
4367 vec = font_vconcat_entity_vectors (list);
4368 if (n == 0 || n >= ASIZE (vec))
c2f5bfd6 4369 {
72d36834 4370 Lisp_Object args[2];
c2f5bfd6 4371
72d36834
KH
4372 args[0] = vec;
4373 args[1] = Qnil;
4374 list = Fappend (2, args);
4375 }
4376 else
4377 {
4378 for (list = Qnil, n--; n >= 0; n--)
4379 list = Fcons (AREF (vec, n), list);
c2f5bfd6
KH
4380 }
4381 return list;
4382}
4383
35027d0c 4384DEFUN ("font-family-list", Ffont_family_list, Sfont_family_list, 0, 1, 0,
c2f5bfd6 4385 doc: /* List available font families on the current frame.
027a33c0 4386Optional argument FRAME, if non-nil, specifies the target frame. */)
c2f5bfd6
KH
4387 (frame)
4388 Lisp_Object frame;
4389{
4390 FRAME_PTR f;
4391 struct font_driver_list *driver_list;
4392 Lisp_Object list;
4393
4394 if (NILP (frame))
4395 frame = selected_frame;
4396 CHECK_LIVE_FRAME (frame);
4397 f = XFRAME (frame);
4398 list = Qnil;
4399 for (driver_list = f->font_driver_list; driver_list;
4400 driver_list = driver_list->next)
4401 if (driver_list->driver->list_family)
4402 {
4403 Lisp_Object val = driver_list->driver->list_family (frame);
13bf758b 4404 Lisp_Object tail = list;
c2f5bfd6 4405
13bf758b
CY
4406 for (; CONSP (val); val = XCDR (val))
4407 if (NILP (Fmemq (XCAR (val), tail))
4408 && SYMBOLP (XCAR (val)))
4409 list = Fcons (SYMBOL_NAME (XCAR (val)), list);
c2f5bfd6
KH
4410 }
4411 return list;
4412}
4413
4414DEFUN ("find-font", Ffind_font, Sfind_font, 1, 2, 0,
4415 doc: /* Return a font-entity matching with FONT-SPEC on the current frame.
4416Optional 2nd argument FRAME, if non-nil, specifies the target frame. */)
4417 (font_spec, frame)
4418 Lisp_Object font_spec, frame;
4419{
4420 Lisp_Object val = Flist_fonts (font_spec, frame, make_number (1), Qnil);
4421
4422 if (CONSP (val))
4423 val = XCAR (val);
4424 return val;
4425}
4426
d0ab1ebe 4427DEFUN ("font-xlfd-name", Ffont_xlfd_name, Sfont_xlfd_name, 1, 2, 0,
c2f5bfd6
KH
4428 doc: /* Return XLFD name of FONT.
4429FONT is a font-spec, font-entity, or font-object.
d0ab1ebe
KH
4430If the name is too long for XLFD (maximum 255 chars), return nil.
4431If the 2nd optional arg FOLD-WILDCARDS is non-nil,
4432the consecutive wildcards are folded to one. */)
4433 (font, fold_wildcards)
4434 Lisp_Object font, fold_wildcards;
c2f5bfd6
KH
4435{
4436 char name[256];
4437 int pixel_size = 0;
4438
35027d0c
KH
4439 CHECK_FONT (font);
4440
4441 if (FONT_OBJECT_P (font))
c2f5bfd6 4442 {
35027d0c 4443 Lisp_Object font_name = AREF (font, FONT_NAME_INDEX);
c2f5bfd6 4444
35027d0c
KH
4445 if (STRINGP (font_name)
4446 && SDATA (font_name)[0] == '-')
d0ab1ebe
KH
4447 {
4448 if (NILP (fold_wildcards))
4449 return font_name;
4450 strcpy (name, (char *) SDATA (font_name));
4451 goto done;
4452 }
35027d0c 4453 pixel_size = XFONT_OBJECT (font)->pixel_size;
c2f5bfd6 4454 }
c2f5bfd6
KH
4455 if (font_unparse_xlfd (font, pixel_size, name, 256) < 0)
4456 return Qnil;
d0ab1ebe
KH
4457 done:
4458 if (! NILP (fold_wildcards))
4459 {
4460 char *p0 = name, *p1;
4461
4462 while ((p1 = strstr (p0, "-*-*")))
4463 {
4464 strcpy (p1, p1 + 2);
4465 p0 = p1;
4466 }
4467 }
4468
c2f5bfd6
KH
4469 return build_string (name);
4470}
4471
4472DEFUN ("clear-font-cache", Fclear_font_cache, Sclear_font_cache, 0, 0, 0,
4473 doc: /* Clear font cache. */)
4474 ()
4475{
4476 Lisp_Object list, frame;
4477
4478 FOR_EACH_FRAME (list, frame)
4479 {
4480 FRAME_PTR f = XFRAME (frame);
4481 struct font_driver_list *driver_list = f->font_driver_list;
4482
4483 for (; driver_list; driver_list = driver_list->next)
417a1b10
KH
4484 if (driver_list->on)
4485 {
ca4da08a 4486 Lisp_Object cache = driver_list->driver->get_cache (f);
7a6f7fea 4487 Lisp_Object val, tmp;
51c01100 4488
ca4da08a 4489 val = XCDR (cache);
43c0454d
KH
4490 while (! NILP (val)
4491 && ! EQ (XCAR (XCAR (val)), driver_list->driver->type))
ca4da08a 4492 val = XCDR (val);
d0ab1ebe 4493 font_assert (! NILP (val));
7a6f7fea
AS
4494 tmp = XCDR (XCAR (val));
4495 if (XINT (XCAR (tmp)) == 0)
417a1b10 4496 {
ca4da08a
KH
4497 font_clear_cache (f, XCAR (val), driver_list->driver);
4498 XSETCDR (cache, XCDR (val));
417a1b10 4499 }
417a1b10 4500 }
c2f5bfd6
KH
4501 }
4502
4503 return Qnil;
4504}
4505
071132a9
KH
4506\f
4507void
4508font_fill_lglyph_metrics (glyph, font_object)
4509 Lisp_Object glyph, font_object;
c2f5bfd6 4510{
071132a9 4511 struct font *font = XFONT_OBJECT (font_object);
f62ab7c5
EZ
4512 unsigned code;
4513 /* ecode used in LGLYPH_SET_CODE to avoid compiler warnings. */
4514 EMACS_INT ecode = font->driver->encode_char (font, LGLYPH_CHAR (glyph));
071132a9 4515 struct font_metrics metrics;
c2f5bfd6 4516
f62ab7c5
EZ
4517 LGLYPH_SET_CODE (glyph, ecode);
4518 code = ecode;
071132a9
KH
4519 font->driver->text_extents (font, &code, 1, &metrics);
4520 LGLYPH_SET_LBEARING (glyph, metrics.lbearing);
4521 LGLYPH_SET_RBEARING (glyph, metrics.rbearing);
4522 LGLYPH_SET_WIDTH (glyph, metrics.width);
4523 LGLYPH_SET_ASCENT (glyph, metrics.ascent);
4524 LGLYPH_SET_DESCENT (glyph, metrics.descent);
c2f5bfd6
KH
4525}
4526
c2f5bfd6 4527
071132a9
KH
4528DEFUN ("font-shape-gstring", Ffont_shape_gstring, Sfont_shape_gstring, 1, 1, 0,
4529 doc: /* Shape the glyph-string GSTRING.
4530Shaping means substituting glyphs and/or adjusting positions of glyphs
4531to get the correct visual image of character sequences set in the
4532header of the glyph-string.
1701724c 4533
071132a9
KH
4534If the shaping was successful, the value is GSTRING itself or a newly
4535created glyph-string. Otherwise, the value is nil. */)
4536 (gstring)
4537 Lisp_Object gstring;
1701724c
KH
4538{
4539 struct font *font;
071132a9 4540 Lisp_Object font_object, n, glyph;
fc3a285e 4541 int i, j, from, to;
ba3de0e8 4542
071132a9
KH
4543 if (! composition_gstring_p (gstring))
4544 signal_error ("Invalid glyph-string: ", gstring);
4545 if (! NILP (LGSTRING_ID (gstring)))
4546 return gstring;
4547 font_object = LGSTRING_FONT (gstring);
4548 CHECK_FONT_OBJECT (font_object);
35027d0c 4549 font = XFONT_OBJECT (font_object);
b876ea91
KH
4550 if (! font->driver->shape)
4551 return Qnil;
4552
40fb53d6
KH
4553 /* Try at most three times with larger gstring each time. */
4554 for (i = 0; i < 3; i++)
4555 {
40fb53d6
KH
4556 n = font->driver->shape (gstring);
4557 if (INTEGERP (n))
4558 break;
071132a9
KH
4559 gstring = larger_vector (gstring,
4560 ASIZE (gstring) + LGSTRING_GLYPH_LEN (gstring),
4561 Qnil);
40fb53d6 4562 }
071132a9 4563 if (i == 3 || XINT (n) == 0)
1701724c 4564 return Qnil;
ba3de0e8 4565
071132a9 4566 glyph = LGSTRING_GLYPH (gstring, 0);
fc3a285e
KH
4567 from = LGLYPH_FROM (glyph);
4568 to = LGLYPH_TO (glyph);
4569 for (i = 1, j = 0; i < LGSTRING_GLYPH_LEN (gstring); i++)
071132a9
KH
4570 {
4571 Lisp_Object this = LGSTRING_GLYPH (gstring, i);
10d16101 4572
071132a9
KH
4573 if (NILP (this))
4574 break;
4575 if (NILP (LGLYPH_ADJUSTMENT (this)))
fc3a285e
KH
4576 {
4577 if (j < i - 1)
4578 for (; j < i; j++)
4579 {
4580 glyph = LGSTRING_GLYPH (gstring, j);
4581 LGLYPH_SET_FROM (glyph, from);
4582 LGLYPH_SET_TO (glyph, to);
4583 }
4584 from = LGLYPH_FROM (this);
4585 to = LGLYPH_TO (this);
4586 j = i;
4587 }
071132a9 4588 else
b2937119 4589 {
fc3a285e
KH
4590 if (from > LGLYPH_FROM (this))
4591 from = LGLYPH_FROM (this);
4592 if (to < LGLYPH_TO (this))
4593 to = LGLYPH_TO (this);
b2937119 4594 }
10d16101 4595 }
fc3a285e
KH
4596 if (j < i - 1)
4597 for (; j < i; j++)
4598 {
4599 glyph = LGSTRING_GLYPH (gstring, j);
4600 LGLYPH_SET_FROM (glyph, from);
4601 LGLYPH_SET_TO (glyph, to);
4602 }
071132a9 4603 return composition_gstring_put_cache (gstring, XINT (n));
c2f5bfd6
KH
4604}
4605
78a2f9cd
KH
4606DEFUN ("font-variation-glyphs", Ffont_variation_glyphs, Sfont_variation_glyphs,
4607 2, 2, 0,
4608 doc: /* Return a list of variation glyphs for CHAR in FONT-OBJECT.
4609Each element of the value is a cons (VARIATION-SELECTOR . GLYPH-ID),
4610where
4611 VARIATION-SELECTOR is a chracter code of variation selection
4612 (#xFE00..#xFE0F or #xE0100..#xE01EF)
4613 GLYPH-ID is a glyph code of the corresponding variation glyph. */)
4614 (font_object, character)
4615 Lisp_Object font_object, character;
4616{
4617 unsigned variations[256];
4618 struct font *font;
4619 int i, n;
4620 Lisp_Object val;
4621
4622 CHECK_FONT_OBJECT (font_object);
4623 CHECK_CHARACTER (character);
4624 font = XFONT_OBJECT (font_object);
4625 if (! font->driver->get_variation_glyphs)
4626 return Qnil;
4627 n = font->driver->get_variation_glyphs (font, XINT (character), variations);
4628 if (! n)
4629 return Qnil;
4630 val = Qnil;
4631 for (i = 0; i < 255; i++)
4632 if (variations[i])
4633 {
4634 Lisp_Object code;
4635 int vs = (i < 16 ? 0xFE00 + i : 0xE0100 + (i - 16));
b60861e6
GM
4636 /* Stops GCC whining about limited range of data type. */
4637 EMACS_INT var = variations[i];
78a2f9cd 4638
b60861e6 4639 if (var > MOST_POSITIVE_FIXNUM)
78a2f9cd
KH
4640 code = Fcons (make_number ((variations[i]) >> 16),
4641 make_number ((variations[i]) & 0xFFFF));
4642 else
4643 code = make_number (variations[i]);
4644 val = Fcons (Fcons (make_number (vs), code), val);
4645 }
4646 return val;
4647}
4648
6a3dadd2
KH
4649#if 0
4650
733fd013
KH
4651DEFUN ("font-drive-otf", Ffont_drive_otf, Sfont_drive_otf, 6, 6, 0,
4652 doc: /* Apply OpenType features on glyph-string GSTRING-IN.
51c01100 4653OTF-FEATURES specifies which features to apply in this format:
733fd013 4654 (SCRIPT LANGSYS GSUB GPOS)
e80e09b4
KH
4655where
4656 SCRIPT is a symbol specifying a script tag of OpenType,
4657 LANGSYS is a symbol specifying a langsys tag of OpenType,
733fd013 4658 GSUB and GPOS, if non-nil, are lists of symbols specifying feature tags.
e80e09b4
KH
4659
4660If LANGYS is nil, the default langsys is selected.
4661
51c01100
JB
4662The features are applied in the order they appear in the list. The
4663symbol `*' means to apply all available features not present in this
733fd013
KH
4664list, and the remaining features are ignored. For instance, (vatu
4665pstf * haln) is to apply vatu and pstf in this order, then to apply
4666all available features other than vatu, pstf, and haln.
e80e09b4
KH
4667
4668The features are applied to the glyphs in the range FROM and TO of
733fd013 4669the glyph-string GSTRING-IN.
e80e09b4 4670
51c01100 4671If some feature is actually applicable, the resulting glyphs are
e80e09b4
KH
4672produced in the glyph-string GSTRING-OUT from the index INDEX. In
4673this case, the value is the number of produced glyphs.
4674
4675If no feature is applicable, no glyph is produced in GSTRING-OUT, and
4676the value is 0.
4677
51c01100 4678If GSTRING-OUT is too short to hold produced glyphs, no glyphs are
e80e09b4
KH
4679produced in GSTRING-OUT, and the value is nil.
4680
4681See the documentation of `font-make-gstring' for the format of
4682glyph-string. */)
733fd013
KH
4683 (otf_features, gstring_in, from, to, gstring_out, index)
4684 Lisp_Object otf_features, gstring_in, from, to, gstring_out, index;
e80e09b4
KH
4685{
4686 Lisp_Object font_object = LGSTRING_FONT (gstring_in);
733fd013
KH
4687 Lisp_Object val;
4688 struct font *font;
e80e09b4
KH
4689 int len, num;
4690
733fd013 4691 check_otf_features (otf_features);
35027d0c
KH
4692 CHECK_FONT_OBJECT (font_object);
4693 font = XFONT_OBJECT (font_object);
733fd013 4694 if (! font->driver->otf_drive)
e80e09b4
KH
4695 error ("Font backend %s can't drive OpenType GSUB table",
4696 SDATA (SYMBOL_NAME (font->driver->type)));
733fd013
KH
4697 CHECK_CONS (otf_features);
4698 CHECK_SYMBOL (XCAR (otf_features));
4699 val = XCDR (otf_features);
4700 CHECK_SYMBOL (XCAR (val));
4701 val = XCDR (otf_features);
4702 if (! NILP (val))
4703 CHECK_CONS (val);
e80e09b4
KH
4704 len = check_gstring (gstring_in);
4705 CHECK_VECTOR (gstring_out);
4706 CHECK_NATNUM (from);
4707 CHECK_NATNUM (to);
4708 CHECK_NATNUM (index);
4709
4710 if (XINT (from) >= XINT (to) || XINT (to) > len)
4711 args_out_of_range_3 (from, to, make_number (len));
4712 if (XINT (index) >= ASIZE (gstring_out))
4713 args_out_of_range (index, make_number (ASIZE (gstring_out)));
733fd013
KH
4714 num = font->driver->otf_drive (font, otf_features,
4715 gstring_in, XINT (from), XINT (to),
4716 gstring_out, XINT (index), 0);
e80e09b4
KH
4717 if (num < 0)
4718 return Qnil;
4719 return make_number (num);
4720}
4721
e80e09b4
KH
4722DEFUN ("font-otf-alternates", Ffont_otf_alternates, Sfont_otf_alternates,
4723 3, 3, 0,
4724 doc: /* Return a list of alternate glyphs of CHARACTER in FONT-OBJECT.
51c01100 4725OTF-FEATURES specifies which features of the font FONT-OBJECT to apply
e80e09b4
KH
4726in this format:
4727 (SCRIPT LANGSYS FEATURE ...)
027a33c0 4728See the documentation of `font-drive-otf' for more detail.
e80e09b4
KH
4729
4730The value is a list of cons cells of the format (GLYPH-ID . CHARACTER),
4731where GLYPH-ID is a glyph index of the font, and CHARACTER is a
4732character code corresponding to the glyph or nil if there's no
4733corresponding character. */)
733fd013
KH
4734 (font_object, character, otf_features)
4735 Lisp_Object font_object, character, otf_features;
e80e09b4
KH
4736{
4737 struct font *font;
4738 Lisp_Object gstring_in, gstring_out, g;
4739 Lisp_Object alternates;
4740 int i, num;
4741
4742 CHECK_FONT_GET_OBJECT (font_object, font);
733fd013 4743 if (! font->driver->otf_drive)
e950d6f1
KH
4744 error ("Font backend %s can't drive OpenType GSUB table",
4745 SDATA (SYMBOL_NAME (font->driver->type)));
e80e09b4 4746 CHECK_CHARACTER (character);
733fd013 4747 CHECK_CONS (otf_features);
e80e09b4
KH
4748
4749 gstring_in = Ffont_make_gstring (font_object, make_number (1));
4750 g = LGSTRING_GLYPH (gstring_in, 0);
f9ffa1ea 4751 LGLYPH_SET_CHAR (g, XINT (character));
e80e09b4 4752 gstring_out = Ffont_make_gstring (font_object, make_number (10));
733fd013
KH
4753 while ((num = font->driver->otf_drive (font, otf_features, gstring_in, 0, 1,
4754 gstring_out, 0, 1)) < 0)
e80e09b4
KH
4755 gstring_out = Ffont_make_gstring (font_object,
4756 make_number (ASIZE (gstring_out) * 2));
4757 alternates = Qnil;
4758 for (i = 0; i < num; i++)
4759 {
4760 Lisp_Object g = LGSTRING_GLYPH (gstring_out, i);
f9ffa1ea
SM
4761 int c = LGLYPH_CHAR (g);
4762 unsigned code = LGLYPH_CODE (g);
e80e09b4
KH
4763
4764 alternates = Fcons (Fcons (make_number (code),
4765 c > 0 ? make_number (c) : Qnil),
4766 alternates);
4767 }
4768 return Fnreverse (alternates);
4769}
6a3dadd2 4770#endif /* 0 */
c2f5bfd6
KH
4771
4772#ifdef FONT_DEBUG
4773
4774DEFUN ("open-font", Fopen_font, Sopen_font, 1, 3, 0,
4775 doc: /* Open FONT-ENTITY. */)
4776 (font_entity, size, frame)
4777 Lisp_Object font_entity;
4778 Lisp_Object size;
4779 Lisp_Object frame;
4780{
4781 int isize;
4782
4783 CHECK_FONT_ENTITY (font_entity);
c2f5bfd6
KH
4784 if (NILP (frame))
4785 frame = selected_frame;
4786 CHECK_LIVE_FRAME (frame);
51c01100 4787
35027d0c
KH
4788 if (NILP (size))
4789 isize = XINT (AREF (font_entity, FONT_SIZE_INDEX));
4790 else
4791 {
4792 CHECK_NUMBER_OR_FLOAT (size);
4793 if (FLOATP (size))
d03b5cdb 4794 isize = POINT_TO_PIXEL (XFLOAT_DATA (size), XFRAME (frame)->resy);
35027d0c
KH
4795 else
4796 isize = XINT (size);
4797 if (isize == 0)
4798 isize = 120;
4799 }
c2f5bfd6
KH
4800 return font_open_entity (XFRAME (frame), font_entity, isize);
4801}
4802
4803DEFUN ("close-font", Fclose_font, Sclose_font, 1, 2, 0,
4804 doc: /* Close FONT-OBJECT. */)
4805 (font_object, frame)
4806 Lisp_Object font_object, frame;
4807{
4808 CHECK_FONT_OBJECT (font_object);
4809 if (NILP (frame))
4810 frame = selected_frame;
4811 CHECK_LIVE_FRAME (frame);
4812 font_close_object (XFRAME (frame), font_object);
4813 return Qnil;
4814}
4815
4816DEFUN ("query-font", Fquery_font, Squery_font, 1, 1, 0,
e80e09b4
KH
4817 doc: /* Return information about FONT-OBJECT.
4818The value is a vector:
4819 [ NAME FILENAME PIXEL-SIZE SIZE ASCENT DESCENT SPACE-WIDTH AVERAGE-WIDTH
e0708580 4820 CAPABILITY ]
e80e09b4
KH
4821
4822NAME is a string of the font name (or nil if the font backend doesn't
4823provide a name).
4824
4825FILENAME is a string of the font file (or nil if the font backend
4826doesn't provide a file name).
4827
4828PIXEL-SIZE is a pixel size by which the font is opened.
4829
027a33c0 4830SIZE is a maximum advance width of the font in pixels.
e80e09b4
KH
4831
4832ASCENT, DESCENT, SPACE-WIDTH, AVERAGE-WIDTH are metrics of the font in
027a33c0 4833pixels.
e80e09b4 4834
e0708580
KH
4835CAPABILITY is a list whose first element is a symbol representing the
4836font format \(x, opentype, truetype, type1, pcf, or bdf) and the
027a33c0 4837remaining elements describe the details of the font capability.
e0708580
KH
4838
4839If the font is OpenType font, the form of the list is
4840 \(opentype GSUB GPOS)
4841where GSUB shows which "GSUB" features the font supports, and GPOS
4842shows which "GPOS" features the font supports. Both GSUB and GPOS are
4843lists of the format:
4844 \((SCRIPT (LANGSYS FEATURE ...) ...) ...)
4845
4846If the font is not OpenType font, currently the length of the form is
4847one.
e80e09b4
KH
4848
4849SCRIPT is a symbol representing OpenType script tag.
4850
4851LANGSYS is a symbol representing OpenType langsys tag, or nil
4852representing the default langsys.
4853
51c01100 4854FEATURE is a symbol representing OpenType feature tag.
e80e09b4 4855
51c01100 4856If the font is not OpenType font, CAPABILITY is nil. */)
c2f5bfd6
KH
4857 (font_object)
4858 Lisp_Object font_object;
4859{
4860 struct font *font;
4861 Lisp_Object val;
4862
4863 CHECK_FONT_GET_OBJECT (font_object, font);
4864
4865 val = Fmake_vector (make_number (9), Qnil);
35027d0c
KH
4866 ASET (val, 0, AREF (font_object, FONT_NAME_INDEX));
4867 ASET (val, 1, AREF (font_object, FONT_FILE_INDEX));
c2f5bfd6 4868 ASET (val, 2, make_number (font->pixel_size));
35027d0c 4869 ASET (val, 3, make_number (font->max_width));
c2f5bfd6
KH
4870 ASET (val, 4, make_number (font->ascent));
4871 ASET (val, 5, make_number (font->descent));
35027d0c
KH
4872 ASET (val, 6, make_number (font->space_width));
4873 ASET (val, 7, make_number (font->average_width));
c2f5bfd6 4874 if (font->driver->otf_capability)
e0708580 4875 ASET (val, 8, Fcons (Qopentype, font->driver->otf_capability (font)));
c2f5bfd6
KH
4876 return val;
4877}
4878
4879DEFUN ("get-font-glyphs", Fget_font_glyphs, Sget_font_glyphs, 2, 2, 0,
4880 doc: /* Return a vector of glyphs of FONT-OBJECT for drawing STRING.
4881Each element is a vector [GLYPH-CODE LBEARING RBEARING WIDTH ASCENT DESCENT]. */)
4882 (font_object, string)
4883 Lisp_Object font_object, string;
4884{
4885 struct font *font;
4886 int i, len;
4887 Lisp_Object vec;
4888
4889 CHECK_FONT_GET_OBJECT (font_object, font);
4890 CHECK_STRING (string);
4891 len = SCHARS (string);
4892 vec = Fmake_vector (make_number (len), Qnil);
4893 for (i = 0; i < len; i++)
4894 {
4895 Lisp_Object ch = Faref (string, make_number (i));
4896 Lisp_Object val;
4897 int c = XINT (ch);
4898 unsigned code;
2930d117 4899 EMACS_INT cod;
c2f5bfd6
KH
4900 struct font_metrics metrics;
4901
2930d117 4902 cod = code = font->driver->encode_char (font, c);
c2f5bfd6
KH
4903 if (code == FONT_INVALID_CODE)
4904 continue;
4905 val = Fmake_vector (make_number (6), Qnil);
2930d117 4906 if (cod <= MOST_POSITIVE_FIXNUM)
c2f5bfd6
KH
4907 ASET (val, 0, make_number (code));
4908 else
4909 ASET (val, 0, Fcons (make_number (code >> 16),
4910 make_number (code & 0xFFFF)));
51c01100 4911 font->driver->text_extents (font, &code, 1, &metrics);
c2f5bfd6
KH
4912 ASET (val, 1, make_number (metrics.lbearing));
4913 ASET (val, 2, make_number (metrics.rbearing));
4914 ASET (val, 3, make_number (metrics.width));
4915 ASET (val, 4, make_number (metrics.ascent));
4916 ASET (val, 5, make_number (metrics.descent));
4917 ASET (vec, i, val);
4918 }
4919 return vec;
4920}
4921
ec6fe57c 4922DEFUN ("font-match-p", Ffont_match_p, Sfont_match_p, 2, 2, 0,
67b5d7de 4923 doc: /* Return t if and only if font-spec SPEC matches with FONT.
ec6fe57c
KH
4924FONT is a font-spec, font-entity, or font-object. */)
4925 (spec, font)
4926 Lisp_Object spec, font;
4927{
4928 CHECK_FONT_SPEC (spec);
35027d0c 4929 CHECK_FONT (font);
ec6fe57c
KH
4930
4931 return (font_match_p (spec, font) ? Qt : Qnil);
4932}
4933
1701724c 4934DEFUN ("font-at", Ffont_at, Sfont_at, 1, 3, 0,
51c01100 4935 doc: /* Return a font-object for displaying a character at POSITION.
10d16101
KH
4936Optional second arg WINDOW, if non-nil, is a window displaying
4937the current buffer. It defaults to the currently selected window. */)
1701724c
KH
4938 (position, window, string)
4939 Lisp_Object position, window, string;
10d16101
KH
4940{
4941 struct window *w;
e3ee0340 4942 EMACS_INT pos;
10d16101 4943
1701724c
KH
4944 if (NILP (string))
4945 {
4946 CHECK_NUMBER_COERCE_MARKER (position);
4947 pos = XINT (position);
4948 if (pos < BEGV || pos >= ZV)
4949 args_out_of_range_3 (position, make_number (BEGV), make_number (ZV));
1701724c
KH
4950 }
4951 else
4952 {
1701724c
KH
4953 CHECK_NUMBER (position);
4954 CHECK_STRING (string);
4955 pos = XINT (position);
4956 if (pos < 0 || pos >= SCHARS (string))
4957 args_out_of_range (string, position);
1701724c 4958 }
10d16101
KH
4959 if (NILP (window))
4960 window = selected_window;
4961 CHECK_LIVE_WINDOW (window);
40fb53d6 4962 w = XWINDOW (window);
10d16101 4963
40fb53d6 4964 return font_at (-1, pos, NULL, w, string);
10d16101
KH
4965}
4966
c2f5bfd6
KH
4967#if 0
4968DEFUN ("draw-string", Fdraw_string, Sdraw_string, 2, 2, 0,
4969 doc: /* Draw STRING by FONT-OBJECT on the top left corner of the current frame.
4970The value is a number of glyphs drawn.
4971Type C-l to recover what previously shown. */)
4972 (font_object, string)
4973 Lisp_Object font_object, string;
4974{
4975 Lisp_Object frame = selected_frame;
4976 FRAME_PTR f = XFRAME (frame);
4977 struct font *font;
4978 struct face *face;
4979 int i, len, width;
4980 unsigned *code;
4981
4982 CHECK_FONT_GET_OBJECT (font_object, font);
4983 CHECK_STRING (string);
4984 len = SCHARS (string);
4985 code = alloca (sizeof (unsigned) * len);
4986 for (i = 0; i < len; i++)
4987 {
4988 Lisp_Object ch = Faref (string, make_number (i));
4989 Lisp_Object val;
4990 int c = XINT (ch);
4991
4992 code[i] = font->driver->encode_char (font, c);
4993 if (code[i] == FONT_INVALID_CODE)
4994 break;
4995 }
4996 face = FACE_FROM_ID (f, DEFAULT_FACE_ID);
4997 face->fontp = font;
4998 if (font->driver->prepare_face)
4999 font->driver->prepare_face (f, face);
5000 width = font->driver->text_extents (font, code, i, NULL);
5001 len = font->driver->draw_text (f, face, 0, font->ascent, code, i, width);
5002 if (font->driver->done_face)
5003 font->driver->done_face (f, face);
5004 face->fontp = NULL;
5005 return make_number (len);
5006}
5007#endif
5008
5009#endif /* FONT_DEBUG */
5010
a266686a
KH
5011#ifdef HAVE_WINDOW_SYSTEM
5012
72606e45
KH
5013DEFUN ("font-info", Ffont_info, Sfont_info, 1, 2, 0,
5014 doc: /* Return information about a font named NAME on frame FRAME.
5015If FRAME is omitted or nil, use the selected frame.
06f19b91 5016The returned value is a vector of OPENED-NAME, FULL-NAME, SIZE,
72606e45
KH
5017 HEIGHT, BASELINE-OFFSET, RELATIVE-COMPOSE, and DEFAULT-ASCENT,
5018where
5019 OPENED-NAME is the name used for opening the font,
5020 FULL-NAME is the full name of the font,
06f19b91
KH
5021 SIZE is the pixelsize of the font,
5022 HEIGHT is the pixel-height of the font (i.e ascent + descent),
72606e45
KH
5023 BASELINE-OFFSET is the upward offset pixels from ASCII baseline,
5024 RELATIVE-COMPOSE and DEFAULT-ASCENT are the numbers controlling
5025 how to compose characters.
5026If the named font is not yet loaded, return nil. */)
5027 (name, frame)
5028 Lisp_Object name, frame;
5029{
5030 FRAME_PTR f;
5031 struct font *font;
5032 Lisp_Object info;
5033 Lisp_Object font_object;
5034
5035 (*check_window_system_func) ();
5036
5037 if (! FONTP (name))
5038 CHECK_STRING (name);
5039 if (NILP (frame))
5040 frame = selected_frame;
5041 CHECK_LIVE_FRAME (frame);
5042 f = XFRAME (frame);
5043
5044 if (STRINGP (name))
5045 {
5046 int fontset = fs_query_fontset (name, 0);
5047
5048 if (fontset >= 0)
5049 name = fontset_ascii (fontset);
5050 font_object = font_open_by_name (f, (char *) SDATA (name));
5051 }
5052 else if (FONT_OBJECT_P (name))
5053 font_object = name;
5054 else if (FONT_ENTITY_P (name))
5055 font_object = font_open_entity (f, name, 0);
5056 else
5057 {
5058 struct face *face = FACE_FROM_ID (f, DEFAULT_FACE_ID);
5059 Lisp_Object entity = font_matching_entity (f, face->lface, name);
5060
5061 font_object = ! NILP (entity) ? font_open_entity (f, entity, 0) : Qnil;
5062 }
5063 if (NILP (font_object))
5064 return Qnil;
5065 font = XFONT_OBJECT (font_object);
5066
5067 info = Fmake_vector (make_number (7), Qnil);
5068 XVECTOR (info)->contents[0] = AREF (font_object, FONT_NAME_INDEX);
06f19b91 5069 XVECTOR (info)->contents[1] = AREF (font_object, FONT_FULLNAME_INDEX);
72606e45
KH
5070 XVECTOR (info)->contents[2] = make_number (font->pixel_size);
5071 XVECTOR (info)->contents[3] = make_number (font->height);
5072 XVECTOR (info)->contents[4] = make_number (font->baseline_offset);
5073 XVECTOR (info)->contents[5] = make_number (font->relative_compose);
5074 XVECTOR (info)->contents[6] = make_number (font->default_ascent);
5075
5076#if 0
5077 /* As font_object is still in FONT_OBJLIST of the entity, we can't
5078 close it now. Perhaps, we should manage font-objects
5079 by `reference-count'. */
5080 font_close_object (f, font_object);
5081#endif
5082 return info;
5083}
a266686a 5084#endif
72606e45 5085
c2f5bfd6 5086\f
d0ab1ebe
KH
5087#define BUILD_STYLE_TABLE(TBL) \
5088 build_style_table ((TBL), sizeof TBL / sizeof (struct table_entry))
5089
5090static Lisp_Object
5091build_style_table (entry, nelement)
5092 struct table_entry *entry;
5093 int nelement;
5094{
5095 int i, j;
5096 Lisp_Object table, elt;
17ab8f5d 5097
d0ab1ebe
KH
5098 table = Fmake_vector (make_number (nelement), Qnil);
5099 for (i = 0; i < nelement; i++)
5100 {
5101 for (j = 0; entry[i].names[j]; j++);
5102 elt = Fmake_vector (make_number (j + 1), Qnil);
5103 ASET (elt, 0, make_number (entry[i].numeric));
5104 for (j = 0; entry[i].names[j]; j++)
d67b4f80 5105 ASET (elt, j + 1, intern_c_string (entry[i].names[j]));
d0ab1ebe
KH
5106 ASET (table, i, elt);
5107 }
5108 return table;
5109}
5110
652b9560 5111Lisp_Object Vfont_log;
d0ab1ebe 5112
d0818984
KH
5113/* The deferred font-log data of the form [ACTION ARG RESULT].
5114 If ACTION is not nil, that is added to the log when font_add_log is
5115 called next time. At that time, ACTION is set back to nil. */
5116static Lisp_Object Vfont_log_deferred;
5117
5118/* Prepend the font-related logging data in Vfont_log if it is not
5119 `t'. ACTION describes a kind of font-related action (e.g. listing,
5120 opening), ARG is the argument for the action, and RESULT is the
5121 result of the action. */
d0ab1ebe
KH
5122void
5123font_add_log (action, arg, result)
5124 char *action;
5125 Lisp_Object arg, result;
5126{
5127 Lisp_Object tail, val;
5128 int i;
5129
d0ab1ebe
KH
5130 if (EQ (Vfont_log, Qt))
5131 return;
d0818984
KH
5132 if (STRINGP (AREF (Vfont_log_deferred, 0)))
5133 {
071132a9 5134 char *str = (char *) SDATA (AREF (Vfont_log_deferred, 0));
d0818984
KH
5135
5136 ASET (Vfont_log_deferred, 0, Qnil);
5137 font_add_log (str, AREF (Vfont_log_deferred, 1),
5138 AREF (Vfont_log_deferred, 2));
5139 }
5140
d0ab1ebe 5141 if (FONTP (arg))
db716644
KH
5142 {
5143 Lisp_Object tail, elt;
5144 Lisp_Object equalstr = build_string ("=");
5145
5146 val = Ffont_xlfd_name (arg, Qt);
5147 for (tail = AREF (arg, FONT_EXTRA_INDEX); CONSP (tail);
5148 tail = XCDR (tail))
5149 {
5150 elt = XCAR (tail);
49f9c344
KH
5151 if (EQ (XCAR (elt), QCscript)
5152 && SYMBOLP (XCDR (elt)))
db716644
KH
5153 val = concat3 (val, SYMBOL_NAME (QCscript),
5154 concat2 (equalstr, SYMBOL_NAME (XCDR (elt))));
49f9c344
KH
5155 else if (EQ (XCAR (elt), QClang)
5156 && SYMBOLP (XCDR (elt)))
db716644
KH
5157 val = concat3 (val, SYMBOL_NAME (QClang),
5158 concat2 (equalstr, SYMBOL_NAME (XCDR (elt))));
49f9c344
KH
5159 else if (EQ (XCAR (elt), QCotf)
5160 && CONSP (XCDR (elt)) && SYMBOLP (XCAR (XCDR (elt))))
db716644
KH
5161 val = concat3 (val, SYMBOL_NAME (QCotf),
5162 concat2 (equalstr,
5163 SYMBOL_NAME (XCAR (XCDR (elt)))));
5164 }
5165 arg = val;
5166 }
72d36834
KH
5167
5168 if (CONSP (result)
5169 && VECTORP (XCAR (result))
5170 && ASIZE (XCAR (result)) > 0
5171 && FONTP (AREF (XCAR (result), 0)))
5172 result = font_vconcat_entity_vectors (result);
d0ab1ebe 5173 if (FONTP (result))
d26424c5
KH
5174 {
5175 val = Ffont_xlfd_name (result, Qt);
5176 if (! FONT_SPEC_P (result))
5177 val = concat3 (SYMBOL_NAME (AREF (result, FONT_TYPE_INDEX)),
5178 build_string (":"), val);
5179 result = val;
5180 }
d0ab1ebe
KH
5181 else if (CONSP (result))
5182 {
5183 result = Fcopy_sequence (result);
5184 for (tail = result; CONSP (tail); tail = XCDR (tail))
5185 {
5186 val = XCAR (tail);
5187 if (FONTP (val))
5188 val = Ffont_xlfd_name (val, Qt);
5189 XSETCAR (tail, val);
5190 }
5191 }
5192 else if (VECTORP (result))
5193 {
5194 result = Fcopy_sequence (result);
5195 for (i = 0; i < ASIZE (result); i++)
5196 {
5197 val = AREF (result, i);
5198 if (FONTP (val))
5199 val = Ffont_xlfd_name (val, Qt);
5200 ASET (result, i, val);
5201 }
5202 }
5203 Vfont_log = Fcons (list3 (intern (action), arg, result), Vfont_log);
5204}
5205
d0818984
KH
5206/* Record a font-related logging data to be added to Vfont_log when
5207 font_add_log is called next time. ACTION, ARG, RESULT are the same
5208 as font_add_log. */
5209
5210void
5211font_deferred_log (action, arg, result)
5212 char *action;
5213 Lisp_Object arg, result;
5214{
652b9560
KH
5215 if (EQ (Vfont_log, Qt))
5216 return;
d0818984
KH
5217 ASET (Vfont_log_deferred, 0, build_string (action));
5218 ASET (Vfont_log_deferred, 1, arg);
5219 ASET (Vfont_log_deferred, 2, result);
ba3de0e8 5220}
d0818984 5221
c2f5bfd6
KH
5222extern void syms_of_ftfont P_ (());
5223extern void syms_of_xfont P_ (());
5224extern void syms_of_xftfont P_ (());
5225extern void syms_of_ftxfont P_ (());
5226extern void syms_of_bdffont P_ (());
5227extern void syms_of_w32font P_ (());
5228extern void syms_of_atmfont P_ (());
edfda783 5229extern void syms_of_nsfont P_ (());
c2f5bfd6
KH
5230
5231void
5232syms_of_font ()
5233{
4007dd1c
KH
5234 sort_shift_bits[FONT_TYPE_INDEX] = 0;
5235 sort_shift_bits[FONT_SLANT_INDEX] = 2;
5236 sort_shift_bits[FONT_WEIGHT_INDEX] = 9;
5237 sort_shift_bits[FONT_SIZE_INDEX] = 16;
5238 sort_shift_bits[FONT_WIDTH_INDEX] = 23;
5239 /* Note that the other elements in sort_shift_bits are not used. */
c2f5bfd6 5240
1701724c
KH
5241 staticpro (&font_charset_alist);
5242 font_charset_alist = Qnil;
5243
e0708580 5244 DEFSYM (Qopentype, "opentype");
c2f5bfd6 5245
9e1bb909 5246 DEFSYM (Qascii_0, "ascii-0");
1bb1d99b
KH
5247 DEFSYM (Qiso8859_1, "iso8859-1");
5248 DEFSYM (Qiso10646_1, "iso10646-1");
5249 DEFSYM (Qunicode_bmp, "unicode-bmp");
cf96c5c2 5250 DEFSYM (Qunicode_sip, "unicode-sip");
1bb1d99b 5251
071132a9
KH
5252 DEFSYM (QCf, "Cf");
5253
c2f5bfd6 5254 DEFSYM (QCotf, ":otf");
35027d0c 5255 DEFSYM (QClang, ":lang");
c2f5bfd6 5256 DEFSYM (QCscript, ":script");
4c496d0d 5257 DEFSYM (QCantialias, ":antialias");
c2f5bfd6
KH
5258
5259 DEFSYM (QCfoundry, ":foundry");
5260 DEFSYM (QCadstyle, ":adstyle");
5261 DEFSYM (QCregistry, ":registry");
9331887d
KH
5262 DEFSYM (QCspacing, ":spacing");
5263 DEFSYM (QCdpi, ":dpi");
ec6fe57c 5264 DEFSYM (QCscalable, ":scalable");
35027d0c
KH
5265 DEFSYM (QCavgwidth, ":avgwidth");
5266 DEFSYM (QCfont_entity, ":font-entity");
5267 DEFSYM (QCfc_unknown_spec, ":fc-unknown-spec");
c2f5bfd6 5268
ec6fe57c
KH
5269 DEFSYM (Qc, "c");
5270 DEFSYM (Qm, "m");
5271 DEFSYM (Qp, "p");
5272 DEFSYM (Qd, "d");
5273
cf702558
CY
5274 DEFSYM (Qja, "ja");
5275 DEFSYM (Qko, "ko");
5276
42707278
JD
5277 DEFSYM (QCuser_spec, "user-spec");
5278
c2f5bfd6
KH
5279 staticpro (&null_vector);
5280 null_vector = Fmake_vector (make_number (0), Qnil);
5281
5282 staticpro (&scratch_font_spec);
5283 scratch_font_spec = Ffont_spec (0, NULL);
5284 staticpro (&scratch_font_prefer);
5285 scratch_font_prefer = Ffont_spec (0, NULL);
5286
d0818984
KH
5287 staticpro (&Vfont_log_deferred);
5288 Vfont_log_deferred = Fmake_vector (make_number (3), Qnil);
5289
6a3dadd2 5290#if 0
733fd013
KH
5291#ifdef HAVE_LIBOTF
5292 staticpro (&otf_list);
5293 otf_list = Qnil;
6a3dadd2
KH
5294#endif /* HAVE_LIBOTF */
5295#endif /* 0 */
733fd013 5296
c2f5bfd6
KH
5297 defsubr (&Sfontp);
5298 defsubr (&Sfont_spec);
5299 defsubr (&Sfont_get);
51cf11be 5300#ifdef HAVE_WINDOW_SYSTEM
b1868a1a 5301 defsubr (&Sfont_face_attributes);
51cf11be 5302#endif
c2f5bfd6
KH
5303 defsubr (&Sfont_put);
5304 defsubr (&Slist_fonts);
35027d0c 5305 defsubr (&Sfont_family_list);
c2f5bfd6
KH
5306 defsubr (&Sfind_font);
5307 defsubr (&Sfont_xlfd_name);
5308 defsubr (&Sclear_font_cache);
071132a9 5309 defsubr (&Sfont_shape_gstring);
78a2f9cd 5310 defsubr (&Sfont_variation_glyphs);
6a3dadd2 5311#if 0
733fd013 5312 defsubr (&Sfont_drive_otf);
e80e09b4 5313 defsubr (&Sfont_otf_alternates);
6a3dadd2 5314#endif /* 0 */
c2f5bfd6
KH
5315
5316#ifdef FONT_DEBUG
5317 defsubr (&Sopen_font);
5318 defsubr (&Sclose_font);
5319 defsubr (&Squery_font);
5320 defsubr (&Sget_font_glyphs);
ec6fe57c 5321 defsubr (&Sfont_match_p);
10d16101 5322 defsubr (&Sfont_at);
c2f5bfd6
KH
5323#if 0
5324 defsubr (&Sdraw_string);
5325#endif
5326#endif /* FONT_DEBUG */
a266686a 5327#ifdef HAVE_WINDOW_SYSTEM
72606e45 5328 defsubr (&Sfont_info);
a266686a 5329#endif
c2f5bfd6 5330
819e81df
KH
5331 DEFVAR_LISP ("font-encoding-alist", &Vfont_encoding_alist,
5332 doc: /*
5333Alist of fontname patterns vs the corresponding encoding and repertory info.
5334Each element looks like (REGEXP . (ENCODING . REPERTORY)),
5335where ENCODING is a charset or a char-table,
5336and REPERTORY is a charset, a char-table, or nil.
5337
027a33c0 5338If ENCODING and REPERTORY are the same, the element can have the form
819e81df
KH
5339\(REGEXP . ENCODING).
5340
5341ENCODING is for converting a character to a glyph code of the font.
5342If ENCODING is a charset, encoding a character by the charset gives
5343the corresponding glyph code. If ENCODING is a char-table, looking up
5344the table by a character gives the corresponding glyph code.
5345
5346REPERTORY specifies a repertory of characters supported by the font.
5347If REPERTORY is a charset, all characters beloging to the charset are
5348supported. If REPERTORY is a char-table, all characters who have a
027a33c0 5349non-nil value in the table are supported. If REPERTORY is nil, Emacs
819e81df
KH
5350gets the repertory information by an opened font and ENCODING. */);
5351 Vfont_encoding_alist = Qnil;
5352
d0ab1ebe
KH
5353 DEFVAR_LISP_NOPRO ("font-weight-table", &Vfont_weight_table,
5354 doc: /* Vector of valid font weight values.
5355Each element has the form:
5356 [NUMERIC-VALUE SYMBOLIC-NAME ALIAS-NAME ...]
17ab8f5d 5357NUMERIC-VALUE is an integer, and SYMBOLIC-NAME and ALIAS-NAME are symbols. */);
d0ab1ebe
KH
5358 Vfont_weight_table = BUILD_STYLE_TABLE (weight_table);
5359
5360 DEFVAR_LISP_NOPRO ("font-slant-table", &Vfont_slant_table,
5361 doc: /* Vector of font slant symbols vs the corresponding numeric values.
17ab8f5d 5362See `font-weight-table' for the format of the vector. */);
d0ab1ebe
KH
5363 Vfont_slant_table = BUILD_STYLE_TABLE (slant_table);
5364
5365 DEFVAR_LISP_NOPRO ("font-width-table", &Vfont_width_table,
5366 doc: /* Alist of font width symbols vs the corresponding numeric values.
17ab8f5d 5367See `font-weight-table' for the format of the vector. */);
d0ab1ebe
KH
5368 Vfont_width_table = BUILD_STYLE_TABLE (width_table);
5369
5370 staticpro (&font_style_table);
5371 font_style_table = Fmake_vector (make_number (3), Qnil);
5372 ASET (font_style_table, 0, Vfont_weight_table);
5373 ASET (font_style_table, 1, Vfont_slant_table);
5374 ASET (font_style_table, 2, Vfont_width_table);
5375
5376 DEFVAR_LISP ("font-log", &Vfont_log, doc: /*
5377*Logging list of font related actions and results.
5378The value t means to suppress the logging.
5379The initial value is set to nil if the environment variable
5380EMACS_FONT_LOG is set. Otherwise, it is set to t. */);
5381 Vfont_log = Qnil;
5382
819e81df 5383#ifdef HAVE_WINDOW_SYSTEM
c2f5bfd6 5384#ifdef HAVE_FREETYPE
35027d0c 5385 syms_of_ftfont ();
c2f5bfd6 5386#ifdef HAVE_X_WINDOWS
35027d0c
KH
5387 syms_of_xfont ();
5388 syms_of_ftxfont ();
c2f5bfd6 5389#ifdef HAVE_XFT
35027d0c 5390 syms_of_xftfont ();
c2f5bfd6
KH
5391#endif /* HAVE_XFT */
5392#endif /* HAVE_X_WINDOWS */
5393#else /* not HAVE_FREETYPE */
5394#ifdef HAVE_X_WINDOWS
35027d0c 5395 syms_of_xfont ();
c2f5bfd6
KH
5396#endif /* HAVE_X_WINDOWS */
5397#endif /* not HAVE_FREETYPE */
5398#ifdef HAVE_BDFFONT
35027d0c 5399 syms_of_bdffont ();
c2f5bfd6
KH
5400#endif /* HAVE_BDFFONT */
5401#ifdef WINDOWSNT
35027d0c 5402 syms_of_w32font ();
c2f5bfd6 5403#endif /* WINDOWSNT */
edfda783
AR
5404#ifdef HAVE_NS
5405 syms_of_nsfont ();
5406#endif /* HAVE_NS */
819e81df 5407#endif /* HAVE_WINDOW_SYSTEM */
c2f5bfd6 5408}
885b7d09 5409
652b9560
KH
5410void
5411init_font ()
5412{
5413 Vfont_log = egetenv ("EMACS_FONT_LOG") ? Qnil : Qt;
5414}
5415
885b7d09
MB
5416/* arch-tag: 74c9475d-5976-4c93-a327-942ae3072846
5417 (do not change this comment) */