]> code.delx.au - gnu-emacs/blob - src/fontset.c
Revision: miles@gnu.org--gnu-2004/emacs--unicode--0--patch-79
[gnu-emacs] / src / fontset.c
1 /* Fontset handler.
2 Copyright (C) 2004 Free Software Foundation, Inc.
3 Copyright (C) 1995, 1997, 2000 Electrotechnical Laboratory, JAPAN.
4 Licensed to the Free Software Foundation.
5 Copyright (C) 2003
6 National Institute of Advanced Industrial Science and Technology (AIST)
7 Registration Number H13PRO009
8
9 This file is part of GNU Emacs.
10
11 GNU Emacs is free software; you can redistribute it and/or modify
12 it under the terms of the GNU General Public License as published by
13 the Free Software Foundation; either version 2, or (at your option)
14 any later version.
15
16 GNU Emacs is distributed in the hope that it will be useful,
17 but WITHOUT ANY WARRANTY; without even the implied warranty of
18 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
19 GNU General Public License for more details.
20
21 You should have received a copy of the GNU General Public License
22 along with GNU Emacs; see the file COPYING. If not, write to
23 the Free Software Foundation, Inc., 59 Temple Place - Suite 330,
24 Boston, MA 02111-1307, USA. */
25
26 /* #define FONTSET_DEBUG */
27
28 #include <config.h>
29
30 #ifdef FONTSET_DEBUG
31 #include <stdio.h>
32 #endif
33
34 #include "lisp.h"
35 #include "blockinput.h"
36 #include "buffer.h"
37 #include "character.h"
38 #include "charset.h"
39 #include "ccl.h"
40 #include "keyboard.h"
41 #include "frame.h"
42 #include "dispextern.h"
43 #include "intervals.h"
44 #include "fontset.h"
45 #include "window.h"
46 #ifdef HAVE_X_WINDOWS
47 #include "xterm.h"
48 #endif
49 #ifdef WINDOWSNT
50 #include "w32term.h"
51 #endif
52 #ifdef MAC_OS
53 #include "macterm.h"
54 #endif
55
56 #undef xassert
57 #ifdef FONTSET_DEBUG
58 #define xassert(X) do {if (!(X)) abort ();} while (0)
59 #undef INLINE
60 #define INLINE
61 #else /* not FONTSET_DEBUG */
62 #define xassert(X) (void) 0
63 #endif /* not FONTSET_DEBUG */
64
65 EXFUN (Fclear_face_cache, 1);
66
67 /* FONTSET
68
69 A fontset is a collection of font related information to give
70 similar appearance (style, etc) of characters. A fontset has two
71 roles. One is to use for the frame parameter `font' as if it is an
72 ASCII font. In that case, Emacs uses the font specified for
73 `ascii' script for the frame's default font.
74
75 Another role, the more important one, is to provide information
76 about which font to use for each non-ASCII character.
77
78 There are two kinds of fontsets; base and realized. A base fontset
79 is created by `new-fontset' from Emacs Lisp explicitly. A realized
80 fontset is created implicitly when a face is realized for ASCII
81 characters. A face is also realized for non-ASCII characters based
82 on an ASCII face. All of non-ASCII faces based on the same ASCII
83 face share the same realized fontset.
84
85 A fontset object is implemented by a char-table whose default value
86 and parent are always nil.
87
88 An element of a base fontset is a vector of FONT-DEFs which itself
89 is a vector [ FONT-SPEC ENCODING REPERTORY ].
90
91 FONT-SPEC is:
92 [ FAMILY WEIGHT SLANT SWIDTH ADSTYLE REGISTRY ]
93 or
94 FONT-NAME
95 where FAMILY, WEIGHT, SLANT, SWIDTH, ADSTYLE, REGISTRY, and
96 FONT-NAME are strings.
97
98 Note: Currently WEIGHT through ADSTYLE are ignored.
99
100 ENCODING is a charset ID that can convert characters to glyph codes
101 of the corresponding font.
102
103 REPERTORY is a charset ID, a char-table, or nil. If REPERTORY is a
104 charset ID, the repertory of the charset exactly matches with that
105 of the font. If REPERTORY is a char-table, all characters who have
106 a non-nil value in the table are supported. If REPERTORY is nil,
107 we consult with the font itself to get the repertory.
108
109 ENCODING and REPERTORY are extracted from the variable
110 Vfont_encoding_alist by using a font name generated from FONT-SPEC
111 (if it is a vector) or FONT-NAME as a matching target.
112
113
114 An element of a realized fontset is nil or t, or has this form:
115
116 [CHARSET-ORDERED-LIST-TICK PREFERRED-CHARSET-ID
117 PREFERRED-RFONT-DEF RFONT-DEF0 RFONT-DEF1 ...].
118
119 RFONT-DEFn (i.e. Realized FONT-DEF) has this form:
120
121 [ FACE-ID FONT-INDEX FONT-DEF OPENED-FONT-NAME ]
122
123 RFONT-DEFn is automatically reordered by the current charset
124 priority list.
125
126 The value nil means that we have not yet generated the above vector
127 from the base of the fontset.
128
129 The value t means that no font is available for the corresponding
130 range of characters.
131
132
133 A fontset has 9 extra slots.
134
135 The 1st slot: the ID number of the fontset
136
137 The 2nd slot:
138 base: the name of the fontset
139 realized: nil
140
141 The 3rd slot:
142 base: nil
143 realized: the base fontset
144
145 The 4th slot:
146 base: nil
147 realized: the frame that the fontset belongs to
148
149 The 5th slot:
150 base: the font name for ASCII characters
151 realized: nil
152
153 The 6th slot:
154 base: nil
155 realized: the ID number of a face to use for characters that
156 has no font in a realized fontset.
157
158 The 7th slot:
159 base: nil
160 realized: Alist of font index vs the corresponding repertory
161 char-table.
162
163 The 8th slot:
164 base: nil
165 realized: If the base is not the default fontset, a fontset
166 realized from the default fontset, else nil.
167
168 The 9th slot:
169 base: Same as element value (but for fallback fonts).
170 realized: Likewise.
171
172 All fontsets are recorded in the vector Vfontset_table.
173
174
175 DEFAULT FONTSET
176
177 There's a special base fontset named `default fontset' which
178 defines the default font specifications. When a base fontset
179 doesn't specify a font for a specific character, the corresponding
180 value in the default fontset is used.
181
182 The parent of a realized fontset created for such a face that has
183 no fontset is the default fontset.
184
185
186 These structures are hidden from the other codes than this file.
187 The other codes handle fontsets only by their ID numbers. They
188 usually use the variable name `fontset' for IDs. But, in this
189 file, we always use varialbe name `id' for IDs, and name `fontset'
190 for an actual fontset object, i.e., char-table.
191
192 */
193
194 /********** VARIABLES and FUNCTION PROTOTYPES **********/
195
196 extern Lisp_Object Qfont;
197 static Lisp_Object Qfontset;
198 static Lisp_Object Qfontset_info;
199 static Lisp_Object Qprepend, Qappend;
200
201 /* Vector containing all fontsets. */
202 static Lisp_Object Vfontset_table;
203
204 /* Next possibly free fontset ID. Usually this keeps the minimum
205 fontset ID not yet used. */
206 static int next_fontset_id;
207
208 /* The default fontset. This gives default FAMILY and REGISTRY of
209 font for each character. */
210 static Lisp_Object Vdefault_fontset;
211
212 Lisp_Object Vfont_encoding_alist;
213 Lisp_Object Vuse_default_ascent;
214 Lisp_Object Vignore_relative_composition;
215 Lisp_Object Valternate_fontname_alist;
216 Lisp_Object Vfontset_alias_alist;
217 Lisp_Object Vvertical_centering_font_regexp;
218
219 /* The following six are declarations of callback functions depending
220 on window system. See the comments in src/fontset.h for more
221 detail. */
222
223 /* Return a pointer to struct font_info of font FONT_IDX of frame F. */
224 struct font_info *(*get_font_info_func) P_ ((FRAME_PTR f, int font_idx));
225
226 /* Return a list of font names which matches PATTERN. See the documentation
227 of `x-list-fonts' for more details. */
228 Lisp_Object (*list_fonts_func) P_ ((struct frame *f,
229 Lisp_Object pattern,
230 int size,
231 int maxnames));
232
233 /* Load a font named NAME for frame F and return a pointer to the
234 information of the loaded font. If loading is failed, return 0. */
235 struct font_info *(*load_font_func) P_ ((FRAME_PTR f, char *name, int));
236
237 /* Return a pointer to struct font_info of a font named NAME for frame F. */
238 struct font_info *(*query_font_func) P_ ((FRAME_PTR f, char *name));
239
240 /* Additional function for setting fontset or changing fontset
241 contents of frame F. */
242 void (*set_frame_fontset_func) P_ ((FRAME_PTR f, Lisp_Object arg,
243 Lisp_Object oldval));
244
245 /* To find a CCL program, fs_load_font calls this function.
246 The argument is a pointer to the struct font_info.
247 This function set the member `encoder' of the structure. */
248 void (*find_ccl_program_func) P_ ((struct font_info *));
249
250 Lisp_Object (*get_font_repertory_func) P_ ((struct frame *,
251 struct font_info *));
252
253 /* Check if any window system is used now. */
254 void (*check_window_system_func) P_ ((void));
255
256
257 /* Prototype declarations for static functions. */
258 static Lisp_Object fontset_add P_ ((Lisp_Object, Lisp_Object, Lisp_Object,
259 Lisp_Object));
260 static Lisp_Object fontset_font P_ ((Lisp_Object, int, struct face *, int));
261 static Lisp_Object make_fontset P_ ((Lisp_Object, Lisp_Object, Lisp_Object));
262 static Lisp_Object fontset_pattern_regexp P_ ((Lisp_Object));
263 static void accumulate_script_ranges P_ ((Lisp_Object, Lisp_Object,
264 Lisp_Object));
265 static Lisp_Object find_font_encoding P_ ((Lisp_Object));
266
267 static void set_fontset_font P_ ((Lisp_Object, Lisp_Object));
268
269 #ifdef FONTSET_DEBUG
270
271 /* Return 1 if ID is a valid fontset id, else return 0. */
272
273 static int
274 fontset_id_valid_p (id)
275 int id;
276 {
277 return (id >= 0 && id < ASIZE (Vfontset_table) - 1);
278 }
279
280 #endif
281
282
283 \f
284 /********** MACROS AND FUNCTIONS TO HANDLE FONTSET **********/
285
286 /* Return the fontset with ID. No check of ID's validness. */
287 #define FONTSET_FROM_ID(id) AREF (Vfontset_table, id)
288
289 /* Macros to access special values of FONTSET. */
290 #define FONTSET_ID(fontset) XCHAR_TABLE (fontset)->extras[0]
291
292 /* Macros to access special values of (base) FONTSET. */
293 #define FONTSET_NAME(fontset) XCHAR_TABLE (fontset)->extras[1]
294 #define FONTSET_ASCII(fontset) XCHAR_TABLE (fontset)->extras[4]
295
296 /* Macros to access special values of (realized) FONTSET. */
297 #define FONTSET_BASE(fontset) XCHAR_TABLE (fontset)->extras[2]
298 #define FONTSET_FRAME(fontset) XCHAR_TABLE (fontset)->extras[3]
299 #define FONTSET_NOFONT_FACE(fontset) XCHAR_TABLE (fontset)->extras[5]
300 #define FONTSET_REPERTORY(fontset) XCHAR_TABLE (fontset)->extras[6]
301 #define FONTSET_DEFAULT(fontset) XCHAR_TABLE (fontset)->extras[7]
302
303 /* For both base and realized fontset. */
304 #define FONTSET_FALLBACK(fontset) XCHAR_TABLE (fontset)->extras[8]
305
306 #define BASE_FONTSET_P(fontset) (NILP (FONTSET_BASE (fontset)))
307
308
309 /* Return the element of FONTSET for the character C. If FONTSET is a
310 base fontset other then the default fontset and FONTSET doesn't
311 contain information for C, return the information in the default
312 fontset. */
313
314 #define FONTSET_REF(fontset, c) \
315 (EQ (fontset, Vdefault_fontset) \
316 ? CHAR_TABLE_REF (fontset, c) \
317 : fontset_ref ((fontset), (c)))
318
319 static Lisp_Object
320 fontset_ref (fontset, c)
321 Lisp_Object fontset;
322 int c;
323 {
324 Lisp_Object elt;
325
326 elt = CHAR_TABLE_REF (fontset, c);
327 if (NILP (elt) && ! EQ (fontset, Vdefault_fontset)
328 /* Don't check Vdefault_fontset for a realized fontset. */
329 && NILP (FONTSET_BASE (fontset)))
330 elt = CHAR_TABLE_REF (Vdefault_fontset, c);
331 return elt;
332 }
333
334
335 /* Return the element of FONTSET for the character C, set FROM and TO
336 to the range of characters around C that have the same value as C.
337 If FONTSET is a base fontset other then the default fontset and
338 FONTSET doesn't contain information for C, return the information
339 in the default fontset. */
340
341 #define FONTSET_REF_AND_RANGE(fontset, c, form, to) \
342 (EQ (fontset, Vdefault_fontset) \
343 ? char_table_ref_and_range (fontset, c, &from, &to) \
344 : fontset_ref_and_range (fontset, c, &from, &to))
345
346 static Lisp_Object
347 fontset_ref_and_range (fontset, c, from, to)
348 Lisp_Object fontset;
349 int c;
350 int *from, *to;
351 {
352 Lisp_Object elt;
353
354 elt = char_table_ref_and_range (fontset, c, from, to);
355 if (NILP (elt) && ! EQ (fontset, Vdefault_fontset)
356 /* Don't check Vdefault_fontset for a realized fontset. */
357 && NILP (FONTSET_BASE (fontset)))
358 {
359 int from1, to1;
360
361 elt = char_table_ref_and_range (Vdefault_fontset, c, &from1, &to1);
362 if (*from < from1)
363 *from = from1;
364 if (*to > to1)
365 *to = to1;
366 }
367 return elt;
368 }
369
370
371 /* Set elements of FONTSET for characters in RANGE to the value ELT.
372 RANGE is a cons (FROM . TO), where FROM and TO are character codes
373 specifying a range. */
374
375 #define FONTSET_SET(fontset, range, elt) \
376 Fset_char_table_range ((fontset), (range), (elt))
377
378
379 /* Modify the elements of FONTSET for characters in RANGE by replacing
380 with ELT or adding ELT. RANGE is a cons (FROM . TO), where FROM
381 and TO are character codes specifying a range. If ADD is nil,
382 replace with ELT, if ADD is `prepend', prepend ELT, otherwise,
383 append ELT. */
384
385 #define FONTSET_ADD(fontset, range, elt, add) \
386 (NILP (add) \
387 ? (NILP (range) \
388 ? (FONTSET_FALLBACK (fontset) = Fmake_vector (make_number (1), (elt))) \
389 : Fset_char_table_range ((fontset), (range), \
390 Fmake_vector (make_number (1), (elt)))) \
391 : fontset_add ((fontset), (range), (elt), (add)))
392
393 static Lisp_Object
394 fontset_add (fontset, range, elt, add)
395 Lisp_Object fontset, range, elt, add;
396 {
397 Lisp_Object args[2];
398 int idx = (EQ (add, Qappend) ? 0 : 1);
399
400 args[1 - idx] = Fmake_vector (make_number (1), elt);
401
402 if (CONSP (range))
403 {
404 int from = XINT (XCAR (range));
405 int to = XINT (XCDR (range));
406 int from1, to1;
407
408 do {
409 args[idx] = char_table_ref_and_range (fontset, from, &from1, &to1);
410 if (to < to1)
411 to1 = to;
412 char_table_set_range (fontset, from, to1,
413 NILP (args[idx]) ? args[1 - idx]
414 : Fvconcat (2, args));
415 from = to1 + 1;
416 } while (from < to);
417 }
418 else
419 {
420 args[idx] = FONTSET_FALLBACK (fontset);
421 FONTSET_FALLBACK (fontset)
422 = NILP (args[idx]) ? args[1 - idx] : Fvconcat (2, args);
423 }
424 return Qnil;
425 }
426
427
428 /* Update FONTSET_ELEMENT which has this form:
429 [CHARSET-ORDERED-LIST-TICK PREFERRED-CHARSET-ID PREFERRED-RFONT-DEF
430 RFONT-DEF0 RFONT-DEF1 ...].
431 Reorder RFONT-DEFs according to the current order of charset
432 (Vcharset_ordered_list), and update CHARSET-ORDERED-LIST-TICK to
433 the latest value. */
434
435 static void
436 reorder_font_vector (fontset_element)
437 Lisp_Object fontset_element;
438 {
439 Lisp_Object list, *new_vec;
440 Lisp_Object font_def;
441 int size;
442 int *charset_id_table;
443 int i, idx;
444
445 ASET (fontset_element, 0, make_number (charset_ordered_list_tick));
446 size = ASIZE (fontset_element) - 3;
447 if (size <= 1)
448 /* No need to reorder VEC. */
449 return;
450 charset_id_table = (int *) alloca (sizeof (int) * size);
451 new_vec = (Lisp_Object *) alloca (sizeof (Lisp_Object) * size);
452
453 /* At first, extract ENCODING (a chaset ID) from each FONT-DEF.
454 FONT-DEF has this form:
455 [FACE-ID FONT-INDEX [ FONT-SPEC ENCODING REPERTORY ]] */
456 for (i = 0; i < size; i++)
457 {
458 font_def = AREF (fontset_element, i + 3);
459 charset_id_table[i] = XINT (AREF (AREF (font_def, 2), 1));
460 }
461
462 /* Then, store FONT-DEFs in NEW_VEC in the correct order. */
463 for (idx = 0, list = Vcharset_ordered_list;
464 idx < size && CONSP (list); list = XCDR (list))
465 {
466 for (i = 0; i < size; i++)
467 if (charset_id_table[i] == XINT (XCAR (list)))
468 new_vec[idx++] = AREF (fontset_element, i + 3);
469 }
470
471 /* At last, update FONT-DEFs. */
472 for (i = 0; i < size; i++)
473 ASET (fontset_element, i + 3, new_vec[i]);
474 }
475
476
477 /* Load a font matching the font related attributes in FACE->lface and
478 font pattern in FONT_DEF of FONTSET, and return an index of the
479 font. FONT_DEF has this form:
480 [ FONT-SPEC ENCODING REPERTORY ]
481 If REPERTORY is nil, generate a char-table representing the font
482 repertory by looking into the font itself. */
483
484 static int
485 load_font_get_repertory (f, face, font_def, fontset)
486 FRAME_PTR f;
487 struct face *face;
488 Lisp_Object font_def;
489 Lisp_Object fontset;
490 {
491 char *font_name;
492 struct font_info *font_info;
493 int charset;
494
495 font_name = choose_face_font (f, face->lface, AREF (font_def, 0), NULL);
496 charset = XINT (AREF (font_def, 1));
497 if (! (font_info = fs_load_font (f, font_name, charset)))
498 return -1;
499
500 if (NILP (AREF (font_def, 2))
501 && NILP (Fassq (make_number (font_info->font_idx),
502 FONTSET_REPERTORY (fontset))))
503 {
504 /* We must look into the font to get the correct repertory as a
505 char-table. */
506 Lisp_Object repertory;
507
508 repertory = (*get_font_repertory_func) (f, font_info);
509 FONTSET_REPERTORY (fontset)
510 = Fcons (Fcons (make_number (font_info->font_idx), repertory),
511 FONTSET_REPERTORY (fontset));
512 }
513
514 return font_info->font_idx;
515 }
516
517
518 /* Return RFONT-DEF (vector) in the realized fontset FONTSET for the
519 character C. If the corresponding font is not yet opened, open it
520 (if FACE is not NULL) or return Qnil (if FACE is NULL).
521 If no proper font is found for C, return Qnil. */
522
523 static Lisp_Object
524 fontset_font (fontset, c, face, id)
525 Lisp_Object fontset;
526 int c;
527 struct face *face;
528 int id;
529 {
530 Lisp_Object base_fontset, elt, vec;
531 int i, from, to;
532 int font_idx;
533 FRAME_PTR f = XFRAME (FONTSET_FRAME (fontset));
534
535 base_fontset = FONTSET_BASE (fontset);
536 vec = CHAR_TABLE_REF (fontset, c);
537 if (EQ (vec, Qt))
538 goto try_fallback;
539
540 if (NILP (vec))
541 {
542 /* We have not yet decided a face for C. */
543 Lisp_Object range;
544
545 if (! face)
546 return Qnil;
547 elt = FONTSET_REF_AND_RANGE (base_fontset, c, from, to);
548 range = Fcons (make_number (from), make_number (to));
549 if (NILP (elt))
550 {
551 /* Record that we have no font for characters of this
552 range. */
553 vec = Qt;
554 FONTSET_SET (fontset, range, vec);
555 goto try_fallback;
556 }
557 /* Build a vector [ -1 -1 nil NEW-ELT0 NEW-ELT1 NEW-ELT2 ... ],
558 where the first -1 is to force reordering of NEW-ELTn,
559 NEW-ETLn is [nil nil AREF (elt, n) nil]. */
560 vec = Fmake_vector (make_number (ASIZE (elt) + 3), make_number (-1));
561 ASET (vec, 2, Qnil);
562 for (i = 0; i < ASIZE (elt); i++)
563 {
564 Lisp_Object tmp;
565
566 tmp = Fmake_vector (make_number (4), Qnil);
567 ASET (tmp, 2, AREF (elt, i));
568 ASET (vec, 3 + i, tmp);
569 }
570 /* Then store it in the fontset. */
571 FONTSET_SET (fontset, range, vec);
572 }
573
574 retry:
575 if (XINT (AREF (vec, 0)) != charset_ordered_list_tick)
576 /* The priority of charsets is changed after we selected a face
577 for C last time. */
578 reorder_font_vector (vec);
579
580 if (id < 0)
581 i = 3;
582 else if (id == XFASTINT (AREF (vec, 1)))
583 i = 2;
584 else
585 {
586 ASET (vec, 1, make_number (id));
587 for (i = 3; i < ASIZE (vec); i++)
588 if (id == XFASTINT (AREF (AREF (AREF (vec, i), 2), 1)))
589 break;
590 if (i < ASIZE (vec))
591 {
592 ASET (vec, 2, AREF (vec, i));
593 i = 2;
594 }
595 else
596 {
597 ASET (vec, 2, Qnil);
598 i = 3;
599 }
600 }
601
602 /* Find the first available font in the vector of RFONT-DEF. */
603 for (; i < ASIZE (vec); i++)
604 {
605 Lisp_Object font_def;
606
607 elt = AREF (vec, i);
608 if (NILP (elt))
609 continue;
610 /* ELT == [ FACE-ID FONT-INDEX FONT-DEF OPENED-FONT-NAME ] */
611 if (INTEGERP (AREF (elt, 1)) && XINT (AREF (elt, 1)) < 0)
612 /* We couldn't open this font last time. */
613 continue;
614
615 if (!face && NILP (AREF (elt, 1)))
616 /* We have not yet opened the font. */
617 return Qnil;
618
619 font_def = AREF (elt, 2);
620 /* FONT_DEF == [ FONT-SPEC ENCODING REPERTORY ] */
621 if (INTEGERP (AREF (font_def, 2)))
622 {
623 /* The repertory is specified by charset ID. */
624 struct charset *charset
625 = CHARSET_FROM_ID (XINT (AREF (font_def, 2)));
626
627 if (! CHAR_CHARSET_P (c, charset))
628 /* This font can't display C. */
629 continue;
630 }
631 else if (CHAR_TABLE_P (AREF (font_def, 2)))
632 {
633 /* The repertory is specified by a char table. */
634 if (NILP (CHAR_TABLE_REF (AREF (font_def, 2), c)))
635 /* This font can't display C. */
636 continue;
637 }
638 else
639 {
640 Lisp_Object slot;
641
642 if (! INTEGERP (AREF (elt, 1)))
643 {
644 /* We have not yet opened a font matching this spec.
645 Open the best matching font now and register the
646 repertory. */
647 struct font_info *font_info;
648
649 font_idx = load_font_get_repertory (f, face, font_def, fontset);
650 ASET (elt, 1, make_number (font_idx));
651 if (font_idx < 0)
652 /* This means that we couldn't find a font matching
653 FONT_DEF. */
654 continue;
655 font_info = (*get_font_info_func) (f, font_idx);
656 ASET (elt, 3, build_string (font_info->full_name));
657 }
658
659 slot = Fassq (AREF (elt, 1), FONTSET_REPERTORY (fontset));
660 xassert (CONSP (slot));
661 if (NILP (CHAR_TABLE_REF (XCDR (slot), c)))
662 /* This font can't display C. */
663 continue;
664 }
665
666 /* Now we have decided to use this font spec to display C. */
667 if (! INTEGERP (AREF (elt, 1)))
668 {
669 /* But not yet opened the best matching font. */
670 struct font_info *font_info;
671
672 font_idx = load_font_get_repertory (f, face, font_def, fontset);
673 ASET (elt, 1, make_number (font_idx));
674 if (font_idx < 0)
675 /* Can't open it. Try the other one. */
676 continue;
677 font_info = (*get_font_info_func) (f, font_idx);
678 ASET (elt, 3, build_string (font_info->full_name));
679 }
680
681 /* Now we have the opened font. */
682 return elt;
683 }
684
685 try_fallback:
686 if (! EQ (vec, FONTSET_FALLBACK (fontset)))
687 {
688 vec = FONTSET_FALLBACK (fontset);
689 if (VECTORP (vec))
690 goto retry;
691 if (EQ (vec, Qt))
692 goto try_default;
693 elt = FONTSET_FALLBACK (base_fontset);
694 if (! NILP (elt))
695 {
696 vec = Fmake_vector (make_number (ASIZE (elt) + 3), make_number (-1));
697 ASET (vec, 2, Qnil);
698 for (i = 0; i < ASIZE (elt); i++)
699 {
700 Lisp_Object tmp;
701
702 tmp = Fmake_vector (make_number (4), Qnil);
703 ASET (tmp, 2, AREF (elt, i));
704 ASET (vec, 3 + i, tmp);
705 }
706 FONTSET_FALLBACK (fontset) = vec;
707 goto retry;
708 }
709 /* Record that this fontset has no fallback fonts. */
710 FONTSET_FALLBACK (fontset) = Qt;
711 }
712
713 /* Try the default fontset. */
714 try_default:
715 if (! EQ (base_fontset, Vdefault_fontset))
716 {
717 if (NILP (FONTSET_DEFAULT (fontset)))
718 FONTSET_DEFAULT (fontset)
719 = make_fontset (FONTSET_FRAME (fontset), Qnil, Vdefault_fontset);
720 return fontset_font (FONTSET_DEFAULT (fontset), c, face, id);
721 }
722 return Qnil;
723 }
724
725
726 /* Return a newly created fontset with NAME. If BASE is nil, make a
727 base fontset. Otherwise make a realized fontset whose base is
728 BASE. */
729
730 static Lisp_Object
731 make_fontset (frame, name, base)
732 Lisp_Object frame, name, base;
733 {
734 Lisp_Object fontset;
735 int size = ASIZE (Vfontset_table);
736 int id = next_fontset_id;
737
738 /* Find a free slot in Vfontset_table. Usually, next_fontset_id is
739 the next available fontset ID. So it is expected that this loop
740 terminates quickly. In addition, as the last element of
741 Vfontset_table is always nil, we don't have to check the range of
742 id. */
743 while (!NILP (AREF (Vfontset_table, id))) id++;
744
745 if (id + 1 == size)
746 {
747 /* We must grow Vfontset_table. */
748 Lisp_Object tem;
749 int i;
750
751 tem = Fmake_vector (make_number (size + 32), Qnil);
752 for (i = 0; i < size; i++)
753 AREF (tem, i) = AREF (Vfontset_table, i);
754 Vfontset_table = tem;
755 }
756
757 fontset = Fmake_char_table (Qfontset, Qnil);
758
759 FONTSET_ID (fontset) = make_number (id);
760 if (NILP (base))
761 {
762 FONTSET_NAME (fontset) = name;
763 }
764 else
765 {
766 FONTSET_NAME (fontset) = Qnil;
767 FONTSET_FRAME (fontset) = frame;
768 FONTSET_BASE (fontset) = base;
769 }
770
771 ASET (Vfontset_table, id, fontset);
772 next_fontset_id = id + 1;
773 return fontset;
774 }
775
776
777 \f
778 /********** INTERFACES TO xfaces.c, xfns.c, and dispextern.h **********/
779
780 /* Return the name of the fontset who has ID. */
781
782 Lisp_Object
783 fontset_name (id)
784 int id;
785 {
786 Lisp_Object fontset;
787
788 fontset = FONTSET_FROM_ID (id);
789 return FONTSET_NAME (fontset);
790 }
791
792
793 /* Return the ASCII font name of the fontset who has ID. */
794
795 Lisp_Object
796 fontset_ascii (id)
797 int id;
798 {
799 Lisp_Object fontset, elt;
800
801 fontset= FONTSET_FROM_ID (id);
802 elt = FONTSET_ASCII (fontset);
803 /* It is assured that ELT is always a string (i.e. fontname
804 pattern). */
805 return elt;
806 }
807
808
809 /* Free fontset of FACE defined on frame F. Called from
810 free_realized_face. */
811
812 void
813 free_face_fontset (f, face)
814 FRAME_PTR f;
815 struct face *face;
816 {
817 Lisp_Object fontset;
818
819 fontset = AREF (Vfontset_table, face->fontset);
820 xassert (!NILP (fontset) && ! BASE_FONTSET_P (fontset));
821 xassert (f == XFRAME (FONTSET_FRAME (fontset)));
822 ASET (Vfontset_table, face->fontset, Qnil);
823 if (face->fontset < next_fontset_id)
824 next_fontset_id = face->fontset;
825 if (! NILP (FONTSET_DEFAULT (fontset)))
826 {
827 int id = XINT (FONTSET_ID (FONTSET_DEFAULT (fontset)));
828
829 fontset = AREF (Vfontset_table, id);
830 xassert (!NILP (fontset) && ! BASE_FONTSET_P (fontset));
831 xassert (f == XFRAME (FONTSET_FRAME (fontset)));
832 ASET (Vfontset_table, id, Qnil);
833 if (id < next_fontset_id)
834 next_fontset_id = face->fontset;
835 }
836 }
837
838
839 /* Return 1 iff FACE is suitable for displaying character C.
840 Otherwise return 0. Called from the macro FACE_SUITABLE_FOR_CHAR_P
841 when C is not an ASCII character. */
842
843 int
844 face_suitable_for_char_p (face, c)
845 struct face *face;
846 int c;
847 {
848 Lisp_Object fontset, rfont_def;
849
850 fontset = FONTSET_FROM_ID (face->fontset);
851 rfont_def = fontset_font (fontset, c, NULL, -1);
852 return (VECTORP (rfont_def)
853 && INTEGERP (AREF (rfont_def, 0))
854 && face->id == XINT (AREF (rfont_def, 0)));
855 }
856
857
858 /* Return ID of face suitable for displaying character C on frame F.
859 FACE must be reazlied for ASCII characters in advance. Called from
860 the macro FACE_FOR_CHAR. */
861
862 int
863 face_for_char (f, face, c, pos, object)
864 FRAME_PTR f;
865 struct face *face;
866 int c, pos;
867 Lisp_Object object;
868 {
869 Lisp_Object fontset, charset, rfont_def;
870 int face_id;
871 int id;
872
873 if (ASCII_CHAR_P (c))
874 return face->ascii_face->id;
875
876 xassert (fontset_id_valid_p (face->fontset));
877 fontset = FONTSET_FROM_ID (face->fontset);
878 xassert (!BASE_FONTSET_P (fontset));
879 if (pos < 0)
880 id = -1;
881 else
882 {
883 charset = Fget_char_property (make_number (pos), Qcharset, object);
884 if (NILP (charset))
885 id = -1;
886 else if (CHARSETP (charset))
887 id = XINT (CHARSET_SYMBOL_ID (charset));
888 }
889 rfont_def = fontset_font (fontset, c, face, id);
890 if (VECTORP (rfont_def))
891 {
892 if (NILP (AREF (rfont_def, 0)))
893 {
894 /* We have not yet made a realized face that uses this font. */
895 int font_idx = XINT (AREF (rfont_def, 1));
896
897 face_id = lookup_non_ascii_face (f, font_idx, face);
898 ASET (rfont_def, 0, make_number (face_id));
899 }
900 return XINT (AREF (rfont_def, 0));
901 }
902
903 if (NILP (FONTSET_NOFONT_FACE (fontset)))
904 {
905 face_id = lookup_non_ascii_face (f, -1, face);
906 FONTSET_NOFONT_FACE (fontset) = make_number (face_id);
907 }
908 return XINT (FONTSET_NOFONT_FACE (fontset));
909 }
910
911
912 /* Make a realized fontset for ASCII face FACE on frame F from the
913 base fontset BASE_FONTSET_ID. If BASE_FONTSET_ID is -1, use the
914 default fontset as the base. Value is the id of the new fontset.
915 Called from realize_x_face. */
916
917 int
918 make_fontset_for_ascii_face (f, base_fontset_id, face)
919 FRAME_PTR f;
920 int base_fontset_id;
921 struct face *face;
922 {
923 Lisp_Object base_fontset, fontset, frame;
924
925 XSETFRAME (frame, f);
926 if (base_fontset_id >= 0)
927 {
928 base_fontset = FONTSET_FROM_ID (base_fontset_id);
929 if (!BASE_FONTSET_P (base_fontset))
930 base_fontset = FONTSET_BASE (base_fontset);
931 xassert (BASE_FONTSET_P (base_fontset));
932 if (! BASE_FONTSET_P (base_fontset))
933 abort ();
934 }
935 else
936 base_fontset = Vdefault_fontset;
937
938 fontset = make_fontset (frame, Qnil, base_fontset);
939 {
940 Lisp_Object elt, rfont_def;
941
942 elt = FONTSET_REF (base_fontset, 0);
943 xassert (VECTORP (elt) && ASIZE (elt) > 0);
944 rfont_def = Fmake_vector (make_number (4), Qnil);
945 ASET (rfont_def, 0, make_number (face->id));
946 ASET (rfont_def, 1, make_number (face->font_info_id));
947 ASET (rfont_def, 2, AREF (elt, 0));
948 ASET (rfont_def, 3, build_string (face->font_name));
949 elt = Fmake_vector (make_number (4), Qnil);
950 ASET (elt, 0, make_number (charset_ordered_list_tick));
951 ASET (elt, 1, make_number (charset_ascii));
952 ASET (elt, 2, rfont_def);
953 ASET (elt, 3, rfont_def);
954 char_table_set_range (fontset, 0, 127, elt);
955 }
956 return XINT (FONTSET_ID (fontset));
957 }
958
959
960 #if defined(WINDOWSNT) && defined (_MSC_VER)
961 #pragma optimize("", off)
962 #endif
963
964 /* Load a font named FONTNAME on frame F. Return a pointer to the
965 struct font_info of the loaded font. If loading fails, return
966 NULL. CHARSET is an ID of charset to encode characters for this
967 font. If it is -1, find one from Vfont_encoding_alist. */
968
969 struct font_info *
970 fs_load_font (f, fontname, charset)
971 FRAME_PTR f;
972 char *fontname;
973 int charset;
974 {
975 struct font_info *fontp;
976 Lisp_Object fullname;
977
978 if (!fontname)
979 /* No way to get fontname. */
980 return NULL;
981
982 fontp = (*load_font_func) (f, fontname, 0);
983 if (! fontp || fontp->charset >= 0)
984 return fontp;
985
986 fontname = fontp->full_name;
987 fullname = build_string (fontp->full_name);
988
989 if (charset < 0)
990 {
991 Lisp_Object charset_symbol;
992
993 charset_symbol = find_font_encoding (fullname);
994 if (CONSP (charset_symbol))
995 charset_symbol = XCAR (charset_symbol);
996 charset = XINT (CHARSET_SYMBOL_ID (charset_symbol));
997 }
998 fontp->charset = charset;
999 fontp->vertical_centering = 0;
1000 fontp->font_encoder = NULL;
1001
1002 if (charset != charset_ascii)
1003 {
1004 fontp->vertical_centering
1005 = (STRINGP (Vvertical_centering_font_regexp)
1006 && (fast_string_match_ignore_case
1007 (Vvertical_centering_font_regexp, fullname) >= 0));
1008
1009 if (find_ccl_program_func)
1010 (*find_ccl_program_func) (fontp);
1011 }
1012
1013 return fontp;
1014 }
1015
1016 #if defined(WINDOWSNT) && defined (_MSC_VER)
1017 #pragma optimize("", on)
1018 #endif
1019
1020 \f
1021 /* Return ENCODING or a cons of ENCODING and REPERTORY of the font
1022 FONTNAME. ENCODING is a charset symbol that specifies the encoding
1023 of the font. REPERTORY is a charset symbol or nil. */
1024
1025
1026 static Lisp_Object
1027 find_font_encoding (fontname)
1028 Lisp_Object fontname;
1029 {
1030 Lisp_Object tail, elt;
1031
1032 for (tail = Vfont_encoding_alist; CONSP (tail); tail = XCDR (tail))
1033 {
1034 elt = XCAR (tail);
1035 if (CONSP (elt)
1036 && STRINGP (XCAR (elt))
1037 && fast_string_match_ignore_case (XCAR (elt), fontname) >= 0
1038 && (SYMBOLP (XCDR (elt))
1039 ? CHARSETP (XCDR (elt))
1040 : CONSP (XCDR (elt)) && CHARSETP (XCAR (XCDR (elt)))))
1041 return (XCDR (elt));
1042 }
1043 /* We don't know the encoding of this font. Let's assume `ascii'. */
1044 return Qascii;
1045 }
1046
1047
1048 /* Cache data used by fontset_pattern_regexp. The car part is a
1049 pattern string containing at least one wild card, the cdr part is
1050 the corresponding regular expression. */
1051 static Lisp_Object Vcached_fontset_data;
1052
1053 #define CACHED_FONTSET_NAME (SDATA (XCAR (Vcached_fontset_data)))
1054 #define CACHED_FONTSET_REGEX (XCDR (Vcached_fontset_data))
1055
1056 /* If fontset name PATTERN contains any wild card, return regular
1057 expression corresponding to PATTERN. */
1058
1059 static Lisp_Object
1060 fontset_pattern_regexp (pattern)
1061 Lisp_Object pattern;
1062 {
1063 if (!index (SDATA (pattern), '*')
1064 && !index (SDATA (pattern), '?'))
1065 /* PATTERN does not contain any wild cards. */
1066 return Qnil;
1067
1068 if (!CONSP (Vcached_fontset_data)
1069 || strcmp (SDATA (pattern), CACHED_FONTSET_NAME))
1070 {
1071 /* We must at first update the cached data. */
1072 unsigned char *regex, *p0, *p1;
1073 int ndashes = 0, nstars = 0;
1074
1075 for (p0 = SDATA (pattern); *p0; p0++)
1076 {
1077 if (*p0 == '-')
1078 ndashes++;
1079 else if (*p0 == '*')
1080 nstars++;
1081 }
1082
1083 /* If PATTERN is not full XLFD we conert "*" to ".*". Otherwise
1084 we convert "*" to "[^-]*" which is much faster in regular
1085 expression matching. */
1086 if (ndashes < 14)
1087 p1 = regex = (unsigned char *) alloca (SBYTES (pattern) + 2 * nstars + 1);
1088 else
1089 p1 = regex = (unsigned char *) alloca (SBYTES (pattern) + 5 * nstars + 1);
1090
1091 *p1++ = '^';
1092 for (p0 = SDATA (pattern); *p0; p0++)
1093 {
1094 if (*p0 == '*')
1095 {
1096 if (ndashes < 14)
1097 *p1++ = '.';
1098 else
1099 *p1++ = '[', *p1++ = '^', *p1++ = '-', *p1++ = ']';
1100 *p1++ = '*';
1101 }
1102 else if (*p0 == '?')
1103 *p1++ = '.';
1104 else
1105 *p1++ = *p0;
1106 }
1107 *p1++ = '$';
1108 *p1++ = 0;
1109
1110 Vcached_fontset_data = Fcons (build_string (SDATA (pattern)),
1111 build_string (regex));
1112 }
1113
1114 return CACHED_FONTSET_REGEX;
1115 }
1116
1117 /* Return ID of the base fontset named NAME. If there's no such
1118 fontset, return -1. NAME_PATTERN specifies how to treat NAME as this:
1119 0: pattern containing '*' and '?' as wildcards
1120 1: regular expression
1121 2: literal fontset name
1122 */
1123
1124 int
1125 fs_query_fontset (name, name_pattern)
1126 Lisp_Object name;
1127 int name_pattern;
1128 {
1129 Lisp_Object tem;
1130 int i;
1131
1132 name = Fdowncase (name);
1133 if (name_pattern != 1)
1134 {
1135 tem = Frassoc (name, Vfontset_alias_alist);
1136 if (NILP (tem))
1137 tem = Fassoc (name, Vfontset_alias_alist);
1138 if (CONSP (tem) && STRINGP (XCAR (tem)))
1139 name = XCAR (tem);
1140 else if (name_pattern == 0)
1141 {
1142 tem = fontset_pattern_regexp (name);
1143 if (STRINGP (tem))
1144 {
1145 name = tem;
1146 name_pattern = 1;
1147 }
1148 }
1149 }
1150
1151 for (i = 0; i < ASIZE (Vfontset_table); i++)
1152 {
1153 Lisp_Object fontset, this_name;
1154
1155 fontset = FONTSET_FROM_ID (i);
1156 if (NILP (fontset)
1157 || !BASE_FONTSET_P (fontset))
1158 continue;
1159
1160 this_name = FONTSET_NAME (fontset);
1161 if (name_pattern == 1
1162 ? fast_string_match (name, this_name) >= 0
1163 : !strcmp (SDATA (name), SDATA (this_name)))
1164 return i;
1165 }
1166 return -1;
1167 }
1168
1169
1170 DEFUN ("query-fontset", Fquery_fontset, Squery_fontset, 1, 2, 0,
1171 doc: /* Return the name of a fontset that matches PATTERN.
1172 The value is nil if there is no matching fontset.
1173 PATTERN can contain `*' or `?' as a wildcard
1174 just as X font name matching algorithm allows.
1175 If REGEXPP is non-nil, PATTERN is a regular expression. */)
1176 (pattern, regexpp)
1177 Lisp_Object pattern, regexpp;
1178 {
1179 Lisp_Object fontset;
1180 int id;
1181
1182 (*check_window_system_func) ();
1183
1184 CHECK_STRING (pattern);
1185
1186 if (SCHARS (pattern) == 0)
1187 return Qnil;
1188
1189 id = fs_query_fontset (pattern, !NILP (regexpp));
1190 if (id < 0)
1191 return Qnil;
1192
1193 fontset = FONTSET_FROM_ID (id);
1194 return FONTSET_NAME (fontset);
1195 }
1196
1197 /* Return a list of base fontset names matching PATTERN on frame F. */
1198
1199 Lisp_Object
1200 list_fontsets (f, pattern, size)
1201 FRAME_PTR f;
1202 Lisp_Object pattern;
1203 int size;
1204 {
1205 Lisp_Object frame, regexp, val;
1206 int id;
1207
1208 XSETFRAME (frame, f);
1209
1210 regexp = fontset_pattern_regexp (pattern);
1211 val = Qnil;
1212
1213 for (id = 0; id < ASIZE (Vfontset_table); id++)
1214 {
1215 Lisp_Object fontset, name;
1216
1217 fontset = FONTSET_FROM_ID (id);
1218 if (NILP (fontset)
1219 || !BASE_FONTSET_P (fontset)
1220 || !EQ (frame, FONTSET_FRAME (fontset)))
1221 continue;
1222 name = FONTSET_NAME (fontset);
1223
1224 if (STRINGP (regexp)
1225 ? (fast_string_match (regexp, name) < 0)
1226 : strcmp (SDATA (pattern), SDATA (name)))
1227 continue;
1228
1229 val = Fcons (Fcopy_sequence (FONTSET_NAME (fontset)), val);
1230 }
1231
1232 return val;
1233 }
1234
1235
1236 /* Free all realized fontsets whose base fontset is BASE. */
1237
1238 static void
1239 free_realized_fontsets (base)
1240 Lisp_Object base;
1241 {
1242 #if 0
1243 int id;
1244
1245 /* For the moment, this doesn't work because free_realized_face
1246 doesn't remove FACE from a cache. Until we find a solution, we
1247 suppress this code, and simply use Fclear_face_cache even though
1248 that is not efficient. */
1249 BLOCK_INPUT;
1250 for (id = 0; id < ASIZE (Vfontset_table); id++)
1251 {
1252 Lisp_Object this = AREF (Vfontset_table, id);
1253
1254 if (EQ (FONTSET_BASE (this), base))
1255 {
1256 Lisp_Object tail;
1257
1258 for (tail = FONTSET_FACE_ALIST (this); CONSP (tail);
1259 tail = XCDR (tail))
1260 {
1261 FRAME_PTR f = XFRAME (FONTSET_FRAME (this));
1262 int face_id = XINT (XCDR (XCAR (tail)));
1263 struct face *face = FACE_FROM_ID (f, face_id);
1264
1265 /* Face THIS itself is also freed by the following call. */
1266 free_realized_face (f, face);
1267 }
1268 }
1269 }
1270 UNBLOCK_INPUT;
1271 #else /* not 0 */
1272 Fclear_face_cache (Qt);
1273 #endif /* not 0 */
1274 }
1275
1276
1277 /* Check validity of NAME as a fontset name and return the
1278 corresponding fontset. If not valid, signal an error.
1279 If NAME is t, return Vdefault_fontset. */
1280
1281 static Lisp_Object
1282 check_fontset_name (name)
1283 Lisp_Object name;
1284 {
1285 int id;
1286
1287 if (EQ (name, Qt))
1288 return Vdefault_fontset;
1289
1290 CHECK_STRING (name);
1291 /* First try NAME as literal. */
1292 id = fs_query_fontset (name, 2);
1293 if (id < 0)
1294 /* For backward compatibility, try again NAME as pattern. */
1295 id = fs_query_fontset (name, 0);
1296 if (id < 0)
1297 error ("Fontset `%s' does not exist", SDATA (name));
1298 return FONTSET_FROM_ID (id);
1299 }
1300
1301 static void
1302 accumulate_script_ranges (arg, range, val)
1303 Lisp_Object arg, range, val;
1304 {
1305 if (EQ (XCAR (arg), val))
1306 {
1307 if (CONSP (range))
1308 XSETCDR (arg, Fcons (Fcons (XCAR (range), XCDR (range)), XCDR (arg)));
1309 else
1310 XSETCDR (arg, Fcons (Fcons (range, range), XCDR (arg)));
1311 }
1312 }
1313
1314
1315 /* Return an ASCII font name generated from fontset name NAME and
1316 ASCII font specification ASCII_SPEC. NAME is a string conforming
1317 to XLFD. ASCII_SPEC is a vector:
1318 [FAMILY WEIGHT SLANT SWIDTH ADSTYLE REGISTRY]. */
1319
1320 static INLINE Lisp_Object
1321 generate_ascii_font_name (name, ascii_spec)
1322 Lisp_Object name, ascii_spec;
1323 {
1324 Lisp_Object vec;
1325 int i;
1326
1327 vec = split_font_name_into_vector (name);
1328 for (i = FONT_SPEC_FAMILY_INDEX; i <= FONT_SPEC_ADSTYLE_INDEX; i++)
1329 if (! NILP (AREF (ascii_spec, i)))
1330 ASET (vec, 1 + i, AREF (ascii_spec, i));
1331 if (! NILP (AREF (ascii_spec, FONT_SPEC_REGISTRY_INDEX)))
1332 ASET (vec, 12, AREF (ascii_spec, FONT_SPEC_REGISTRY_INDEX));
1333 return build_font_name_from_vector (vec);
1334 }
1335
1336 /* Variables referred in set_fontset_font. They are set before
1337 map_charset_chars is called in Fset_fontset_font. */
1338 static Lisp_Object font_def_arg, add_arg;
1339 static int from_arg, to_arg;
1340
1341 /* Callback function for map_charset_chars in Fset_fontset_font. In
1342 FONTSET, set font_def_arg in a fashion specified by add_arg for
1343 characters in RANGE while ignoring the range between from_arg and
1344 to_arg. */
1345
1346 static void
1347 set_fontset_font (fontset, range)
1348 Lisp_Object fontset, range;
1349 {
1350 if (from_arg < to_arg)
1351 {
1352 int from = XINT (XCAR (range)), to = XINT (XCDR (range));
1353
1354 if (from < from_arg)
1355 {
1356 if (to > to_arg)
1357 {
1358 Lisp_Object range2;
1359
1360 range2 = Fcons (make_number (to_arg), XCDR (range));
1361 FONTSET_ADD (fontset, range, font_def_arg, add_arg);
1362 to = to_arg;
1363 }
1364 if (to > from_arg)
1365 range = Fcons (XCAR (range), make_number (from_arg));
1366 }
1367 else if (to <= to_arg)
1368 return;
1369 else
1370 {
1371 if (from < to_arg)
1372 range = Fcons (make_number (to_arg), XCDR (range));
1373 }
1374 }
1375 FONTSET_ADD (fontset, range, font_def_arg, add_arg);
1376 }
1377
1378
1379 DEFUN ("set-fontset-font", Fset_fontset_font, Sset_fontset_font, 3, 5, 0,
1380 doc: /*
1381 Modify fontset NAME to use FONT-SPEC for TARGET characters.
1382
1383 TARGET may be a cons; (FROM . TO), where FROM and TO are characters.
1384 In that case, use FONT-SPEC for all characters in the range FROM and
1385 TO (inclusive).
1386
1387 TARGET may be a script name symbol. In that case, use FONT-SPEC for
1388 all characters that belong to the script.
1389
1390 TARGET may be a charset. In that case, use FONT-SPEC for all
1391 characters in the charset.
1392
1393 TARGET may be nil. In that case, use FONT-SPEC for any characters for
1394 that no FONT-SPEC is specified.
1395
1396 FONT-SPEC may one of these:
1397 * A cons (FAMILY . REGISTRY), where FAMILY is a font family name and
1398 REGISTRY is a font registry name. FAMILY may contains foundry
1399 name, and REGISTRY may contains encoding name.
1400 * A font name string.
1401
1402 Optional 4th argument FRAME, if non-nil, is a frame. This argument is
1403 kept for backward compatibility and has no meaning.
1404
1405 Optional 5th argument ADD, if non-nil, specifies how to add FONT-SPEC
1406 to the font specifications for TARGET previously set. If it is
1407 `prepend', FONT-SPEC is prepended. If it is `append', FONT-SPEC is
1408 appended. By default, FONT-SPEC overrides the previous settings. */)
1409 (name, target, font_spec, frame, add)
1410 Lisp_Object name, target, font_spec, frame, add;
1411 {
1412 Lisp_Object fontset;
1413 Lisp_Object font_def, registry, family;
1414 Lisp_Object encoding, repertory;
1415 Lisp_Object range_list;
1416 struct charset *charset = NULL;
1417
1418 fontset = check_fontset_name (name);
1419
1420 /* The arg FRAME is kept for backward compatibility. We only check
1421 the validity. */
1422 if (!NILP (frame))
1423 CHECK_LIVE_FRAME (frame);
1424
1425 if (VECTORP (font_spec))
1426 {
1427 /* FONT_SPEC should have this form:
1428 [ FAMILY WEIGHT SLANT WIDTH ADSTYLE REGISTRY ]
1429 This is a feature not yet documented because WEIGHT thru
1430 ADSTYLE are ignored for the moment. */
1431 int j;
1432
1433 if (ASIZE (font_spec) != FONT_SPEC_MAX_INDEX)
1434 args_out_of_range (make_number (FONT_SPEC_MAX_INDEX),
1435 make_number (ASIZE (font_spec)));
1436
1437 font_spec = Fcopy_sequence (font_spec);
1438 for (j = 0; j < FONT_SPEC_MAX_INDEX - 1; j++)
1439 if (! NILP (AREF (font_spec, j)))
1440 {
1441 CHECK_STRING (AREF (font_spec, j));
1442 ASET (font_spec, j, Fdowncase (AREF (font_spec, j)));
1443 }
1444 /* REGISTRY should not be omitted. */
1445 CHECK_STRING (AREF (font_spec, FONT_SPEC_REGISTRY_INDEX));
1446 registry = Fdowncase (AREF (font_spec, FONT_SPEC_REGISTRY_INDEX));
1447 ASET (font_spec, FONT_SPEC_REGISTRY_INDEX, registry);
1448
1449 }
1450 else if (CONSP (font_spec))
1451 {
1452 family = XCAR (font_spec);
1453 registry = XCDR (font_spec);
1454
1455 if (! NILP (family))
1456 {
1457 CHECK_STRING (family);
1458 family = Fdowncase (family);
1459 }
1460 CHECK_STRING (registry);
1461 registry = Fdowncase (registry);
1462 font_spec = Fmake_vector (make_number (FONT_SPEC_MAX_INDEX), Qnil);
1463 ASET (font_spec, FONT_SPEC_FAMILY_INDEX, family);
1464 ASET (font_spec, FONT_SPEC_REGISTRY_INDEX, registry);
1465 }
1466 else
1467 {
1468 CHECK_STRING (font_spec);
1469 font_spec = Fdowncase (font_spec);
1470 }
1471
1472 if (STRINGP (font_spec))
1473 encoding = find_font_encoding (font_spec);
1474 else
1475 encoding = find_font_encoding (concat2 (family, registry));
1476 if (SYMBOLP (encoding))
1477 {
1478 CHECK_CHARSET (encoding);
1479 encoding = repertory = CHARSET_SYMBOL_ID (encoding);
1480 }
1481 else
1482 {
1483 repertory = XCDR (encoding);
1484 encoding = XCAR (encoding);
1485 CHECK_CHARSET (encoding);
1486 encoding = CHARSET_SYMBOL_ID (encoding);
1487 if (! NILP (repertory) && SYMBOLP (repertory))
1488 {
1489 CHECK_CHARSET (repertory);
1490 repertory = CHARSET_SYMBOL_ID (repertory);
1491 }
1492 }
1493 font_def = Fmake_vector (make_number (3), font_spec);
1494 ASET (font_def, 1, encoding);
1495 ASET (font_def, 2, repertory);
1496
1497 if (CHARACTERP (target))
1498 range_list = Fcons (Fcons (target, target), Qnil);
1499 else if (CONSP (target))
1500 {
1501 Lisp_Object from, to;
1502
1503 from = Fcar (target);
1504 to = Fcdr (target);
1505 CHECK_CHARACTER (from);
1506 CHECK_CHARACTER (to);
1507 range_list = Fcons (target, Qnil);
1508 }
1509 else if (SYMBOLP (target) && !NILP (target))
1510 {
1511 Lisp_Object script_list;
1512 Lisp_Object val;
1513
1514 range_list = Qnil;
1515 script_list = XCHAR_TABLE (Vchar_script_table)->extras[0];
1516 if (! NILP (Fmemq (target, script_list)))
1517 {
1518 val = Fcons (target, Qnil);
1519 map_char_table (accumulate_script_ranges, Qnil, Vchar_script_table,
1520 val);
1521 range_list = XCDR (val);
1522 }
1523 if (CHARSETP (target))
1524 {
1525 if (EQ (target, Qascii))
1526 {
1527 if (VECTORP (font_spec))
1528 font_spec = generate_ascii_font_name (FONTSET_NAME (fontset),
1529 font_spec);
1530 FONTSET_ASCII (fontset) = font_spec;
1531 range_list = Fcons (Fcons (make_number (0), make_number (127)),
1532 Qnil);
1533 }
1534 else
1535 {
1536 CHECK_CHARSET_GET_CHARSET (target, charset);
1537 }
1538 }
1539 else if (NILP (range_list))
1540 error ("Invalid script or charset name: %s",
1541 SDATA (SYMBOL_NAME (target)));
1542 }
1543 else if (NILP (target))
1544 range_list = Fcons (Qnil, Qnil);
1545 else
1546 error ("Invalid target for setting a font");
1547
1548
1549 if (charset)
1550 {
1551 font_def_arg = font_def;
1552 add_arg = add;
1553 if (NILP (range_list))
1554 from_arg = to_arg = 0;
1555 else
1556 from_arg = XINT (XCAR (XCAR (range_list))),
1557 to_arg = XINT (XCDR (XCAR (range_list)));
1558
1559 map_charset_chars (set_fontset_font, Qnil, fontset, charset,
1560 CHARSET_MIN_CODE (charset),
1561 CHARSET_MAX_CODE (charset));
1562 }
1563 for (; CONSP (range_list); range_list = XCDR (range_list))
1564 FONTSET_ADD (fontset, XCAR (range_list), font_def, add);
1565
1566 /* Free all realized fontsets whose base is FONTSET. This way, the
1567 specified character(s) are surely redisplayed by a correct
1568 font. */
1569 free_realized_fontsets (fontset);
1570
1571 return Qnil;
1572 }
1573
1574
1575 DEFUN ("new-fontset", Fnew_fontset, Snew_fontset, 2, 2, 0,
1576 doc: /* Create a new fontset NAME from font information in FONTLIST.
1577
1578 FONTLIST is an alist of scripts vs the corresponding font specification list.
1579 Each element of FONTLIST has the form (SCRIPT FONT-SPEC ...), where a
1580 character of SCRIPT is displayed by a font that matches one of
1581 FONT-SPEC.
1582
1583 SCRIPT is a symbol that appears in the first extra slot of the
1584 char-table `char-script-table'.
1585
1586 FONT-SPEC is a vector, a cons, or a string. See the documentation of
1587 `set-fontset-font' for the meaning. */)
1588 (name, fontlist)
1589 Lisp_Object name, fontlist;
1590 {
1591 Lisp_Object fontset;
1592 Lisp_Object val;
1593 int id;
1594
1595 CHECK_STRING (name);
1596 CHECK_LIST (fontlist);
1597
1598 id = fs_query_fontset (name, 0);
1599 if (id < 0)
1600 {
1601 name = Fdowncase (name);
1602 val = split_font_name_into_vector (name);
1603 if (NILP (val) || NILP (AREF (val, 12)) || NILP (AREF (val, 13)))
1604 error ("Fontset name must be in XLFD format");
1605 if (strcmp (SDATA (AREF (val, 12)), "fontset"))
1606 error ("Registry field of fontset name must be \"fontset\"");
1607 Vfontset_alias_alist
1608 = Fcons (Fcons (name,
1609 concat2 (concat2 (AREF (val, 12), build_string ("-")),
1610 AREF (val, 13))),
1611 Vfontset_alias_alist);
1612 ASET (val, 12, build_string ("iso8859-1"));
1613 fontset = make_fontset (Qnil, name, Qnil);
1614 FONTSET_ASCII (fontset) = build_font_name_from_vector (val);
1615 }
1616 else
1617 {
1618 fontset = FONTSET_FROM_ID (id);;
1619 free_realized_fontsets (fontset);
1620 Fset_char_table_range (fontset, Qt, Qnil);
1621 }
1622
1623 for (; ! NILP (fontlist); fontlist = Fcdr (fontlist))
1624 {
1625 Lisp_Object elt, script;
1626
1627 elt = Fcar (fontlist);
1628 script = Fcar (elt);
1629 elt = Fcdr (elt);
1630 if (CONSP (elt) && (NILP (XCDR (elt)) || CONSP (XCDR (elt))))
1631 for (; CONSP (elt); elt = XCDR (elt))
1632 Fset_fontset_font (name, script, XCAR (elt), Qnil, Qappend);
1633 else
1634 Fset_fontset_font (name, script, elt, Qnil, Qappend);
1635 }
1636 return name;
1637 }
1638
1639
1640 /* Alist of automatically created fontsets. Each element is a cons
1641 (FONTNAME . FONTSET-ID). */
1642 static Lisp_Object auto_fontset_alist;
1643
1644 int
1645 new_fontset_from_font_name (Lisp_Object fontname)
1646 {
1647 Lisp_Object val;
1648 Lisp_Object name;
1649 Lisp_Object vec;
1650 int id;
1651
1652 fontname = Fdowncase (fontname);
1653 val = Fassoc (fontname, auto_fontset_alist);
1654 if (CONSP (val))
1655 return XINT (XCDR (val));
1656
1657 vec = split_font_name_into_vector (fontname);
1658 if ( NILP (vec))
1659 vec = Fmake_vector (make_number (14), build_string (""));
1660 ASET (vec, 12, build_string ("fontset"));
1661 if (NILP (auto_fontset_alist))
1662 {
1663 ASET (vec, 13, build_string ("startup"));
1664 name = build_font_name_from_vector (vec);
1665 }
1666 else
1667 {
1668 char temp[20];
1669 int len = XINT (Flength (auto_fontset_alist));
1670
1671 sprintf (temp, "auto%d", len);
1672 ASET (vec, 13, build_string (temp));
1673 name = build_font_name_from_vector (vec);
1674 }
1675 name = Fnew_fontset (name, list2 (list2 (Qascii, fontname),
1676 list2 (Fcons (make_number (0),
1677 make_number (MAX_CHAR)),
1678 fontname)));
1679 id = fs_query_fontset (name, 0);
1680 auto_fontset_alist
1681 = Fcons (Fcons (fontname, make_number (id)), auto_fontset_alist);
1682 return id;
1683 }
1684
1685
1686 DEFUN ("font-info", Ffont_info, Sfont_info, 1, 2, 0,
1687 doc: /* Return information about a font named NAME on frame FRAME.
1688 If FRAME is omitted or nil, use the selected frame.
1689 The returned value is a vector of OPENED-NAME, FULL-NAME, CHARSET, SIZE,
1690 HEIGHT, BASELINE-OFFSET, RELATIVE-COMPOSE, and DEFAULT-ASCENT,
1691 where
1692 OPENED-NAME is the name used for opening the font,
1693 FULL-NAME is the full name of the font,
1694 SIZE is the maximum bound width of the font,
1695 HEIGHT is the height of the font,
1696 BASELINE-OFFSET is the upward offset pixels from ASCII baseline,
1697 RELATIVE-COMPOSE and DEFAULT-ASCENT are the numbers controlling
1698 how to compose characters.
1699 If the named font is not yet loaded, return nil. */)
1700 (name, frame)
1701 Lisp_Object name, frame;
1702 {
1703 FRAME_PTR f;
1704 struct font_info *fontp;
1705 Lisp_Object info;
1706
1707 (*check_window_system_func) ();
1708
1709 CHECK_STRING (name);
1710 name = Fdowncase (name);
1711 if (NILP (frame))
1712 frame = selected_frame;
1713 CHECK_LIVE_FRAME (frame);
1714 f = XFRAME (frame);
1715
1716 if (!query_font_func)
1717 error ("Font query function is not supported");
1718
1719 fontp = (*query_font_func) (f, SDATA (name));
1720 if (!fontp)
1721 return Qnil;
1722
1723 info = Fmake_vector (make_number (7), Qnil);
1724
1725 XVECTOR (info)->contents[0] = build_string (fontp->name);
1726 XVECTOR (info)->contents[1] = build_string (fontp->full_name);
1727 XVECTOR (info)->contents[2] = make_number (fontp->size);
1728 XVECTOR (info)->contents[3] = make_number (fontp->height);
1729 XVECTOR (info)->contents[4] = make_number (fontp->baseline_offset);
1730 XVECTOR (info)->contents[5] = make_number (fontp->relative_compose);
1731 XVECTOR (info)->contents[6] = make_number (fontp->default_ascent);
1732
1733 return info;
1734 }
1735
1736
1737 /* Return a cons (FONT-NAME . GLYPH-CODE).
1738 FONT-NAME is the font name for the character at POSITION in the current
1739 buffer. This is computed from all the text properties and overlays
1740 that apply to POSITION. POSTION may be nil, in which case,
1741 FONT-NAME is the font name for display the character CH with the
1742 default face.
1743
1744 GLYPH-CODE is the glyph code in the font to use for the character.
1745
1746 If the 2nd optional arg CH is non-nil, it is a character to check
1747 the font instead of the character at POSITION.
1748
1749 It returns nil in the following cases:
1750
1751 (1) The window system doesn't have a font for the character (thus
1752 it is displayed by an empty box).
1753
1754 (2) The character code is invalid.
1755
1756 (3) If POSITION is not nil, and the current buffer is not displayed
1757 in any window.
1758
1759 In addition, the returned font name may not take into account of
1760 such redisplay engine hooks as what used in jit-lock-mode if
1761 POSITION is currently not visible. */
1762
1763
1764 DEFUN ("internal-char-font", Finternal_char_font, Sinternal_char_font, 1, 2, 0,
1765 doc: /* For internal use only. */)
1766 (position, ch)
1767 Lisp_Object position, ch;
1768 {
1769 int pos, pos_byte, dummy;
1770 int face_id;
1771 int c;
1772 struct frame *f;
1773 struct face *face;
1774 Lisp_Object charset, rfont_def;
1775 int id;
1776
1777 if (NILP (position))
1778 {
1779 CHECK_CHARACTER (ch);
1780 c = XINT (ch);
1781 f = XFRAME (selected_frame);
1782 face_id = DEFAULT_FACE_ID;
1783 pos = -1;
1784 }
1785 else
1786 {
1787 Lisp_Object window;
1788 struct window *w;
1789
1790 CHECK_NUMBER_COERCE_MARKER (position);
1791 pos = XINT (position);
1792 if (pos < BEGV || pos >= ZV)
1793 args_out_of_range_3 (position, make_number (BEGV), make_number (ZV));
1794 pos_byte = CHAR_TO_BYTE (pos);
1795 if (NILP (ch))
1796 c = FETCH_CHAR (pos_byte);
1797 else
1798 {
1799 CHECK_NATNUM (ch);
1800 c = XINT (ch);
1801 }
1802 window = Fget_buffer_window (Fcurrent_buffer (), Qnil);
1803 if (NILP (window))
1804 return Qnil;
1805 w = XWINDOW (window);
1806 f = XFRAME (w->frame);
1807 face_id = face_at_buffer_position (w, pos, -1, -1, &dummy, pos + 100, 0);
1808 }
1809 if (! CHAR_VALID_P (c, 0))
1810 return Qnil;
1811 face_id = FACE_FOR_CHAR (f, FACE_FROM_ID (f, face_id), c, pos, Qnil);
1812 face = FACE_FROM_ID (f, face_id);
1813 charset = Fget_char_property (position, Qcharset, Qnil);
1814 if (CHARSETP (charset))
1815 id = XINT (CHARSET_SYMBOL_ID (charset));
1816 else
1817 id = -1;
1818 rfont_def = fontset_font (FONTSET_FROM_ID (face->fontset), c, face, id);
1819 if (VECTORP (rfont_def) && STRINGP (AREF (rfont_def, 3)))
1820 {
1821 Lisp_Object font_def;
1822 struct font_info *fontp;
1823 struct charset *charset;
1824 XChar2b char2b;
1825 int code;
1826
1827 font_def = AREF (rfont_def, 2);
1828 charset = CHARSET_FROM_ID (XINT (AREF (font_def, 1)));
1829 code = ENCODE_CHAR (charset, c);
1830 if (code == CHARSET_INVALID_CODE (charset))
1831 return (Fcons (AREF (rfont_def, 3), Qnil));
1832 STORE_XCHAR2B (&char2b, ((code >> 8) & 0xFF), (code & 0xFF));
1833 fontp = (*get_font_info_func) (f, XINT (AREF (rfont_def, 1)));
1834 rif->encode_char (c, &char2b, fontp, charset, NULL);
1835 code = (XCHAR2B_BYTE1 (&char2b) << 8) | XCHAR2B_BYTE2 (&char2b);
1836 return (Fcons (AREF (rfont_def, 3), make_number (code)));
1837 }
1838 return Qnil;
1839 }
1840
1841
1842 DEFUN ("fontset-info", Ffontset_info, Sfontset_info, 1, 2, 0,
1843 doc: /* Return information about a fontset FONTSET on frame FRAME.
1844 The value is a char-table of which elements has this form.
1845
1846 ((FONT-PATTERN OPENED-FONT ...) ...)
1847
1848 FONT-PATTERN is a vector:
1849
1850 [ FAMILY WEIGHT SLANT SWIDTH ADSTYLE REGISTRY ]
1851
1852 or a string of font name pattern.
1853
1854 OPENED-FONT is a name of a font actually opened.
1855
1856 The char-table has one extra slot. The value is a char-table
1857 containing the information about the derived fonts from the default
1858 fontset. The format is the same as abobe. */)
1859 (fontset, frame)
1860 Lisp_Object fontset, frame;
1861 {
1862 FRAME_PTR f;
1863 Lisp_Object *realized[2], fontsets[2], tables[2];
1864 Lisp_Object val, elt;
1865 int c, i, j, k;
1866
1867 (*check_window_system_func) ();
1868
1869 fontset = check_fontset_name (fontset);
1870
1871 if (NILP (frame))
1872 frame = selected_frame;
1873 CHECK_LIVE_FRAME (frame);
1874 f = XFRAME (frame);
1875
1876 /* Recode fontsets realized on FRAME from the base fontset FONTSET
1877 in the table `realized'. */
1878 realized[0] = (Lisp_Object *) alloca (sizeof (Lisp_Object)
1879 * ASIZE (Vfontset_table));
1880 for (i = j = 0; i < ASIZE (Vfontset_table); i++)
1881 {
1882 elt = FONTSET_FROM_ID (i);
1883 if (!NILP (elt)
1884 && EQ (FONTSET_BASE (elt), fontset)
1885 && EQ (FONTSET_FRAME (elt), frame))
1886 realized[0][j++] = elt;
1887 }
1888 realized[0][j] = Qnil;
1889
1890 realized[1] = (Lisp_Object *) alloca (sizeof (Lisp_Object)
1891 * ASIZE (Vfontset_table));
1892 for (i = j = 0; ! NILP (realized[0][i]); i++)
1893 {
1894 elt = FONTSET_DEFAULT (realized[0][i]);
1895 if (! NILP (elt))
1896 realized[1][j++] = elt;
1897 }
1898 realized[1][j] = Qnil;
1899
1900 tables[0] = Fmake_char_table (Qfontset_info, Qnil);
1901 tables[1] = Fmake_char_table (Qnil, Qnil);
1902 XCHAR_TABLE (tables[0])->extras[0] = tables[1];
1903 fontsets[0] = fontset;
1904 fontsets[1] = Vdefault_fontset;
1905
1906 /* Accumulate information of the fontset in TABLE. The format of
1907 each element is ((FONT-SPEC OPENED-FONT ...) ...). */
1908 for (k = 0; k <= 1; k++)
1909 {
1910 for (c = 0; c <= MAX_CHAR; )
1911 {
1912 int from, to;
1913
1914 if (c <= MAX_5_BYTE_CHAR)
1915 {
1916 val = char_table_ref_and_range (fontsets[k], c, &from, &to);
1917 if (to > MAX_5_BYTE_CHAR)
1918 to = MAX_5_BYTE_CHAR;
1919 }
1920 else
1921 {
1922 val = FONTSET_FALLBACK (fontsets[k]);
1923 to = MAX_CHAR;
1924 }
1925 if (VECTORP (val))
1926 {
1927 Lisp_Object alist;
1928
1929 /* At first, set ALIST to ((FONT-SPEC) ...). */
1930 for (alist = Qnil, i = 0; i < ASIZE (val); i++)
1931 alist = Fcons (Fcons (AREF (AREF (val, i), 0), Qnil), alist);
1932 alist = Fnreverse (alist);
1933
1934 /* Then store opend font names to cdr of each elements. */
1935 for (i = 0; ! NILP (realized[k][i]); i++)
1936 {
1937 if (c <= MAX_5_BYTE_CHAR)
1938 val = FONTSET_REF (realized[k][i], c);
1939 else
1940 val = FONTSET_FALLBACK (realized[k][i]);
1941 if (! VECTORP (val))
1942 continue;
1943 /* VAL is [int int ?
1944 [FACE-ID FONT-INDEX FONT-DEF FONT-NAME] ...].
1945 If a font of an element is already opened,
1946 FONT-NAME is the name of a opened font. */
1947 for (j = 3; j < ASIZE (val); j++)
1948 if (STRINGP (AREF (AREF (val, j), 3)))
1949 {
1950 Lisp_Object font_idx;
1951
1952 font_idx = AREF (AREF (val, j), 1);
1953 elt = Fassq (AREF (AREF (AREF (val, j), 2), 0), alist);
1954 if (CONSP (elt)
1955 && NILP (Fmemq (font_idx, XCDR(elt))))
1956 nconc2 (elt, Fcons (font_idx, Qnil));
1957 }
1958 }
1959 for (val = alist; CONSP (val); val = XCDR (val))
1960 for (elt = XCDR (XCAR (val)); CONSP (elt); elt = XCDR (elt))
1961 {
1962 struct font_info *font_info
1963 = (*get_font_info_func) (f, XINT (XCAR (elt)));
1964 XSETCAR (elt, build_string (font_info->full_name));
1965 }
1966
1967 /* Store ALIST in TBL for characters C..TO. */
1968 if (c <= MAX_5_BYTE_CHAR)
1969 char_table_set_range (tables[k], c, to, alist);
1970 else
1971 XCHAR_TABLE (tables[k])->defalt = alist;
1972 }
1973 c = to + 1;
1974 }
1975 }
1976
1977 return tables[0];
1978 }
1979
1980
1981 DEFUN ("fontset-font", Ffontset_font, Sfontset_font, 2, 3, 0,
1982 doc: /* Return a font name pattern for character CH in fontset NAME.
1983 If NAME is t, find a pattern in the default fontset.
1984
1985 The value has the form (FAMILY . REGISTRY), where FAMILY is a font
1986 family name and REGISTRY is a font registry name. This is actually
1987 the first font name pattern for CH in the fontset or in the default
1988 fontset.
1989
1990 If the 2nd optional arg ALL is non-nil, return a list of all font name
1991 patterns. */)
1992 (name, ch, all)
1993 Lisp_Object name, ch, all;
1994 {
1995 int c;
1996 Lisp_Object fontset, elt, list, repertory, val;
1997 int i, j;
1998
1999 fontset = check_fontset_name (name);
2000
2001 CHECK_CHARACTER (ch);
2002 c = XINT (ch);
2003 list = Qnil;
2004 while (1)
2005 {
2006 for (i = 0, elt = FONTSET_REF (fontset, c); i < 2;
2007 i++, elt = FONTSET_FALLBACK (fontset))
2008 if (VECTORP (elt))
2009 for (j = 0; j < ASIZE (elt); j++)
2010 {
2011 val = AREF (elt, j);
2012 repertory = AREF (val, 1);
2013 if (INTEGERP (repertory))
2014 {
2015 struct charset *charset = CHARSET_FROM_ID (XINT (repertory));
2016
2017 if (! CHAR_CHARSET_P (c, charset))
2018 continue;
2019 }
2020 else if (CHAR_TABLE_P (repertory))
2021 {
2022 if (NILP (CHAR_TABLE_REF (repertory, c)))
2023 continue;
2024 }
2025 val = AREF (val, 0);
2026 val = Fcons (AREF (val, 0), AREF (val, 5));
2027 if (NILP (all))
2028 return val;
2029 list = Fcons (val, list);
2030 }
2031 if (EQ (fontset, Vdefault_fontset))
2032 break;
2033 fontset = Vdefault_fontset;
2034 }
2035 return (Fnreverse (list));
2036 }
2037
2038 DEFUN ("fontset-list", Ffontset_list, Sfontset_list, 0, 0, 0,
2039 doc: /* Return a list of all defined fontset names. */)
2040 ()
2041 {
2042 Lisp_Object fontset, list;
2043 int i;
2044
2045 list = Qnil;
2046 for (i = 0; i < ASIZE (Vfontset_table); i++)
2047 {
2048 fontset = FONTSET_FROM_ID (i);
2049 if (!NILP (fontset)
2050 && BASE_FONTSET_P (fontset))
2051 list = Fcons (FONTSET_NAME (fontset), list);
2052 }
2053
2054 return list;
2055 }
2056
2057
2058 #ifdef FONTSET_DEBUG
2059
2060 Lisp_Object
2061 dump_fontset (fontset)
2062 Lisp_Object fontset;
2063 {
2064 Lisp_Object vec;
2065
2066 vec = Fmake_vector (make_number (3), Qnil);
2067 ASET (vec, 0, FONTSET_ID (fontset));
2068
2069 if (BASE_FONTSET_P (fontset))
2070 {
2071 ASET (vec, 1, FONTSET_NAME (fontset));
2072 }
2073 else
2074 {
2075 Lisp_Object frame;
2076
2077 frame = FONTSET_FRAME (fontset);
2078 if (FRAMEP (frame))
2079 {
2080 FRAME_PTR f = XFRAME (frame);
2081
2082 if (FRAME_LIVE_P (f))
2083 ASET (vec, 1, f->name);
2084 else
2085 ASET (vec, 1, Qt);
2086 }
2087 if (!NILP (FONTSET_DEFAULT (fontset)))
2088 ASET (vec, 2, FONTSET_ID (FONTSET_DEFAULT (fontset)));
2089 }
2090 return vec;
2091 }
2092
2093 DEFUN ("fontset-list-all", Ffontset_list_all, Sfontset_list_all, 0, 0, 0,
2094 doc: /* Return a brief summary of all fontsets for debug use. */)
2095 ()
2096 {
2097 Lisp_Object val;
2098 int i;
2099
2100 for (i = 0, val = Qnil; i < ASIZE (Vfontset_table); i++)
2101 if (! NILP (AREF (Vfontset_table, i)))
2102 val = Fcons (dump_fontset (AREF (Vfontset_table, i)), val);
2103 return (Fnreverse (val));
2104 }
2105 #endif /* FONTSET_DEBUG */
2106
2107 void
2108 syms_of_fontset ()
2109 {
2110 if (!load_font_func)
2111 /* Window system initializer should have set proper functions. */
2112 abort ();
2113
2114 DEFSYM (Qfontset, "fontset");
2115 Fput (Qfontset, Qchar_table_extra_slots, make_number (9));
2116 DEFSYM (Qfontset_info, "fontset-info");
2117 Fput (Qfontset_info, Qchar_table_extra_slots, make_number (1));
2118
2119 DEFSYM (Qprepend, "prepend");
2120 DEFSYM (Qappend, "append");
2121
2122 Vcached_fontset_data = Qnil;
2123 staticpro (&Vcached_fontset_data);
2124
2125 Vfontset_table = Fmake_vector (make_number (32), Qnil);
2126 staticpro (&Vfontset_table);
2127
2128 Vdefault_fontset = Fmake_char_table (Qfontset, Qnil);
2129 staticpro (&Vdefault_fontset);
2130 FONTSET_ID (Vdefault_fontset) = make_number (0);
2131 FONTSET_NAME (Vdefault_fontset)
2132 = build_string ("-*-*-*-*-*-*-*-*-*-*-*-*-fontset-default");
2133 {
2134 Lisp_Object default_ascii_font;
2135
2136 #if defined (macintosh)
2137 default_ascii_font
2138 = build_string ("-apple-monaco-medium-r-*--*-120-*-*-*-*-mac-roman");
2139 #elif defined (WINDOWSNT)
2140 default_ascii_font
2141 = build_string ("-*-courier new-normal-r-*-*-*-100-*-*-*-*-iso8859-1");
2142 #else
2143 default_ascii_font
2144 = build_string ("-adobe-courier-medium-r-*-*-*-120-*-*-*-*-iso8859-1");
2145 #endif
2146 FONTSET_ASCII (Vdefault_fontset) = default_ascii_font;
2147 }
2148 AREF (Vfontset_table, 0) = Vdefault_fontset;
2149 next_fontset_id = 1;
2150
2151 auto_fontset_alist = Qnil;
2152 staticpro (&auto_fontset_alist);
2153
2154 DEFVAR_LISP ("font-encoding-alist", &Vfont_encoding_alist,
2155 doc: /*
2156 Alist of fontname patterns vs the corresponding encoding and repertory info.
2157 Each element looks like (REGEXP . (ENCODING . REPERTORY)),
2158 where ENCODING is a charset or a char-table,
2159 and REPERTORY is a charset, a char-table, or nil.
2160
2161 ENCODING is for converting a character to a glyph code of the font.
2162 If ENCODING is a charset, encoding a character by the charset gives
2163 the corresponding glyph code. If ENCODING is a char-table, looking up
2164 the table by a character gives the corresponding glyph code.
2165
2166 REPERTORY specifies a repertory of characters supported by the font.
2167 If REPERTORY is a charset, all characters beloging to the charset are
2168 supported. If REPERTORY is a char-table, all characters who have a
2169 non-nil value in the table are supported. It REPERTORY is nil, Emacs
2170 gets the repertory information by an opened font and ENCODING. */);
2171 Vfont_encoding_alist = Qnil;
2172
2173 DEFVAR_LISP ("use-default-ascent", &Vuse_default_ascent,
2174 doc: /*
2175 Char table of characters whose ascent values should be ignored.
2176 If an entry for a character is non-nil, the ascent value of the glyph
2177 is assumed to be what specified by _MULE_DEFAULT_ASCENT property of a font.
2178
2179 This affects how a composite character which contains
2180 such a character is displayed on screen. */);
2181 Vuse_default_ascent = Qnil;
2182
2183 DEFVAR_LISP ("ignore-relative-composition", &Vignore_relative_composition,
2184 doc: /*
2185 Char table of characters which is not composed relatively.
2186 If an entry for a character is non-nil, a composition sequence
2187 which contains that character is displayed so that
2188 the glyph of that character is put without considering
2189 an ascent and descent value of a previous character. */);
2190 Vignore_relative_composition = Qnil;
2191
2192 DEFVAR_LISP ("alternate-fontname-alist", &Valternate_fontname_alist,
2193 doc: /* Alist of fontname vs list of the alternate fontnames.
2194 When a specified font name is not found, the corresponding
2195 alternate fontnames (if any) are tried instead. */);
2196 Valternate_fontname_alist = Qnil;
2197
2198 DEFVAR_LISP ("fontset-alias-alist", &Vfontset_alias_alist,
2199 doc: /* Alist of fontset names vs the aliases. */);
2200 Vfontset_alias_alist = Fcons (Fcons (FONTSET_NAME (Vdefault_fontset),
2201 build_string ("fontset-default")),
2202 Qnil);
2203
2204 DEFVAR_LISP ("vertical-centering-font-regexp",
2205 &Vvertical_centering_font_regexp,
2206 doc: /* *Regexp matching font names that require vertical centering on display.
2207 When a character is displayed with such fonts, the character is displayed
2208 at the vertical center of lines. */);
2209 Vvertical_centering_font_regexp = Qnil;
2210
2211 defsubr (&Squery_fontset);
2212 defsubr (&Snew_fontset);
2213 defsubr (&Sset_fontset_font);
2214 defsubr (&Sfont_info);
2215 defsubr (&Sinternal_char_font);
2216 defsubr (&Sfontset_info);
2217 defsubr (&Sfontset_font);
2218 defsubr (&Sfontset_list);
2219 #ifdef FONTSET_DEBUG
2220 defsubr (&Sfontset_list_all);
2221 #endif
2222 }
2223
2224 /* arch-tag: ea861585-2f5f-4e5b-9849-d04a9c3a3537
2225 (do not change this comment) */