(set-version): Add doc/lispref/vol1.texi,vol2.texi.
[emacs.git] / src / fontset.c
blob9878569e7b7c9cdb665b20941cebe9cb9bed5fa5
1 /* Fontset handler.
2 Copyright (C) 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008
3 Free Software Foundation, Inc.
4 Copyright (C) 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003, 2004,
5 2005, 2006, 2007, 2008
6 National Institute of Advanced Industrial Science and Technology (AIST)
7 Registration Number H14PRO021
8 Copyright (C) 2003, 2006
9 National Institute of Advanced Industrial Science and Technology (AIST)
10 Registration Number H13PRO009
12 This file is part of GNU Emacs.
14 GNU Emacs is free software: you can redistribute it and/or modify
15 it under the terms of the GNU General Public License as published by
16 the Free Software Foundation, either version 3 of the License, or
17 (at your option) any later version.
19 GNU Emacs is distributed in the hope that it will be useful,
20 but WITHOUT ANY WARRANTY; without even the implied warranty of
21 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
22 GNU General Public License for more details.
24 You should have received a copy of the GNU General Public License
25 along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>. */
27 /* #define FONTSET_DEBUG */
29 #include <config.h>
31 #ifdef FONTSET_DEBUG
32 #include <stdio.h>
33 #endif
35 #include "lisp.h"
36 #include "blockinput.h"
37 #include "buffer.h"
38 #include "character.h"
39 #include "charset.h"
40 #include "ccl.h"
41 #include "keyboard.h"
42 #include "frame.h"
43 #include "dispextern.h"
44 #include "intervals.h"
45 #include "fontset.h"
46 #include "window.h"
47 #ifdef HAVE_X_WINDOWS
48 #include "xterm.h"
49 #endif
50 #ifdef WINDOWSNT
51 #include "w32term.h"
52 #endif
53 #ifdef MAC_OS
54 #include "macterm.h"
55 #endif
56 #include "termhooks.h"
58 #include "font.h"
60 #undef xassert
61 #ifdef FONTSET_DEBUG
62 #define xassert(X) do {if (!(X)) abort ();} while (0)
63 #undef INLINE
64 #define INLINE
65 #else /* not FONTSET_DEBUG */
66 #define xassert(X) (void) 0
67 #endif /* not FONTSET_DEBUG */
69 EXFUN (Fclear_face_cache, 1);
71 /* FONTSET
73 A fontset is a collection of font related information to give
74 similar appearance (style, etc) of characters. A fontset has two
75 roles. One is to use for the frame parameter `font' as if it is an
76 ASCII font. In that case, Emacs uses the font specified for
77 `ascii' script for the frame's default font.
79 Another role, the more important one, is to provide information
80 about which font to use for each non-ASCII character.
82 There are two kinds of fontsets; base and realized. A base fontset
83 is created by `new-fontset' from Emacs Lisp explicitly. A realized
84 fontset is created implicitly when a face is realized for ASCII
85 characters. A face is also realized for non-ASCII characters based
86 on an ASCII face. All of non-ASCII faces based on the same ASCII
87 face share the same realized fontset.
89 A fontset object is implemented by a char-table whose default value
90 and parent are always nil.
92 An element of a base fontset is a vector of FONT-DEFs which itself
93 is a vector [ FONT-SPEC ENCODING REPERTORY ].
95 An element of a realized fontset is nil, t, or a vector of this form:
97 [ CHARSET-ORDERED-LIST-TICK PREFERRED-RFONT-DEF
98 RFONT-DEF0 RFONT-DEF1 ... ]
100 RFONT-DEFn (i.e. Realized FONT-DEF) has this form:
102 [ FACE-ID FONT-DEF FONT-OBJECT SORTING-SCORE ]
104 RFONT-DEFn are automatically reordered by the current charset
105 priority list.
107 The value nil means that we have not yet generated the above vector
108 from the base of the fontset.
110 The value t means that no font is available for the corresponding
111 range of characters.
114 A fontset has 9 extra slots.
116 The 1st slot: the ID number of the fontset
118 The 2nd slot:
119 base: the name of the fontset
120 realized: nil
122 The 3rd slot:
123 base: nil
124 realized: the base fontset
126 The 4th slot:
127 base: nil
128 realized: the frame that the fontset belongs to
130 The 5th slot:
131 base: the font name for ASCII characters
132 realized: nil
134 The 6th slot:
135 base: nil
136 realized: the ID number of a face to use for characters that
137 has no font in a realized fontset.
139 The 7th slot:
140 base: nil
141 realized: Alist of font index vs the corresponding repertory
142 char-table.
144 The 8th slot:
145 base: nil
146 realized: If the base is not the default fontset, a fontset
147 realized from the default fontset, else nil.
149 The 9th slot:
150 base: Same as element value (but for fallback fonts).
151 realized: Likewise.
153 All fontsets are recorded in the vector Vfontset_table.
156 DEFAULT FONTSET
158 There's a special base fontset named `default fontset' which
159 defines the default font specifications. When a base fontset
160 doesn't specify a font for a specific character, the corresponding
161 value in the default fontset is used.
163 The parent of a realized fontset created for such a face that has
164 no fontset is the default fontset.
167 These structures are hidden from the other codes than this file.
168 The other codes handle fontsets only by their ID numbers. They
169 usually use the variable name `fontset' for IDs. But, in this
170 file, we always use varialbe name `id' for IDs, and name `fontset'
171 for an actual fontset object, i.e., char-table.
175 /********** VARIABLES and FUNCTION PROTOTYPES **********/
177 extern Lisp_Object Qfont;
178 static Lisp_Object Qfontset;
179 static Lisp_Object Qfontset_info;
180 static Lisp_Object Qprepend, Qappend;
181 static Lisp_Object Qlatin;
183 /* Vector containing all fontsets. */
184 static Lisp_Object Vfontset_table;
186 /* Next possibly free fontset ID. Usually this keeps the minimum
187 fontset ID not yet used. */
188 static int next_fontset_id;
190 /* The default fontset. This gives default FAMILY and REGISTRY of
191 font for each character. */
192 static Lisp_Object Vdefault_fontset;
194 Lisp_Object Vfont_encoding_charset_alist;
195 Lisp_Object Vuse_default_ascent;
196 Lisp_Object Vignore_relative_composition;
197 Lisp_Object Valternate_fontname_alist;
198 Lisp_Object Vfontset_alias_alist;
199 Lisp_Object Vvertical_centering_font_regexp;
200 Lisp_Object Votf_script_alist;
202 /* Check if any window system is used now. */
203 void (*check_window_system_func) P_ ((void));
206 /* Prototype declarations for static functions. */
207 static Lisp_Object fontset_add P_ ((Lisp_Object, Lisp_Object, Lisp_Object,
208 Lisp_Object));
209 static Lisp_Object fontset_find_font P_ ((Lisp_Object, int, struct face *,
210 int, int));
211 static void reorder_font_vector P_ ((Lisp_Object, Lisp_Object));
212 static Lisp_Object fontset_font P_ ((Lisp_Object, int, struct face *, int));
213 static Lisp_Object make_fontset P_ ((Lisp_Object, Lisp_Object, Lisp_Object));
214 static Lisp_Object fontset_pattern_regexp P_ ((Lisp_Object));
215 static void accumulate_script_ranges P_ ((Lisp_Object, Lisp_Object,
216 Lisp_Object));
217 Lisp_Object find_font_encoding P_ ((Lisp_Object));
219 static void set_fontset_font P_ ((Lisp_Object, Lisp_Object));
221 #ifdef FONTSET_DEBUG
223 /* Return 1 if ID is a valid fontset id, else return 0. */
225 static int
226 fontset_id_valid_p (id)
227 int id;
229 return (id >= 0 && id < ASIZE (Vfontset_table) - 1);
232 #endif
236 /********** MACROS AND FUNCTIONS TO HANDLE FONTSET **********/
238 /* Return the fontset with ID. No check of ID's validness. */
239 #define FONTSET_FROM_ID(id) AREF (Vfontset_table, id)
241 /* Macros to access special values of FONTSET. */
242 #define FONTSET_ID(fontset) XCHAR_TABLE (fontset)->extras[0]
244 /* Macros to access special values of (base) FONTSET. */
245 #define FONTSET_NAME(fontset) XCHAR_TABLE (fontset)->extras[1]
246 #define FONTSET_ASCII(fontset) XCHAR_TABLE (fontset)->extras[4]
247 #define FONTSET_SPEC(fontset) XCHAR_TABLE (fontset)->extras[5]
249 /* Macros to access special values of (realized) FONTSET. */
250 #define FONTSET_BASE(fontset) XCHAR_TABLE (fontset)->extras[2]
251 #define FONTSET_FRAME(fontset) XCHAR_TABLE (fontset)->extras[3]
252 #define FONTSET_OBJLIST(fontset) XCHAR_TABLE (fontset)->extras[4]
253 #define FONTSET_NOFONT_FACE(fontset) XCHAR_TABLE (fontset)->extras[5]
254 #define FONTSET_REPERTORY(fontset) XCHAR_TABLE (fontset)->extras[6]
255 #define FONTSET_DEFAULT(fontset) XCHAR_TABLE (fontset)->extras[7]
257 /* For both base and realized fontset. */
258 #define FONTSET_FALLBACK(fontset) XCHAR_TABLE (fontset)->extras[8]
260 #define BASE_FONTSET_P(fontset) (NILP (FONTSET_BASE (fontset)))
263 /* Macros for FONT-DEF and RFONT-DEF of fontset. */
264 #define FONT_DEF_NEW(font_def, font_spec, encoding, repertory) \
265 do { \
266 (font_def) = Fmake_vector (make_number (3), (font_spec)); \
267 ASET ((font_def), 1, encoding); \
268 ASET ((font_def), 2, repertory); \
269 } while (0)
271 #define FONT_DEF_SPEC(font_def) AREF (font_def, 0)
272 #define FONT_DEF_ENCODING(font_def) AREF (font_def, 1)
273 #define FONT_DEF_REPERTORY(font_def) AREF (font_def, 2)
275 #define RFONT_DEF_FACE(rfont_def) AREF (rfont_def, 0)
276 #define RFONT_DEF_SET_FACE(rfont_def, face_id) \
277 ASET ((rfont_def), 0, make_number (face_id))
278 #define RFONT_DEF_FONT_DEF(rfont_def) AREF (rfont_def, 1)
279 #define RFONT_DEF_SPEC(rfont_def) FONT_DEF_SPEC (AREF (rfont_def, 1))
280 #define RFONT_DEF_REPERTORY(rfont_def) FONT_DEF_REPERTORY (AREF (rfont_def, 1))
281 #define RFONT_DEF_OBJECT(rfont_def) AREF (rfont_def, 2)
282 #define RFONT_DEF_SET_OBJECT(rfont_def, object) \
283 ASET ((rfont_def), 2, (object))
284 #define RFONT_DEF_SCORE(rfont_def) XINT (AREF (rfont_def, 3))
285 #define RFONT_DEF_SET_SCORE(rfont_def, score) \
286 ASET ((rfont_def), 3, make_number (score))
287 #define RFONT_DEF_NEW(rfont_def, font_def) \
288 do { \
289 (rfont_def) = Fmake_vector (make_number (4), Qnil); \
290 ASET ((rfont_def), 1, (font_def)); \
291 RFONT_DEF_SET_SCORE ((rfont_def), 0); \
292 } while (0)
295 /* Return the element of FONTSET for the character C. If FONTSET is a
296 base fontset other then the default fontset and FONTSET doesn't
297 contain information for C, return the information in the default
298 fontset. */
300 #define FONTSET_REF(fontset, c) \
301 (EQ (fontset, Vdefault_fontset) \
302 ? CHAR_TABLE_REF (fontset, c) \
303 : fontset_ref ((fontset), (c)))
305 static Lisp_Object
306 fontset_ref (fontset, c)
307 Lisp_Object fontset;
308 int c;
310 Lisp_Object elt;
312 elt = CHAR_TABLE_REF (fontset, c);
313 if (NILP (elt) && ! EQ (fontset, Vdefault_fontset)
314 /* Don't check Vdefault_fontset for a realized fontset. */
315 && NILP (FONTSET_BASE (fontset)))
316 elt = CHAR_TABLE_REF (Vdefault_fontset, c);
317 return elt;
320 /* Set elements of FONTSET for characters in RANGE to the value ELT.
321 RANGE is a cons (FROM . TO), where FROM and TO are character codes
322 specifying a range. */
324 #define FONTSET_SET(fontset, range, elt) \
325 Fset_char_table_range ((fontset), (range), (elt))
328 /* Modify the elements of FONTSET for characters in RANGE by replacing
329 with ELT or adding ELT. RANGE is a cons (FROM . TO), where FROM
330 and TO are character codes specifying a range. If ADD is nil,
331 replace with ELT, if ADD is `prepend', prepend ELT, otherwise,
332 append ELT. */
334 #define FONTSET_ADD(fontset, range, elt, add) \
335 (NILP (add) \
336 ? (NILP (range) \
337 ? (FONTSET_FALLBACK (fontset) = Fmake_vector (make_number (1), (elt))) \
338 : Fset_char_table_range ((fontset), (range), \
339 Fmake_vector (make_number (1), (elt)))) \
340 : fontset_add ((fontset), (range), (elt), (add)))
342 static Lisp_Object
343 fontset_add (fontset, range, elt, add)
344 Lisp_Object fontset, range, elt, add;
346 Lisp_Object args[2];
347 int idx = (EQ (add, Qappend) ? 0 : 1);
349 args[1 - idx] = Fmake_vector (make_number (1), elt);
351 if (CONSP (range))
353 int from = XINT (XCAR (range));
354 int to = XINT (XCDR (range));
355 int from1, to1;
357 do {
358 args[idx] = char_table_ref_and_range (fontset, from, &from1, &to1);
359 if (to < to1)
360 to1 = to;
361 char_table_set_range (fontset, from, to1,
362 NILP (args[idx]) ? args[1 - idx]
363 : Fvconcat (2, args));
364 from = to1 + 1;
365 } while (from < to);
367 else
369 args[idx] = FONTSET_FALLBACK (fontset);
370 FONTSET_FALLBACK (fontset)
371 = NILP (args[idx]) ? args[1 - idx] : Fvconcat (2, args);
373 return Qnil;
376 static int
377 fontset_compare_rfontdef (val1, val2)
378 const void *val1, *val2;
380 return (RFONT_DEF_SCORE (*(Lisp_Object *) val2)
381 - RFONT_DEF_SCORE (*(Lisp_Object *) val1));
384 /* Update FONT-GROUP which has this form:
385 [ CHARSET-ORDERED-LIST-TICK PREFERRED-RFONT-DEF
386 RFONT-DEF0 RFONT-DEF1 ... ]
387 Reorder RFONT-DEFs according to the current language, and update
388 CHARSET-ORDERED-LIST-TICK.
390 If PREFERRED_FAMILY is not nil, that family has the higher priority
391 if the encoding charsets or languages in font-specs are the same. */
393 extern Lisp_Object Fassoc_string ();
395 static void
396 reorder_font_vector (font_group, preferred_family)
397 Lisp_Object font_group;
398 Lisp_Object preferred_family;
400 int size;
401 int i;
402 int score_changed = 0;
404 size = ASIZE (font_group);
405 /* Exclude the tailing nil elements from the reordering. */
406 while (NILP (AREF (font_group, size - 1))) size--;
407 size -= 2;
409 for (i = 0; i < size; i++)
411 Lisp_Object rfont_def = AREF (font_group, i + 2);
412 Lisp_Object font_def = RFONT_DEF_FONT_DEF (rfont_def);
413 Lisp_Object font_spec = FONT_DEF_SPEC (font_def);
414 Lisp_Object lang = Ffont_get (font_spec, QClang);
415 Lisp_Object family = AREF (font_spec, FONT_FAMILY_INDEX);
416 Lisp_Object repertory = FONT_DEF_REPERTORY (font_def);
417 int score = 0;
419 if (! NILP (repertory))
421 Lisp_Object tail;
423 for (score = 0xFFFF, tail = Vcharset_ordered_list;
424 ! EQ (tail, Vcharset_non_preferred_head) && CONSP (tail);
425 score--, tail = XCDR (tail))
426 if (EQ (repertory, XCAR (tail)))
427 break;
428 if (EQ (tail, Vcharset_non_preferred_head))
429 score = 0;
431 else if (! NILP (lang))
433 if (EQ (lang, Vcurrent_iso639_language))
434 score = 0xFFFF;
435 else if (CONSP (Vcurrent_iso639_language))
436 score = ! NILP (Fmemq (lang, Vcurrent_iso639_language));
439 if (! NILP (preferred_family) && ! NILP (family))
441 if (fast_string_match_ignore_case (preferred_family,
442 SYMBOL_NAME (family)) < 0)
443 score |= 0x10000;
445 if (RFONT_DEF_SCORE (rfont_def) != score)
447 RFONT_DEF_SET_SCORE (rfont_def, score);
448 score_changed = 1;
452 if (score_changed)
453 qsort (XVECTOR (font_group)->contents + 2, size, sizeof (Lisp_Object),
454 fontset_compare_rfontdef);
456 ASET (font_group, 0, make_number (charset_ordered_list_tick));
459 /* Return RFONT-DEF (vector) in the realized fontset FONTSET for the
460 character C. If no font is found, return Qnil if there's a
461 possibility that the default fontset or the fallback font groups
462 have a proper font, and return Qt if not.
464 If a font is found but is not yet opened, open it (if FACE is not
465 NULL) or return Qnil (if FACE is NULL).
467 ID is a charset-id that must be preferred, or -1 meaning no
468 preference.
470 If FALLBACK is nonzero, search only fallback fonts. */
472 static Lisp_Object
473 fontset_find_font (fontset, c, face, id, fallback)
474 Lisp_Object fontset;
475 int c;
476 struct face *face;
477 int id, fallback;
479 Lisp_Object base_fontset, elt, vec;
480 int i, from, to;
481 FRAME_PTR f = XFRAME (FONTSET_FRAME (fontset));
483 base_fontset = FONTSET_BASE (fontset);
484 if (! fallback)
485 vec = CHAR_TABLE_REF (fontset, c);
486 else
487 vec = FONTSET_FALLBACK (fontset);
489 if (NILP (vec))
491 Lisp_Object range;
493 /* We have not yet decided a font for C. */
494 if (! face)
495 return Qnil;
496 if (! fallback)
498 elt = char_table_ref_and_range (base_fontset, c, &from, &to);
499 range = Fcons (make_number (from), make_number (to));
501 else
503 elt = FONTSET_FALLBACK (base_fontset);
505 if (NILP (elt))
507 /* This fontset doesn't specify any font for C. */
508 vec = make_number (0);
510 else if (ASIZE (elt) == 1 && NILP (AREF (elt, 0)))
512 /* Explicitly specified no font. */
513 vec = Qt;
515 else
517 /* Build a font-group vector [ -1 nil RFONT-DEF0 RFONT-DEF1 ... ],
518 where the first -1 is to force reordering of RFONT-DEFs. */
519 int size = ASIZE (elt);
520 int j;
522 vec = Fmake_vector (make_number (size + 2), Qnil);
523 ASET (vec, 0, make_number (-1));
524 for (i = j = 0; i < size; i++)
525 if (! NILP (AREF (elt, i)))
527 Lisp_Object rfont_def;
529 RFONT_DEF_NEW (rfont_def, AREF (elt, i));
530 ASET (vec, j + 2, rfont_def);
531 j++;
534 /* Then store it in the fontset. */
535 if (! fallback)
536 FONTSET_SET (fontset, range, vec);
537 else
538 FONTSET_FALLBACK (fontset) = vec;
541 if (! VECTORP (vec))
542 return (EQ (vec, Qt) ? Qt : Qnil);
544 if (ASIZE (vec) > 4 /* multiple RFONT-DEFs */
545 && XINT (AREF (vec, 0)) != charset_ordered_list_tick)
546 /* We have just created VEC,
547 or the charset priorities were changed. */
548 reorder_font_vector (vec, face->lface[LFACE_FAMILY_INDEX]);
549 i = 2;
550 if (id >= 0)
552 elt = AREF (vec, 1);
553 if (! NILP (elt)
554 && EQ (make_number (id), RFONT_DEF_REPERTORY (elt)))
555 i = 1;
556 else
558 for (; i < ASIZE (vec); i++)
560 elt = AREF (vec, i);
561 if (! NILP (elt)
562 && EQ (make_number (id), RFONT_DEF_REPERTORY (elt)))
563 break;
565 if (i < ASIZE (vec))
567 ASET (vec, 1, elt);
568 i = 1;
570 else
572 ASET (vec, 1, Qnil);
573 i = 2;
578 /* Find the first available font in the vector of RFONT-DEF. */
579 for (; i < ASIZE (vec); i++)
581 Lisp_Object font_entity, font_object;
583 elt = AREF (vec, i);
584 if (NILP (elt))
585 /* This is the sign of not to try fallback fonts. */
586 return Qt;
587 if (id >= 0 && i > 1 && EQ (AREF (vec, 1), elt))
588 /* This is already checked. */
589 continue;
590 if (INTEGERP (RFONT_DEF_FACE (elt))
591 && XINT (AREF (elt, 1)) < 0)
592 /* We couldn't open this font last time. */
593 continue;
595 font_object = RFONT_DEF_OBJECT (elt);
596 if (NILP (font_object))
598 Lisp_Object font_def = RFONT_DEF_FONT_DEF (elt);
600 if (! face)
601 /* We have not yet opened the font. */
602 return Qnil;
603 font_entity = font_find_for_lface (f, face->lface,
604 FONT_DEF_SPEC (font_def), -1);
605 if (NILP (font_entity))
607 /* Record that no font matches the spec. */
608 RFONT_DEF_SET_FACE (elt, -1);
609 continue;
611 font_object = font_open_for_lface (f, font_entity, face->lface,
612 FONT_DEF_SPEC (font_def));
613 if (NILP (font_object))
615 /* Record that the font is unsable. */
616 RFONT_DEF_SET_FACE (elt, -1);
617 continue;
619 RFONT_DEF_SET_OBJECT (elt, font_object);
622 if (font_has_char (f, font_object, c))
623 return elt;
625 #if 0
626 /* The following code makes Emacs to find a font for C by fairly
627 exhausitive search. But, that takes long time especially for
628 X font backend. */
630 /* Try to find the different font maching with the current spec
631 and support C. */
632 font_def = RFONT_DEF_FONT_DEF (elt);
633 for (i++; i < ASIZE (vec); i++)
635 if (! EQ (RFONT_DEF_FONT_DEF (AREF (vec, i)), font_def))
636 break;
637 if (font_has_char (f, RFONT_DEF_OBJECT (AREF (vec, i)), c))
638 return AREF (vec, i);
640 /* Find an font-entity that support C. */
641 font_entity = font_find_for_lface (f, face->lface,
642 FONT_DEF_SPEC (font_def), c);
643 if (! NILP (font_entity))
645 Lisp_Object rfont_def, new_vec;
646 int j;
648 font_object = font_open_for_lface (f, font_entity, face->lface,
649 Qnil);
650 RFONT_DEF_NEW (rfont_def, font_def);
651 RFONT_DEF_SET_OBJECT (rfont_def, font_object);
652 RFONT_DEF_SET_SCORE (rfont_def, RFONT_DEF_SCORE (elt));
653 new_vec = Fmake_vector (make_number (ASIZE (vec) + 1), Qnil);
654 for (j = 0; j < i; j++)
655 ASET (new_vec, j, AREF (vec, j));
656 ASET (new_vec, j, rfont_def);
657 for (j++; j < ASIZE (new_vec); j++)
658 ASET (new_vec, j, AREF (vec, j - 1));
659 vec = new_vec;
660 return rfont_def;
662 i--;
663 #endif /* 0 */
666 FONTSET_SET (fontset, make_number (c), make_number (0));
667 return Qnil;
671 static Lisp_Object
672 fontset_font (fontset, c, face, id)
673 Lisp_Object fontset;
674 int c;
675 struct face *face;
676 int id;
678 Lisp_Object rfont_def;
679 Lisp_Object base_fontset;
681 /* Try a font-group for C. */
682 rfont_def = fontset_find_font (fontset, c, face, id, 0);
683 if (VECTORP (rfont_def))
684 return rfont_def;
685 if (EQ (rfont_def, Qt))
686 return Qnil;
687 /* Try a fallback font-group. */
688 rfont_def = fontset_find_font (fontset, c, face, id, 1);
689 if (VECTORP (rfont_def))
690 return rfont_def;
691 if (EQ (rfont_def, Qt))
692 return Qnil;
694 base_fontset = FONTSET_BASE (fontset);
695 if (EQ (base_fontset, Vdefault_fontset))
696 return Qnil;
698 /* Try a font-group for C of the default fontset. */
699 if (NILP (FONTSET_DEFAULT (fontset)))
700 FONTSET_DEFAULT (fontset)
701 = make_fontset (FONTSET_FRAME (fontset), Qnil, Vdefault_fontset);
702 rfont_def = fontset_find_font (FONTSET_DEFAULT (fontset), c, face, id, 0);
703 if (VECTORP (rfont_def))
704 return rfont_def;
705 /* Try a fallback font-group of the default fontset . */
706 rfont_def = fontset_find_font (FONTSET_DEFAULT (fontset), c, face, id, 1);
707 if (! VECTORP (rfont_def))
708 /* Remeber that we have no font for C. */
709 FONTSET_SET (fontset, make_number (c), Qt);
711 return rfont_def;
714 /* Return a newly created fontset with NAME. If BASE is nil, make a
715 base fontset. Otherwise make a realized fontset whose base is
716 BASE. */
718 static Lisp_Object
719 make_fontset (frame, name, base)
720 Lisp_Object frame, name, base;
722 Lisp_Object fontset;
723 int size = ASIZE (Vfontset_table);
724 int id = next_fontset_id;
726 /* Find a free slot in Vfontset_table. Usually, next_fontset_id is
727 the next available fontset ID. So it is expected that this loop
728 terminates quickly. In addition, as the last element of
729 Vfontset_table is always nil, we don't have to check the range of
730 id. */
731 while (!NILP (AREF (Vfontset_table, id))) id++;
733 if (id + 1 == size)
734 Vfontset_table = larger_vector (Vfontset_table, size + 32, Qnil);
736 fontset = Fmake_char_table (Qfontset, Qnil);
738 FONTSET_ID (fontset) = make_number (id);
739 if (NILP (base))
741 FONTSET_NAME (fontset) = name;
743 else
745 FONTSET_NAME (fontset) = Qnil;
746 FONTSET_FRAME (fontset) = frame;
747 FONTSET_BASE (fontset) = base;
750 ASET (Vfontset_table, id, fontset);
751 next_fontset_id = id + 1;
752 return fontset;
756 /* Set the ASCII font of the default fontset to FONTNAME if that is
757 not yet set. */
758 void
759 set_default_ascii_font (fontname)
760 Lisp_Object fontname;
762 if (! STRINGP (FONTSET_ASCII (Vdefault_fontset)))
764 int id = fs_query_fontset (fontname, 2);
766 if (id >= 0)
767 fontname = FONTSET_ASCII (FONTSET_FROM_ID (id));
768 FONTSET_ASCII (Vdefault_fontset)= fontname;
773 /********** INTERFACES TO xfaces.c, xfns.c, and dispextern.h **********/
775 /* Return the name of the fontset who has ID. */
777 Lisp_Object
778 fontset_name (id)
779 int id;
781 Lisp_Object fontset;
783 fontset = FONTSET_FROM_ID (id);
784 return FONTSET_NAME (fontset);
788 /* Return the ASCII font name of the fontset who has ID. */
790 Lisp_Object
791 fontset_ascii (id)
792 int id;
794 Lisp_Object fontset, elt;
796 fontset= FONTSET_FROM_ID (id);
797 elt = FONTSET_ASCII (fontset);
798 if (CONSP (elt))
799 elt = XCAR (elt);
800 return elt;
803 void
804 free_realized_fontset (f, fontset)
805 FRAME_PTR f;
806 Lisp_Object fontset;
808 Lisp_Object tail;
810 return;
811 for (tail = FONTSET_OBJLIST (fontset); CONSP (tail); tail = XCDR (tail))
813 xassert (FONT_OBJECT_P (XCAR (tail)));
814 font_close_object (f, XCAR (tail));
818 /* Free fontset of FACE defined on frame F. Called from
819 free_realized_face. */
821 void
822 free_face_fontset (f, face)
823 FRAME_PTR f;
824 struct face *face;
826 Lisp_Object fontset;
828 fontset = FONTSET_FROM_ID (face->fontset);
829 if (NILP (fontset))
830 return;
831 xassert (! BASE_FONTSET_P (fontset));
832 xassert (f == XFRAME (FONTSET_FRAME (fontset)));
833 free_realized_fontset (f, fontset);
834 ASET (Vfontset_table, face->fontset, Qnil);
835 if (face->fontset < next_fontset_id)
836 next_fontset_id = face->fontset;
837 if (! NILP (FONTSET_DEFAULT (fontset)))
839 int id = XINT (FONTSET_ID (FONTSET_DEFAULT (fontset)));
841 fontset = AREF (Vfontset_table, id);
842 xassert (!NILP (fontset) && ! BASE_FONTSET_P (fontset));
843 xassert (f == XFRAME (FONTSET_FRAME (fontset)));
844 free_realized_fontset (f, fontset);
845 ASET (Vfontset_table, id, Qnil);
846 if (id < next_fontset_id)
847 next_fontset_id = face->fontset;
849 face->fontset = -1;
853 /* Return 1 if FACE is suitable for displaying character C.
854 Otherwise return 0. Called from the macro FACE_SUITABLE_FOR_CHAR_P
855 when C is not an ASCII character. */
858 face_suitable_for_char_p (face, c)
859 struct face *face;
860 int c;
862 Lisp_Object fontset, rfont_def;
864 fontset = FONTSET_FROM_ID (face->fontset);
865 rfont_def = fontset_font (fontset, c, NULL, -1);
866 return (VECTORP (rfont_def)
867 && INTEGERP (RFONT_DEF_FACE (rfont_def))
868 && face->id == XINT (RFONT_DEF_FACE (rfont_def)));
872 /* Return ID of face suitable for displaying character C on frame F.
873 FACE must be reazlied for ASCII characters in advance. Called from
874 the macro FACE_FOR_CHAR. */
877 face_for_char (f, face, c, pos, object)
878 FRAME_PTR f;
879 struct face *face;
880 int c, pos;
881 Lisp_Object object;
883 Lisp_Object fontset, rfont_def;
884 int face_id;
885 int id;
887 if (ASCII_CHAR_P (c))
888 return face->ascii_face->id;
890 xassert (fontset_id_valid_p (face->fontset));
891 fontset = FONTSET_FROM_ID (face->fontset);
892 xassert (!BASE_FONTSET_P (fontset));
893 if (pos < 0)
894 id = -1;
895 else
897 Lisp_Object charset;
899 charset = Fget_char_property (make_number (pos), Qcharset, object);
900 if (NILP (charset))
901 id = -1;
902 else if (CHARSETP (charset))
904 Lisp_Object val;
906 val = assoc_no_quit (charset, Vfont_encoding_charset_alist);
907 if (CONSP (val) && CHARSETP (XCDR (val)))
908 charset = XCDR (val);
909 id = XINT (CHARSET_SYMBOL_ID (charset));
912 if (id < 0)
914 struct font *font = face->ascii_face->font;
916 if (font && font->driver->encode_char (font, c) != FONT_INVALID_CODE)
917 return face->ascii_face->id;
918 font = face->font;
919 if (font && font->driver->encode_char (font, c) != FONT_INVALID_CODE)
920 return face->id;
923 rfont_def = fontset_font (fontset, c, face, id);
924 if (VECTORP (rfont_def))
926 if (INTEGERP (RFONT_DEF_FACE (rfont_def)))
927 face_id = XINT (RFONT_DEF_FACE (rfont_def));
928 else
930 Lisp_Object font_object;
932 font_object = RFONT_DEF_OBJECT (rfont_def);
933 face_id = face_for_font (f, font_object, face);
934 RFONT_DEF_SET_FACE (rfont_def, face_id);
937 else
939 if (INTEGERP (FONTSET_NOFONT_FACE (fontset)))
940 face_id = XINT (FONTSET_NOFONT_FACE (fontset));
941 else
943 face_id = face_for_font (f, Qnil, face);
944 FONTSET_NOFONT_FACE (fontset) = make_number (face_id);
947 xassert (face_id >= 0);
948 return face_id;
952 /* Make a realized fontset for ASCII face FACE on frame F from the
953 base fontset BASE_FONTSET_ID. If BASE_FONTSET_ID is -1, use the
954 default fontset as the base. Value is the id of the new fontset.
955 Called from realize_x_face. */
958 make_fontset_for_ascii_face (f, base_fontset_id, face)
959 FRAME_PTR f;
960 int base_fontset_id;
961 struct face *face;
963 Lisp_Object base_fontset, fontset, frame;
965 XSETFRAME (frame, f);
966 if (base_fontset_id >= 0)
968 base_fontset = FONTSET_FROM_ID (base_fontset_id);
969 if (!BASE_FONTSET_P (base_fontset))
970 base_fontset = FONTSET_BASE (base_fontset);
971 if (! BASE_FONTSET_P (base_fontset))
972 abort ();
974 else
975 base_fontset = Vdefault_fontset;
977 fontset = make_fontset (frame, Qnil, base_fontset);
978 return XINT (FONTSET_ID (fontset));
983 /* Cache data used by fontset_pattern_regexp. The car part is a
984 pattern string containing at least one wild card, the cdr part is
985 the corresponding regular expression. */
986 static Lisp_Object Vcached_fontset_data;
988 #define CACHED_FONTSET_NAME ((char *) SDATA (XCAR (Vcached_fontset_data)))
989 #define CACHED_FONTSET_REGEX (XCDR (Vcached_fontset_data))
991 /* If fontset name PATTERN contains any wild card, return regular
992 expression corresponding to PATTERN. */
994 static Lisp_Object
995 fontset_pattern_regexp (pattern)
996 Lisp_Object pattern;
998 if (!index ((char *) SDATA (pattern), '*')
999 && !index ((char *) SDATA (pattern), '?'))
1000 /* PATTERN does not contain any wild cards. */
1001 return Qnil;
1003 if (!CONSP (Vcached_fontset_data)
1004 || strcmp ((char *) SDATA (pattern), CACHED_FONTSET_NAME))
1006 /* We must at first update the cached data. */
1007 unsigned char *regex, *p0, *p1;
1008 int ndashes = 0, nstars = 0, nplus = 0;
1010 for (p0 = SDATA (pattern); *p0; p0++)
1012 if (*p0 == '-')
1013 ndashes++;
1014 else if (*p0 == '*')
1015 nstars++;
1016 else if (*p0 == '+')
1017 nplus++;
1020 /* If PATTERN is not full XLFD we conert "*" to ".*". Otherwise
1021 we convert "*" to "[^-]*" which is much faster in regular
1022 expression matching. */
1023 if (ndashes < 14)
1024 p1 = regex = (unsigned char *) alloca (SBYTES (pattern) + 2 * nstars + 2 * nplus + 1);
1025 else
1026 p1 = regex = (unsigned char *) alloca (SBYTES (pattern) + 5 * nstars + 2 * nplus + 1);
1028 *p1++ = '^';
1029 for (p0 = SDATA (pattern); *p0; p0++)
1031 if (*p0 == '*')
1033 if (ndashes < 14)
1034 *p1++ = '.';
1035 else
1036 *p1++ = '[', *p1++ = '^', *p1++ = '-', *p1++ = ']';
1037 *p1++ = '*';
1039 else if (*p0 == '?')
1040 *p1++ = '.';
1041 else if (*p0 == '+')
1042 *p1++ = '\\', *p1++ = '+';
1043 else
1044 *p1++ = *p0;
1046 *p1++ = '$';
1047 *p1++ = 0;
1049 Vcached_fontset_data = Fcons (build_string ((char *) SDATA (pattern)),
1050 build_string ((char *) regex));
1053 return CACHED_FONTSET_REGEX;
1056 /* Return ID of the base fontset named NAME. If there's no such
1057 fontset, return -1. NAME_PATTERN specifies how to treat NAME as this:
1058 0: pattern containing '*' and '?' as wildcards
1059 1: regular expression
1060 2: literal fontset name
1064 fs_query_fontset (name, name_pattern)
1065 Lisp_Object name;
1066 int name_pattern;
1068 Lisp_Object tem;
1069 int i;
1071 name = Fdowncase (name);
1072 if (name_pattern != 1)
1074 tem = Frassoc (name, Vfontset_alias_alist);
1075 if (NILP (tem))
1076 tem = Fassoc (name, Vfontset_alias_alist);
1077 if (CONSP (tem) && STRINGP (XCAR (tem)))
1078 name = XCAR (tem);
1079 else if (name_pattern == 0)
1081 tem = fontset_pattern_regexp (name);
1082 if (STRINGP (tem))
1084 name = tem;
1085 name_pattern = 1;
1090 for (i = 0; i < ASIZE (Vfontset_table); i++)
1092 Lisp_Object fontset, this_name;
1094 fontset = FONTSET_FROM_ID (i);
1095 if (NILP (fontset)
1096 || !BASE_FONTSET_P (fontset))
1097 continue;
1099 this_name = FONTSET_NAME (fontset);
1100 if (name_pattern == 1
1101 ? fast_string_match_ignore_case (name, this_name) >= 0
1102 : !xstrcasecmp (SDATA (name), SDATA (this_name)))
1103 return i;
1105 return -1;
1109 DEFUN ("query-fontset", Fquery_fontset, Squery_fontset, 1, 2, 0,
1110 doc: /* Return the name of a fontset that matches PATTERN.
1111 The value is nil if there is no matching fontset.
1112 PATTERN can contain `*' or `?' as a wildcard
1113 just as X font name matching algorithm allows.
1114 If REGEXPP is non-nil, PATTERN is a regular expression. */)
1115 (pattern, regexpp)
1116 Lisp_Object pattern, regexpp;
1118 Lisp_Object fontset;
1119 int id;
1121 (*check_window_system_func) ();
1123 CHECK_STRING (pattern);
1125 if (SCHARS (pattern) == 0)
1126 return Qnil;
1128 id = fs_query_fontset (pattern, !NILP (regexpp));
1129 if (id < 0)
1130 return Qnil;
1132 fontset = FONTSET_FROM_ID (id);
1133 return FONTSET_NAME (fontset);
1136 /* Return a list of base fontset names matching PATTERN on frame F. */
1138 Lisp_Object
1139 list_fontsets (f, pattern, size)
1140 FRAME_PTR f;
1141 Lisp_Object pattern;
1142 int size;
1144 Lisp_Object frame, regexp, val;
1145 int id;
1147 XSETFRAME (frame, f);
1149 regexp = fontset_pattern_regexp (pattern);
1150 val = Qnil;
1152 for (id = 0; id < ASIZE (Vfontset_table); id++)
1154 Lisp_Object fontset, name;
1156 fontset = FONTSET_FROM_ID (id);
1157 if (NILP (fontset)
1158 || !BASE_FONTSET_P (fontset)
1159 || !EQ (frame, FONTSET_FRAME (fontset)))
1160 continue;
1161 name = FONTSET_NAME (fontset);
1163 if (STRINGP (regexp)
1164 ? (fast_string_match (regexp, name) < 0)
1165 : strcmp ((char *) SDATA (pattern), (char *) SDATA (name)))
1166 continue;
1168 val = Fcons (Fcopy_sequence (FONTSET_NAME (fontset)), val);
1171 return val;
1175 /* Free all realized fontsets whose base fontset is BASE. */
1177 static void
1178 free_realized_fontsets (base)
1179 Lisp_Object base;
1181 int id;
1183 #if 0
1184 /* For the moment, this doesn't work because free_realized_face
1185 doesn't remove FACE from a cache. Until we find a solution, we
1186 suppress this code, and simply use Fclear_face_cache even though
1187 that is not efficient. */
1188 BLOCK_INPUT;
1189 for (id = 0; id < ASIZE (Vfontset_table); id++)
1191 Lisp_Object this = AREF (Vfontset_table, id);
1193 if (EQ (FONTSET_BASE (this), base))
1195 Lisp_Object tail;
1197 for (tail = FONTSET_FACE_ALIST (this); CONSP (tail);
1198 tail = XCDR (tail))
1200 FRAME_PTR f = XFRAME (FONTSET_FRAME (this));
1201 int face_id = XINT (XCDR (XCAR (tail)));
1202 struct face *face = FACE_FROM_ID (f, face_id);
1204 /* Face THIS itself is also freed by the following call. */
1205 free_realized_face (f, face);
1209 UNBLOCK_INPUT;
1210 #else /* not 0 */
1211 /* But, we don't have to call Fclear_face_cache if no fontset has
1212 been realized from BASE. */
1213 for (id = 0; id < ASIZE (Vfontset_table); id++)
1215 Lisp_Object this = AREF (Vfontset_table, id);
1217 if (CHAR_TABLE_P (this) && EQ (FONTSET_BASE (this), base))
1219 Fclear_face_cache (Qt);
1220 break;
1223 #endif /* not 0 */
1227 /* Check validity of NAME as a fontset name and return the
1228 corresponding fontset. If not valid, signal an error.
1229 If NAME is t, return Vdefault_fontset. */
1231 static Lisp_Object
1232 check_fontset_name (name)
1233 Lisp_Object name;
1235 int id;
1237 if (EQ (name, Qt))
1238 return Vdefault_fontset;
1240 CHECK_STRING (name);
1241 /* First try NAME as literal. */
1242 id = fs_query_fontset (name, 2);
1243 if (id < 0)
1244 /* For backward compatibility, try again NAME as pattern. */
1245 id = fs_query_fontset (name, 0);
1246 if (id < 0)
1247 error ("Fontset `%s' does not exist", SDATA (name));
1248 return FONTSET_FROM_ID (id);
1251 static void
1252 accumulate_script_ranges (arg, range, val)
1253 Lisp_Object arg, range, val;
1255 if (EQ (XCAR (arg), val))
1257 if (CONSP (range))
1258 XSETCDR (arg, Fcons (Fcons (XCAR (range), XCDR (range)), XCDR (arg)));
1259 else
1260 XSETCDR (arg, Fcons (Fcons (range, range), XCDR (arg)));
1265 /* Return an ASCII font name generated from fontset name NAME and
1266 font-spec ASCII_SPEC. NAME is a string conforming to XLFD. */
1268 static INLINE Lisp_Object
1269 generate_ascii_font_name (name, ascii_spec)
1270 Lisp_Object name, ascii_spec;
1272 Lisp_Object font_spec = Ffont_spec (0, NULL);
1273 int i;
1274 char xlfd[256];
1276 if (font_parse_xlfd ((char *) SDATA (name), font_spec) < 0)
1277 error ("Not an XLFD font name: %s", SDATA (name));
1278 for (i = FONT_FOUNDRY_INDEX; i < FONT_EXTRA_INDEX; i++)
1279 if (! NILP (AREF (ascii_spec, i)))
1280 ASET (font_spec, i, AREF (ascii_spec, i));
1281 i = font_unparse_xlfd (font_spec, 0, xlfd, 256);
1282 if (i < 0)
1283 error ("Not an XLFD font name: %s", SDATA (name));
1284 return make_unibyte_string (xlfd, i);
1287 /* Variables referred in set_fontset_font. They are set before
1288 map_charset_chars is called in Fset_fontset_font. */
1289 static Lisp_Object font_def_arg, add_arg;
1290 static int from_arg, to_arg;
1292 /* Callback function for map_charset_chars in Fset_fontset_font. In
1293 FONTSET, set font_def_arg in a fashion specified by add_arg for
1294 characters in RANGE while ignoring the range between from_arg and
1295 to_arg. */
1297 static void
1298 set_fontset_font (fontset, range)
1299 Lisp_Object fontset, range;
1301 if (from_arg < to_arg)
1303 int from = XINT (XCAR (range)), to = XINT (XCDR (range));
1305 if (from < from_arg)
1307 if (to > to_arg)
1309 Lisp_Object range2;
1311 range2 = Fcons (make_number (to_arg), XCDR (range));
1312 FONTSET_ADD (fontset, range, font_def_arg, add_arg);
1313 to = to_arg;
1315 if (to > from_arg)
1316 range = Fcons (XCAR (range), make_number (from_arg));
1318 else if (to <= to_arg)
1319 return;
1320 else
1322 if (from < to_arg)
1323 range = Fcons (make_number (to_arg), XCDR (range));
1326 FONTSET_ADD (fontset, range, font_def_arg, add_arg);
1329 extern Lisp_Object QCfamily, QCregistry;
1331 DEFUN ("set-fontset-font", Fset_fontset_font, Sset_fontset_font, 3, 5, 0,
1332 doc: /*
1333 Modify fontset NAME to use FONT-SPEC for TARGET characters.
1335 TARGET may be a cons; (FROM . TO), where FROM and TO are characters.
1336 In that case, use FONT-SPEC for all characters in the range FROM and
1337 TO (inclusive).
1339 TARGET may be a script name symbol. In that case, use FONT-SPEC for
1340 all characters that belong to the script.
1342 TARGET may be a charset. In that case, use FONT-SPEC for all
1343 characters in the charset.
1345 TARGET may be nil. In that case, use FONT-SPEC for any characters for
1346 that no FONT-SPEC is specified.
1348 FONT-SPEC may one of these:
1349 * A font-spec object made by the function `font-spec' (which see).
1350 * A cons (FAMILY . REGISTRY), where FAMILY is a font family name and
1351 REGISTRY is a font registry name. FAMILY may contain foundry
1352 name, and REGISTRY may contain encoding name.
1353 * A font name string.
1354 * nil, which explicitly specifies that there's no font for TARGET.
1356 Optional 4th argument FRAME, if non-nil, is a frame. This argument is
1357 kept for backward compatibility and has no meaning.
1359 Optional 5th argument ADD, if non-nil, specifies how to add FONT-SPEC
1360 to the font specifications for TARGET previously set. If it is
1361 `prepend', FONT-SPEC is prepended. If it is `append', FONT-SPEC is
1362 appended. By default, FONT-SPEC overrides the previous settings. */)
1363 (name, target, font_spec, frame, add)
1364 Lisp_Object name, target, font_spec, frame, add;
1366 Lisp_Object fontset;
1367 Lisp_Object font_def, registry, family;
1368 Lisp_Object range_list;
1369 struct charset *charset = NULL;
1371 fontset = check_fontset_name (name);
1373 /* The arg FRAME is kept for backward compatibility. We only check
1374 the validity. */
1375 if (!NILP (frame))
1376 CHECK_LIVE_FRAME (frame);
1378 if (CONSP (font_spec))
1380 Lisp_Object spec = Ffont_spec (0, NULL);
1382 font_parse_family_registry (XCAR (font_spec), XCDR (font_spec), spec);
1383 font_spec = spec;
1385 else if (STRINGP (font_spec))
1387 Lisp_Object args[2];
1388 extern Lisp_Object QCname;
1390 args[0] = QCname;
1391 args[1] = font_spec;
1392 font_spec = Ffont_spec (2, args);
1394 else if (! NILP (font_spec) && ! FONT_SPEC_P (font_spec))
1395 Fsignal (Qfont, list2 (build_string ("Invalid font-spec"), font_spec));
1397 if (! NILP (font_spec))
1399 Lisp_Object encoding, repertory;
1401 family = AREF (font_spec, FONT_FAMILY_INDEX);
1402 if (! NILP (family) )
1403 family = SYMBOL_NAME (family);
1404 registry = AREF (font_spec, FONT_REGISTRY_INDEX);
1405 if (! NILP (registry))
1406 registry = Fdowncase (SYMBOL_NAME (registry));
1407 encoding = find_font_encoding (concat3 (family, build_string ("-"),
1408 registry));
1409 if (NILP (encoding))
1410 encoding = Qascii;
1412 if (SYMBOLP (encoding))
1414 CHECK_CHARSET (encoding);
1415 encoding = repertory = CHARSET_SYMBOL_ID (encoding);
1417 else
1419 repertory = XCDR (encoding);
1420 encoding = XCAR (encoding);
1421 CHECK_CHARSET (encoding);
1422 encoding = CHARSET_SYMBOL_ID (encoding);
1423 if (! NILP (repertory) && SYMBOLP (repertory))
1425 CHECK_CHARSET (repertory);
1426 repertory = CHARSET_SYMBOL_ID (repertory);
1429 FONT_DEF_NEW (font_def, font_spec, encoding, repertory);
1431 else
1432 font_def = Qnil;
1434 if (CHARACTERP (target))
1435 range_list = Fcons (Fcons (target, target), Qnil);
1436 else if (CONSP (target))
1438 Lisp_Object from, to;
1440 from = Fcar (target);
1441 to = Fcdr (target);
1442 CHECK_CHARACTER (from);
1443 CHECK_CHARACTER (to);
1444 range_list = Fcons (target, Qnil);
1446 else if (SYMBOLP (target) && !NILP (target))
1448 Lisp_Object script_list;
1449 Lisp_Object val;
1451 range_list = Qnil;
1452 script_list = XCHAR_TABLE (Vchar_script_table)->extras[0];
1453 if (! NILP (Fmemq (target, script_list)))
1455 val = Fcons (target, Qnil);
1456 map_char_table (accumulate_script_ranges, Qnil, Vchar_script_table,
1457 val);
1458 range_list = XCDR (val);
1459 if (EQ (target, Qlatin) && NILP (FONTSET_ASCII (fontset)))
1461 if (VECTORP (font_spec))
1462 val = generate_ascii_font_name (FONTSET_NAME (fontset),
1463 font_spec);
1464 else
1465 val = font_spec;
1466 FONTSET_ASCII (fontset) = val;
1469 if (CHARSETP (target))
1471 if (EQ (target, Qascii) && NILP (FONTSET_ASCII (fontset)))
1473 if (VECTORP (font_spec))
1474 font_spec = generate_ascii_font_name (FONTSET_NAME (fontset),
1475 font_spec);
1476 FONTSET_ASCII (fontset) = font_spec;
1477 range_list = Fcons (Fcons (make_number (0), make_number (127)),
1478 Qnil);
1480 else
1482 CHECK_CHARSET_GET_CHARSET (target, charset);
1485 else if (NILP (range_list))
1486 error ("Invalid script or charset name: %s",
1487 SDATA (SYMBOL_NAME (target)));
1489 else if (NILP (target))
1490 range_list = Fcons (Qnil, Qnil);
1491 else
1492 error ("Invalid target for setting a font");
1495 if (charset)
1497 font_def_arg = font_def;
1498 add_arg = add;
1499 if (NILP (range_list))
1500 from_arg = to_arg = 0;
1501 else
1502 from_arg = XINT (XCAR (XCAR (range_list))),
1503 to_arg = XINT (XCDR (XCAR (range_list)));
1505 map_charset_chars (set_fontset_font, Qnil, fontset, charset,
1506 CHARSET_MIN_CODE (charset),
1507 CHARSET_MAX_CODE (charset));
1509 for (; CONSP (range_list); range_list = XCDR (range_list))
1510 FONTSET_ADD (fontset, XCAR (range_list), font_def, add);
1512 /* Free all realized fontsets whose base is FONTSET. This way, the
1513 specified character(s) are surely redisplayed by a correct
1514 font. */
1515 free_realized_fontsets (fontset);
1517 return Qnil;
1521 DEFUN ("new-fontset", Fnew_fontset, Snew_fontset, 2, 2, 0,
1522 doc: /* Create a new fontset NAME from font information in FONTLIST.
1524 FONTLIST is an alist of scripts vs the corresponding font specification list.
1525 Each element of FONTLIST has the form (SCRIPT FONT-SPEC ...), where a
1526 character of SCRIPT is displayed by a font that matches one of
1527 FONT-SPEC.
1529 SCRIPT is a symbol that appears in the first extra slot of the
1530 char-table `char-script-table'.
1532 FONT-SPEC is a vector, a cons, or a string. See the documentation of
1533 `set-fontset-font' for the meaning. */)
1534 (name, fontlist)
1535 Lisp_Object name, fontlist;
1537 Lisp_Object fontset;
1538 int id;
1540 CHECK_STRING (name);
1541 CHECK_LIST (fontlist);
1543 name = Fdowncase (name);
1544 id = fs_query_fontset (name, 0);
1545 if (id < 0)
1547 Lisp_Object font_spec = Ffont_spec (0, NULL);
1548 Lisp_Object short_name;
1549 char xlfd[256];
1550 int len;
1552 if (font_parse_xlfd ((char *) SDATA (name), font_spec) < 0)
1553 error ("Fontset name must be in XLFD format");
1554 short_name = AREF (font_spec, FONT_REGISTRY_INDEX);
1555 if (strncmp ((char *) SDATA (SYMBOL_NAME (short_name)), "fontset-", 8)
1556 || SBYTES (SYMBOL_NAME (short_name)) < 9)
1557 error ("Registry field of fontset name must be \"fontset-*\"");
1558 Vfontset_alias_alist = Fcons (Fcons (name, SYMBOL_NAME (short_name)),
1559 Vfontset_alias_alist);
1560 ASET (font_spec, FONT_REGISTRY_INDEX, Qiso8859_1);
1561 fontset = make_fontset (Qnil, name, Qnil);
1562 len = font_unparse_xlfd (font_spec, 0, xlfd, 256);
1563 if (len < 0)
1564 error ("Invalid fontset name (perhaps too long): %s", SDATA (name));
1565 FONTSET_ASCII (fontset) = make_unibyte_string (xlfd, len);
1567 else
1569 fontset = FONTSET_FROM_ID (id);;
1570 free_realized_fontsets (fontset);
1571 Fset_char_table_range (fontset, Qt, Qnil);
1574 for (; ! NILP (fontlist); fontlist = Fcdr (fontlist))
1576 Lisp_Object elt, script;
1578 elt = Fcar (fontlist);
1579 script = Fcar (elt);
1580 elt = Fcdr (elt);
1581 if (CONSP (elt) && (NILP (XCDR (elt)) || CONSP (XCDR (elt))))
1582 for (; CONSP (elt); elt = XCDR (elt))
1583 Fset_fontset_font (name, script, XCAR (elt), Qnil, Qappend);
1584 else
1585 Fset_fontset_font (name, script, elt, Qnil, Qappend);
1587 return name;
1591 /* Alist of automatically created fontsets. Each element is a cons
1592 (FONT-SPEC . FONTSET-ID). */
1593 static Lisp_Object auto_fontset_alist;
1596 fontset_from_font (font_object)
1597 Lisp_Object font_object;
1599 Lisp_Object font_name = font_get_name (font_object);
1600 Lisp_Object font_spec = Fcopy_font_spec (font_object);
1601 Lisp_Object fontset_spec, alias, name, fontset;
1602 Lisp_Object val;
1603 int i;
1605 val = assoc_no_quit (font_spec, auto_fontset_alist);
1606 if (CONSP (val))
1607 return XINT (FONTSET_ID (XCDR (val)));
1608 if (NILP (auto_fontset_alist))
1609 alias = intern ("fontset-startup");
1610 else
1612 char temp[32];
1613 int len = XINT (Flength (auto_fontset_alist));
1615 sprintf (temp, "fontset-auto%d", len);
1616 alias = intern (temp);
1618 fontset_spec = Fcopy_font_spec (font_spec);
1619 ASET (fontset_spec, FONT_REGISTRY_INDEX, alias);
1620 name = Ffont_xlfd_name (fontset_spec, Qnil);
1621 if (NILP (name))
1622 abort ();
1623 fontset = make_fontset (Qnil, name, Qnil);
1624 Vfontset_alias_alist = Fcons (Fcons (name, SYMBOL_NAME (alias)),
1625 Vfontset_alias_alist);
1626 alias = Fdowncase (AREF (font_object, FONT_NAME_INDEX));
1627 Vfontset_alias_alist = Fcons (Fcons (name, alias), Vfontset_alias_alist);
1628 auto_fontset_alist = Fcons (Fcons (font_spec, fontset), auto_fontset_alist);
1629 FONTSET_ASCII (fontset) = font_name;
1630 ASET (font_spec, FONT_FOUNDRY_INDEX, Qnil);
1631 ASET (font_spec, FONT_ADSTYLE_INDEX, Qnil);
1632 for (i = FONT_WEIGHT_INDEX; i < FONT_EXTRA_INDEX; i++)
1633 ASET (font_spec, i, Qnil);
1634 Fset_fontset_font (name, Qlatin, font_spec, Qnil, Qnil);
1635 font_spec = Fcopy_font_spec (font_spec);
1636 ASET (font_spec, FONT_REGISTRY_INDEX, Qiso10646_1);
1637 Fset_fontset_font (name, Qnil, font_spec, Qnil, Qnil);
1638 return XINT (FONTSET_ID (fontset));
1641 /* Return a cons (FONT-NAME . GLYPH-CODE).
1642 FONT-NAME is the font name for the character at POSITION in the current
1643 buffer. This is computed from all the text properties and overlays
1644 that apply to POSITION. POSTION may be nil, in which case,
1645 FONT-NAME is the font name for display the character CH with the
1646 default face.
1648 GLYPH-CODE is the glyph code in the font to use for the character.
1650 If the 2nd optional arg CH is non-nil, it is a character to check
1651 the font instead of the character at POSITION.
1653 It returns nil in the following cases:
1655 (1) The window system doesn't have a font for the character (thus
1656 it is displayed by an empty box).
1658 (2) The character code is invalid.
1660 (3) If POSITION is not nil, and the current buffer is not displayed
1661 in any window.
1663 In addition, the returned font name may not take into account of
1664 such redisplay engine hooks as what used in jit-lock-mode if
1665 POSITION is currently not visible. */
1668 DEFUN ("internal-char-font", Finternal_char_font, Sinternal_char_font, 1, 2, 0,
1669 doc: /* For internal use only. */)
1670 (position, ch)
1671 Lisp_Object position, ch;
1673 EMACS_INT pos, pos_byte, dummy;
1674 int face_id;
1675 int c;
1676 struct frame *f;
1677 struct face *face;
1678 int cs_id;
1680 if (NILP (position))
1682 CHECK_CHARACTER (ch);
1683 c = XINT (ch);
1684 f = XFRAME (selected_frame);
1685 face_id = lookup_basic_face (f, DEFAULT_FACE_ID);
1686 pos = -1;
1687 cs_id = -1;
1689 else
1691 Lisp_Object window, charset;
1692 struct window *w;
1694 CHECK_NUMBER_COERCE_MARKER (position);
1695 pos = XINT (position);
1696 if (pos < BEGV || pos >= ZV)
1697 args_out_of_range_3 (position, make_number (BEGV), make_number (ZV));
1698 pos_byte = CHAR_TO_BYTE (pos);
1699 if (NILP (ch))
1700 c = FETCH_CHAR (pos_byte);
1701 else
1703 CHECK_NATNUM (ch);
1704 c = XINT (ch);
1706 window = Fget_buffer_window (Fcurrent_buffer (), Qnil);
1707 if (NILP (window))
1708 return Qnil;
1709 w = XWINDOW (window);
1710 f = XFRAME (w->frame);
1711 face_id = face_at_buffer_position (w, pos, -1, -1, &dummy, pos + 100, 0);
1712 charset = Fget_char_property (position, Qcharset, Qnil);
1713 if (CHARSETP (charset))
1714 cs_id = XINT (CHARSET_SYMBOL_ID (charset));
1715 else
1716 cs_id = -1;
1718 if (! CHAR_VALID_P (c, 0))
1719 return Qnil;
1720 face_id = FACE_FOR_CHAR (f, FACE_FROM_ID (f, face_id), c, pos, Qnil);
1721 face = FACE_FROM_ID (f, face_id);
1722 if (face->font)
1724 struct font *font = face->font;
1725 unsigned code = font->driver->encode_char (font, c);
1726 Lisp_Object fontname = font->props[FONT_NAME_INDEX];
1727 /* Assignment to EMACS_INT stops GCC whining about limited range
1728 of data type. */
1729 EMACS_INT cod = code;
1731 if (code == FONT_INVALID_CODE)
1732 return Qnil;
1733 if (cod <= MOST_POSITIVE_FIXNUM)
1734 return Fcons (fontname, make_number (code));
1735 return Fcons (fontname, Fcons (make_number (code >> 16),
1736 make_number (code & 0xFFFF)));
1738 return Qnil;
1742 DEFUN ("fontset-info", Ffontset_info, Sfontset_info, 1, 2, 0,
1743 doc: /* Return information about a fontset FONTSET on frame FRAME.
1744 The value is a char-table whose elements have this form:
1746 ((FONT-PATTERN OPENED-FONT ...) ...)
1748 FONT-PATTERN is a vector:
1750 [ FAMILY WEIGHT SLANT SWIDTH ADSTYLE REGISTRY ]
1752 or a string of font name pattern.
1754 OPENED-FONT is a name of a font actually opened.
1756 The char-table has one extra slot. The value is a char-table
1757 containing the information about the derived fonts from the default
1758 fontset. The format is the same as above. */)
1759 (fontset, frame)
1760 Lisp_Object fontset, frame;
1762 FRAME_PTR f;
1763 Lisp_Object *realized[2], fontsets[2], tables[2];
1764 Lisp_Object val, elt;
1765 int c, i, j, k;
1767 (*check_window_system_func) ();
1769 fontset = check_fontset_name (fontset);
1771 if (NILP (frame))
1772 frame = selected_frame;
1773 CHECK_LIVE_FRAME (frame);
1774 f = XFRAME (frame);
1776 /* Recode fontsets realized on FRAME from the base fontset FONTSET
1777 in the table `realized'. */
1778 realized[0] = (Lisp_Object *) alloca (sizeof (Lisp_Object)
1779 * ASIZE (Vfontset_table));
1780 for (i = j = 0; i < ASIZE (Vfontset_table); i++)
1782 elt = FONTSET_FROM_ID (i);
1783 if (!NILP (elt)
1784 && EQ (FONTSET_BASE (elt), fontset)
1785 && EQ (FONTSET_FRAME (elt), frame))
1786 realized[0][j++] = elt;
1788 realized[0][j] = Qnil;
1790 realized[1] = (Lisp_Object *) alloca (sizeof (Lisp_Object)
1791 * ASIZE (Vfontset_table));
1792 for (i = j = 0; ! NILP (realized[0][i]); i++)
1794 elt = FONTSET_DEFAULT (realized[0][i]);
1795 if (! NILP (elt))
1796 realized[1][j++] = elt;
1798 realized[1][j] = Qnil;
1800 tables[0] = Fmake_char_table (Qfontset_info, Qnil);
1801 tables[1] = Fmake_char_table (Qnil, Qnil);
1802 XCHAR_TABLE (tables[0])->extras[0] = tables[1];
1803 fontsets[0] = fontset;
1804 fontsets[1] = Vdefault_fontset;
1806 /* Accumulate information of the fontset in TABLE. The format of
1807 each element is ((FONT-SPEC OPENED-FONT ...) ...). */
1808 for (k = 0; k <= 1; k++)
1810 for (c = 0; c <= MAX_CHAR; )
1812 int from, to;
1814 if (c <= MAX_5_BYTE_CHAR)
1816 val = char_table_ref_and_range (fontsets[k], c, &from, &to);
1817 if (to > MAX_5_BYTE_CHAR)
1818 to = MAX_5_BYTE_CHAR;
1820 else
1822 val = FONTSET_FALLBACK (fontsets[k]);
1823 to = MAX_CHAR;
1825 if (VECTORP (val))
1827 Lisp_Object alist;
1829 /* At first, set ALIST to ((FONT-SPEC) ...). */
1830 for (alist = Qnil, i = 0; i < ASIZE (val); i++)
1831 if (! NILP (AREF (val, i)))
1832 alist = Fcons (Fcons (FONT_DEF_SPEC (AREF (val, i)), Qnil),
1833 alist);
1834 alist = Fnreverse (alist);
1836 /* Then store opened font names to cdr of each elements. */
1837 for (i = 0; ! NILP (realized[k][i]); i++)
1839 if (c <= MAX_5_BYTE_CHAR)
1840 val = FONTSET_REF (realized[k][i], c);
1841 else
1842 val = FONTSET_FALLBACK (realized[k][i]);
1843 if (! VECTORP (val))
1844 continue;
1845 /* VAL: [int ? [FACE-ID FONT-DEF FONT-OBJECT int] ... ] */
1846 for (j = 2; j < ASIZE (val); j++)
1848 elt = AREF (val, j);
1849 if (FONT_OBJECT_P (RFONT_DEF_OBJECT (elt)))
1851 Lisp_Object font_object = RFONT_DEF_OBJECT (elt);
1852 Lisp_Object slot, name;
1854 slot = Fassq (RFONT_DEF_SPEC (elt), alist);
1855 name = AREF (font_object, FONT_NAME_INDEX);
1856 if (NILP (Fmember (name, XCDR (slot))))
1857 nconc2 (slot, Fcons (name, Qnil));
1862 /* Store ALIST in TBL for characters C..TO. */
1863 if (c <= MAX_5_BYTE_CHAR)
1864 char_table_set_range (tables[k], c, to, alist);
1865 else
1866 XCHAR_TABLE (tables[k])->defalt = alist;
1868 /* At last, change each elements to font names. */
1869 for (; CONSP (alist); alist = XCDR (alist))
1871 elt = XCAR (alist);
1872 XSETCAR (elt, Ffont_xlfd_name (XCAR (elt), Qnil));
1875 c = to + 1;
1879 return tables[0];
1883 DEFUN ("fontset-font", Ffontset_font, Sfontset_font, 2, 3, 0,
1884 doc: /* Return a font name pattern for character CH in fontset NAME.
1885 If NAME is t, find a pattern in the default fontset.
1887 The value has the form (FAMILY . REGISTRY), where FAMILY is a font
1888 family name and REGISTRY is a font registry name. This is actually
1889 the first font name pattern for CH in the fontset or in the default
1890 fontset.
1892 If the 2nd optional arg ALL is non-nil, return a list of all font name
1893 patterns. */)
1894 (name, ch, all)
1895 Lisp_Object name, ch, all;
1897 int c;
1898 Lisp_Object fontset, elt, list, repertory, val;
1899 int i, j;
1901 fontset = check_fontset_name (name);
1903 CHECK_CHARACTER (ch);
1904 c = XINT (ch);
1905 list = Qnil;
1906 while (1)
1908 for (i = 0, elt = FONTSET_REF (fontset, c); i < 2;
1909 i++, elt = FONTSET_FALLBACK (fontset))
1910 if (VECTORP (elt))
1911 for (j = 0; j < ASIZE (elt); j++)
1913 val = AREF (elt, j);
1914 repertory = AREF (val, 1);
1915 if (INTEGERP (repertory))
1917 struct charset *charset = CHARSET_FROM_ID (XINT (repertory));
1919 if (! CHAR_CHARSET_P (c, charset))
1920 continue;
1922 else if (CHAR_TABLE_P (repertory))
1924 if (NILP (CHAR_TABLE_REF (repertory, c)))
1925 continue;
1927 val = AREF (val, 0);
1928 val = Fcons (AREF (val, 0), AREF (val, 5));
1929 if (NILP (all))
1930 return val;
1931 list = Fcons (val, list);
1933 if (EQ (fontset, Vdefault_fontset))
1934 break;
1935 fontset = Vdefault_fontset;
1937 return (Fnreverse (list));
1940 DEFUN ("fontset-list", Ffontset_list, Sfontset_list, 0, 0, 0,
1941 doc: /* Return a list of all defined fontset names. */)
1944 Lisp_Object fontset, list;
1945 int i;
1947 list = Qnil;
1948 for (i = 0; i < ASIZE (Vfontset_table); i++)
1950 fontset = FONTSET_FROM_ID (i);
1951 if (!NILP (fontset)
1952 && BASE_FONTSET_P (fontset))
1953 list = Fcons (FONTSET_NAME (fontset), list);
1956 return list;
1960 #ifdef FONTSET_DEBUG
1962 Lisp_Object
1963 dump_fontset (fontset)
1964 Lisp_Object fontset;
1966 Lisp_Object vec;
1968 vec = Fmake_vector (make_number (3), Qnil);
1969 ASET (vec, 0, FONTSET_ID (fontset));
1971 if (BASE_FONTSET_P (fontset))
1973 ASET (vec, 1, FONTSET_NAME (fontset));
1975 else
1977 Lisp_Object frame;
1979 frame = FONTSET_FRAME (fontset);
1980 if (FRAMEP (frame))
1982 FRAME_PTR f = XFRAME (frame);
1984 if (FRAME_LIVE_P (f))
1985 ASET (vec, 1,
1986 Fcons (FONTSET_NAME (FONTSET_BASE (fontset)), f->name));
1987 else
1988 ASET (vec, 1,
1989 Fcons (FONTSET_NAME (FONTSET_BASE (fontset)), Qnil));
1991 if (!NILP (FONTSET_DEFAULT (fontset)))
1992 ASET (vec, 2, FONTSET_ID (FONTSET_DEFAULT (fontset)));
1994 return vec;
1997 DEFUN ("fontset-list-all", Ffontset_list_all, Sfontset_list_all, 0, 0, 0,
1998 doc: /* Return a brief summary of all fontsets for debug use. */)
2001 Lisp_Object val;
2002 int i;
2004 for (i = 0, val = Qnil; i < ASIZE (Vfontset_table); i++)
2005 if (! NILP (AREF (Vfontset_table, i)))
2006 val = Fcons (dump_fontset (AREF (Vfontset_table, i)), val);
2007 return (Fnreverse (val));
2009 #endif /* FONTSET_DEBUG */
2011 void
2012 syms_of_fontset ()
2014 DEFSYM (Qfontset, "fontset");
2015 Fput (Qfontset, Qchar_table_extra_slots, make_number (9));
2016 DEFSYM (Qfontset_info, "fontset-info");
2017 Fput (Qfontset_info, Qchar_table_extra_slots, make_number (1));
2019 DEFSYM (Qprepend, "prepend");
2020 DEFSYM (Qappend, "append");
2021 DEFSYM (Qlatin, "latin");
2023 Vcached_fontset_data = Qnil;
2024 staticpro (&Vcached_fontset_data);
2026 Vfontset_table = Fmake_vector (make_number (32), Qnil);
2027 staticpro (&Vfontset_table);
2029 Vdefault_fontset = Fmake_char_table (Qfontset, Qnil);
2030 staticpro (&Vdefault_fontset);
2031 FONTSET_ID (Vdefault_fontset) = make_number (0);
2032 FONTSET_NAME (Vdefault_fontset)
2033 = build_string ("-*-*-*-*-*-*-*-*-*-*-*-*-fontset-default");
2034 ASET (Vfontset_table, 0, Vdefault_fontset);
2035 next_fontset_id = 1;
2037 auto_fontset_alist = Qnil;
2038 staticpro (&auto_fontset_alist);
2040 DEFVAR_LISP ("font-encoding-charset-alist", &Vfont_encoding_charset_alist,
2041 doc: /*
2042 Alist of charsets vs the charsets to determine the preferred font encoding.
2043 Each element looks like (CHARSET . ENCODING-CHARSET),
2044 where ENCODING-CHARSET is a charset registered in the variable
2045 `font-encoding-alist' as ENCODING.
2047 When a text has a property `charset' and the value is CHARSET, a font
2048 whose encoding corresponds to ENCODING-CHARSET is preferred. */);
2049 Vfont_encoding_charset_alist = Qnil;
2051 DEFVAR_LISP ("use-default-ascent", &Vuse_default_ascent,
2052 doc: /*
2053 Char table of characters whose ascent values should be ignored.
2054 If an entry for a character is non-nil, the ascent value of the glyph
2055 is assumed to be specified by _MULE_DEFAULT_ASCENT property of a font.
2057 This affects how a composite character which contains
2058 such a character is displayed on screen. */);
2059 Vuse_default_ascent = Qnil;
2061 DEFVAR_LISP ("ignore-relative-composition", &Vignore_relative_composition,
2062 doc: /*
2063 Char table of characters which are not composed relatively.
2064 If an entry for a character is non-nil, a composition sequence
2065 which contains that character is displayed so that
2066 the glyph of that character is put without considering
2067 an ascent and descent value of a previous character. */);
2068 Vignore_relative_composition = Qnil;
2070 DEFVAR_LISP ("alternate-fontname-alist", &Valternate_fontname_alist,
2071 doc: /* Alist of fontname vs list of the alternate fontnames.
2072 When a specified font name is not found, the corresponding
2073 alternate fontnames (if any) are tried instead. */);
2074 Valternate_fontname_alist = Qnil;
2076 DEFVAR_LISP ("fontset-alias-alist", &Vfontset_alias_alist,
2077 doc: /* Alist of fontset names vs the aliases. */);
2078 Vfontset_alias_alist = Fcons (Fcons (FONTSET_NAME (Vdefault_fontset),
2079 build_string ("fontset-default")),
2080 Qnil);
2082 DEFVAR_LISP ("vertical-centering-font-regexp",
2083 &Vvertical_centering_font_regexp,
2084 doc: /* *Regexp matching font names that require vertical centering on display.
2085 When a character is displayed with such fonts, the character is displayed
2086 at the vertical center of lines. */);
2087 Vvertical_centering_font_regexp = Qnil;
2089 DEFVAR_LISP ("otf-script-alist", &Votf_script_alist,
2090 doc: /* Alist of OpenType script tags vs the corresponding script names. */);
2091 Votf_script_alist = Qnil;
2093 defsubr (&Squery_fontset);
2094 defsubr (&Snew_fontset);
2095 defsubr (&Sset_fontset_font);
2096 defsubr (&Sinternal_char_font);
2097 defsubr (&Sfontset_info);
2098 defsubr (&Sfontset_font);
2099 defsubr (&Sfontset_list);
2100 #ifdef FONTSET_DEBUG
2101 defsubr (&Sfontset_list_all);
2102 #endif
2105 /* arch-tag: ea861585-2f5f-4e5b-9849-d04a9c3a3537
2106 (do not change this comment) */