1 /* font.c -- "Font" primitives.
3 Copyright (C) 2006-2012 Free Software Foundation, Inc.
4 Copyright (C) 2006, 2007, 2008, 2009, 2010, 2011
5 National Institute of Advanced Industrial Science and Technology (AIST)
6 Registration Number H13PRO009
8 This file is part of GNU Emacs.
10 GNU Emacs is free software: you can redistribute it and/or modify
11 it under the terms of the GNU General Public License as published by
12 the Free Software Foundation, either version 3 of the License, or
13 (at your option) any later version.
15 GNU Emacs is distributed in the hope that it will be useful,
16 but WITHOUT ANY WARRANTY; without even the implied warranty of
17 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
18 GNU General Public License for more details.
20 You should have received a copy of the GNU General Public License
21 along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>. */
30 #include "character.h"
34 #include "dispextern.h"
36 #include "composite.h"
42 #endif /* HAVE_X_WINDOWS */
46 #endif /* HAVE_NTGUI */
52 Lisp_Object Qopentype
;
54 /* Important character set strings. */
55 Lisp_Object Qascii_0
, Qiso8859_1
, Qiso10646_1
, Qunicode_bmp
, Qunicode_sip
;
57 #define DEFAULT_ENCODING Qiso8859_1
59 /* Unicode category `Cf'. */
60 static Lisp_Object QCf
;
62 /* Special vector of zero length. This is repeatedly used by (struct
63 font_driver *)->list when a specified font is not found. */
64 static Lisp_Object null_vector
;
66 /* Vector of Vfont_weight_table, Vfont_slant_table, and Vfont_width_table. */
67 static Lisp_Object font_style_table
;
69 /* Structure used for tables mapping weight, slant, and width numeric
70 values and their names. */
75 /* The first one is a valid name as a face attribute.
76 The second one (if any) is a typical name in XLFD field. */
80 /* Table of weight numeric values and their names. This table must be
81 sorted by numeric values in ascending order. */
83 static const struct table_entry weight_table
[] =
86 { 20, { "ultra-light", "ultralight" }},
87 { 40, { "extra-light", "extralight" }},
89 { 75, { "semi-light", "semilight", "demilight", "book" }},
90 { 100, { "normal", "medium", "regular", "unspecified" }},
91 { 180, { "semi-bold", "semibold", "demibold", "demi" }},
93 { 205, { "extra-bold", "extrabold" }},
94 { 210, { "ultra-bold", "ultrabold", "black" }}
97 /* Table of slant numeric values and their names. This table must be
98 sorted by numeric values in ascending order. */
100 static const struct table_entry slant_table
[] =
102 { 0, { "reverse-oblique", "ro" }},
103 { 10, { "reverse-italic", "ri" }},
104 { 100, { "normal", "r", "unspecified" }},
105 { 200, { "italic" ,"i", "ot" }},
106 { 210, { "oblique", "o" }}
109 /* Table of width numeric values and their names. This table must be
110 sorted by numeric values in ascending order. */
112 static const struct table_entry width_table
[] =
114 { 50, { "ultra-condensed", "ultracondensed" }},
115 { 63, { "extra-condensed", "extracondensed" }},
116 { 75, { "condensed", "compressed", "narrow" }},
117 { 87, { "semi-condensed", "semicondensed", "demicondensed" }},
118 { 100, { "normal", "medium", "regular", "unspecified" }},
119 { 113, { "semi-expanded", "semiexpanded", "demiexpanded" }},
120 { 125, { "expanded" }},
121 { 150, { "extra-expanded", "extraexpanded" }},
122 { 200, { "ultra-expanded", "ultraexpanded", "wide" }}
125 Lisp_Object QCfoundry
;
126 static Lisp_Object QCadstyle
, QCregistry
;
127 /* Symbols representing keys of font extra info. */
128 Lisp_Object QCspacing
, QCdpi
, QCscalable
, QCotf
, QClang
, QCscript
, QCavgwidth
;
129 Lisp_Object QCantialias
, QCfont_entity
;
130 static Lisp_Object QCfc_unknown_spec
;
131 /* Symbols representing values of font spacing property. */
132 static Lisp_Object Qc
, Qm
, Qd
;
134 /* Special ADSTYLE properties to avoid fonts used for Latin
135 characters; used in xfont.c and ftfont.c. */
136 Lisp_Object Qja
, Qko
;
138 static Lisp_Object QCuser_spec
;
140 /* Alist of font registry symbols and the corresponding charset
141 information. The information is retrieved from
142 Vfont_encoding_alist on demand.
144 Eash element has the form:
145 (REGISTRY . (ENCODING-CHARSET-ID . REPERTORY-CHARSET-ID))
149 In the former form, ENCODING-CHARSET-ID is an ID of a charset that
150 encodes a character code to a glyph code of a font, and
151 REPERTORY-CHARSET-ID is an ID of a charset that tells if a
152 character is supported by a font.
154 The latter form means that the information for REGISTRY couldn't be
156 static Lisp_Object font_charset_alist
;
158 /* List of all font drivers. Each font-backend (XXXfont.c) calls
159 register_font_driver in syms_of_XXXfont to register its font-driver
161 static struct font_driver_list
*font_driver_list
;
165 /* Creators of font-related Lisp object. */
168 font_make_spec (void)
170 Lisp_Object font_spec
;
171 struct font_spec
*spec
172 = ((struct font_spec
*)
173 allocate_pseudovector (VECSIZE (struct font_spec
),
174 FONT_SPEC_MAX
, PVEC_FONT
));
175 XSETFONT (font_spec
, spec
);
180 font_make_entity (void)
182 Lisp_Object font_entity
;
183 struct font_entity
*entity
184 = ((struct font_entity
*)
185 allocate_pseudovector (VECSIZE (struct font_entity
),
186 FONT_ENTITY_MAX
, PVEC_FONT
));
187 XSETFONT (font_entity
, entity
);
191 /* Create a font-object whose structure size is SIZE. If ENTITY is
192 not nil, copy properties from ENTITY to the font-object. If
193 PIXELSIZE is positive, set the `size' property to PIXELSIZE. */
195 font_make_object (int size
, Lisp_Object entity
, int pixelsize
)
197 Lisp_Object font_object
;
199 = (struct font
*) allocate_pseudovector (size
, FONT_OBJECT_MAX
, PVEC_FONT
);
202 XSETFONT (font_object
, font
);
206 for (i
= 1; i
< FONT_SPEC_MAX
; i
++)
207 font
->props
[i
] = AREF (entity
, i
);
208 if (! NILP (AREF (entity
, FONT_EXTRA_INDEX
)))
209 font
->props
[FONT_EXTRA_INDEX
]
210 = Fcopy_alist (AREF (entity
, FONT_EXTRA_INDEX
));
213 font
->props
[FONT_SIZE_INDEX
] = make_number (pixelsize
);
219 static int font_pixel_size (FRAME_PTR f
, Lisp_Object
);
220 static Lisp_Object
font_open_entity (FRAME_PTR
, Lisp_Object
, int);
221 static Lisp_Object
font_matching_entity (FRAME_PTR
, Lisp_Object
*,
223 static unsigned font_encode_char (Lisp_Object
, int);
225 /* Number of registered font drivers. */
226 static int num_font_drivers
;
229 /* Return a Lispy value of a font property value at STR and LEN bytes.
230 If STR is "*", return nil.
231 If FORCE_SYMBOL is zero and all characters in STR are digits,
232 return an integer. Otherwise, return a symbol interned from
236 font_intern_prop (const char *str
, ptrdiff_t len
, int force_symbol
)
241 ptrdiff_t nbytes
, nchars
;
243 if (len
== 1 && *str
== '*')
245 if (!force_symbol
&& 0 < len
&& '0' <= *str
&& *str
<= '9')
247 for (i
= 1; i
< len
; i
++)
248 if (! ('0' <= str
[i
] && str
[i
] <= '9'))
255 for (n
= 0; (n
+= str
[i
++] - '0') <= MOST_POSITIVE_FIXNUM
; n
*= 10)
258 return make_number (n
);
259 if (MOST_POSITIVE_FIXNUM
/ 10 < n
)
263 xsignal1 (Qoverflow_error
, make_string (str
, len
));
267 /* The following code is copied from the function intern (in
268 lread.c), and modified to suit our purpose. */
270 if (!VECTORP (obarray
) || ASIZE (obarray
) == 0)
271 obarray
= check_obarray (obarray
);
272 parse_str_as_multibyte ((unsigned char *) str
, len
, &nchars
, &nbytes
);
273 if (len
== nchars
|| len
!= nbytes
)
274 /* CONTENTS contains no multibyte sequences or contains an invalid
275 multibyte sequence. We'll make a unibyte string. */
276 tem
= oblookup (obarray
, str
, len
, len
);
278 tem
= oblookup (obarray
, str
, nchars
, len
);
281 if (len
== nchars
|| len
!= nbytes
)
282 tem
= make_unibyte_string (str
, len
);
284 tem
= make_multibyte_string (str
, nchars
, len
);
285 return Fintern (tem
, obarray
);
288 /* Return a pixel size of font-spec SPEC on frame F. */
291 font_pixel_size (FRAME_PTR f
, Lisp_Object spec
)
293 #ifdef HAVE_WINDOW_SYSTEM
294 Lisp_Object size
= AREF (spec
, FONT_SIZE_INDEX
);
303 font_assert (FLOATP (size
));
304 point_size
= XFLOAT_DATA (size
);
305 val
= AREF (spec
, FONT_DPI_INDEX
);
310 pixel_size
= POINT_TO_PIXEL (point_size
, dpi
);
318 /* Return a value of PROP's VAL (symbol or integer) to be stored in a
319 font vector. If VAL is not valid (i.e. not registered in
320 font_style_table), return -1 if NOERROR is zero, and return a
321 proper index if NOERROR is nonzero. In that case, register VAL in
322 font_style_table if VAL is a symbol, and return the closest index if
323 VAL is an integer. */
326 font_style_to_value (enum font_property_index prop
, Lisp_Object val
, int noerror
)
328 Lisp_Object table
= AREF (font_style_table
, prop
- FONT_WEIGHT_INDEX
);
331 CHECK_VECTOR (table
);
338 Lisp_Object args
[2], elt
;
340 /* At first try exact match. */
341 for (i
= 0; i
< len
; i
++)
343 CHECK_VECTOR (AREF (table
, i
));
344 for (j
= 1; j
< ASIZE (AREF (table
, i
)); j
++)
345 if (EQ (val
, AREF (AREF (table
, i
), j
)))
347 CHECK_NUMBER (AREF (AREF (table
, i
), 0));
348 return ((XINT (AREF (AREF (table
, i
), 0)) << 8)
349 | (i
<< 4) | (j
- 1));
352 /* Try also with case-folding match. */
353 s
= SSDATA (SYMBOL_NAME (val
));
354 for (i
= 0; i
< len
; i
++)
355 for (j
= 1; j
< ASIZE (AREF (table
, i
)); j
++)
357 elt
= AREF (AREF (table
, i
), j
);
358 if (xstrcasecmp (s
, SSDATA (SYMBOL_NAME (elt
))) == 0)
360 CHECK_NUMBER (AREF (AREF (table
, i
), 0));
361 return ((XINT (AREF (AREF (table
, i
), 0)) << 8)
362 | (i
<< 4) | (j
- 1));
369 elt
= Fmake_vector (make_number (2), make_number (100));
372 args
[1] = Fmake_vector (make_number (1), elt
);
373 ASET (font_style_table
, prop
- FONT_WEIGHT_INDEX
, Fvconcat (2, args
));
374 return (100 << 8) | (i
<< 4);
379 EMACS_INT numeric
= XINT (val
);
381 for (i
= 0, last_n
= -1; i
< len
; i
++)
385 CHECK_VECTOR (AREF (table
, i
));
386 CHECK_NUMBER (AREF (AREF (table
, i
), 0));
387 n
= XINT (AREF (AREF (table
, i
), 0));
389 return (n
<< 8) | (i
<< 4);
394 return ((i
== 0 || n
- numeric
< numeric
- last_n
)
395 ? (n
<< 8) | (i
<< 4): (last_n
<< 8 | ((i
- 1) << 4)));
401 return ((last_n
<< 8) | ((i
- 1) << 4));
406 font_style_symbolic (Lisp_Object font
, enum font_property_index prop
, int for_face
)
408 Lisp_Object val
= AREF (font
, prop
);
409 Lisp_Object table
, elt
;
414 table
= AREF (font_style_table
, prop
- FONT_WEIGHT_INDEX
);
415 CHECK_VECTOR (table
);
416 i
= XINT (val
) & 0xFF;
417 font_assert (((i
>> 4) & 0xF) < ASIZE (table
));
418 elt
= AREF (table
, ((i
>> 4) & 0xF));
420 font_assert ((i
& 0xF) + 1 < ASIZE (elt
));
421 elt
= (for_face
? AREF (elt
, 1) : AREF (elt
, (i
& 0xF) + 1));
426 /* Return ENCODING or a cons of ENCODING and REPERTORY of the font
427 FONTNAME. ENCODING is a charset symbol that specifies the encoding
428 of the font. REPERTORY is a charset symbol or nil. */
431 find_font_encoding (Lisp_Object fontname
)
433 Lisp_Object tail
, elt
;
435 for (tail
= Vfont_encoding_alist
; CONSP (tail
); tail
= XCDR (tail
))
439 && STRINGP (XCAR (elt
))
440 && fast_string_match_ignore_case (XCAR (elt
), fontname
) >= 0
441 && (SYMBOLP (XCDR (elt
))
442 ? CHARSETP (XCDR (elt
))
443 : CONSP (XCDR (elt
)) && CHARSETP (XCAR (XCDR (elt
)))))
449 /* Return encoding charset and repertory charset for REGISTRY in
450 ENCODING and REPERTORY correspondingly. If correct information for
451 REGISTRY is available, return 0. Otherwise return -1. */
454 font_registry_charsets (Lisp_Object registry
, struct charset
**encoding
, struct charset
**repertory
)
457 int encoding_id
, repertory_id
;
459 val
= Fassoc_string (registry
, font_charset_alist
, Qt
);
465 encoding_id
= XINT (XCAR (val
));
466 repertory_id
= XINT (XCDR (val
));
470 val
= find_font_encoding (SYMBOL_NAME (registry
));
471 if (SYMBOLP (val
) && CHARSETP (val
))
473 encoding_id
= repertory_id
= XINT (CHARSET_SYMBOL_ID (val
));
475 else if (CONSP (val
))
477 if (! CHARSETP (XCAR (val
)))
479 encoding_id
= XINT (CHARSET_SYMBOL_ID (XCAR (val
)));
480 if (NILP (XCDR (val
)))
484 if (! CHARSETP (XCDR (val
)))
486 repertory_id
= XINT (CHARSET_SYMBOL_ID (XCDR (val
)));
491 val
= Fcons (make_number (encoding_id
), make_number (repertory_id
));
493 = nconc2 (font_charset_alist
, Fcons (Fcons (registry
, val
), Qnil
));
497 *encoding
= CHARSET_FROM_ID (encoding_id
);
499 *repertory
= repertory_id
>= 0 ? CHARSET_FROM_ID (repertory_id
) : NULL
;
504 = nconc2 (font_charset_alist
, Fcons (Fcons (registry
, Qnil
), Qnil
));
509 /* Font property value validators. See the comment of
510 font_property_table for the meaning of the arguments. */
512 static Lisp_Object
font_prop_validate (int, Lisp_Object
, Lisp_Object
);
513 static Lisp_Object
font_prop_validate_symbol (Lisp_Object
, Lisp_Object
);
514 static Lisp_Object
font_prop_validate_style (Lisp_Object
, Lisp_Object
);
515 static Lisp_Object
font_prop_validate_non_neg (Lisp_Object
, Lisp_Object
);
516 static Lisp_Object
font_prop_validate_spacing (Lisp_Object
, Lisp_Object
);
517 static int get_font_prop_index (Lisp_Object
);
520 font_prop_validate_symbol (Lisp_Object prop
, Lisp_Object val
)
523 val
= Fintern (val
, Qnil
);
526 else if (EQ (prop
, QCregistry
))
527 val
= Fintern (Fdowncase (SYMBOL_NAME (val
)), Qnil
);
533 font_prop_validate_style (Lisp_Object style
, Lisp_Object val
)
535 enum font_property_index prop
= (EQ (style
, QCweight
) ? FONT_WEIGHT_INDEX
536 : EQ (style
, QCslant
) ? FONT_SLANT_INDEX
540 EMACS_INT n
= XINT (val
);
541 CHECK_VECTOR (AREF (font_style_table
, prop
- FONT_WEIGHT_INDEX
));
543 >= ASIZE (AREF (font_style_table
, prop
- FONT_WEIGHT_INDEX
)))
547 Lisp_Object elt
= AREF (AREF (font_style_table
, prop
- FONT_WEIGHT_INDEX
), (n
>> 4) & 0xF);
550 if ((n
& 0xF) + 1 >= ASIZE (elt
))
554 CHECK_NUMBER (AREF (elt
, 0));
555 if (XINT (AREF (elt
, 0)) != (n
>> 8))
560 else if (SYMBOLP (val
))
562 int n
= font_style_to_value (prop
, val
, 0);
564 val
= n
>= 0 ? make_number (n
) : Qerror
;
572 font_prop_validate_non_neg (Lisp_Object prop
, Lisp_Object val
)
574 return (NATNUMP (val
) || (FLOATP (val
) && XFLOAT_DATA (val
) >= 0)
579 font_prop_validate_spacing (Lisp_Object prop
, Lisp_Object val
)
581 if (NILP (val
) || (NATNUMP (val
) && XINT (val
) <= FONT_SPACING_CHARCELL
))
583 if (SYMBOLP (val
) && SBYTES (SYMBOL_NAME (val
)) == 1)
585 char spacing
= SDATA (SYMBOL_NAME (val
))[0];
587 if (spacing
== 'c' || spacing
== 'C')
588 return make_number (FONT_SPACING_CHARCELL
);
589 if (spacing
== 'm' || spacing
== 'M')
590 return make_number (FONT_SPACING_MONO
);
591 if (spacing
== 'p' || spacing
== 'P')
592 return make_number (FONT_SPACING_PROPORTIONAL
);
593 if (spacing
== 'd' || spacing
== 'D')
594 return make_number (FONT_SPACING_DUAL
);
600 font_prop_validate_otf (Lisp_Object prop
, Lisp_Object val
)
602 Lisp_Object tail
, tmp
;
605 /* VAL = (SCRIPT [ LANGSYS [ GSUB-FEATURES [ GPOS-FEATURES ]]])
606 GSUB-FEATURES = (FEATURE ... [ nil FEATURE ... ]) | nil
607 GPOS-FEATURES = (FEATURE ... [ nil FEATURE ... ]) | nil */
610 if (! SYMBOLP (XCAR (val
)))
615 if (! CONSP (tail
) || ! SYMBOLP (XCAR (val
)))
617 for (i
= 0; i
< 2; i
++)
624 for (tmp
= XCAR (tail
); CONSP (tmp
); tmp
= XCDR (tmp
))
625 if (! SYMBOLP (XCAR (tmp
)))
633 /* Structure of known font property keys and validator of the
637 /* Pointer to the key symbol. */
639 /* Function to validate PROP's value VAL, or NULL if any value is
640 ok. The value is VAL or its regularized value if VAL is valid,
641 and Qerror if not. */
642 Lisp_Object (*validator
) (Lisp_Object prop
, Lisp_Object val
);
643 } font_property_table
[] =
644 { { &QCtype
, font_prop_validate_symbol
},
645 { &QCfoundry
, font_prop_validate_symbol
},
646 { &QCfamily
, font_prop_validate_symbol
},
647 { &QCadstyle
, font_prop_validate_symbol
},
648 { &QCregistry
, font_prop_validate_symbol
},
649 { &QCweight
, font_prop_validate_style
},
650 { &QCslant
, font_prop_validate_style
},
651 { &QCwidth
, font_prop_validate_style
},
652 { &QCsize
, font_prop_validate_non_neg
},
653 { &QCdpi
, font_prop_validate_non_neg
},
654 { &QCspacing
, font_prop_validate_spacing
},
655 { &QCavgwidth
, font_prop_validate_non_neg
},
656 /* The order of the above entries must match with enum
657 font_property_index. */
658 { &QClang
, font_prop_validate_symbol
},
659 { &QCscript
, font_prop_validate_symbol
},
660 { &QCotf
, font_prop_validate_otf
}
663 /* Size (number of elements) of the above table. */
664 #define FONT_PROPERTY_TABLE_SIZE \
665 ((sizeof font_property_table) / (sizeof *font_property_table))
667 /* Return an index number of font property KEY or -1 if KEY is not an
668 already known property. */
671 get_font_prop_index (Lisp_Object key
)
675 for (i
= 0; i
< FONT_PROPERTY_TABLE_SIZE
; i
++)
676 if (EQ (key
, *font_property_table
[i
].key
))
681 /* Validate the font property. The property key is specified by the
682 symbol PROP, or the index IDX (if PROP is nil). If VAL is invalid,
683 signal an error. The value is VAL or the regularized one. */
686 font_prop_validate (int idx
, Lisp_Object prop
, Lisp_Object val
)
688 Lisp_Object validated
;
693 prop
= *font_property_table
[idx
].key
;
696 idx
= get_font_prop_index (prop
);
700 validated
= (font_property_table
[idx
].validator
) (prop
, val
);
701 if (EQ (validated
, Qerror
))
702 signal_error ("invalid font property", Fcons (prop
, val
));
707 /* Store VAL as a value of extra font property PROP in FONT while
708 keeping the sorting order. Don't check the validity of VAL. */
711 font_put_extra (Lisp_Object font
, Lisp_Object prop
, Lisp_Object val
)
713 Lisp_Object extra
= AREF (font
, FONT_EXTRA_INDEX
);
714 Lisp_Object slot
= (NILP (extra
) ? Qnil
: assq_no_quit (prop
, extra
));
718 Lisp_Object prev
= Qnil
;
721 && NILP (Fstring_lessp (prop
, XCAR (XCAR (extra
)))))
722 prev
= extra
, extra
= XCDR (extra
);
725 ASET (font
, FONT_EXTRA_INDEX
, Fcons (Fcons (prop
, val
), extra
));
727 XSETCDR (prev
, Fcons (Fcons (prop
, val
), extra
));
733 ASET (font
, FONT_EXTRA_INDEX
, Fdelq (slot
, extra
));
738 /* Font name parser and unparser */
740 static int parse_matrix (const char *);
741 static int font_expand_wildcards (Lisp_Object
*, int);
742 static int font_parse_name (char *, Lisp_Object
);
744 /* An enumerator for each field of an XLFD font name. */
745 enum xlfd_field_index
764 /* An enumerator for mask bit corresponding to each XLFD field. */
767 XLFD_FOUNDRY_MASK
= 0x0001,
768 XLFD_FAMILY_MASK
= 0x0002,
769 XLFD_WEIGHT_MASK
= 0x0004,
770 XLFD_SLANT_MASK
= 0x0008,
771 XLFD_SWIDTH_MASK
= 0x0010,
772 XLFD_ADSTYLE_MASK
= 0x0020,
773 XLFD_PIXEL_MASK
= 0x0040,
774 XLFD_POINT_MASK
= 0x0080,
775 XLFD_RESX_MASK
= 0x0100,
776 XLFD_RESY_MASK
= 0x0200,
777 XLFD_SPACING_MASK
= 0x0400,
778 XLFD_AVGWIDTH_MASK
= 0x0800,
779 XLFD_REGISTRY_MASK
= 0x1000,
780 XLFD_ENCODING_MASK
= 0x2000
784 /* Parse P pointing to the pixel/point size field of the form
785 `[A B C D]' which specifies a transformation matrix:
791 by which all glyphs of the font are transformed. The spec says
792 that scalar value N for the pixel/point size is equivalent to:
793 A = N * resx/resy, B = C = 0, D = N.
795 Return the scalar value N if the form is valid. Otherwise return
799 parse_matrix (const char *p
)
805 for (i
= 0, p
++; i
< 4 && *p
&& *p
!= ']'; i
++)
808 matrix
[i
] = - strtod (p
+ 1, &end
);
810 matrix
[i
] = strtod (p
, &end
);
813 return (i
== 4 ? (int) matrix
[3] : -1);
816 /* Expand a wildcard field in FIELD (the first N fields are filled) to
817 multiple fields to fill in all 14 XLFD fields while restricting a
818 field position by its contents. */
821 font_expand_wildcards (Lisp_Object
*field
, int n
)
824 Lisp_Object tmp
[XLFD_LAST_INDEX
];
825 /* Array of information about where this element can go. Nth
826 element is for Nth element of FIELD. */
828 /* Minimum possible field. */
830 /* Maximum possible field. */
832 /* Bit mask of possible field. Nth bit corresponds to Nth field. */
834 } range
[XLFD_LAST_INDEX
];
836 int range_from
, range_to
;
839 #define XLFD_SYMBOL_MASK (XLFD_FOUNDRY_MASK | XLFD_FAMILY_MASK \
840 | XLFD_ADSTYLE_MASK | XLFD_REGISTRY_MASK)
841 #define XLFD_NULL_MASK (XLFD_FOUNDRY_MASK | XLFD_ADSTYLE_MASK)
842 #define XLFD_LARGENUM_MASK (XLFD_POINT_MASK | XLFD_RESX_MASK | XLFD_RESY_MASK \
843 | XLFD_AVGWIDTH_MASK)
844 #define XLFD_REGENC_MASK (XLFD_REGISTRY_MASK | XLFD_ENCODING_MASK)
846 /* Initialize RANGE_MASK for FIELD[0] which can be 0th to (14 - N)th
847 field. The value is shifted to left one bit by one in the
849 for (i
= 0, range_mask
= 0; i
<= 14 - n
; i
++)
850 range_mask
= (range_mask
<< 1) | 1;
852 /* The triplet RANGE_FROM, RANGE_TO, and RANGE_MASK is a
853 position-based restriction for FIELD[I]. */
854 for (i
= 0, range_from
= 0, range_to
= 14 - n
; i
< n
;
855 i
++, range_from
++, range_to
++, range_mask
<<= 1)
857 Lisp_Object val
= field
[i
];
863 range
[i
].from
= range_from
;
864 range
[i
].to
= range_to
;
865 range
[i
].mask
= range_mask
;
869 /* The triplet FROM, TO, and MASK is a value-based
870 restriction for FIELD[I]. */
876 EMACS_INT numeric
= XINT (val
);
879 from
= to
= XLFD_ENCODING_INDEX
,
880 mask
= XLFD_ENCODING_MASK
;
881 else if (numeric
== 0)
882 from
= XLFD_PIXEL_INDEX
, to
= XLFD_AVGWIDTH_INDEX
,
883 mask
= XLFD_PIXEL_MASK
| XLFD_LARGENUM_MASK
;
884 else if (numeric
<= 48)
885 from
= to
= XLFD_PIXEL_INDEX
,
886 mask
= XLFD_PIXEL_MASK
;
888 from
= XLFD_POINT_INDEX
, to
= XLFD_AVGWIDTH_INDEX
,
889 mask
= XLFD_LARGENUM_MASK
;
891 else if (SBYTES (SYMBOL_NAME (val
)) == 0)
892 from
= XLFD_FOUNDRY_INDEX
, to
= XLFD_ADSTYLE_INDEX
,
893 mask
= XLFD_NULL_MASK
;
895 from
= to
= XLFD_FOUNDRY_INDEX
, mask
= XLFD_FOUNDRY_MASK
;
898 Lisp_Object name
= SYMBOL_NAME (val
);
900 if (SDATA (name
)[SBYTES (name
) - 1] == '*')
901 from
= XLFD_REGISTRY_INDEX
, to
= XLFD_ENCODING_INDEX
,
902 mask
= XLFD_REGENC_MASK
;
904 from
= to
= XLFD_ENCODING_INDEX
,
905 mask
= XLFD_ENCODING_MASK
;
907 else if (range_from
<= XLFD_WEIGHT_INDEX
908 && range_to
>= XLFD_WEIGHT_INDEX
909 && FONT_WEIGHT_NAME_NUMERIC (val
) >= 0)
910 from
= to
= XLFD_WEIGHT_INDEX
, mask
= XLFD_WEIGHT_MASK
;
911 else if (range_from
<= XLFD_SLANT_INDEX
912 && range_to
>= XLFD_SLANT_INDEX
913 && FONT_SLANT_NAME_NUMERIC (val
) >= 0)
914 from
= to
= XLFD_SLANT_INDEX
, mask
= XLFD_SLANT_MASK
;
915 else if (range_from
<= XLFD_SWIDTH_INDEX
916 && range_to
>= XLFD_SWIDTH_INDEX
917 && FONT_WIDTH_NAME_NUMERIC (val
) >= 0)
918 from
= to
= XLFD_SWIDTH_INDEX
, mask
= XLFD_SWIDTH_MASK
;
921 if (EQ (val
, Qc
) || EQ (val
, Qm
) || EQ (val
, Qp
) || EQ (val
, Qd
))
922 from
= to
= XLFD_SPACING_INDEX
, mask
= XLFD_SPACING_MASK
;
924 from
= XLFD_FOUNDRY_INDEX
, to
= XLFD_ENCODING_INDEX
,
925 mask
= XLFD_SYMBOL_MASK
;
928 /* Merge position-based and value-based restrictions. */
930 while (from
< range_from
)
931 mask
&= ~(1 << from
++);
932 while (from
< 14 && ! (mask
& (1 << from
)))
934 while (to
> range_to
)
935 mask
&= ~(1 << to
--);
936 while (to
>= 0 && ! (mask
& (1 << to
)))
940 range
[i
].from
= from
;
942 range
[i
].mask
= mask
;
944 if (from
> range_from
|| to
< range_to
)
946 /* The range is narrowed by value-based restrictions.
947 Reflect it to the other fields. */
949 /* Following fields should be after FROM. */
951 /* Preceding fields should be before TO. */
952 for (j
= i
- 1, from
--, to
--; j
>= 0; j
--, from
--, to
--)
954 /* Check FROM for non-wildcard field. */
955 if (! NILP (tmp
[j
]) && range
[j
].from
< from
)
957 while (range
[j
].from
< from
)
958 range
[j
].mask
&= ~(1 << range
[j
].from
++);
959 while (from
< 14 && ! (range
[j
].mask
& (1 << from
)))
961 range
[j
].from
= from
;
964 from
= range
[j
].from
;
965 if (range
[j
].to
> to
)
967 while (range
[j
].to
> to
)
968 range
[j
].mask
&= ~(1 << range
[j
].to
--);
969 while (to
>= 0 && ! (range
[j
].mask
& (1 << to
)))
982 /* Decide all fields from restrictions in RANGE. */
983 for (i
= j
= 0; i
< n
; i
++)
985 if (j
< range
[i
].from
)
987 if (i
== 0 || ! NILP (tmp
[i
- 1]))
988 /* None of TMP[X] corresponds to Jth field. */
990 for (; j
< range
[i
].from
; j
++)
995 if (! NILP (tmp
[n
- 1]) && j
< XLFD_REGISTRY_INDEX
)
997 for (; j
< XLFD_LAST_INDEX
; j
++)
999 if (INTEGERP (field
[XLFD_ENCODING_INDEX
]))
1000 field
[XLFD_ENCODING_INDEX
]
1001 = Fintern (Fnumber_to_string (field
[XLFD_ENCODING_INDEX
]), Qnil
);
1006 /* Parse NAME (null terminated) as XLFD and store information in FONT
1007 (font-spec or font-entity). Size property of FONT is set as
1009 specified XLFD fields FONT property
1010 --------------------- -------------
1011 PIXEL_SIZE PIXEL_SIZE (Lisp integer)
1012 POINT_SIZE and RESY calculated pixel size (Lisp integer)
1013 POINT_SIZE POINT_SIZE/10 (Lisp float)
1015 If NAME is successfully parsed, return 0. Otherwise return -1.
1017 FONT is usually a font-spec, but when this function is called from
1018 X font backend driver, it is a font-entity. In that case, NAME is
1019 a fully specified XLFD. */
1022 font_parse_xlfd (char *name
, Lisp_Object font
)
1024 ptrdiff_t len
= strlen (name
);
1026 char *f
[XLFD_LAST_INDEX
+ 1];
1030 if (len
> 255 || !len
)
1031 /* Maximum XLFD name length is 255. */
1033 /* Accept "*-.." as a fully specified XLFD. */
1034 if (name
[0] == '*' && (len
== 1 || name
[1] == '-'))
1035 i
= 1, f
[XLFD_FOUNDRY_INDEX
] = name
;
1038 for (p
= name
+ i
; *p
; p
++)
1042 if (i
== XLFD_LAST_INDEX
)
1047 #define INTERN_FIELD(N) font_intern_prop (f[N], f[(N) + 1] - 1 - f[N], 0)
1048 #define INTERN_FIELD_SYM(N) font_intern_prop (f[N], f[(N) + 1] - 1 - f[N], 1)
1050 if (i
== XLFD_LAST_INDEX
)
1052 /* Fully specified XLFD. */
1055 ASET (font
, FONT_FOUNDRY_INDEX
, INTERN_FIELD_SYM (XLFD_FOUNDRY_INDEX
));
1056 ASET (font
, FONT_FAMILY_INDEX
, INTERN_FIELD_SYM (XLFD_FAMILY_INDEX
));
1057 for (i
= XLFD_WEIGHT_INDEX
, j
= FONT_WEIGHT_INDEX
;
1058 i
<= XLFD_SWIDTH_INDEX
; i
++, j
++)
1060 val
= INTERN_FIELD_SYM (i
);
1063 if ((n
= font_style_to_value (j
, INTERN_FIELD_SYM (i
), 0)) < 0)
1065 ASET (font
, j
, make_number (n
));
1068 ASET (font
, FONT_ADSTYLE_INDEX
, INTERN_FIELD_SYM (XLFD_ADSTYLE_INDEX
));
1069 if (strcmp (f
[XLFD_REGISTRY_INDEX
], "*-*") == 0)
1070 ASET (font
, FONT_REGISTRY_INDEX
, Qnil
);
1072 ASET (font
, FONT_REGISTRY_INDEX
,
1073 font_intern_prop (f
[XLFD_REGISTRY_INDEX
],
1074 f
[XLFD_LAST_INDEX
] - f
[XLFD_REGISTRY_INDEX
],
1076 p
= f
[XLFD_PIXEL_INDEX
];
1077 if (*p
== '[' && (pixel_size
= parse_matrix (p
)) >= 0)
1078 ASET (font
, FONT_SIZE_INDEX
, make_number (pixel_size
));
1081 val
= INTERN_FIELD (XLFD_PIXEL_INDEX
);
1083 ASET (font
, FONT_SIZE_INDEX
, val
);
1084 else if (FONT_ENTITY_P (font
))
1088 double point_size
= -1;
1090 font_assert (FONT_SPEC_P (font
));
1091 p
= f
[XLFD_POINT_INDEX
];
1093 point_size
= parse_matrix (p
);
1094 else if (isdigit (*p
))
1095 point_size
= atoi (p
), point_size
/= 10;
1096 if (point_size
>= 0)
1097 ASET (font
, FONT_SIZE_INDEX
, make_float (point_size
));
1101 val
= INTERN_FIELD (XLFD_RESY_INDEX
);
1102 if (! NILP (val
) && ! INTEGERP (val
))
1104 ASET (font
, FONT_DPI_INDEX
, val
);
1105 val
= INTERN_FIELD (XLFD_SPACING_INDEX
);
1108 val
= font_prop_validate_spacing (QCspacing
, val
);
1109 if (! INTEGERP (val
))
1111 ASET (font
, FONT_SPACING_INDEX
, val
);
1113 p
= f
[XLFD_AVGWIDTH_INDEX
];
1116 val
= font_intern_prop (p
, f
[XLFD_REGISTRY_INDEX
] - 1 - p
, 0);
1117 if (! NILP (val
) && ! INTEGERP (val
))
1119 ASET (font
, FONT_AVGWIDTH_INDEX
, val
);
1123 int wild_card_found
= 0;
1124 Lisp_Object prop
[XLFD_LAST_INDEX
];
1126 if (FONT_ENTITY_P (font
))
1128 for (j
= 0; j
< i
; j
++)
1132 if (f
[j
][1] && f
[j
][1] != '-')
1135 wild_card_found
= 1;
1138 prop
[j
] = INTERN_FIELD (j
);
1140 prop
[j
] = font_intern_prop (f
[j
], f
[i
] - f
[j
], 0);
1142 if (! wild_card_found
)
1144 if (font_expand_wildcards (prop
, i
) < 0)
1147 ASET (font
, FONT_FOUNDRY_INDEX
, prop
[XLFD_FOUNDRY_INDEX
]);
1148 ASET (font
, FONT_FAMILY_INDEX
, prop
[XLFD_FAMILY_INDEX
]);
1149 for (i
= XLFD_WEIGHT_INDEX
, j
= FONT_WEIGHT_INDEX
;
1150 i
<= XLFD_SWIDTH_INDEX
; i
++, j
++)
1151 if (! NILP (prop
[i
]))
1153 if ((n
= font_style_to_value (j
, prop
[i
], 1)) < 0)
1155 ASET (font
, j
, make_number (n
));
1157 ASET (font
, FONT_ADSTYLE_INDEX
, prop
[XLFD_ADSTYLE_INDEX
]);
1158 val
= prop
[XLFD_REGISTRY_INDEX
];
1161 val
= prop
[XLFD_ENCODING_INDEX
];
1163 val
= concat2 (build_string ("*-"), SYMBOL_NAME (val
));
1165 else if (NILP (prop
[XLFD_ENCODING_INDEX
]))
1166 val
= concat2 (SYMBOL_NAME (val
), build_string ("-*"));
1168 val
= concat3 (SYMBOL_NAME (val
), build_string ("-"),
1169 SYMBOL_NAME (prop
[XLFD_ENCODING_INDEX
]));
1171 ASET (font
, FONT_REGISTRY_INDEX
, Fintern (val
, Qnil
));
1173 if (INTEGERP (prop
[XLFD_PIXEL_INDEX
]))
1174 ASET (font
, FONT_SIZE_INDEX
, prop
[XLFD_PIXEL_INDEX
]);
1175 else if (INTEGERP (prop
[XLFD_POINT_INDEX
]))
1177 double point_size
= XINT (prop
[XLFD_POINT_INDEX
]);
1179 ASET (font
, FONT_SIZE_INDEX
, make_float (point_size
/ 10));
1182 if (INTEGERP (prop
[XLFD_RESX_INDEX
]))
1183 ASET (font
, FONT_DPI_INDEX
, prop
[XLFD_RESY_INDEX
]);
1184 if (! NILP (prop
[XLFD_SPACING_INDEX
]))
1186 val
= font_prop_validate_spacing (QCspacing
,
1187 prop
[XLFD_SPACING_INDEX
]);
1188 if (! INTEGERP (val
))
1190 ASET (font
, FONT_SPACING_INDEX
, val
);
1192 if (INTEGERP (prop
[XLFD_AVGWIDTH_INDEX
]))
1193 ASET (font
, FONT_AVGWIDTH_INDEX
, prop
[XLFD_AVGWIDTH_INDEX
]);
1199 /* Store XLFD name of FONT (font-spec or font-entity) in NAME (NBYTES
1200 length), and return the name length. If FONT_SIZE_INDEX of FONT is
1201 0, use PIXEL_SIZE instead. */
1204 font_unparse_xlfd (Lisp_Object font
, int pixel_size
, char *name
, int nbytes
)
1207 const char *f
[XLFD_REGISTRY_INDEX
+ 1];
1211 font_assert (FONTP (font
));
1213 for (i
= FONT_FOUNDRY_INDEX
, j
= XLFD_FOUNDRY_INDEX
; i
<= FONT_REGISTRY_INDEX
;
1216 if (i
== FONT_ADSTYLE_INDEX
)
1217 j
= XLFD_ADSTYLE_INDEX
;
1218 else if (i
== FONT_REGISTRY_INDEX
)
1219 j
= XLFD_REGISTRY_INDEX
;
1220 val
= AREF (font
, i
);
1223 if (j
== XLFD_REGISTRY_INDEX
)
1231 val
= SYMBOL_NAME (val
);
1232 if (j
== XLFD_REGISTRY_INDEX
1233 && ! strchr (SSDATA (val
), '-'))
1235 /* Change "jisx0208*" and "jisx0208" to "jisx0208*-*". */
1236 ptrdiff_t alloc
= SBYTES (val
) + 4;
1237 if (nbytes
<= alloc
)
1239 f
[j
] = p
= alloca (alloc
);
1240 sprintf (p
, "%s%s-*", SDATA (val
),
1241 "*" + (SDATA (val
)[SBYTES (val
) - 1] == '*'));
1244 f
[j
] = SSDATA (val
);
1248 for (i
= FONT_WEIGHT_INDEX
, j
= XLFD_WEIGHT_INDEX
; i
<= FONT_WIDTH_INDEX
;
1251 val
= font_style_symbolic (font
, i
, 0);
1256 val
= SYMBOL_NAME (val
);
1257 f
[j
] = SSDATA (val
);
1261 val
= AREF (font
, FONT_SIZE_INDEX
);
1262 font_assert (NUMBERP (val
) || NILP (val
));
1265 EMACS_INT v
= XINT (val
);
1270 f
[XLFD_PIXEL_INDEX
] = p
=
1271 alloca (sizeof "-*" + INT_STRLEN_BOUND (EMACS_INT
));
1272 sprintf (p
, "%"pI
"d-*", v
);
1275 f
[XLFD_PIXEL_INDEX
] = "*-*";
1277 else if (FLOATP (val
))
1279 double v
= XFLOAT_DATA (val
) * 10;
1280 f
[XLFD_PIXEL_INDEX
] = p
= alloca (sizeof "*-" + 1 + DBL_MAX_10_EXP
+ 1);
1281 sprintf (p
, "*-%.0f", v
);
1284 f
[XLFD_PIXEL_INDEX
] = "*-*";
1286 if (INTEGERP (AREF (font
, FONT_DPI_INDEX
)))
1288 EMACS_INT v
= XINT (AREF (font
, FONT_DPI_INDEX
));
1289 f
[XLFD_RESX_INDEX
] = p
=
1290 alloca (sizeof "-" + 2 * INT_STRLEN_BOUND (EMACS_INT
));
1291 sprintf (p
, "%"pI
"d-%"pI
"d", v
, v
);
1294 f
[XLFD_RESX_INDEX
] = "*-*";
1295 if (INTEGERP (AREF (font
, FONT_SPACING_INDEX
)))
1297 EMACS_INT spacing
= XINT (AREF (font
, FONT_SPACING_INDEX
));
1299 f
[XLFD_SPACING_INDEX
] = (spacing
<= FONT_SPACING_PROPORTIONAL
? "p"
1300 : spacing
<= FONT_SPACING_DUAL
? "d"
1301 : spacing
<= FONT_SPACING_MONO
? "m"
1305 f
[XLFD_SPACING_INDEX
] = "*";
1306 if (INTEGERP (AREF (font
, FONT_AVGWIDTH_INDEX
)))
1308 f
[XLFD_AVGWIDTH_INDEX
] = p
= alloca (INT_BUFSIZE_BOUND (EMACS_INT
));
1309 sprintf (p
, "%"pI
"d", XINT (AREF (font
, FONT_AVGWIDTH_INDEX
)));
1312 f
[XLFD_AVGWIDTH_INDEX
] = "*";
1313 len
= snprintf (name
, nbytes
, "-%s-%s-%s-%s-%s-%s-%s-%s-%s-%s-%s",
1314 f
[XLFD_FOUNDRY_INDEX
], f
[XLFD_FAMILY_INDEX
],
1315 f
[XLFD_WEIGHT_INDEX
], f
[XLFD_SLANT_INDEX
],
1316 f
[XLFD_SWIDTH_INDEX
], f
[XLFD_ADSTYLE_INDEX
],
1317 f
[XLFD_PIXEL_INDEX
], f
[XLFD_RESX_INDEX
],
1318 f
[XLFD_SPACING_INDEX
], f
[XLFD_AVGWIDTH_INDEX
],
1319 f
[XLFD_REGISTRY_INDEX
]);
1320 return len
< nbytes
? len
: -1;
1323 /* Parse NAME (null terminated) and store information in FONT
1324 (font-spec or font-entity). NAME is supplied in either the
1325 Fontconfig or GTK font name format. If NAME is successfully
1326 parsed, return 0. Otherwise return -1.
1328 The fontconfig format is
1330 FAMILY[-SIZE][:PROP1[=VAL1][:PROP2[=VAL2]...]]
1334 FAMILY [PROPS...] [SIZE]
1336 This function tries to guess which format it is. */
1339 font_parse_fcname (char *name
, Lisp_Object font
)
1342 char *size_beg
= NULL
, *size_end
= NULL
;
1343 char *props_beg
= NULL
, *family_end
= NULL
;
1344 ptrdiff_t len
= strlen (name
);
1349 for (p
= name
; *p
; p
++)
1351 if (*p
== '\\' && p
[1])
1355 props_beg
= family_end
= p
;
1360 int decimal
= 0, size_found
= 1;
1361 for (q
= p
+ 1; *q
&& *q
!= ':'; q
++)
1364 if (*q
!= '.' || decimal
)
1383 Lisp_Object extra_props
= Qnil
;
1385 /* A fontconfig name with size and/or property data. */
1386 if (family_end
> name
)
1389 family
= font_intern_prop (name
, family_end
- name
, 1);
1390 ASET (font
, FONT_FAMILY_INDEX
, family
);
1394 double point_size
= strtod (size_beg
, &size_end
);
1395 ASET (font
, FONT_SIZE_INDEX
, make_float (point_size
));
1396 if (*size_end
== ':' && size_end
[1])
1397 props_beg
= size_end
;
1401 /* Now parse ":KEY=VAL" patterns. */
1404 for (p
= props_beg
; *p
; p
= q
)
1406 for (q
= p
+ 1; *q
&& *q
!= '=' && *q
!= ':'; q
++);
1409 /* Must be an enumerated value. */
1413 val
= font_intern_prop (p
, q
- p
, 1);
1415 #define PROP_MATCH(STR) (word_len == strlen (STR) \
1416 && memcmp (p, STR, strlen (STR)) == 0)
1418 if (PROP_MATCH ("light")
1419 || PROP_MATCH ("medium")
1420 || PROP_MATCH ("demibold")
1421 || PROP_MATCH ("bold")
1422 || PROP_MATCH ("black"))
1423 FONT_SET_STYLE (font
, FONT_WEIGHT_INDEX
, val
);
1424 else if (PROP_MATCH ("roman")
1425 || PROP_MATCH ("italic")
1426 || PROP_MATCH ("oblique"))
1427 FONT_SET_STYLE (font
, FONT_SLANT_INDEX
, val
);
1428 else if (PROP_MATCH ("charcell"))
1429 ASET (font
, FONT_SPACING_INDEX
,
1430 make_number (FONT_SPACING_CHARCELL
));
1431 else if (PROP_MATCH ("mono"))
1432 ASET (font
, FONT_SPACING_INDEX
,
1433 make_number (FONT_SPACING_MONO
));
1434 else if (PROP_MATCH ("proportional"))
1435 ASET (font
, FONT_SPACING_INDEX
,
1436 make_number (FONT_SPACING_PROPORTIONAL
));
1445 if (q
- p
== 10 && memcmp (p
+ 1, "pixelsize", 9) == 0)
1446 prop
= FONT_SIZE_INDEX
;
1449 key
= font_intern_prop (p
, q
- p
, 1);
1450 prop
= get_font_prop_index (key
);
1454 for (q
= p
; *q
&& *q
!= ':'; q
++);
1455 val
= font_intern_prop (p
, q
- p
, 0);
1457 if (prop
>= FONT_FOUNDRY_INDEX
1458 && prop
< FONT_EXTRA_INDEX
)
1459 ASET (font
, prop
, font_prop_validate (prop
, Qnil
, val
));
1462 extra_props
= nconc2 (extra_props
,
1463 Fcons (Fcons (key
, val
), Qnil
));
1470 if (! NILP (extra_props
))
1472 struct font_driver_list
*driver_list
= font_driver_list
;
1473 for ( ; driver_list
; driver_list
= driver_list
->next
)
1474 if (driver_list
->driver
->filter_properties
)
1475 (*driver_list
->driver
->filter_properties
) (font
, extra_props
);
1481 /* Either a fontconfig-style name with no size and property
1482 data, or a GTK-style name. */
1483 Lisp_Object weight
= Qnil
, slant
= Qnil
;
1484 Lisp_Object width
= Qnil
, size
= Qnil
;
1488 /* Scan backwards from the end, looking for a size. */
1489 for (p
= name
+ len
- 1; p
>= name
; p
--)
1493 if ((p
< name
+ len
- 1) && ((p
+ 1 == name
) || *p
== ' '))
1494 /* Found a font size. */
1495 size
= make_float (strtod (p
+ 1, NULL
));
1499 /* Now P points to the termination of the string, sans size.
1500 Scan backwards, looking for font properties. */
1501 for (; p
> name
; p
= q
)
1503 for (q
= p
- 1; q
>= name
; q
--)
1505 if (q
> name
&& *(q
-1) == '\\')
1506 --q
; /* Skip quoting backslashes. */
1512 word_len
= p
- word_start
;
1514 #define PROP_MATCH(STR) \
1515 (word_len == strlen (STR) \
1516 && memcmp (word_start, STR, strlen (STR)) == 0)
1517 #define PROP_SAVE(VAR, STR) \
1518 (VAR = NILP (VAR) ? font_intern_prop (STR, strlen (STR), 1) : VAR)
1520 if (PROP_MATCH ("Ultra-Light"))
1521 PROP_SAVE (weight
, "ultra-light");
1522 else if (PROP_MATCH ("Light"))
1523 PROP_SAVE (weight
, "light");
1524 else if (PROP_MATCH ("Book"))
1525 PROP_SAVE (weight
, "book");
1526 else if (PROP_MATCH ("Medium"))
1527 PROP_SAVE (weight
, "medium");
1528 else if (PROP_MATCH ("Semi-Bold"))
1529 PROP_SAVE (weight
, "semi-bold");
1530 else if (PROP_MATCH ("Bold"))
1531 PROP_SAVE (weight
, "bold");
1532 else if (PROP_MATCH ("Italic"))
1533 PROP_SAVE (slant
, "italic");
1534 else if (PROP_MATCH ("Oblique"))
1535 PROP_SAVE (slant
, "oblique");
1536 else if (PROP_MATCH ("Semi-Condensed"))
1537 PROP_SAVE (width
, "semi-condensed");
1538 else if (PROP_MATCH ("Condensed"))
1539 PROP_SAVE (width
, "condensed");
1540 /* An unknown word must be part of the font name. */
1551 ASET (font
, FONT_FAMILY_INDEX
,
1552 font_intern_prop (name
, family_end
- name
, 1));
1554 ASET (font
, FONT_SIZE_INDEX
, size
);
1556 FONT_SET_STYLE (font
, FONT_WEIGHT_INDEX
, weight
);
1558 FONT_SET_STYLE (font
, FONT_SLANT_INDEX
, slant
);
1560 FONT_SET_STYLE (font
, FONT_WIDTH_INDEX
, width
);
1566 /* Store fontconfig's font name of FONT (font-spec or font-entity) in
1567 NAME (NBYTES length), and return the name length. If
1568 FONT_SIZE_INDEX of FONT is 0, use PIXEL_SIZE instead. */
1571 font_unparse_fcname (Lisp_Object font
, int pixel_size
, char *name
, int nbytes
)
1573 Lisp_Object family
, foundry
;
1579 Lisp_Object styles
[3];
1580 const char *style_names
[3] = { "weight", "slant", "width" };
1582 family
= AREF (font
, FONT_FAMILY_INDEX
);
1583 if (! NILP (family
))
1585 if (SYMBOLP (family
))
1586 family
= SYMBOL_NAME (family
);
1591 val
= AREF (font
, FONT_SIZE_INDEX
);
1594 if (XINT (val
) != 0)
1595 pixel_size
= XINT (val
);
1603 point_size
= (int) XFLOAT_DATA (val
);
1606 foundry
= AREF (font
, FONT_FOUNDRY_INDEX
);
1607 if (! NILP (foundry
))
1609 if (SYMBOLP (foundry
))
1610 foundry
= SYMBOL_NAME (foundry
);
1615 for (i
= 0; i
< 3; i
++)
1616 styles
[i
] = font_style_symbolic (font
, FONT_WEIGHT_INDEX
+ i
, 0);
1619 lim
= name
+ nbytes
;
1620 if (! NILP (family
))
1622 int len
= snprintf (p
, lim
- p
, "%s", SSDATA (family
));
1623 if (! (0 <= len
&& len
< lim
- p
))
1629 int len
= snprintf (p
, lim
- p
, "-%d" + (p
== name
), point_size
);
1630 if (! (0 <= len
&& len
< lim
- p
))
1634 else if (pixel_size
> 0)
1636 int len
= snprintf (p
, lim
- p
, ":pixelsize=%d", pixel_size
);
1637 if (! (0 <= len
&& len
< lim
- p
))
1641 if (! NILP (AREF (font
, FONT_FOUNDRY_INDEX
)))
1643 int len
= snprintf (p
, lim
- p
, ":foundry=%s",
1644 SSDATA (SYMBOL_NAME (AREF (font
,
1645 FONT_FOUNDRY_INDEX
))));
1646 if (! (0 <= len
&& len
< lim
- p
))
1650 for (i
= 0; i
< 3; i
++)
1651 if (! NILP (styles
[i
]))
1653 int len
= snprintf (p
, lim
- p
, ":%s=%s", style_names
[i
],
1654 SSDATA (SYMBOL_NAME (styles
[i
])));
1655 if (! (0 <= len
&& len
< lim
- p
))
1660 if (INTEGERP (AREF (font
, FONT_DPI_INDEX
)))
1662 int len
= snprintf (p
, lim
- p
, ":dpi=%"pI
"d",
1663 XINT (AREF (font
, FONT_DPI_INDEX
)));
1664 if (! (0 <= len
&& len
< lim
- p
))
1669 if (INTEGERP (AREF (font
, FONT_SPACING_INDEX
)))
1671 int len
= snprintf (p
, lim
- p
, ":spacing=%"pI
"d",
1672 XINT (AREF (font
, FONT_SPACING_INDEX
)));
1673 if (! (0 <= len
&& len
< lim
- p
))
1678 if (INTEGERP (AREF (font
, FONT_AVGWIDTH_INDEX
)))
1680 int len
= snprintf (p
, lim
- p
,
1681 (XINT (AREF (font
, FONT_AVGWIDTH_INDEX
)) == 0
1683 : ":scalable=false"));
1684 if (! (0 <= len
&& len
< lim
- p
))
1692 /* Parse NAME (null terminated) and store information in FONT
1693 (font-spec or font-entity). If NAME is successfully parsed, return
1694 0. Otherwise return -1. */
1697 font_parse_name (char *name
, Lisp_Object font
)
1699 if (name
[0] == '-' || strchr (name
, '*') || strchr (name
, '?'))
1700 return font_parse_xlfd (name
, font
);
1701 return font_parse_fcname (name
, font
);
1705 /* Merge FAMILY and REGISTRY into FONT_SPEC. FAMILY may have the form
1706 "FAMILY-FOUNDRY". REGISTRY may not contain charset-encoding
1710 font_parse_family_registry (Lisp_Object family
, Lisp_Object registry
, Lisp_Object font_spec
)
1716 && NILP (AREF (font_spec
, FONT_FAMILY_INDEX
)))
1718 CHECK_STRING (family
);
1719 len
= SBYTES (family
);
1720 p0
= SSDATA (family
);
1721 p1
= strchr (p0
, '-');
1724 if ((*p0
!= '*' && p1
- p0
> 0)
1725 && NILP (AREF (font_spec
, FONT_FOUNDRY_INDEX
)))
1726 Ffont_put (font_spec
, QCfoundry
, font_intern_prop (p0
, p1
- p0
, 1));
1729 Ffont_put (font_spec
, QCfamily
, font_intern_prop (p1
, len
, 1));
1732 ASET (font_spec
, FONT_FAMILY_INDEX
, Fintern (family
, Qnil
));
1734 if (! NILP (registry
))
1736 /* Convert "XXX" and "XXX*" to "XXX*-*". */
1737 CHECK_STRING (registry
);
1738 len
= SBYTES (registry
);
1739 p0
= SSDATA (registry
);
1740 p1
= strchr (p0
, '-');
1743 if (SDATA (registry
)[len
- 1] == '*')
1744 registry
= concat2 (registry
, build_string ("-*"));
1746 registry
= concat2 (registry
, build_string ("*-*"));
1748 registry
= Fdowncase (registry
);
1749 ASET (font_spec
, FONT_REGISTRY_INDEX
, Fintern (registry
, Qnil
));
1754 /* This part (through the next ^L) is still experimental and not
1755 tested much. We may drastically change codes. */
1761 #define LGSTRING_HEADER_SIZE 6
1762 #define LGSTRING_GLYPH_SIZE 8
1765 check_gstring (Lisp_Object gstring
)
1771 CHECK_VECTOR (gstring
);
1772 val
= AREF (gstring
, 0);
1774 if (ASIZE (val
) < LGSTRING_HEADER_SIZE
)
1776 CHECK_FONT_OBJECT (LGSTRING_FONT (gstring
));
1777 if (!NILP (LGSTRING_SLOT (gstring
, LGSTRING_IX_LBEARING
)))
1778 CHECK_NUMBER (LGSTRING_SLOT (gstring
, LGSTRING_IX_LBEARING
));
1779 if (!NILP (LGSTRING_SLOT (gstring
, LGSTRING_IX_RBEARING
)))
1780 CHECK_NUMBER (LGSTRING_SLOT (gstring
, LGSTRING_IX_RBEARING
));
1781 if (!NILP (LGSTRING_SLOT (gstring
, LGSTRING_IX_WIDTH
)))
1782 CHECK_NATNUM (LGSTRING_SLOT (gstring
, LGSTRING_IX_WIDTH
));
1783 if (!NILP (LGSTRING_SLOT (gstring
, LGSTRING_IX_ASCENT
)))
1784 CHECK_NUMBER (LGSTRING_SLOT (gstring
, LGSTRING_IX_ASCENT
));
1785 if (!NILP (LGSTRING_SLOT (gstring
, LGSTRING_IX_ASCENT
)))
1786 CHECK_NUMBER (LGSTRING_SLOT (gstring
, LGSTRING_IX_ASCENT
));
1788 for (i
= 0; i
< LGSTRING_GLYPH_LEN (gstring
); i
++)
1790 val
= LGSTRING_GLYPH (gstring
, i
);
1792 if (ASIZE (val
) < LGSTRING_GLYPH_SIZE
)
1794 if (NILP (AREF (val
, LGLYPH_IX_CHAR
)))
1796 CHECK_NATNUM (AREF (val
, LGLYPH_IX_FROM
));
1797 CHECK_NATNUM (AREF (val
, LGLYPH_IX_TO
));
1798 CHECK_CHARACTER (AREF (val
, LGLYPH_IX_CHAR
));
1799 if (!NILP (AREF (val
, LGLYPH_IX_CODE
)))
1800 CHECK_NATNUM (AREF (val
, LGLYPH_IX_CODE
));
1801 if (!NILP (AREF (val
, LGLYPH_IX_WIDTH
)))
1802 CHECK_NATNUM (AREF (val
, LGLYPH_IX_WIDTH
));
1803 if (!NILP (AREF (val
, LGLYPH_IX_ADJUSTMENT
)))
1805 val
= AREF (val
, LGLYPH_IX_ADJUSTMENT
);
1807 if (ASIZE (val
) < 3)
1809 for (j
= 0; j
< 3; j
++)
1810 CHECK_NUMBER (AREF (val
, j
));
1815 error ("Invalid glyph-string format");
1820 check_otf_features (Lisp_Object otf_features
)
1824 CHECK_CONS (otf_features
);
1825 CHECK_SYMBOL (XCAR (otf_features
));
1826 otf_features
= XCDR (otf_features
);
1827 CHECK_CONS (otf_features
);
1828 CHECK_SYMBOL (XCAR (otf_features
));
1829 otf_features
= XCDR (otf_features
);
1830 for (val
= Fcar (otf_features
); ! NILP (val
); val
= Fcdr (val
))
1832 CHECK_SYMBOL (Fcar (val
));
1833 if (SBYTES (SYMBOL_NAME (XCAR (val
))) > 4)
1834 error ("Invalid OTF GSUB feature: %s",
1835 SDATA (SYMBOL_NAME (XCAR (val
))));
1837 otf_features
= XCDR (otf_features
);
1838 for (val
= Fcar (otf_features
); ! NILP (val
); val
= Fcdr (val
))
1840 CHECK_SYMBOL (Fcar (val
));
1841 if (SBYTES (SYMBOL_NAME (XCAR (val
))) > 4)
1842 error ("Invalid OTF GPOS feature: %s",
1843 SDATA (SYMBOL_NAME (XCAR (val
))));
1850 Lisp_Object otf_list
;
1853 otf_tag_symbol (OTF_Tag tag
)
1857 OTF_tag_name (tag
, name
);
1858 return Fintern (make_unibyte_string (name
, 4), Qnil
);
1862 otf_open (Lisp_Object file
)
1864 Lisp_Object val
= Fassoc (file
, otf_list
);
1868 otf
= XSAVE_VALUE (XCDR (val
))->pointer
;
1871 otf
= STRINGP (file
) ? OTF_open (SSDATA (file
)) : NULL
;
1872 val
= make_save_value (otf
, 0);
1873 otf_list
= Fcons (Fcons (file
, val
), otf_list
);
1879 /* Return a list describing which scripts/languages FONT supports by
1880 which GSUB/GPOS features of OpenType tables. See the comment of
1881 (struct font_driver).otf_capability. */
1884 font_otf_capability (struct font
*font
)
1887 Lisp_Object capability
= Fcons (Qnil
, Qnil
);
1890 otf
= otf_open (font
->props
[FONT_FILE_INDEX
]);
1893 for (i
= 0; i
< 2; i
++)
1895 OTF_GSUB_GPOS
*gsub_gpos
;
1896 Lisp_Object script_list
= Qnil
;
1899 if (OTF_get_features (otf
, i
== 0) < 0)
1901 gsub_gpos
= i
== 0 ? otf
->gsub
: otf
->gpos
;
1902 for (j
= gsub_gpos
->ScriptList
.ScriptCount
- 1; j
>= 0; j
--)
1904 OTF_Script
*script
= gsub_gpos
->ScriptList
.Script
+ j
;
1905 Lisp_Object langsys_list
= Qnil
;
1906 Lisp_Object script_tag
= otf_tag_symbol (script
->ScriptTag
);
1909 for (k
= script
->LangSysCount
; k
>= 0; k
--)
1911 OTF_LangSys
*langsys
;
1912 Lisp_Object feature_list
= Qnil
;
1913 Lisp_Object langsys_tag
;
1916 if (k
== script
->LangSysCount
)
1918 langsys
= &script
->DefaultLangSys
;
1923 langsys
= script
->LangSys
+ k
;
1925 = otf_tag_symbol (script
->LangSysRecord
[k
].LangSysTag
);
1927 for (l
= langsys
->FeatureCount
- 1; l
>= 0; l
--)
1929 OTF_Feature
*feature
1930 = gsub_gpos
->FeatureList
.Feature
+ langsys
->FeatureIndex
[l
];
1931 Lisp_Object feature_tag
1932 = otf_tag_symbol (feature
->FeatureTag
);
1934 feature_list
= Fcons (feature_tag
, feature_list
);
1936 langsys_list
= Fcons (Fcons (langsys_tag
, feature_list
),
1939 script_list
= Fcons (Fcons (script_tag
, langsys_list
),
1944 XSETCAR (capability
, script_list
);
1946 XSETCDR (capability
, script_list
);
1952 /* Parse OTF features in SPEC and write a proper features spec string
1953 in FEATURES for the call of OTF_drive_gsub/gpos (of libotf). It is
1954 assured that the sufficient memory has already allocated for
1958 generate_otf_features (Lisp_Object spec
, char *features
)
1966 for (asterisk
= 0; CONSP (spec
); spec
= XCDR (spec
))
1972 if (SREF (SYMBOL_NAME (val
), 0) == '*')
1977 else if (! asterisk
)
1979 val
= SYMBOL_NAME (val
);
1980 p
+= esprintf (p
, "%s", SDATA (val
));
1984 val
= SYMBOL_NAME (val
);
1985 p
+= esprintf (p
, "~%s", SDATA (val
));
1989 error ("OTF spec too long");
1993 font_otf_DeviceTable (OTF_DeviceTable
*device_table
)
1995 int len
= device_table
->StartSize
- device_table
->EndSize
+ 1;
1997 return Fcons (make_number (len
),
1998 make_unibyte_string (device_table
->DeltaValue
, len
));
2002 font_otf_ValueRecord (int value_format
, OTF_ValueRecord
*value_record
)
2004 Lisp_Object val
= Fmake_vector (make_number (8), Qnil
);
2006 if (value_format
& OTF_XPlacement
)
2007 ASET (val
, 0, make_number (value_record
->XPlacement
));
2008 if (value_format
& OTF_YPlacement
)
2009 ASET (val
, 1, make_number (value_record
->YPlacement
));
2010 if (value_format
& OTF_XAdvance
)
2011 ASET (val
, 2, make_number (value_record
->XAdvance
));
2012 if (value_format
& OTF_YAdvance
)
2013 ASET (val
, 3, make_number (value_record
->YAdvance
));
2014 if (value_format
& OTF_XPlaDevice
)
2015 ASET (val
, 4, font_otf_DeviceTable (&value_record
->XPlaDevice
));
2016 if (value_format
& OTF_YPlaDevice
)
2017 ASET (val
, 4, font_otf_DeviceTable (&value_record
->YPlaDevice
));
2018 if (value_format
& OTF_XAdvDevice
)
2019 ASET (val
, 4, font_otf_DeviceTable (&value_record
->XAdvDevice
));
2020 if (value_format
& OTF_YAdvDevice
)
2021 ASET (val
, 4, font_otf_DeviceTable (&value_record
->YAdvDevice
));
2026 font_otf_Anchor (OTF_Anchor
*anchor
)
2030 val
= Fmake_vector (make_number (anchor
->AnchorFormat
+ 1), Qnil
);
2031 ASET (val
, 0, make_number (anchor
->XCoordinate
));
2032 ASET (val
, 1, make_number (anchor
->YCoordinate
));
2033 if (anchor
->AnchorFormat
== 2)
2034 ASET (val
, 2, make_number (anchor
->f
.f1
.AnchorPoint
));
2037 ASET (val
, 3, font_otf_DeviceTable (&anchor
->f
.f2
.XDeviceTable
));
2038 ASET (val
, 4, font_otf_DeviceTable (&anchor
->f
.f2
.YDeviceTable
));
2042 #endif /* HAVE_LIBOTF */
2048 static unsigned font_score (Lisp_Object
, Lisp_Object
*);
2049 static int font_compare (const void *, const void *);
2050 static Lisp_Object
font_sort_entities (Lisp_Object
, Lisp_Object
,
2054 font_rescale_ratio (Lisp_Object font_entity
)
2056 Lisp_Object tail
, elt
;
2057 Lisp_Object name
= Qnil
;
2059 for (tail
= Vface_font_rescale_alist
; CONSP (tail
); tail
= XCDR (tail
))
2062 if (FLOATP (XCDR (elt
)))
2064 if (STRINGP (XCAR (elt
)))
2067 name
= Ffont_xlfd_name (font_entity
, Qnil
);
2068 if (fast_string_match_ignore_case (XCAR (elt
), name
) >= 0)
2069 return XFLOAT_DATA (XCDR (elt
));
2071 else if (FONT_SPEC_P (XCAR (elt
)))
2073 if (font_match_p (XCAR (elt
), font_entity
))
2074 return XFLOAT_DATA (XCDR (elt
));
2081 /* We sort fonts by scoring each of them against a specified
2082 font-spec. The score value is 32 bit (`unsigned'), and the smaller
2083 the value is, the closer the font is to the font-spec.
2085 The lowest 2 bits of the score are used for driver type. The font
2086 available by the most preferred font driver is 0.
2088 The 4 7-bit fields in the higher 28 bits are used for numeric properties
2089 WEIGHT, SLANT, WIDTH, and SIZE. */
2091 /* How many bits to shift to store the difference value of each font
2092 property in a score. Note that floats for FONT_TYPE_INDEX and
2093 FONT_REGISTRY_INDEX are not used. */
2094 static int sort_shift_bits
[FONT_SIZE_INDEX
+ 1];
2096 /* Score font-entity ENTITY against properties of font-spec SPEC_PROP.
2097 The return value indicates how different ENTITY is compared with
2101 font_score (Lisp_Object entity
, Lisp_Object
*spec_prop
)
2106 /* Score three style numeric fields. Maximum difference is 127. */
2107 for (i
= FONT_WEIGHT_INDEX
; i
<= FONT_WIDTH_INDEX
; i
++)
2108 if (! NILP (spec_prop
[i
]) && ! EQ (AREF (entity
, i
), spec_prop
[i
]))
2110 EMACS_INT diff
= ((XINT (AREF (entity
, i
)) >> 8)
2111 - (XINT (spec_prop
[i
]) >> 8));
2114 score
|= min (diff
, 127) << sort_shift_bits
[i
];
2117 /* Score the size. Maximum difference is 127. */
2118 i
= FONT_SIZE_INDEX
;
2119 if (! NILP (spec_prop
[FONT_SIZE_INDEX
])
2120 && XINT (AREF (entity
, FONT_SIZE_INDEX
)) > 0)
2122 /* We use the higher 6-bit for the actual size difference. The
2123 lowest bit is set if the DPI is different. */
2125 EMACS_INT pixel_size
= XINT (spec_prop
[FONT_SIZE_INDEX
]);
2127 if (CONSP (Vface_font_rescale_alist
))
2128 pixel_size
*= font_rescale_ratio (entity
);
2129 diff
= pixel_size
- XINT (AREF (entity
, FONT_SIZE_INDEX
));
2133 if (! NILP (spec_prop
[FONT_DPI_INDEX
])
2134 && ! EQ (spec_prop
[FONT_DPI_INDEX
], AREF (entity
, FONT_DPI_INDEX
)))
2136 if (! NILP (spec_prop
[FONT_AVGWIDTH_INDEX
])
2137 && ! EQ (spec_prop
[FONT_AVGWIDTH_INDEX
], AREF (entity
, FONT_AVGWIDTH_INDEX
)))
2139 score
|= min (diff
, 127) << sort_shift_bits
[FONT_SIZE_INDEX
];
2146 /* Concatenate all elements of LIST into one vector. LIST is a list
2147 of font-entity vectors. */
2150 font_vconcat_entity_vectors (Lisp_Object list
)
2152 int nargs
= XINT (Flength (list
));
2153 Lisp_Object
*args
= alloca (sizeof (Lisp_Object
) * nargs
);
2156 for (i
= 0; i
< nargs
; i
++, list
= XCDR (list
))
2157 args
[i
] = XCAR (list
);
2158 return Fvconcat (nargs
, args
);
2162 /* The structure for elements being sorted by qsort. */
2163 struct font_sort_data
2166 int font_driver_preference
;
2171 /* The comparison function for qsort. */
2174 font_compare (const void *d1
, const void *d2
)
2176 const struct font_sort_data
*data1
= d1
;
2177 const struct font_sort_data
*data2
= d2
;
2179 if (data1
->score
< data2
->score
)
2181 else if (data1
->score
> data2
->score
)
2183 return (data1
->font_driver_preference
- data2
->font_driver_preference
);
2187 /* Sort each font-entity vector in LIST by closeness to font-spec PREFER.
2188 If PREFER specifies a point-size, calculate the corresponding
2189 pixel-size from QCdpi property of PREFER or from the Y-resolution
2190 of FRAME before sorting.
2192 If BEST-ONLY is nonzero, return the best matching entity (that
2193 supports the character BEST-ONLY if BEST-ONLY is positive, or any
2194 if BEST-ONLY is negative). Otherwise, return the sorted result as
2195 a single vector of font-entities.
2197 This function does no optimization for the case that the total
2198 number of elements is 1. The caller should avoid calling this in
2202 font_sort_entities (Lisp_Object list
, Lisp_Object prefer
, Lisp_Object frame
, int best_only
)
2204 Lisp_Object prefer_prop
[FONT_SPEC_MAX
];
2206 struct font_sort_data
*data
;
2207 unsigned best_score
;
2208 Lisp_Object best_entity
;
2209 struct frame
*f
= XFRAME (frame
);
2210 Lisp_Object tail
, vec
IF_LINT (= Qnil
);
2213 for (i
= FONT_WEIGHT_INDEX
; i
<= FONT_AVGWIDTH_INDEX
; i
++)
2214 prefer_prop
[i
] = AREF (prefer
, i
);
2215 if (FLOATP (prefer_prop
[FONT_SIZE_INDEX
]))
2216 prefer_prop
[FONT_SIZE_INDEX
]
2217 = make_number (font_pixel_size (XFRAME (frame
), prefer
));
2219 if (NILP (XCDR (list
)))
2221 /* What we have to take care of is this single vector. */
2223 maxlen
= ASIZE (vec
);
2227 /* We don't have to perform sort, so there's no need of creating
2228 a single vector. But, we must find the length of the longest
2231 for (tail
= list
; CONSP (tail
); tail
= XCDR (tail
))
2232 if (maxlen
< ASIZE (XCAR (tail
)))
2233 maxlen
= ASIZE (XCAR (tail
));
2237 /* We have to create a single vector to sort it. */
2238 vec
= font_vconcat_entity_vectors (list
);
2239 maxlen
= ASIZE (vec
);
2242 SAFE_ALLOCA (data
, struct font_sort_data
*, (sizeof *data
) * maxlen
);
2243 best_score
= 0xFFFFFFFF;
2246 for (tail
= list
; CONSP (tail
); tail
= XCDR (tail
))
2248 int font_driver_preference
= 0;
2249 Lisp_Object current_font_driver
;
2255 /* We are sure that the length of VEC > 0. */
2256 current_font_driver
= AREF (AREF (vec
, 0), FONT_TYPE_INDEX
);
2257 /* Score the elements. */
2258 for (i
= 0; i
< len
; i
++)
2260 data
[i
].entity
= AREF (vec
, i
);
2262 = ((best_only
<= 0 || font_has_char (f
, data
[i
].entity
, best_only
)
2264 ? font_score (data
[i
].entity
, prefer_prop
)
2266 if (best_only
&& best_score
> data
[i
].score
)
2268 best_score
= data
[i
].score
;
2269 best_entity
= data
[i
].entity
;
2270 if (best_score
== 0)
2273 if (! EQ (current_font_driver
, AREF (AREF (vec
, i
), FONT_TYPE_INDEX
)))
2275 current_font_driver
= AREF (AREF (vec
, i
), FONT_TYPE_INDEX
);
2276 font_driver_preference
++;
2278 data
[i
].font_driver_preference
= font_driver_preference
;
2281 /* Sort if necessary. */
2284 qsort (data
, len
, sizeof *data
, font_compare
);
2285 for (i
= 0; i
< len
; i
++)
2286 ASET (vec
, i
, data
[i
].entity
);
2295 FONT_ADD_LOG ("sort-by", prefer
, vec
);
2300 /* API of Font Service Layer. */
2302 /* Reflect ORDER (see the variable font_sort_order in xfaces.c) to
2303 sort_shift_bits. Finternal_set_font_selection_order calls this
2304 function with font_sort_order after setting up it. */
2307 font_update_sort_order (int *order
)
2311 for (i
= 0, shift_bits
= 23; i
< 4; i
++, shift_bits
-= 7)
2313 int xlfd_idx
= order
[i
];
2315 if (xlfd_idx
== XLFD_WEIGHT_INDEX
)
2316 sort_shift_bits
[FONT_WEIGHT_INDEX
] = shift_bits
;
2317 else if (xlfd_idx
== XLFD_SLANT_INDEX
)
2318 sort_shift_bits
[FONT_SLANT_INDEX
] = shift_bits
;
2319 else if (xlfd_idx
== XLFD_SWIDTH_INDEX
)
2320 sort_shift_bits
[FONT_WIDTH_INDEX
] = shift_bits
;
2322 sort_shift_bits
[FONT_SIZE_INDEX
] = shift_bits
;
2327 font_check_otf_features (Lisp_Object script
, Lisp_Object langsys
, Lisp_Object features
, Lisp_Object table
)
2332 table
= assq_no_quit (script
, table
);
2335 table
= XCDR (table
);
2336 if (! NILP (langsys
))
2338 table
= assq_no_quit (langsys
, table
);
2344 val
= assq_no_quit (Qnil
, table
);
2346 table
= XCAR (table
);
2350 table
= XCDR (table
);
2351 for (negative
= 0; CONSP (features
); features
= XCDR (features
))
2353 if (NILP (XCAR (features
)))
2358 if (NILP (Fmemq (XCAR (features
), table
)) != negative
)
2364 /* Check if OTF_CAPABILITY satisfies SPEC (otf-spec). */
2367 font_check_otf (Lisp_Object spec
, Lisp_Object otf_capability
)
2369 Lisp_Object script
, langsys
= Qnil
, gsub
= Qnil
, gpos
= Qnil
;
2371 script
= XCAR (spec
);
2375 langsys
= XCAR (spec
);
2386 if (! NILP (gsub
) && ! font_check_otf_features (script
, langsys
, gsub
,
2387 XCAR (otf_capability
)))
2389 if (! NILP (gpos
) && ! font_check_otf_features (script
, langsys
, gpos
,
2390 XCDR (otf_capability
)))
2397 /* Check if FONT (font-entity or font-object) matches with the font
2398 specification SPEC. */
2401 font_match_p (Lisp_Object spec
, Lisp_Object font
)
2403 Lisp_Object prop
[FONT_SPEC_MAX
], *props
;
2404 Lisp_Object extra
, font_extra
;
2407 for (i
= FONT_FOUNDRY_INDEX
; i
<= FONT_REGISTRY_INDEX
; i
++)
2408 if (! NILP (AREF (spec
, i
))
2409 && ! NILP (AREF (font
, i
))
2410 && ! EQ (AREF (spec
, i
), AREF (font
, i
)))
2412 props
= XFONT_SPEC (spec
)->props
;
2413 if (FLOATP (props
[FONT_SIZE_INDEX
]))
2415 for (i
= FONT_FOUNDRY_INDEX
; i
< FONT_SIZE_INDEX
; i
++)
2416 prop
[i
] = AREF (spec
, i
);
2417 prop
[FONT_SIZE_INDEX
]
2418 = make_number (font_pixel_size (XFRAME (selected_frame
), spec
));
2422 if (font_score (font
, props
) > 0)
2424 extra
= AREF (spec
, FONT_EXTRA_INDEX
);
2425 font_extra
= AREF (font
, FONT_EXTRA_INDEX
);
2426 for (; CONSP (extra
); extra
= XCDR (extra
))
2428 Lisp_Object key
= XCAR (XCAR (extra
));
2429 Lisp_Object val
= XCDR (XCAR (extra
)), val2
;
2431 if (EQ (key
, QClang
))
2433 val2
= assq_no_quit (key
, font_extra
);
2442 if (NILP (Fmemq (val
, val2
)))
2447 ? NILP (Fmemq (val
, XCDR (val2
)))
2451 else if (EQ (key
, QCscript
))
2453 val2
= assq_no_quit (val
, Vscript_representative_chars
);
2459 /* All characters in the list must be supported. */
2460 for (; CONSP (val2
); val2
= XCDR (val2
))
2462 if (! CHARACTERP (XCAR (val2
)))
2464 if (font_encode_char (font
, XFASTINT (XCAR (val2
)))
2465 == FONT_INVALID_CODE
)
2469 else if (VECTORP (val2
))
2471 /* At most one character in the vector must be supported. */
2472 for (i
= 0; i
< ASIZE (val2
); i
++)
2474 if (! CHARACTERP (AREF (val2
, i
)))
2476 if (font_encode_char (font
, XFASTINT (AREF (val2
, i
)))
2477 != FONT_INVALID_CODE
)
2480 if (i
== ASIZE (val2
))
2485 else if (EQ (key
, QCotf
))
2489 if (! FONT_OBJECT_P (font
))
2491 fontp
= XFONT_OBJECT (font
);
2492 if (! fontp
->driver
->otf_capability
)
2494 val2
= fontp
->driver
->otf_capability (fontp
);
2495 if (NILP (val2
) || ! font_check_otf (val
, val2
))
2506 Each font backend has the callback function get_cache, and it
2507 returns a cons cell of which cdr part can be freely used for
2508 caching fonts. The cons cell may be shared by multiple frames
2509 and/or multiple font drivers. So, we arrange the cdr part as this:
2511 ((DRIVER-TYPE NUM-FRAMES FONT-CACHE-DATA ...) ...)
2513 where DRIVER-TYPE is a symbol such as `x', `xft', etc., NUM-FRAMES
2514 is a number frames sharing this cache, and FONT-CACHE-DATA is a
2515 cons (FONT-SPEC FONT-ENTITY ...). */
2517 static void font_prepare_cache (FRAME_PTR
, struct font_driver
*);
2518 static void font_finish_cache (FRAME_PTR
, struct font_driver
*);
2519 static Lisp_Object
font_get_cache (FRAME_PTR
, struct font_driver
*);
2520 static void font_clear_cache (FRAME_PTR
, Lisp_Object
,
2521 struct font_driver
*);
2524 font_prepare_cache (FRAME_PTR f
, struct font_driver
*driver
)
2526 Lisp_Object cache
, val
;
2528 cache
= driver
->get_cache (f
);
2530 while (CONSP (val
) && ! EQ (XCAR (XCAR (val
)), driver
->type
))
2534 val
= Fcons (driver
->type
, Fcons (make_number (1), Qnil
));
2535 XSETCDR (cache
, Fcons (val
, XCDR (cache
)));
2539 val
= XCDR (XCAR (val
));
2540 XSETCAR (val
, make_number (XINT (XCAR (val
)) + 1));
2546 font_finish_cache (FRAME_PTR f
, struct font_driver
*driver
)
2548 Lisp_Object cache
, val
, tmp
;
2551 cache
= driver
->get_cache (f
);
2553 while (CONSP (val
) && ! EQ (XCAR (XCAR (val
)), driver
->type
))
2554 cache
= val
, val
= XCDR (val
);
2555 font_assert (! NILP (val
));
2556 tmp
= XCDR (XCAR (val
));
2557 XSETCAR (tmp
, make_number (XINT (XCAR (tmp
)) - 1));
2558 if (XINT (XCAR (tmp
)) == 0)
2560 font_clear_cache (f
, XCAR (val
), driver
);
2561 XSETCDR (cache
, XCDR (val
));
2567 font_get_cache (FRAME_PTR f
, struct font_driver
*driver
)
2569 Lisp_Object val
= driver
->get_cache (f
);
2570 Lisp_Object type
= driver
->type
;
2572 font_assert (CONSP (val
));
2573 for (val
= XCDR (val
); ! EQ (XCAR (XCAR (val
)), type
); val
= XCDR (val
));
2574 font_assert (CONSP (val
));
2575 /* VAL = ((DRIVER-TYPE NUM-FRAMES FONT-CACHE-DATA ...) ...) */
2576 val
= XCDR (XCAR (val
));
2580 static int num_fonts
;
2583 font_clear_cache (FRAME_PTR f
, Lisp_Object cache
, struct font_driver
*driver
)
2585 Lisp_Object tail
, elt
;
2586 Lisp_Object tail2
, entity
;
2588 /* CACHE = (DRIVER-TYPE NUM-FRAMES FONT-CACHE-DATA ...) */
2589 for (tail
= XCDR (XCDR (cache
)); CONSP (tail
); tail
= XCDR (tail
))
2592 /* elt should have the form (FONT-SPEC FONT-ENTITY ...) */
2593 if (CONSP (elt
) && FONT_SPEC_P (XCAR (elt
)))
2595 for (tail2
= XCDR (elt
); CONSP (tail2
); tail2
= XCDR (tail2
))
2597 entity
= XCAR (tail2
);
2599 if (FONT_ENTITY_P (entity
)
2600 && EQ (driver
->type
, AREF (entity
, FONT_TYPE_INDEX
)))
2602 Lisp_Object objlist
= AREF (entity
, FONT_OBJLIST_INDEX
);
2604 for (; CONSP (objlist
); objlist
= XCDR (objlist
))
2606 Lisp_Object val
= XCAR (objlist
);
2607 struct font
*font
= XFONT_OBJECT (val
);
2609 if (! NILP (AREF (val
, FONT_TYPE_INDEX
)))
2611 font_assert (font
&& driver
== font
->driver
);
2612 driver
->close (f
, font
);
2616 if (driver
->free_entity
)
2617 driver
->free_entity (entity
);
2622 XSETCDR (cache
, Qnil
);
2626 static Lisp_Object scratch_font_spec
, scratch_font_prefer
;
2628 /* Check each font-entity in VEC, and return a list of font-entities
2629 that satisfy these conditions:
2630 (1) matches with SPEC and SIZE if SPEC is not nil, and
2631 (2) doesn't match with any regexps in Vface_ignored_fonts (if non-nil).
2635 font_delete_unmatched (Lisp_Object vec
, Lisp_Object spec
, int size
)
2637 Lisp_Object entity
, val
;
2638 enum font_property_index prop
;
2641 for (val
= Qnil
, i
= ASIZE (vec
) - 1; i
>= 0; i
--)
2643 entity
= AREF (vec
, i
);
2644 if (! NILP (Vface_ignored_fonts
))
2647 Lisp_Object tail
, regexp
;
2649 if (font_unparse_xlfd (entity
, 0, name
, 256) >= 0)
2651 for (tail
= Vface_ignored_fonts
; CONSP (tail
); tail
= XCDR (tail
))
2653 regexp
= XCAR (tail
);
2654 if (STRINGP (regexp
)
2655 && fast_c_string_match_ignore_case (regexp
, name
) >= 0)
2664 val
= Fcons (entity
, val
);
2667 for (prop
= FONT_WEIGHT_INDEX
; prop
< FONT_SIZE_INDEX
; prop
++)
2668 if (INTEGERP (AREF (spec
, prop
))
2669 && ((XINT (AREF (spec
, prop
)) >> 8)
2670 != (XINT (AREF (entity
, prop
)) >> 8)))
2671 prop
= FONT_SPEC_MAX
;
2672 if (prop
< FONT_SPEC_MAX
2674 && XINT (AREF (entity
, FONT_SIZE_INDEX
)) > 0)
2676 int diff
= XINT (AREF (entity
, FONT_SIZE_INDEX
)) - size
;
2679 && (diff
< 0 ? -diff
> FONT_PIXEL_SIZE_QUANTUM
2680 : diff
> FONT_PIXEL_SIZE_QUANTUM
))
2681 prop
= FONT_SPEC_MAX
;
2683 if (prop
< FONT_SPEC_MAX
2684 && INTEGERP (AREF (spec
, FONT_DPI_INDEX
))
2685 && INTEGERP (AREF (entity
, FONT_DPI_INDEX
))
2686 && XINT (AREF (entity
, FONT_DPI_INDEX
)) != 0
2687 && ! EQ (AREF (spec
, FONT_DPI_INDEX
), AREF (entity
, FONT_DPI_INDEX
)))
2688 prop
= FONT_SPEC_MAX
;
2689 if (prop
< FONT_SPEC_MAX
2690 && INTEGERP (AREF (spec
, FONT_AVGWIDTH_INDEX
))
2691 && INTEGERP (AREF (entity
, FONT_AVGWIDTH_INDEX
))
2692 && XINT (AREF (entity
, FONT_AVGWIDTH_INDEX
)) != 0
2693 && ! EQ (AREF (spec
, FONT_AVGWIDTH_INDEX
),
2694 AREF (entity
, FONT_AVGWIDTH_INDEX
)))
2695 prop
= FONT_SPEC_MAX
;
2696 if (prop
< FONT_SPEC_MAX
)
2697 val
= Fcons (entity
, val
);
2699 return (Fvconcat (1, &val
));
2703 /* Return a list of vectors of font-entities matching with SPEC on
2704 FRAME. Each elements in the list is a vector of entities from the
2705 same font-driver. */
2708 font_list_entities (Lisp_Object frame
, Lisp_Object spec
)
2710 FRAME_PTR f
= XFRAME (frame
);
2711 struct font_driver_list
*driver_list
= f
->font_driver_list
;
2712 Lisp_Object ftype
, val
;
2713 Lisp_Object list
= Qnil
;
2715 int need_filtering
= 0;
2718 font_assert (FONT_SPEC_P (spec
));
2720 if (INTEGERP (AREF (spec
, FONT_SIZE_INDEX
)))
2721 size
= XINT (AREF (spec
, FONT_SIZE_INDEX
));
2722 else if (FLOATP (AREF (spec
, FONT_SIZE_INDEX
)))
2723 size
= font_pixel_size (f
, spec
);
2727 ftype
= AREF (spec
, FONT_TYPE_INDEX
);
2728 for (i
= FONT_FOUNDRY_INDEX
; i
<= FONT_REGISTRY_INDEX
; i
++)
2729 ASET (scratch_font_spec
, i
, AREF (spec
, i
));
2730 for (i
= FONT_WEIGHT_INDEX
; i
< FONT_EXTRA_INDEX
; i
++)
2731 if (i
!= FONT_SPACING_INDEX
)
2733 ASET (scratch_font_spec
, i
, Qnil
);
2734 if (! NILP (AREF (spec
, i
)))
2737 ASET (scratch_font_spec
, FONT_SPACING_INDEX
, AREF (spec
, FONT_SPACING_INDEX
));
2738 ASET (scratch_font_spec
, FONT_EXTRA_INDEX
, AREF (spec
, FONT_EXTRA_INDEX
));
2740 for (i
= 0; driver_list
; driver_list
= driver_list
->next
)
2742 && (NILP (ftype
) || EQ (driver_list
->driver
->type
, ftype
)))
2744 Lisp_Object cache
= font_get_cache (f
, driver_list
->driver
);
2746 ASET (scratch_font_spec
, FONT_TYPE_INDEX
, driver_list
->driver
->type
);
2747 val
= assoc_no_quit (scratch_font_spec
, XCDR (cache
));
2754 val
= driver_list
->driver
->list (frame
, scratch_font_spec
);
2758 val
= Fvconcat (1, &val
);
2759 copy
= copy_font_spec (scratch_font_spec
);
2760 ASET (copy
, FONT_TYPE_INDEX
, driver_list
->driver
->type
);
2761 XSETCDR (cache
, Fcons (Fcons (copy
, val
), XCDR (cache
)));
2765 || ! NILP (Vface_ignored_fonts
)))
2766 val
= font_delete_unmatched (val
, need_filtering
? spec
: Qnil
, size
);
2767 if (ASIZE (val
) > 0)
2768 list
= Fcons (val
, list
);
2771 list
= Fnreverse (list
);
2772 FONT_ADD_LOG ("list", spec
, list
);
2777 /* Return a font entity matching with SPEC on FRAME. ATTRS, if non
2778 nil, is an array of face's attributes, which specifies preferred
2779 font-related attributes. */
2782 font_matching_entity (FRAME_PTR f
, Lisp_Object
*attrs
, Lisp_Object spec
)
2784 struct font_driver_list
*driver_list
= f
->font_driver_list
;
2785 Lisp_Object ftype
, size
, entity
;
2787 Lisp_Object work
= copy_font_spec (spec
);
2789 XSETFRAME (frame
, f
);
2790 ftype
= AREF (spec
, FONT_TYPE_INDEX
);
2791 size
= AREF (spec
, FONT_SIZE_INDEX
);
2794 ASET (work
, FONT_SIZE_INDEX
, make_number (font_pixel_size (f
, spec
)));
2795 FONT_SET_STYLE (work
, FONT_WEIGHT_INDEX
, attrs
[LFACE_WEIGHT_INDEX
]);
2796 FONT_SET_STYLE (work
, FONT_SLANT_INDEX
, attrs
[LFACE_SLANT_INDEX
]);
2797 FONT_SET_STYLE (work
, FONT_WIDTH_INDEX
, attrs
[LFACE_SWIDTH_INDEX
]);
2800 for (; driver_list
; driver_list
= driver_list
->next
)
2802 && (NILP (ftype
) || EQ (driver_list
->driver
->type
, ftype
)))
2804 Lisp_Object cache
= font_get_cache (f
, driver_list
->driver
);
2807 ASET (work
, FONT_TYPE_INDEX
, driver_list
->driver
->type
);
2808 entity
= assoc_no_quit (work
, XCDR (cache
));
2810 entity
= XCDR (entity
);
2813 entity
= driver_list
->driver
->match (frame
, work
);
2814 copy
= copy_font_spec (work
);
2815 ASET (copy
, FONT_TYPE_INDEX
, driver_list
->driver
->type
);
2816 XSETCDR (cache
, Fcons (Fcons (copy
, entity
), XCDR (cache
)));
2818 if (! NILP (entity
))
2821 FONT_ADD_LOG ("match", work
, entity
);
2826 /* Open a font of ENTITY and PIXEL_SIZE on frame F, and return the
2827 opened font object. */
2830 font_open_entity (FRAME_PTR f
, Lisp_Object entity
, int pixel_size
)
2832 struct font_driver_list
*driver_list
;
2833 Lisp_Object objlist
, size
, val
, font_object
;
2835 int min_width
, height
;
2836 int scaled_pixel_size
= pixel_size
;
2838 font_assert (FONT_ENTITY_P (entity
));
2839 size
= AREF (entity
, FONT_SIZE_INDEX
);
2840 if (XINT (size
) != 0)
2841 scaled_pixel_size
= pixel_size
= XINT (size
);
2842 else if (CONSP (Vface_font_rescale_alist
))
2843 scaled_pixel_size
= pixel_size
* font_rescale_ratio (entity
);
2845 val
= AREF (entity
, FONT_TYPE_INDEX
);
2846 for (driver_list
= f
->font_driver_list
;
2847 driver_list
&& ! EQ (driver_list
->driver
->type
, val
);
2848 driver_list
= driver_list
->next
);
2852 for (objlist
= AREF (entity
, FONT_OBJLIST_INDEX
); CONSP (objlist
);
2853 objlist
= XCDR (objlist
))
2855 Lisp_Object fn
= XCAR (objlist
);
2856 if (! NILP (AREF (fn
, FONT_TYPE_INDEX
))
2857 && XFONT_OBJECT (fn
)->pixel_size
== pixel_size
)
2859 if (driver_list
->driver
->cached_font_ok
== NULL
2860 || driver_list
->driver
->cached_font_ok (f
, fn
, entity
))
2865 font_object
= driver_list
->driver
->open (f
, entity
, scaled_pixel_size
);
2866 if (!NILP (font_object
))
2867 ASET (font_object
, FONT_SIZE_INDEX
, make_number (pixel_size
));
2868 FONT_ADD_LOG ("open", entity
, font_object
);
2869 if (NILP (font_object
))
2871 ASET (entity
, FONT_OBJLIST_INDEX
,
2872 Fcons (font_object
, AREF (entity
, FONT_OBJLIST_INDEX
)));
2875 font
= XFONT_OBJECT (font_object
);
2876 min_width
= (font
->min_width
? font
->min_width
2877 : font
->average_width
? font
->average_width
2878 : font
->space_width
? font
->space_width
2880 height
= (font
->height
? font
->height
: 1);
2881 #ifdef HAVE_WINDOW_SYSTEM
2882 FRAME_X_DISPLAY_INFO (f
)->n_fonts
++;
2883 if (FRAME_X_DISPLAY_INFO (f
)->n_fonts
== 1)
2885 FRAME_SMALLEST_CHAR_WIDTH (f
) = min_width
;
2886 FRAME_SMALLEST_FONT_HEIGHT (f
) = height
;
2887 fonts_changed_p
= 1;
2891 if (FRAME_SMALLEST_CHAR_WIDTH (f
) > min_width
)
2892 FRAME_SMALLEST_CHAR_WIDTH (f
) = min_width
, fonts_changed_p
= 1;
2893 if (FRAME_SMALLEST_FONT_HEIGHT (f
) > height
)
2894 FRAME_SMALLEST_FONT_HEIGHT (f
) = height
, fonts_changed_p
= 1;
2902 /* Close FONT_OBJECT that is opened on frame F. */
2905 font_close_object (FRAME_PTR f
, Lisp_Object font_object
)
2907 struct font
*font
= XFONT_OBJECT (font_object
);
2909 if (NILP (AREF (font_object
, FONT_TYPE_INDEX
)))
2910 /* Already closed. */
2912 FONT_ADD_LOG ("close", font_object
, Qnil
);
2913 font
->driver
->close (f
, font
);
2914 #ifdef HAVE_WINDOW_SYSTEM
2915 font_assert (FRAME_X_DISPLAY_INFO (f
)->n_fonts
);
2916 FRAME_X_DISPLAY_INFO (f
)->n_fonts
--;
2922 /* Return 1 if FONT on F has a glyph for character C, 0 if not, -1 if
2923 FONT is a font-entity and it must be opened to check. */
2926 font_has_char (FRAME_PTR f
, Lisp_Object font
, int c
)
2930 if (FONT_ENTITY_P (font
))
2932 Lisp_Object type
= AREF (font
, FONT_TYPE_INDEX
);
2933 struct font_driver_list
*driver_list
;
2935 for (driver_list
= f
->font_driver_list
;
2936 driver_list
&& ! EQ (driver_list
->driver
->type
, type
);
2937 driver_list
= driver_list
->next
);
2940 if (! driver_list
->driver
->has_char
)
2942 return driver_list
->driver
->has_char (font
, c
);
2945 font_assert (FONT_OBJECT_P (font
));
2946 fontp
= XFONT_OBJECT (font
);
2947 if (fontp
->driver
->has_char
)
2949 int result
= fontp
->driver
->has_char (font
, c
);
2954 return (fontp
->driver
->encode_char (fontp
, c
) != FONT_INVALID_CODE
);
2958 /* Return the glyph ID of FONT_OBJECT for character C. */
2961 font_encode_char (Lisp_Object font_object
, int c
)
2965 font_assert (FONT_OBJECT_P (font_object
));
2966 font
= XFONT_OBJECT (font_object
);
2967 return font
->driver
->encode_char (font
, c
);
2971 /* Return the name of FONT_OBJECT. */
2974 font_get_name (Lisp_Object font_object
)
2976 font_assert (FONT_OBJECT_P (font_object
));
2977 return AREF (font_object
, FONT_NAME_INDEX
);
2981 /* Create a new font spec from FONT_NAME, and return it. If FONT_NAME
2982 could not be parsed by font_parse_name, return Qnil. */
2985 font_spec_from_name (Lisp_Object font_name
)
2987 Lisp_Object spec
= Ffont_spec (0, NULL
);
2989 CHECK_STRING (font_name
);
2990 if (font_parse_name (SSDATA (font_name
), spec
) == -1)
2992 font_put_extra (spec
, QCname
, font_name
);
2993 font_put_extra (spec
, QCuser_spec
, font_name
);
2999 font_clear_prop (Lisp_Object
*attrs
, enum font_property_index prop
)
3001 Lisp_Object font
= attrs
[LFACE_FONT_INDEX
];
3006 if (! NILP (Ffont_get (font
, QCname
)))
3008 font
= copy_font_spec (font
);
3009 font_put_extra (font
, QCname
, Qnil
);
3012 if (NILP (AREF (font
, prop
))
3013 && prop
!= FONT_FAMILY_INDEX
3014 && prop
!= FONT_FOUNDRY_INDEX
3015 && prop
!= FONT_WIDTH_INDEX
3016 && prop
!= FONT_SIZE_INDEX
)
3018 if (EQ (font
, attrs
[LFACE_FONT_INDEX
]))
3019 font
= copy_font_spec (font
);
3020 ASET (font
, prop
, Qnil
);
3021 if (prop
== FONT_FAMILY_INDEX
|| prop
== FONT_FOUNDRY_INDEX
)
3023 if (prop
== FONT_FAMILY_INDEX
)
3025 ASET (font
, FONT_FOUNDRY_INDEX
, Qnil
);
3026 /* If we are setting the font family, we must also clear
3027 FONT_WIDTH_INDEX to avoid rejecting families that lack
3028 support for some widths. */
3029 ASET (font
, FONT_WIDTH_INDEX
, Qnil
);
3031 ASET (font
, FONT_ADSTYLE_INDEX
, Qnil
);
3032 ASET (font
, FONT_REGISTRY_INDEX
, Qnil
);
3033 ASET (font
, FONT_SIZE_INDEX
, Qnil
);
3034 ASET (font
, FONT_DPI_INDEX
, Qnil
);
3035 ASET (font
, FONT_SPACING_INDEX
, Qnil
);
3036 ASET (font
, FONT_AVGWIDTH_INDEX
, Qnil
);
3038 else if (prop
== FONT_SIZE_INDEX
)
3040 ASET (font
, FONT_DPI_INDEX
, Qnil
);
3041 ASET (font
, FONT_SPACING_INDEX
, Qnil
);
3042 ASET (font
, FONT_AVGWIDTH_INDEX
, Qnil
);
3044 else if (prop
== FONT_WIDTH_INDEX
)
3045 ASET (font
, FONT_AVGWIDTH_INDEX
, Qnil
);
3046 attrs
[LFACE_FONT_INDEX
] = font
;
3049 /* Select a font from ENTITIES (list of font-entity vectors) that
3050 supports C and is the best match for ATTRS and PIXEL_SIZE. */
3053 font_select_entity (Lisp_Object frame
, Lisp_Object entities
, Lisp_Object
*attrs
, int pixel_size
, int c
)
3055 Lisp_Object font_entity
;
3058 FRAME_PTR f
= XFRAME (frame
);
3060 if (NILP (XCDR (entities
))
3061 && ASIZE (XCAR (entities
)) == 1)
3063 font_entity
= AREF (XCAR (entities
), 0);
3065 || (result
= font_has_char (f
, font_entity
, c
)) > 0)
3070 /* Sort fonts by properties specified in ATTRS. */
3071 prefer
= scratch_font_prefer
;
3073 for (i
= FONT_WEIGHT_INDEX
; i
<= FONT_SIZE_INDEX
; i
++)
3074 ASET (prefer
, i
, Qnil
);
3075 if (FONTP (attrs
[LFACE_FONT_INDEX
]))
3077 Lisp_Object face_font
= attrs
[LFACE_FONT_INDEX
];
3079 for (i
= FONT_WEIGHT_INDEX
; i
<= FONT_SIZE_INDEX
; i
++)
3080 ASET (prefer
, i
, AREF (face_font
, i
));
3082 if (NILP (AREF (prefer
, FONT_WEIGHT_INDEX
)))
3083 FONT_SET_STYLE (prefer
, FONT_WEIGHT_INDEX
, attrs
[LFACE_WEIGHT_INDEX
]);
3084 if (NILP (AREF (prefer
, FONT_SLANT_INDEX
)))
3085 FONT_SET_STYLE (prefer
, FONT_SLANT_INDEX
, attrs
[LFACE_SLANT_INDEX
]);
3086 if (NILP (AREF (prefer
, FONT_WIDTH_INDEX
)))
3087 FONT_SET_STYLE (prefer
, FONT_WIDTH_INDEX
, attrs
[LFACE_SWIDTH_INDEX
]);
3088 ASET (prefer
, FONT_SIZE_INDEX
, make_number (pixel_size
));
3090 return font_sort_entities (entities
, prefer
, frame
, c
);
3093 /* Return a font-entity that satisfies SPEC and is the best match for
3094 face's font related attributes in ATTRS. C, if not negative, is a
3095 character that the entity must support. */
3098 font_find_for_lface (FRAME_PTR f
, Lisp_Object
*attrs
, Lisp_Object spec
, int c
)
3101 Lisp_Object frame
, entities
, val
;
3102 Lisp_Object foundry
[3], *family
, registry
[3], adstyle
[3];
3107 registry
[0] = AREF (spec
, FONT_REGISTRY_INDEX
);
3108 if (NILP (registry
[0]))
3110 registry
[0] = DEFAULT_ENCODING
;
3111 registry
[1] = Qascii_0
;
3112 registry
[2] = null_vector
;
3115 registry
[1] = null_vector
;
3117 if (c
>= 0 && ! NILP (AREF (spec
, FONT_REGISTRY_INDEX
)))
3119 struct charset
*encoding
, *repertory
;
3121 if (font_registry_charsets (AREF (spec
, FONT_REGISTRY_INDEX
),
3122 &encoding
, &repertory
) < 0)
3125 && ENCODE_CHAR (repertory
, c
) == CHARSET_INVALID_CODE (repertory
))
3127 else if (c
> encoding
->max_char
)
3131 work
= copy_font_spec (spec
);
3132 ASET (work
, FONT_TYPE_INDEX
, AREF (spec
, FONT_TYPE_INDEX
));
3133 XSETFRAME (frame
, f
);
3134 pixel_size
= font_pixel_size (f
, spec
);
3135 if (pixel_size
== 0 && INTEGERP (attrs
[LFACE_HEIGHT_INDEX
]))
3137 double pt
= XINT (attrs
[LFACE_HEIGHT_INDEX
]);
3139 pixel_size
= POINT_TO_PIXEL (pt
/ 10, f
->resy
);
3141 ASET (work
, FONT_SIZE_INDEX
, Qnil
);
3142 foundry
[0] = AREF (work
, FONT_FOUNDRY_INDEX
);
3143 if (! NILP (foundry
[0]))
3144 foundry
[1] = null_vector
;
3145 else if (STRINGP (attrs
[LFACE_FOUNDRY_INDEX
]))
3147 val
= attrs
[LFACE_FOUNDRY_INDEX
];
3148 foundry
[0] = font_intern_prop (SSDATA (val
), SBYTES (val
), 1);
3150 foundry
[2] = null_vector
;
3153 foundry
[0] = Qnil
, foundry
[1] = null_vector
;
3155 adstyle
[0] = AREF (work
, FONT_ADSTYLE_INDEX
);
3156 if (! NILP (adstyle
[0]))
3157 adstyle
[1] = null_vector
;
3158 else if (FONTP (attrs
[LFACE_FONT_INDEX
]))
3160 Lisp_Object face_font
= attrs
[LFACE_FONT_INDEX
];
3162 if (! NILP (AREF (face_font
, FONT_ADSTYLE_INDEX
)))
3164 adstyle
[0] = AREF (face_font
, FONT_ADSTYLE_INDEX
);
3166 adstyle
[2] = null_vector
;
3169 adstyle
[0] = Qnil
, adstyle
[1] = null_vector
;
3172 adstyle
[0] = Qnil
, adstyle
[1] = null_vector
;
3175 val
= AREF (work
, FONT_FAMILY_INDEX
);
3176 if (NILP (val
) && STRINGP (attrs
[LFACE_FAMILY_INDEX
]))
3178 val
= attrs
[LFACE_FAMILY_INDEX
];
3179 val
= font_intern_prop (SSDATA (val
), SBYTES (val
), 1);
3183 family
= alloca ((sizeof family
[0]) * 2);
3185 family
[1] = null_vector
; /* terminator. */
3190 = Fassoc_string (val
, Vface_alternative_font_family_alist
, Qt
);
3192 if (! NILP (alters
))
3194 EMACS_INT alterslen
= XFASTINT (Flength (alters
));
3195 SAFE_ALLOCA_LISP (family
, alterslen
+ 2);
3196 for (i
= 0; CONSP (alters
); i
++, alters
= XCDR (alters
))
3197 family
[i
] = XCAR (alters
);
3198 if (NILP (AREF (spec
, FONT_FAMILY_INDEX
)))
3200 family
[i
] = null_vector
;
3204 family
= alloca ((sizeof family
[0]) * 3);
3207 if (NILP (AREF (spec
, FONT_FAMILY_INDEX
)))
3209 family
[i
] = null_vector
;
3213 for (i
= 0; SYMBOLP (family
[i
]); i
++)
3215 ASET (work
, FONT_FAMILY_INDEX
, family
[i
]);
3216 for (j
= 0; SYMBOLP (foundry
[j
]); j
++)
3218 ASET (work
, FONT_FOUNDRY_INDEX
, foundry
[j
]);
3219 for (k
= 0; SYMBOLP (registry
[k
]); k
++)
3221 ASET (work
, FONT_REGISTRY_INDEX
, registry
[k
]);
3222 for (l
= 0; SYMBOLP (adstyle
[l
]); l
++)
3224 ASET (work
, FONT_ADSTYLE_INDEX
, adstyle
[l
]);
3225 entities
= font_list_entities (frame
, work
);
3226 if (! NILP (entities
))
3228 val
= font_select_entity (frame
, entities
,
3229 attrs
, pixel_size
, c
);
3244 font_open_for_lface (FRAME_PTR f
, Lisp_Object entity
, Lisp_Object
*attrs
, Lisp_Object spec
)
3248 if (INTEGERP (AREF (entity
, FONT_SIZE_INDEX
))
3249 && XINT (AREF (entity
, FONT_SIZE_INDEX
)) > 0)
3250 size
= XINT (AREF (entity
, FONT_SIZE_INDEX
));
3251 else if (FONT_SPEC_P (spec
) && ! NILP (AREF (spec
, FONT_SIZE_INDEX
)))
3252 size
= font_pixel_size (f
, spec
);
3256 if (INTEGERP (attrs
[LFACE_HEIGHT_INDEX
]))
3257 pt
= XINT (attrs
[LFACE_HEIGHT_INDEX
]);
3260 struct face
*def
= FACE_FROM_ID (f
, DEFAULT_FACE_ID
);
3261 Lisp_Object height
= def
->lface
[LFACE_HEIGHT_INDEX
];
3262 if (INTEGERP (height
))
3265 abort (); /* We should never end up here. */
3269 size
= POINT_TO_PIXEL (pt
, f
->resy
);
3273 Lisp_Object ffsize
= get_frame_param (f
, Qfontsize
);
3274 size
= NUMBERP (ffsize
) ? POINT_TO_PIXEL (XINT (ffsize
), f
->resy
) : 0;
3278 return font_open_entity (f
, entity
, size
);
3282 /* Find a font that satisfies SPEC and is the best match for
3283 face's attributes in ATTRS on FRAME, and return the opened
3287 font_load_for_lface (FRAME_PTR f
, Lisp_Object
*attrs
, Lisp_Object spec
)
3289 Lisp_Object entity
, name
;
3291 entity
= font_find_for_lface (f
, attrs
, spec
, -1);
3294 /* No font is listed for SPEC, but each font-backend may have
3295 different criteria about "font matching". So, try it. */
3296 entity
= font_matching_entity (f
, attrs
, spec
);
3300 /* Don't lose the original name that was put in initially. We need
3301 it to re-apply the font when font parameters (like hinting or dpi) have
3303 entity
= font_open_for_lface (f
, entity
, attrs
, spec
);
3306 name
= Ffont_get (spec
, QCuser_spec
);
3307 if (STRINGP (name
)) font_put_extra (entity
, QCuser_spec
, name
);
3313 /* Make FACE on frame F ready to use the font opened for FACE. */
3316 font_prepare_for_face (FRAME_PTR f
, struct face
*face
)
3318 if (face
->font
->driver
->prepare_face
)
3319 face
->font
->driver
->prepare_face (f
, face
);
3323 /* Make FACE on frame F stop using the font opened for FACE. */
3326 font_done_for_face (FRAME_PTR f
, struct face
*face
)
3328 if (face
->font
->driver
->done_face
)
3329 face
->font
->driver
->done_face (f
, face
);
3334 /* Open a font that is a match for font-spec SPEC on frame F. If no proper
3335 font is found, return Qnil. */
3338 font_open_by_spec (FRAME_PTR f
, Lisp_Object spec
)
3340 Lisp_Object attrs
[LFACE_VECTOR_SIZE
];
3342 /* We set up the default font-related attributes of a face to prefer
3344 attrs
[LFACE_FAMILY_INDEX
] = attrs
[LFACE_FOUNDRY_INDEX
] = Qnil
;
3345 attrs
[LFACE_SWIDTH_INDEX
] = attrs
[LFACE_WEIGHT_INDEX
]
3346 = attrs
[LFACE_SLANT_INDEX
] = Qnormal
;
3348 attrs
[LFACE_HEIGHT_INDEX
] = make_number (120);
3350 attrs
[LFACE_HEIGHT_INDEX
] = make_number (0);
3352 attrs
[LFACE_FONT_INDEX
] = Qnil
;
3354 return font_load_for_lface (f
, attrs
, spec
);
3358 /* Open a font that matches NAME on frame F. If no proper font is
3359 found, return Qnil. */
3362 font_open_by_name (FRAME_PTR f
, const char *name
)
3364 Lisp_Object args
[2];
3365 Lisp_Object spec
, ret
;
3368 args
[1] = make_unibyte_string (name
, strlen (name
));
3369 spec
= Ffont_spec (2, args
);
3370 ret
= font_open_by_spec (f
, spec
);
3371 /* Do not lose name originally put in. */
3373 font_put_extra (ret
, QCuser_spec
, args
[1]);
3379 /* Register font-driver DRIVER. This function is used in two ways.
3381 The first is with frame F non-NULL. In this case, make DRIVER
3382 available (but not yet activated) on F. All frame creators
3383 (e.g. Fx_create_frame) must call this function at least once with
3384 an available font-driver.
3386 The second is with frame F NULL. In this case, DRIVER is globally
3387 registered in the variable `font_driver_list'. All font-driver
3388 implementations must call this function in its syms_of_XXXX
3389 (e.g. syms_of_xfont). */
3392 register_font_driver (struct font_driver
*driver
, FRAME_PTR f
)
3394 struct font_driver_list
*root
= f
? f
->font_driver_list
: font_driver_list
;
3395 struct font_driver_list
*prev
, *list
;
3397 if (f
&& ! driver
->draw
)
3398 error ("Unusable font driver for a frame: %s",
3399 SDATA (SYMBOL_NAME (driver
->type
)));
3401 for (prev
= NULL
, list
= root
; list
; prev
= list
, list
= list
->next
)
3402 if (EQ (list
->driver
->type
, driver
->type
))
3403 error ("Duplicated font driver: %s", SDATA (SYMBOL_NAME (driver
->type
)));
3405 list
= xmalloc (sizeof *list
);
3407 list
->driver
= driver
;
3412 f
->font_driver_list
= list
;
3414 font_driver_list
= list
;
3420 free_font_driver_list (FRAME_PTR f
)
3422 struct font_driver_list
*list
, *next
;
3424 for (list
= f
->font_driver_list
; list
; list
= next
)
3429 f
->font_driver_list
= NULL
;
3433 /* Make the frame F use font backends listed in NEW_DRIVERS (list of
3434 symbols, e.g. xft, x). If NEW_DRIVERS is t, make F use all
3435 available font drivers. If NEW_DRIVERS is nil, finalize all drivers.
3437 A caller must free all realized faces if any in advance. The
3438 return value is a list of font backends actually made used on
3442 font_update_drivers (FRAME_PTR f
, Lisp_Object new_drivers
)
3444 Lisp_Object active_drivers
= Qnil
;
3445 struct font_driver_list
*list
;
3447 /* At first, turn off non-requested drivers, and turn on requested
3449 for (list
= f
->font_driver_list
; list
; list
= list
->next
)
3451 struct font_driver
*driver
= list
->driver
;
3452 if ((EQ (new_drivers
, Qt
) || ! NILP (Fmemq (driver
->type
, new_drivers
)))
3457 if (driver
->end_for_frame
)
3458 driver
->end_for_frame (f
);
3459 font_finish_cache (f
, driver
);
3464 if (! driver
->start_for_frame
3465 || driver
->start_for_frame (f
) == 0)
3467 font_prepare_cache (f
, driver
);
3474 if (NILP (new_drivers
))
3477 if (! EQ (new_drivers
, Qt
))
3479 /* Re-order the driver list according to new_drivers. */
3480 struct font_driver_list
**list_table
, **next
;
3484 list_table
= alloca (sizeof list_table
[0] * (num_font_drivers
+ 1));
3485 for (i
= 0, tail
= new_drivers
; ! NILP (tail
); tail
= XCDR (tail
))
3487 for (list
= f
->font_driver_list
; list
; list
= list
->next
)
3488 if (list
->on
&& EQ (list
->driver
->type
, XCAR (tail
)))
3491 list_table
[i
++] = list
;
3493 for (list
= f
->font_driver_list
; list
; list
= list
->next
)
3495 list_table
[i
++] = list
;
3496 list_table
[i
] = NULL
;
3498 next
= &f
->font_driver_list
;
3499 for (i
= 0; list_table
[i
]; i
++)
3501 *next
= list_table
[i
];
3502 next
= &(*next
)->next
;
3506 if (! f
->font_driver_list
->on
)
3507 { /* None of the drivers is enabled: enable them all.
3508 Happens if you set the list of drivers to (xft x) in your .emacs
3509 and then use it under w32 or ns. */
3510 for (list
= f
->font_driver_list
; list
; list
= list
->next
)
3512 struct font_driver
*driver
= list
->driver
;
3513 eassert (! list
->on
);
3514 if (! driver
->start_for_frame
3515 || driver
->start_for_frame (f
) == 0)
3517 font_prepare_cache (f
, driver
);
3524 for (list
= f
->font_driver_list
; list
; list
= list
->next
)
3526 active_drivers
= nconc2 (active_drivers
,
3527 Fcons (list
->driver
->type
, Qnil
));
3528 return active_drivers
;
3532 font_put_frame_data (FRAME_PTR f
, struct font_driver
*driver
, void *data
)
3534 struct font_data_list
*list
, *prev
;
3536 for (prev
= NULL
, list
= f
->font_data_list
; list
;
3537 prev
= list
, list
= list
->next
)
3538 if (list
->driver
== driver
)
3545 prev
->next
= list
->next
;
3547 f
->font_data_list
= list
->next
;
3555 list
= xmalloc (sizeof *list
);
3556 list
->driver
= driver
;
3557 list
->next
= f
->font_data_list
;
3558 f
->font_data_list
= list
;
3566 font_get_frame_data (FRAME_PTR f
, struct font_driver
*driver
)
3568 struct font_data_list
*list
;
3570 for (list
= f
->font_data_list
; list
; list
= list
->next
)
3571 if (list
->driver
== driver
)
3579 /* Sets attributes on a font. Any properties that appear in ALIST and
3580 BOOLEAN_PROPERTIES or NON_BOOLEAN_PROPERTIES are set on the font.
3581 BOOLEAN_PROPERTIES and NON_BOOLEAN_PROPERTIES are NULL-terminated
3582 arrays of strings. This function is intended for use by the font
3583 drivers to implement their specific font_filter_properties. */
3585 font_filter_properties (Lisp_Object font
,
3587 const char *const boolean_properties
[],
3588 const char *const non_boolean_properties
[])
3593 /* Set boolean values to Qt or Qnil */
3594 for (i
= 0; boolean_properties
[i
] != NULL
; ++i
)
3595 for (it
= alist
; ! NILP (it
); it
= XCDR (it
))
3597 Lisp_Object key
= XCAR (XCAR (it
));
3598 Lisp_Object val
= XCDR (XCAR (it
));
3599 char *keystr
= SSDATA (SYMBOL_NAME (key
));
3601 if (strcmp (boolean_properties
[i
], keystr
) == 0)
3603 const char *str
= INTEGERP (val
) ? (XINT (val
) ? "true" : "false")
3604 : SYMBOLP (val
) ? SSDATA (SYMBOL_NAME (val
))
3607 if (strcmp ("false", str
) == 0 || strcmp ("False", str
) == 0
3608 || strcmp ("FALSE", str
) == 0 || strcmp ("FcFalse", str
) == 0
3609 || strcmp ("off", str
) == 0 || strcmp ("OFF", str
) == 0
3610 || strcmp ("Off", str
) == 0)
3615 Ffont_put (font
, key
, val
);
3619 for (i
= 0; non_boolean_properties
[i
] != NULL
; ++i
)
3620 for (it
= alist
; ! NILP (it
); it
= XCDR (it
))
3622 Lisp_Object key
= XCAR (XCAR (it
));
3623 Lisp_Object val
= XCDR (XCAR (it
));
3624 char *keystr
= SSDATA (SYMBOL_NAME (key
));
3625 if (strcmp (non_boolean_properties
[i
], keystr
) == 0)
3626 Ffont_put (font
, key
, val
);
3631 /* Return the font used to draw character C by FACE at buffer position
3632 POS in window W. If STRING is non-nil, it is a string containing C
3633 at index POS. If C is negative, get C from the current buffer or
3637 font_at (int c
, ptrdiff_t pos
, struct face
*face
, struct window
*w
,
3642 Lisp_Object font_object
;
3644 multibyte
= (NILP (string
)
3645 ? ! NILP (BVAR (current_buffer
, enable_multibyte_characters
))
3646 : STRING_MULTIBYTE (string
));
3653 ptrdiff_t pos_byte
= CHAR_TO_BYTE (pos
);
3655 c
= FETCH_CHAR (pos_byte
);
3658 c
= FETCH_BYTE (pos
);
3664 multibyte
= STRING_MULTIBYTE (string
);
3667 ptrdiff_t pos_byte
= string_char_to_byte (string
, pos
);
3669 str
= SDATA (string
) + pos_byte
;
3670 c
= STRING_CHAR (str
);
3673 c
= SDATA (string
)[pos
];
3677 f
= XFRAME (w
->frame
);
3678 if (! FRAME_WINDOW_P (f
))
3685 if (STRINGP (string
))
3686 face_id
= face_at_string_position (w
, string
, pos
, 0, -1, -1, &endptr
,
3687 DEFAULT_FACE_ID
, 0);
3689 face_id
= face_at_buffer_position (w
, pos
, -1, -1, &endptr
,
3691 face
= FACE_FROM_ID (f
, face_id
);
3695 int face_id
= FACE_FOR_CHAR (f
, face
, c
, pos
, string
);
3696 face
= FACE_FROM_ID (f
, face_id
);
3701 XSETFONT (font_object
, face
->font
);
3706 #ifdef HAVE_WINDOW_SYSTEM
3708 /* Check how many characters after POS (at most to *LIMIT) can be
3709 displayed by the same font in the window W. FACE, if non-NULL, is
3710 the face selected for the character at POS. If STRING is not nil,
3711 it is the string to check instead of the current buffer. In that
3712 case, FACE must be not NULL.
3714 The return value is the font-object for the character at POS.
3715 *LIMIT is set to the position where that font can't be used.
3717 It is assured that the current buffer (or STRING) is multibyte. */
3720 font_range (ptrdiff_t pos
, ptrdiff_t *limit
, struct window
*w
, struct face
*face
, Lisp_Object string
)
3722 ptrdiff_t pos_byte
, ignore
;
3724 Lisp_Object font_object
= Qnil
;
3728 pos_byte
= CHAR_TO_BYTE (pos
);
3733 face_id
= face_at_buffer_position (w
, pos
, 0, 0, &ignore
,
3735 face
= FACE_FROM_ID (XFRAME (w
->frame
), face_id
);
3741 pos_byte
= string_char_to_byte (string
, pos
);
3744 while (pos
< *limit
)
3746 Lisp_Object category
;
3749 FETCH_CHAR_ADVANCE_NO_CHECK (c
, pos
, pos_byte
);
3751 FETCH_STRING_CHAR_ADVANCE_NO_CHECK (c
, string
, pos
, pos_byte
);
3752 category
= CHAR_TABLE_REF (Vunicode_category_table
, c
);
3753 if (INTEGERP (category
)
3754 && (XINT (category
) == UNICODE_CATEGORY_Cf
3755 || CHAR_VARIATION_SELECTOR_P (c
)))
3757 if (NILP (font_object
))
3759 font_object
= font_for_char (face
, c
, pos
- 1, string
);
3760 if (NILP (font_object
))
3764 if (font_encode_char (font_object
, c
) == FONT_INVALID_CODE
)
3774 DEFUN ("fontp", Ffontp
, Sfontp
, 1, 2, 0,
3775 doc
: /* Return t if OBJECT is a font-spec, font-entity, or font-object.
3776 Return nil otherwise.
3777 Optional 2nd argument EXTRA-TYPE, if non-nil, specifies to check
3778 which kind of font it is. It must be one of `font-spec', `font-entity',
3780 (Lisp_Object object
, Lisp_Object extra_type
)
3782 if (NILP (extra_type
))
3783 return (FONTP (object
) ? Qt
: Qnil
);
3784 if (EQ (extra_type
, Qfont_spec
))
3785 return (FONT_SPEC_P (object
) ? Qt
: Qnil
);
3786 if (EQ (extra_type
, Qfont_entity
))
3787 return (FONT_ENTITY_P (object
) ? Qt
: Qnil
);
3788 if (EQ (extra_type
, Qfont_object
))
3789 return (FONT_OBJECT_P (object
) ? Qt
: Qnil
);
3790 wrong_type_argument (intern ("font-extra-type"), extra_type
);
3793 DEFUN ("font-spec", Ffont_spec
, Sfont_spec
, 0, MANY
, 0,
3794 doc
: /* Return a newly created font-spec with arguments as properties.
3796 ARGS must come in pairs KEY VALUE of font properties. KEY must be a
3797 valid font property name listed below:
3799 `:family', `:weight', `:slant', `:width'
3801 They are the same as face attributes of the same name. See
3802 `set-face-attribute'.
3806 VALUE must be a string or a symbol specifying the font foundry, e.g. ``misc''.
3810 VALUE must be a string or a symbol specifying the additional
3811 typographic style information of a font, e.g. ``sans''.
3815 VALUE must be a string or a symbol specifying the charset registry and
3816 encoding of a font, e.g. ``iso8859-1''.
3820 VALUE must be a non-negative integer or a floating point number
3821 specifying the font size. It specifies the font size in pixels (if
3822 VALUE is an integer), or in points (if VALUE is a float).
3826 VALUE must be a string of XLFD-style or fontconfig-style font name.
3830 VALUE must be a symbol representing a script that the font must
3831 support. It may be a symbol representing a subgroup of a script
3832 listed in the variable `script-representative-chars'.
3836 VALUE must be a symbol of two-letter ISO-639 language names,
3841 VALUE must be a list (SCRIPT-TAG LANGSYS-TAG GSUB [ GPOS ]) to specify
3842 required OpenType features.
3844 SCRIPT-TAG: OpenType script tag symbol (e.g. `deva').
3845 LANGSYS-TAG: OpenType language system tag symbol,
3846 or nil for the default language system.
3847 GSUB: List of OpenType GSUB feature tag symbols, or nil if none required.
3848 GPOS: List of OpenType GPOS feature tag symbols, or nil if none required.
3850 GSUB and GPOS may contain `nil' element. In such a case, the font
3851 must not have any of the remaining elements.
3853 For instance, if the VALUE is `(thai nil nil (mark))', the font must
3854 be an OpenType font whose GPOS table of `thai' script's default
3855 language system must contain `mark' feature.
3857 usage: (font-spec ARGS...) */)
3858 (ptrdiff_t nargs
, Lisp_Object
*args
)
3860 Lisp_Object spec
= font_make_spec ();
3863 for (i
= 0; i
< nargs
; i
+= 2)
3865 Lisp_Object key
= args
[i
], val
;
3869 error ("No value for key `%s'", SDATA (SYMBOL_NAME (key
)));
3872 if (EQ (key
, QCname
))
3875 font_parse_name (SSDATA (val
), spec
);
3876 font_put_extra (spec
, key
, val
);
3880 int idx
= get_font_prop_index (key
);
3884 val
= font_prop_validate (idx
, Qnil
, val
);
3885 if (idx
< FONT_EXTRA_INDEX
)
3886 ASET (spec
, idx
, val
);
3888 font_put_extra (spec
, key
, val
);
3891 font_put_extra (spec
, key
, font_prop_validate (0, key
, val
));
3897 /* Return a copy of FONT as a font-spec. */
3899 copy_font_spec (Lisp_Object font
)
3901 Lisp_Object new_spec
, tail
, prev
, extra
;
3905 new_spec
= font_make_spec ();
3906 for (i
= 1; i
< FONT_EXTRA_INDEX
; i
++)
3907 ASET (new_spec
, i
, AREF (font
, i
));
3908 extra
= Fcopy_alist (AREF (font
, FONT_EXTRA_INDEX
));
3909 /* We must remove :font-entity property. */
3910 for (prev
= Qnil
, tail
= extra
; CONSP (tail
); prev
= tail
, tail
= XCDR (tail
))
3911 if (EQ (XCAR (XCAR (tail
)), QCfont_entity
))
3914 extra
= XCDR (extra
);
3916 XSETCDR (prev
, XCDR (tail
));
3919 ASET (new_spec
, FONT_EXTRA_INDEX
, extra
);
3923 /* Merge font-specs FROM and TO, and return a new font-spec.
3924 Every specified property in FROM overrides the corresponding
3927 merge_font_spec (Lisp_Object from
, Lisp_Object to
)
3929 Lisp_Object extra
, tail
;
3934 to
= copy_font_spec (to
);
3935 for (i
= 0; i
< FONT_EXTRA_INDEX
; i
++)
3936 ASET (to
, i
, AREF (from
, i
));
3937 extra
= AREF (to
, FONT_EXTRA_INDEX
);
3938 for (tail
= AREF (from
, FONT_EXTRA_INDEX
); CONSP (tail
); tail
= XCDR (tail
))
3939 if (! EQ (XCAR (XCAR (tail
)), Qfont_entity
))
3941 Lisp_Object slot
= assq_no_quit (XCAR (XCAR (tail
)), extra
);
3944 XSETCDR (slot
, XCDR (XCAR (tail
)));
3946 extra
= Fcons (Fcons (XCAR (XCAR (tail
)), XCDR (XCAR (tail
))), extra
);
3948 ASET (to
, FONT_EXTRA_INDEX
, extra
);
3952 DEFUN ("font-get", Ffont_get
, Sfont_get
, 2, 2, 0,
3953 doc
: /* Return the value of FONT's property KEY.
3954 FONT is a font-spec, a font-entity, or a font-object.
3955 KEY is any symbol, but these are reserved for specific meanings:
3956 :family, :weight, :slant, :width, :foundry, :adstyle, :registry,
3957 :size, :name, :script, :otf
3958 See the documentation of `font-spec' for their meanings.
3959 In addition, if FONT is a font-entity or a font-object, values of
3960 :script and :otf are different from those of a font-spec as below:
3962 The value of :script may be a list of scripts that are supported by the font.
3964 The value of :otf is a cons (GSUB . GPOS) where GSUB and GPOS are lists
3965 representing the OpenType features supported by the font by this form:
3966 ((SCRIPT (LANGSYS FEATURE ...) ...) ...)
3967 SCRIPT, LANGSYS, and FEATURE are all symbols representing OpenType
3969 (Lisp_Object font
, Lisp_Object key
)
3977 idx
= get_font_prop_index (key
);
3978 if (idx
>= FONT_WEIGHT_INDEX
&& idx
<= FONT_WIDTH_INDEX
)
3979 return font_style_symbolic (font
, idx
, 0);
3980 if (idx
>= 0 && idx
< FONT_EXTRA_INDEX
)
3981 return AREF (font
, idx
);
3982 val
= Fassq (key
, AREF (font
, FONT_EXTRA_INDEX
));
3983 if (NILP (val
) && EQ (key
, QCotf
) && FONT_OBJECT_P (font
))
3985 struct font
*fontp
= XFONT_OBJECT (font
);
3987 if (fontp
->driver
->otf_capability
)
3988 val
= fontp
->driver
->otf_capability (fontp
);
3990 val
= Fcons (Qnil
, Qnil
);
3997 #ifdef HAVE_WINDOW_SYSTEM
3999 DEFUN ("font-face-attributes", Ffont_face_attributes
, Sfont_face_attributes
, 1, 2, 0,
4000 doc
: /* Return a plist of face attributes generated by FONT.
4001 FONT is a font name, a font-spec, a font-entity, or a font-object.
4002 The return value is a list of the form
4004 \(:family FAMILY :height HEIGHT :weight WEIGHT :slant SLANT :width WIDTH)
4006 where FAMILY, HEIGHT, WEIGHT, SLANT, and WIDTH are face attribute values
4007 compatible with `set-face-attribute'. Some of these key-attribute pairs
4008 may be omitted from the list if they are not specified by FONT.
4010 The optional argument FRAME specifies the frame that the face attributes
4011 are to be displayed on. If omitted, the selected frame is used. */)
4012 (Lisp_Object font
, Lisp_Object frame
)
4015 Lisp_Object plist
[10];
4020 frame
= selected_frame
;
4021 CHECK_LIVE_FRAME (frame
);
4026 int fontset
= fs_query_fontset (font
, 0);
4027 Lisp_Object name
= font
;
4029 font
= fontset_ascii (fontset
);
4030 font
= font_spec_from_name (name
);
4032 signal_error ("Invalid font name", name
);
4034 else if (! FONTP (font
))
4035 signal_error ("Invalid font object", font
);
4037 val
= AREF (font
, FONT_FAMILY_INDEX
);
4040 plist
[n
++] = QCfamily
;
4041 plist
[n
++] = SYMBOL_NAME (val
);
4044 val
= AREF (font
, FONT_SIZE_INDEX
);
4047 Lisp_Object font_dpi
= AREF (font
, FONT_DPI_INDEX
);
4048 int dpi
= INTEGERP (font_dpi
) ? XINT (font_dpi
) : f
->resy
;
4049 plist
[n
++] = QCheight
;
4050 plist
[n
++] = make_number (PIXEL_TO_POINT (XINT (val
) * 10, dpi
));
4052 else if (FLOATP (val
))
4054 plist
[n
++] = QCheight
;
4055 plist
[n
++] = make_number (10 * (int) XFLOAT_DATA (val
));
4058 val
= FONT_WEIGHT_FOR_FACE (font
);
4061 plist
[n
++] = QCweight
;
4065 val
= FONT_SLANT_FOR_FACE (font
);
4068 plist
[n
++] = QCslant
;
4072 val
= FONT_WIDTH_FOR_FACE (font
);
4075 plist
[n
++] = QCwidth
;
4079 return Flist (n
, plist
);
4084 DEFUN ("font-put", Ffont_put
, Sfont_put
, 3, 3, 0,
4085 doc
: /* Set one property of FONT: give property KEY value VAL.
4086 FONT is a font-spec, a font-entity, or a font-object.
4088 If FONT is a font-spec, KEY can be any symbol. But if KEY is the one
4089 accepted by the function `font-spec' (which see), VAL must be what
4090 allowed in `font-spec'.
4092 If FONT is a font-entity or a font-object, KEY must not be the one
4093 accepted by `font-spec'. */)
4094 (Lisp_Object font
, Lisp_Object prop
, Lisp_Object val
)
4098 idx
= get_font_prop_index (prop
);
4099 if (idx
>= 0 && idx
< FONT_EXTRA_INDEX
)
4101 CHECK_FONT_SPEC (font
);
4102 ASET (font
, idx
, font_prop_validate (idx
, Qnil
, val
));
4106 if (EQ (prop
, QCname
)
4107 || EQ (prop
, QCscript
)
4108 || EQ (prop
, QClang
)
4109 || EQ (prop
, QCotf
))
4110 CHECK_FONT_SPEC (font
);
4113 font_put_extra (font
, prop
, font_prop_validate (0, prop
, val
));
4118 DEFUN ("list-fonts", Flist_fonts
, Slist_fonts
, 1, 4, 0,
4119 doc
: /* List available fonts matching FONT-SPEC on the current frame.
4120 Optional 2nd argument FRAME specifies the target frame.
4121 Optional 3rd argument NUM, if non-nil, limits the number of returned fonts.
4122 Optional 4th argument PREFER, if non-nil, is a font-spec to
4123 control the order of the returned list. Fonts are sorted by
4124 how close they are to PREFER. */)
4125 (Lisp_Object font_spec
, Lisp_Object frame
, Lisp_Object num
, Lisp_Object prefer
)
4127 Lisp_Object vec
, list
;
4131 frame
= selected_frame
;
4132 CHECK_LIVE_FRAME (frame
);
4133 CHECK_FONT_SPEC (font_spec
);
4141 if (! NILP (prefer
))
4142 CHECK_FONT_SPEC (prefer
);
4144 list
= font_list_entities (frame
, font_spec
);
4147 if (NILP (XCDR (list
))
4148 && ASIZE (XCAR (list
)) == 1)
4149 return Fcons (AREF (XCAR (list
), 0), Qnil
);
4151 if (! NILP (prefer
))
4152 vec
= font_sort_entities (list
, prefer
, frame
, 0);
4154 vec
= font_vconcat_entity_vectors (list
);
4155 if (n
== 0 || n
>= ASIZE (vec
))
4157 Lisp_Object args
[2];
4161 list
= Fappend (2, args
);
4165 for (list
= Qnil
, n
--; n
>= 0; n
--)
4166 list
= Fcons (AREF (vec
, n
), list
);
4171 DEFUN ("font-family-list", Ffont_family_list
, Sfont_family_list
, 0, 1, 0,
4172 doc
: /* List available font families on the current frame.
4173 Optional argument FRAME, if non-nil, specifies the target frame. */)
4177 struct font_driver_list
*driver_list
;
4181 frame
= selected_frame
;
4182 CHECK_LIVE_FRAME (frame
);
4185 for (driver_list
= f
->font_driver_list
; driver_list
;
4186 driver_list
= driver_list
->next
)
4187 if (driver_list
->driver
->list_family
)
4189 Lisp_Object val
= driver_list
->driver
->list_family (frame
);
4190 Lisp_Object tail
= list
;
4192 for (; CONSP (val
); val
= XCDR (val
))
4193 if (NILP (Fmemq (XCAR (val
), tail
))
4194 && SYMBOLP (XCAR (val
)))
4195 list
= Fcons (SYMBOL_NAME (XCAR (val
)), list
);
4200 DEFUN ("find-font", Ffind_font
, Sfind_font
, 1, 2, 0,
4201 doc
: /* Return a font-entity matching with FONT-SPEC on the current frame.
4202 Optional 2nd argument FRAME, if non-nil, specifies the target frame. */)
4203 (Lisp_Object font_spec
, Lisp_Object frame
)
4205 Lisp_Object val
= Flist_fonts (font_spec
, frame
, make_number (1), Qnil
);
4212 DEFUN ("font-xlfd-name", Ffont_xlfd_name
, Sfont_xlfd_name
, 1, 2, 0,
4213 doc
: /* Return XLFD name of FONT.
4214 FONT is a font-spec, font-entity, or font-object.
4215 If the name is too long for XLFD (maximum 255 chars), return nil.
4216 If the 2nd optional arg FOLD-WILDCARDS is non-nil,
4217 the consecutive wildcards are folded into one. */)
4218 (Lisp_Object font
, Lisp_Object fold_wildcards
)
4225 if (FONT_OBJECT_P (font
))
4227 Lisp_Object font_name
= AREF (font
, FONT_NAME_INDEX
);
4229 if (STRINGP (font_name
)
4230 && SDATA (font_name
)[0] == '-')
4232 if (NILP (fold_wildcards
))
4234 strcpy (name
, SSDATA (font_name
));
4237 pixel_size
= XFONT_OBJECT (font
)->pixel_size
;
4239 if (font_unparse_xlfd (font
, pixel_size
, name
, 256) < 0)
4242 if (! NILP (fold_wildcards
))
4244 char *p0
= name
, *p1
;
4246 while ((p1
= strstr (p0
, "-*-*")))
4248 strcpy (p1
, p1
+ 2);
4253 return build_string (name
);
4256 DEFUN ("clear-font-cache", Fclear_font_cache
, Sclear_font_cache
, 0, 0, 0,
4257 doc
: /* Clear font cache. */)
4260 Lisp_Object list
, frame
;
4262 FOR_EACH_FRAME (list
, frame
)
4264 FRAME_PTR f
= XFRAME (frame
);
4265 struct font_driver_list
*driver_list
= f
->font_driver_list
;
4267 for (; driver_list
; driver_list
= driver_list
->next
)
4268 if (driver_list
->on
)
4270 Lisp_Object cache
= driver_list
->driver
->get_cache (f
);
4271 Lisp_Object val
, tmp
;
4275 && ! EQ (XCAR (XCAR (val
)), driver_list
->driver
->type
))
4277 font_assert (! NILP (val
));
4278 tmp
= XCDR (XCAR (val
));
4279 if (XINT (XCAR (tmp
)) == 0)
4281 font_clear_cache (f
, XCAR (val
), driver_list
->driver
);
4282 XSETCDR (cache
, XCDR (val
));
4292 font_fill_lglyph_metrics (Lisp_Object glyph
, Lisp_Object font_object
)
4294 struct font
*font
= XFONT_OBJECT (font_object
);
4295 unsigned code
= font
->driver
->encode_char (font
, LGLYPH_CHAR (glyph
));
4296 struct font_metrics metrics
;
4298 LGLYPH_SET_CODE (glyph
, code
);
4299 font
->driver
->text_extents (font
, &code
, 1, &metrics
);
4300 LGLYPH_SET_LBEARING (glyph
, metrics
.lbearing
);
4301 LGLYPH_SET_RBEARING (glyph
, metrics
.rbearing
);
4302 LGLYPH_SET_WIDTH (glyph
, metrics
.width
);
4303 LGLYPH_SET_ASCENT (glyph
, metrics
.ascent
);
4304 LGLYPH_SET_DESCENT (glyph
, metrics
.descent
);
4308 DEFUN ("font-shape-gstring", Ffont_shape_gstring
, Sfont_shape_gstring
, 1, 1, 0,
4309 doc
: /* Shape the glyph-string GSTRING.
4310 Shaping means substituting glyphs and/or adjusting positions of glyphs
4311 to get the correct visual image of character sequences set in the
4312 header of the glyph-string.
4314 If the shaping was successful, the value is GSTRING itself or a newly
4315 created glyph-string. Otherwise, the value is nil. */)
4316 (Lisp_Object gstring
)
4319 Lisp_Object font_object
, n
, glyph
;
4320 ptrdiff_t i
, j
, from
, to
;
4322 if (! composition_gstring_p (gstring
))
4323 signal_error ("Invalid glyph-string: ", gstring
);
4324 if (! NILP (LGSTRING_ID (gstring
)))
4326 font_object
= LGSTRING_FONT (gstring
);
4327 CHECK_FONT_OBJECT (font_object
);
4328 font
= XFONT_OBJECT (font_object
);
4329 if (! font
->driver
->shape
)
4332 /* Try at most three times with larger gstring each time. */
4333 for (i
= 0; i
< 3; i
++)
4335 n
= font
->driver
->shape (gstring
);
4338 gstring
= larger_vector (gstring
,
4339 LGSTRING_GLYPH_LEN (gstring
), -1);
4341 if (i
== 3 || XINT (n
) == 0)
4343 if (XINT (n
) < LGSTRING_GLYPH_LEN (gstring
))
4344 LGSTRING_SET_GLYPH (gstring
, XINT (n
), Qnil
);
4346 glyph
= LGSTRING_GLYPH (gstring
, 0);
4347 from
= LGLYPH_FROM (glyph
);
4348 to
= LGLYPH_TO (glyph
);
4349 for (i
= 1, j
= 0; i
< LGSTRING_GLYPH_LEN (gstring
); i
++)
4351 Lisp_Object
this = LGSTRING_GLYPH (gstring
, i
);
4355 if (NILP (LGLYPH_ADJUSTMENT (this)))
4360 glyph
= LGSTRING_GLYPH (gstring
, j
);
4361 LGLYPH_SET_FROM (glyph
, from
);
4362 LGLYPH_SET_TO (glyph
, to
);
4364 from
= LGLYPH_FROM (this);
4365 to
= LGLYPH_TO (this);
4370 if (from
> LGLYPH_FROM (this))
4371 from
= LGLYPH_FROM (this);
4372 if (to
< LGLYPH_TO (this))
4373 to
= LGLYPH_TO (this);
4379 glyph
= LGSTRING_GLYPH (gstring
, j
);
4380 LGLYPH_SET_FROM (glyph
, from
);
4381 LGLYPH_SET_TO (glyph
, to
);
4383 return composition_gstring_put_cache (gstring
, XINT (n
));
4386 DEFUN ("font-variation-glyphs", Ffont_variation_glyphs
, Sfont_variation_glyphs
,
4388 doc
: /* Return a list of variation glyphs for CHAR in FONT-OBJECT.
4389 Each element of the value is a cons (VARIATION-SELECTOR . GLYPH-ID),
4391 VARIATION-SELECTOR is a character code of variation selection
4392 (#xFE00..#xFE0F or #xE0100..#xE01EF)
4393 GLYPH-ID is a glyph code of the corresponding variation glyph. */)
4394 (Lisp_Object font_object
, Lisp_Object character
)
4396 unsigned variations
[256];
4401 CHECK_FONT_OBJECT (font_object
);
4402 CHECK_CHARACTER (character
);
4403 font
= XFONT_OBJECT (font_object
);
4404 if (! font
->driver
->get_variation_glyphs
)
4406 n
= font
->driver
->get_variation_glyphs (font
, XINT (character
), variations
);
4410 for (i
= 0; i
< 255; i
++)
4413 int vs
= (i
< 16 ? 0xFE00 + i
: 0xE0100 + (i
- 16));
4414 Lisp_Object code
= INTEGER_TO_CONS (variations
[i
]);
4415 val
= Fcons (Fcons (make_number (vs
), code
), val
);
4422 DEFUN ("font-drive-otf", Ffont_drive_otf
, Sfont_drive_otf
, 6, 6, 0,
4423 doc
: /* Apply OpenType features on glyph-string GSTRING-IN.
4424 OTF-FEATURES specifies which features to apply in this format:
4425 (SCRIPT LANGSYS GSUB GPOS)
4427 SCRIPT is a symbol specifying a script tag of OpenType,
4428 LANGSYS is a symbol specifying a langsys tag of OpenType,
4429 GSUB and GPOS, if non-nil, are lists of symbols specifying feature tags.
4431 If LANGYS is nil, the default langsys is selected.
4433 The features are applied in the order they appear in the list. The
4434 symbol `*' means to apply all available features not present in this
4435 list, and the remaining features are ignored. For instance, (vatu
4436 pstf * haln) is to apply vatu and pstf in this order, then to apply
4437 all available features other than vatu, pstf, and haln.
4439 The features are applied to the glyphs in the range FROM and TO of
4440 the glyph-string GSTRING-IN.
4442 If some feature is actually applicable, the resulting glyphs are
4443 produced in the glyph-string GSTRING-OUT from the index INDEX. In
4444 this case, the value is the number of produced glyphs.
4446 If no feature is applicable, no glyph is produced in GSTRING-OUT, and
4449 If GSTRING-OUT is too short to hold produced glyphs, no glyphs are
4450 produced in GSTRING-OUT, and the value is nil.
4452 See the documentation of `composition-get-gstring' for the format of
4454 (Lisp_Object otf_features
, Lisp_Object gstring_in
, Lisp_Object from
, Lisp_Object to
, Lisp_Object gstring_out
, Lisp_Object index
)
4456 Lisp_Object font_object
= LGSTRING_FONT (gstring_in
);
4461 check_otf_features (otf_features
);
4462 CHECK_FONT_OBJECT (font_object
);
4463 font
= XFONT_OBJECT (font_object
);
4464 if (! font
->driver
->otf_drive
)
4465 error ("Font backend %s can't drive OpenType GSUB table",
4466 SDATA (SYMBOL_NAME (font
->driver
->type
)));
4467 CHECK_CONS (otf_features
);
4468 CHECK_SYMBOL (XCAR (otf_features
));
4469 val
= XCDR (otf_features
);
4470 CHECK_SYMBOL (XCAR (val
));
4471 val
= XCDR (otf_features
);
4474 len
= check_gstring (gstring_in
);
4475 CHECK_VECTOR (gstring_out
);
4476 CHECK_NATNUM (from
);
4478 CHECK_NATNUM (index
);
4480 if (XINT (from
) >= XINT (to
) || XINT (to
) > len
)
4481 args_out_of_range_3 (from
, to
, make_number (len
));
4482 if (XINT (index
) >= ASIZE (gstring_out
))
4483 args_out_of_range (index
, make_number (ASIZE (gstring_out
)));
4484 num
= font
->driver
->otf_drive (font
, otf_features
,
4485 gstring_in
, XINT (from
), XINT (to
),
4486 gstring_out
, XINT (index
), 0);
4489 return make_number (num
);
4492 DEFUN ("font-otf-alternates", Ffont_otf_alternates
, Sfont_otf_alternates
,
4494 doc
: /* Return a list of alternate glyphs of CHARACTER in FONT-OBJECT.
4495 OTF-FEATURES specifies which features of the font FONT-OBJECT to apply
4497 (SCRIPT LANGSYS FEATURE ...)
4498 See the documentation of `font-drive-otf' for more detail.
4500 The value is a list of cons cells of the format (GLYPH-ID . CHARACTER),
4501 where GLYPH-ID is a glyph index of the font, and CHARACTER is a
4502 character code corresponding to the glyph or nil if there's no
4503 corresponding character. */)
4504 (Lisp_Object font_object
, Lisp_Object character
, Lisp_Object otf_features
)
4507 Lisp_Object gstring_in
, gstring_out
, g
;
4508 Lisp_Object alternates
;
4511 CHECK_FONT_GET_OBJECT (font_object
, font
);
4512 if (! font
->driver
->otf_drive
)
4513 error ("Font backend %s can't drive OpenType GSUB table",
4514 SDATA (SYMBOL_NAME (font
->driver
->type
)));
4515 CHECK_CHARACTER (character
);
4516 CHECK_CONS (otf_features
);
4518 gstring_in
= Ffont_make_gstring (font_object
, make_number (1));
4519 g
= LGSTRING_GLYPH (gstring_in
, 0);
4520 LGLYPH_SET_CHAR (g
, XINT (character
));
4521 gstring_out
= Ffont_make_gstring (font_object
, make_number (10));
4522 while ((num
= font
->driver
->otf_drive (font
, otf_features
, gstring_in
, 0, 1,
4523 gstring_out
, 0, 1)) < 0)
4524 gstring_out
= Ffont_make_gstring (font_object
,
4525 make_number (ASIZE (gstring_out
) * 2));
4527 for (i
= 0; i
< num
; i
++)
4529 Lisp_Object g
= LGSTRING_GLYPH (gstring_out
, i
);
4530 int c
= LGLYPH_CHAR (g
);
4531 unsigned code
= LGLYPH_CODE (g
);
4533 alternates
= Fcons (Fcons (make_number (code
),
4534 c
> 0 ? make_number (c
) : Qnil
),
4537 return Fnreverse (alternates
);
4543 DEFUN ("open-font", Fopen_font
, Sopen_font
, 1, 3, 0,
4544 doc
: /* Open FONT-ENTITY. */)
4545 (Lisp_Object font_entity
, Lisp_Object size
, Lisp_Object frame
)
4549 CHECK_FONT_ENTITY (font_entity
);
4551 frame
= selected_frame
;
4552 CHECK_LIVE_FRAME (frame
);
4555 isize
= XINT (AREF (font_entity
, FONT_SIZE_INDEX
));
4558 CHECK_NUMBER_OR_FLOAT (size
);
4560 isize
= POINT_TO_PIXEL (XFLOAT_DATA (size
), XFRAME (frame
)->resy
);
4562 isize
= XINT (size
);
4563 if (! (INT_MIN
<= isize
&& isize
<= INT_MAX
))
4564 args_out_of_range (font_entity
, size
);
4568 return font_open_entity (XFRAME (frame
), font_entity
, isize
);
4571 DEFUN ("close-font", Fclose_font
, Sclose_font
, 1, 2, 0,
4572 doc
: /* Close FONT-OBJECT. */)
4573 (Lisp_Object font_object
, Lisp_Object frame
)
4575 CHECK_FONT_OBJECT (font_object
);
4577 frame
= selected_frame
;
4578 CHECK_LIVE_FRAME (frame
);
4579 font_close_object (XFRAME (frame
), font_object
);
4583 DEFUN ("query-font", Fquery_font
, Squery_font
, 1, 1, 0,
4584 doc
: /* Return information about FONT-OBJECT.
4585 The value is a vector:
4586 [ NAME FILENAME PIXEL-SIZE SIZE ASCENT DESCENT SPACE-WIDTH AVERAGE-WIDTH
4589 NAME is the font name, a string (or nil if the font backend doesn't
4592 FILENAME is the font file name, a string (or nil if the font backend
4593 doesn't provide a file name).
4595 PIXEL-SIZE is a pixel size by which the font is opened.
4597 SIZE is a maximum advance width of the font in pixels.
4599 ASCENT, DESCENT, SPACE-WIDTH, AVERAGE-WIDTH are metrics of the font in
4602 CAPABILITY is a list whose first element is a symbol representing the
4603 font format \(x, opentype, truetype, type1, pcf, or bdf) and the
4604 remaining elements describe the details of the font capability.
4606 If the font is OpenType font, the form of the list is
4607 \(opentype GSUB GPOS)
4608 where GSUB shows which "GSUB" features the font supports, and GPOS
4609 shows which "GPOS" features the font supports. Both GSUB and GPOS are
4610 lists of the format:
4611 \((SCRIPT (LANGSYS FEATURE ...) ...) ...)
4613 If the font is not OpenType font, currently the length of the form is
4616 SCRIPT is a symbol representing OpenType script tag.
4618 LANGSYS is a symbol representing OpenType langsys tag, or nil
4619 representing the default langsys.
4621 FEATURE is a symbol representing OpenType feature tag.
4623 If the font is not OpenType font, CAPABILITY is nil. */)
4624 (Lisp_Object font_object
)
4629 CHECK_FONT_GET_OBJECT (font_object
, font
);
4631 val
= Fmake_vector (make_number (9), Qnil
);
4632 ASET (val
, 0, AREF (font_object
, FONT_NAME_INDEX
));
4633 ASET (val
, 1, AREF (font_object
, FONT_FILE_INDEX
));
4634 ASET (val
, 2, make_number (font
->pixel_size
));
4635 ASET (val
, 3, make_number (font
->max_width
));
4636 ASET (val
, 4, make_number (font
->ascent
));
4637 ASET (val
, 5, make_number (font
->descent
));
4638 ASET (val
, 6, make_number (font
->space_width
));
4639 ASET (val
, 7, make_number (font
->average_width
));
4640 if (font
->driver
->otf_capability
)
4641 ASET (val
, 8, Fcons (Qopentype
, font
->driver
->otf_capability (font
)));
4645 DEFUN ("font-get-glyphs", Ffont_get_glyphs
, Sfont_get_glyphs
, 3, 4, 0,
4647 /* Return a vector of FONT-OBJECT's glyphs for the specified characters.
4648 FROM and TO are positions (integers or markers) specifying a region
4649 of the current buffer.
4650 If the optional fourth arg OBJECT is not nil, it is a string or a
4651 vector containing the target characters.
4653 Each element is a vector containing information of a glyph in this format:
4654 [FROM-IDX TO-IDX C CODE WIDTH LBEARING RBEARING ASCENT DESCENT ADJUSTMENT]
4656 FROM is an index numbers of a character the glyph corresponds to.
4657 TO is the same as FROM.
4658 C is the character of the glyph.
4659 CODE is the glyph-code of C in FONT-OBJECT.
4660 WIDTH thru DESCENT are the metrics (in pixels) of the glyph.
4661 ADJUSTMENT is always nil.
4662 If FONT-OBJECT doesn't have a glyph for a character,
4663 the corresponding element is nil. */)
4664 (Lisp_Object font_object
, Lisp_Object from
, Lisp_Object to
,
4669 Lisp_Object
*chars
, vec
;
4672 CHECK_FONT_GET_OBJECT (font_object
, font
);
4675 ptrdiff_t charpos
, bytepos
;
4677 validate_region (&from
, &to
);
4680 len
= XFASTINT (to
) - XFASTINT (from
);
4681 SAFE_ALLOCA_LISP (chars
, len
);
4682 charpos
= XFASTINT (from
);
4683 bytepos
= CHAR_TO_BYTE (charpos
);
4684 for (i
= 0; charpos
< XFASTINT (to
); i
++)
4687 FETCH_CHAR_ADVANCE (c
, charpos
, bytepos
);
4688 chars
[i
] = make_number (c
);
4691 else if (STRINGP (object
))
4693 const unsigned char *p
;
4695 CHECK_NUMBER (from
);
4697 if (XINT (from
) < 0 || XINT (from
) > XINT (to
)
4698 || XINT (to
) > SCHARS (object
))
4699 args_out_of_range_3 (object
, from
, to
);
4702 len
= XFASTINT (to
) - XFASTINT (from
);
4703 SAFE_ALLOCA_LISP (chars
, len
);
4705 if (STRING_MULTIBYTE (object
))
4706 for (i
= 0; i
< len
; i
++)
4708 int c
= STRING_CHAR_ADVANCE (p
);
4709 chars
[i
] = make_number (c
);
4712 for (i
= 0; i
< len
; i
++)
4713 chars
[i
] = make_number (p
[i
]);
4717 CHECK_VECTOR (object
);
4718 CHECK_NUMBER (from
);
4720 if (XINT (from
) < 0 || XINT (from
) > XINT (to
)
4721 || XINT (to
) > ASIZE (object
))
4722 args_out_of_range_3 (object
, from
, to
);
4725 len
= XFASTINT (to
) - XFASTINT (from
);
4726 for (i
= 0; i
< len
; i
++)
4728 Lisp_Object elt
= AREF (object
, XFASTINT (from
) + i
);
4729 CHECK_CHARACTER (elt
);
4731 chars
= &(AREF (object
, XFASTINT (from
)));
4734 vec
= Fmake_vector (make_number (len
), Qnil
);
4735 for (i
= 0; i
< len
; i
++)
4738 int c
= XFASTINT (chars
[i
]);
4740 struct font_metrics metrics
;
4742 code
= font
->driver
->encode_char (font
, c
);
4743 if (code
== FONT_INVALID_CODE
)
4745 g
= Fmake_vector (make_number (LGLYPH_SIZE
), Qnil
);
4746 LGLYPH_SET_FROM (g
, i
);
4747 LGLYPH_SET_TO (g
, i
);
4748 LGLYPH_SET_CHAR (g
, c
);
4749 LGLYPH_SET_CODE (g
, code
);
4750 font
->driver
->text_extents (font
, &code
, 1, &metrics
);
4751 LGLYPH_SET_WIDTH (g
, metrics
.width
);
4752 LGLYPH_SET_LBEARING (g
, metrics
.lbearing
);
4753 LGLYPH_SET_RBEARING (g
, metrics
.rbearing
);
4754 LGLYPH_SET_ASCENT (g
, metrics
.ascent
);
4755 LGLYPH_SET_DESCENT (g
, metrics
.descent
);
4758 if (! VECTORP (object
))
4763 DEFUN ("font-match-p", Ffont_match_p
, Sfont_match_p
, 2, 2, 0,
4764 doc
: /* Return t if and only if font-spec SPEC matches with FONT.
4765 FONT is a font-spec, font-entity, or font-object. */)
4766 (Lisp_Object spec
, Lisp_Object font
)
4768 CHECK_FONT_SPEC (spec
);
4771 return (font_match_p (spec
, font
) ? Qt
: Qnil
);
4774 DEFUN ("font-at", Ffont_at
, Sfont_at
, 1, 3, 0,
4775 doc
: /* Return a font-object for displaying a character at POSITION.
4776 Optional second arg WINDOW, if non-nil, is a window displaying
4777 the current buffer. It defaults to the currently selected window. */)
4778 (Lisp_Object position
, Lisp_Object window
, Lisp_Object string
)
4785 CHECK_NUMBER_COERCE_MARKER (position
);
4786 if (! (BEGV
<= XINT (position
) && XINT (position
) < ZV
))
4787 args_out_of_range_3 (position
, make_number (BEGV
), make_number (ZV
));
4788 pos
= XINT (position
);
4792 CHECK_NUMBER (position
);
4793 CHECK_STRING (string
);
4794 if (! (0 < XINT (position
) && XINT (position
) < SCHARS (string
)))
4795 args_out_of_range (string
, position
);
4796 pos
= XINT (position
);
4799 window
= selected_window
;
4800 CHECK_LIVE_WINDOW (window
);
4801 w
= XWINDOW (window
);
4803 return font_at (-1, pos
, NULL
, w
, string
);
4807 DEFUN ("draw-string", Fdraw_string
, Sdraw_string
, 2, 2, 0,
4808 doc
: /* Draw STRING by FONT-OBJECT on the top left corner of the current frame.
4809 The value is a number of glyphs drawn.
4810 Type C-l to recover what previously shown. */)
4811 (Lisp_Object font_object
, Lisp_Object string
)
4813 Lisp_Object frame
= selected_frame
;
4814 FRAME_PTR f
= XFRAME (frame
);
4820 CHECK_FONT_GET_OBJECT (font_object
, font
);
4821 CHECK_STRING (string
);
4822 len
= SCHARS (string
);
4823 code
= alloca (sizeof (unsigned) * len
);
4824 for (i
= 0; i
< len
; i
++)
4826 Lisp_Object ch
= Faref (string
, make_number (i
));
4830 code
[i
] = font
->driver
->encode_char (font
, c
);
4831 if (code
[i
] == FONT_INVALID_CODE
)
4834 face
= FACE_FROM_ID (f
, DEFAULT_FACE_ID
);
4836 if (font
->driver
->prepare_face
)
4837 font
->driver
->prepare_face (f
, face
);
4838 width
= font
->driver
->text_extents (font
, code
, i
, NULL
);
4839 len
= font
->driver
->draw_text (f
, face
, 0, font
->ascent
, code
, i
, width
);
4840 if (font
->driver
->done_face
)
4841 font
->driver
->done_face (f
, face
);
4843 return make_number (len
);
4847 #endif /* FONT_DEBUG */
4849 #ifdef HAVE_WINDOW_SYSTEM
4851 DEFUN ("font-info", Ffont_info
, Sfont_info
, 1, 2, 0,
4852 doc
: /* Return information about a font named NAME on frame FRAME.
4853 If FRAME is omitted or nil, use the selected frame.
4854 The returned value is a vector of OPENED-NAME, FULL-NAME, SIZE,
4855 HEIGHT, BASELINE-OFFSET, RELATIVE-COMPOSE, and DEFAULT-ASCENT,
4857 OPENED-NAME is the name used for opening the font,
4858 FULL-NAME is the full name of the font,
4859 SIZE is the pixelsize of the font,
4860 HEIGHT is the pixel-height of the font (i.e ascent + descent),
4861 BASELINE-OFFSET is the upward offset pixels from ASCII baseline,
4862 RELATIVE-COMPOSE and DEFAULT-ASCENT are the numbers controlling
4863 how to compose characters.
4864 If the named font is not yet loaded, return nil. */)
4865 (Lisp_Object name
, Lisp_Object frame
)
4870 Lisp_Object font_object
;
4872 (*check_window_system_func
) ();
4875 CHECK_STRING (name
);
4877 frame
= selected_frame
;
4878 CHECK_LIVE_FRAME (frame
);
4883 int fontset
= fs_query_fontset (name
, 0);
4886 name
= fontset_ascii (fontset
);
4887 font_object
= font_open_by_name (f
, SSDATA (name
));
4889 else if (FONT_OBJECT_P (name
))
4891 else if (FONT_ENTITY_P (name
))
4892 font_object
= font_open_entity (f
, name
, 0);
4895 struct face
*face
= FACE_FROM_ID (f
, DEFAULT_FACE_ID
);
4896 Lisp_Object entity
= font_matching_entity (f
, face
->lface
, name
);
4898 font_object
= ! NILP (entity
) ? font_open_entity (f
, entity
, 0) : Qnil
;
4900 if (NILP (font_object
))
4902 font
= XFONT_OBJECT (font_object
);
4904 info
= Fmake_vector (make_number (7), Qnil
);
4905 ASET (info
, 0, AREF (font_object
, FONT_NAME_INDEX
));
4906 ASET (info
, 1, AREF (font_object
, FONT_FULLNAME_INDEX
));
4907 ASET (info
, 2, make_number (font
->pixel_size
));
4908 ASET (info
, 3, make_number (font
->height
));
4909 ASET (info
, 4, make_number (font
->baseline_offset
));
4910 ASET (info
, 5, make_number (font
->relative_compose
));
4911 ASET (info
, 6, make_number (font
->default_ascent
));
4914 /* As font_object is still in FONT_OBJLIST of the entity, we can't
4915 close it now. Perhaps, we should manage font-objects
4916 by `reference-count'. */
4917 font_close_object (f
, font_object
);
4924 #define BUILD_STYLE_TABLE(TBL) \
4925 build_style_table ((TBL), sizeof TBL / sizeof (struct table_entry))
4928 build_style_table (const struct table_entry
*entry
, int nelement
)
4931 Lisp_Object table
, elt
;
4933 table
= Fmake_vector (make_number (nelement
), Qnil
);
4934 for (i
= 0; i
< nelement
; i
++)
4936 for (j
= 0; entry
[i
].names
[j
]; j
++);
4937 elt
= Fmake_vector (make_number (j
+ 1), Qnil
);
4938 ASET (elt
, 0, make_number (entry
[i
].numeric
));
4939 for (j
= 0; entry
[i
].names
[j
]; j
++)
4940 ASET (elt
, j
+ 1, intern_c_string (entry
[i
].names
[j
]));
4941 ASET (table
, i
, elt
);
4946 /* The deferred font-log data of the form [ACTION ARG RESULT].
4947 If ACTION is not nil, that is added to the log when font_add_log is
4948 called next time. At that time, ACTION is set back to nil. */
4949 static Lisp_Object Vfont_log_deferred
;
4951 /* Prepend the font-related logging data in Vfont_log if it is not
4952 `t'. ACTION describes a kind of font-related action (e.g. listing,
4953 opening), ARG is the argument for the action, and RESULT is the
4954 result of the action. */
4956 font_add_log (const char *action
, Lisp_Object arg
, Lisp_Object result
)
4961 if (EQ (Vfont_log
, Qt
))
4963 if (STRINGP (AREF (Vfont_log_deferred
, 0)))
4965 char *str
= SSDATA (AREF (Vfont_log_deferred
, 0));
4967 ASET (Vfont_log_deferred
, 0, Qnil
);
4968 font_add_log (str
, AREF (Vfont_log_deferred
, 1),
4969 AREF (Vfont_log_deferred
, 2));
4974 Lisp_Object tail
, elt
;
4975 Lisp_Object equalstr
= build_string ("=");
4977 val
= Ffont_xlfd_name (arg
, Qt
);
4978 for (tail
= AREF (arg
, FONT_EXTRA_INDEX
); CONSP (tail
);
4982 if (EQ (XCAR (elt
), QCscript
)
4983 && SYMBOLP (XCDR (elt
)))
4984 val
= concat3 (val
, SYMBOL_NAME (QCscript
),
4985 concat2 (equalstr
, SYMBOL_NAME (XCDR (elt
))));
4986 else if (EQ (XCAR (elt
), QClang
)
4987 && SYMBOLP (XCDR (elt
)))
4988 val
= concat3 (val
, SYMBOL_NAME (QClang
),
4989 concat2 (equalstr
, SYMBOL_NAME (XCDR (elt
))));
4990 else if (EQ (XCAR (elt
), QCotf
)
4991 && CONSP (XCDR (elt
)) && SYMBOLP (XCAR (XCDR (elt
))))
4992 val
= concat3 (val
, SYMBOL_NAME (QCotf
),
4994 SYMBOL_NAME (XCAR (XCDR (elt
)))));
5000 && VECTORP (XCAR (result
))
5001 && ASIZE (XCAR (result
)) > 0
5002 && FONTP (AREF (XCAR (result
), 0)))
5003 result
= font_vconcat_entity_vectors (result
);
5006 val
= Ffont_xlfd_name (result
, Qt
);
5007 if (! FONT_SPEC_P (result
))
5008 val
= concat3 (SYMBOL_NAME (AREF (result
, FONT_TYPE_INDEX
)),
5009 build_string (":"), val
);
5012 else if (CONSP (result
))
5015 result
= Fcopy_sequence (result
);
5016 for (tail
= result
; CONSP (tail
); tail
= XCDR (tail
))
5020 val
= Ffont_xlfd_name (val
, Qt
);
5021 XSETCAR (tail
, val
);
5024 else if (VECTORP (result
))
5026 result
= Fcopy_sequence (result
);
5027 for (i
= 0; i
< ASIZE (result
); i
++)
5029 val
= AREF (result
, i
);
5031 val
= Ffont_xlfd_name (val
, Qt
);
5032 ASET (result
, i
, val
);
5035 Vfont_log
= Fcons (list3 (intern (action
), arg
, result
), Vfont_log
);
5038 /* Record a font-related logging data to be added to Vfont_log when
5039 font_add_log is called next time. ACTION, ARG, RESULT are the same
5043 font_deferred_log (const char *action
, Lisp_Object arg
, Lisp_Object result
)
5045 if (EQ (Vfont_log
, Qt
))
5047 ASET (Vfont_log_deferred
, 0, build_string (action
));
5048 ASET (Vfont_log_deferred
, 1, arg
);
5049 ASET (Vfont_log_deferred
, 2, result
);
5055 sort_shift_bits
[FONT_TYPE_INDEX
] = 0;
5056 sort_shift_bits
[FONT_SLANT_INDEX
] = 2;
5057 sort_shift_bits
[FONT_WEIGHT_INDEX
] = 9;
5058 sort_shift_bits
[FONT_SIZE_INDEX
] = 16;
5059 sort_shift_bits
[FONT_WIDTH_INDEX
] = 23;
5060 /* Note that the other elements in sort_shift_bits are not used. */
5062 staticpro (&font_charset_alist
);
5063 font_charset_alist
= Qnil
;
5065 DEFSYM (Qopentype
, "opentype");
5067 DEFSYM (Qascii_0
, "ascii-0");
5068 DEFSYM (Qiso8859_1
, "iso8859-1");
5069 DEFSYM (Qiso10646_1
, "iso10646-1");
5070 DEFSYM (Qunicode_bmp
, "unicode-bmp");
5071 DEFSYM (Qunicode_sip
, "unicode-sip");
5075 DEFSYM (QCotf
, ":otf");
5076 DEFSYM (QClang
, ":lang");
5077 DEFSYM (QCscript
, ":script");
5078 DEFSYM (QCantialias
, ":antialias");
5080 DEFSYM (QCfoundry
, ":foundry");
5081 DEFSYM (QCadstyle
, ":adstyle");
5082 DEFSYM (QCregistry
, ":registry");
5083 DEFSYM (QCspacing
, ":spacing");
5084 DEFSYM (QCdpi
, ":dpi");
5085 DEFSYM (QCscalable
, ":scalable");
5086 DEFSYM (QCavgwidth
, ":avgwidth");
5087 DEFSYM (QCfont_entity
, ":font-entity");
5088 DEFSYM (QCfc_unknown_spec
, ":fc-unknown-spec");
5098 DEFSYM (QCuser_spec
, "user-spec");
5100 staticpro (&null_vector
);
5101 null_vector
= Fmake_vector (make_number (0), Qnil
);
5103 staticpro (&scratch_font_spec
);
5104 scratch_font_spec
= Ffont_spec (0, NULL
);
5105 staticpro (&scratch_font_prefer
);
5106 scratch_font_prefer
= Ffont_spec (0, NULL
);
5108 staticpro (&Vfont_log_deferred
);
5109 Vfont_log_deferred
= Fmake_vector (make_number (3), Qnil
);
5113 staticpro (&otf_list
);
5115 #endif /* HAVE_LIBOTF */
5119 defsubr (&Sfont_spec
);
5120 defsubr (&Sfont_get
);
5121 #ifdef HAVE_WINDOW_SYSTEM
5122 defsubr (&Sfont_face_attributes
);
5124 defsubr (&Sfont_put
);
5125 defsubr (&Slist_fonts
);
5126 defsubr (&Sfont_family_list
);
5127 defsubr (&Sfind_font
);
5128 defsubr (&Sfont_xlfd_name
);
5129 defsubr (&Sclear_font_cache
);
5130 defsubr (&Sfont_shape_gstring
);
5131 defsubr (&Sfont_variation_glyphs
);
5133 defsubr (&Sfont_drive_otf
);
5134 defsubr (&Sfont_otf_alternates
);
5138 defsubr (&Sopen_font
);
5139 defsubr (&Sclose_font
);
5140 defsubr (&Squery_font
);
5141 defsubr (&Sfont_get_glyphs
);
5142 defsubr (&Sfont_match_p
);
5143 defsubr (&Sfont_at
);
5145 defsubr (&Sdraw_string
);
5147 #endif /* FONT_DEBUG */
5148 #ifdef HAVE_WINDOW_SYSTEM
5149 defsubr (&Sfont_info
);
5152 DEFVAR_LISP ("font-encoding-alist", Vfont_encoding_alist
,
5154 Alist of fontname patterns vs the corresponding encoding and repertory info.
5155 Each element looks like (REGEXP . (ENCODING . REPERTORY)),
5156 where ENCODING is a charset or a char-table,
5157 and REPERTORY is a charset, a char-table, or nil.
5159 If ENCODING and REPERTORY are the same, the element can have the form
5160 \(REGEXP . ENCODING).
5162 ENCODING is for converting a character to a glyph code of the font.
5163 If ENCODING is a charset, encoding a character by the charset gives
5164 the corresponding glyph code. If ENCODING is a char-table, looking up
5165 the table by a character gives the corresponding glyph code.
5167 REPERTORY specifies a repertory of characters supported by the font.
5168 If REPERTORY is a charset, all characters belonging to the charset are
5169 supported. If REPERTORY is a char-table, all characters who have a
5170 non-nil value in the table are supported. If REPERTORY is nil, Emacs
5171 gets the repertory information by an opened font and ENCODING. */);
5172 Vfont_encoding_alist
= Qnil
;
5174 /* FIXME: These 3 vars are not quite what they appear: setq on them
5175 won't have any effect other than disconnect them from the style
5176 table used by the font display code. So we make them read-only,
5177 to avoid this confusing situation. */
5179 DEFVAR_LISP_NOPRO ("font-weight-table", Vfont_weight_table
,
5180 doc
: /* Vector of valid font weight values.
5181 Each element has the form:
5182 [NUMERIC-VALUE SYMBOLIC-NAME ALIAS-NAME ...]
5183 NUMERIC-VALUE is an integer, and SYMBOLIC-NAME and ALIAS-NAME are symbols. */);
5184 Vfont_weight_table
= BUILD_STYLE_TABLE (weight_table
);
5185 XSYMBOL (intern_c_string ("font-weight-table"))->constant
= 1;
5187 DEFVAR_LISP_NOPRO ("font-slant-table", Vfont_slant_table
,
5188 doc
: /* Vector of font slant symbols vs the corresponding numeric values.
5189 See `font-weight-table' for the format of the vector. */);
5190 Vfont_slant_table
= BUILD_STYLE_TABLE (slant_table
);
5191 XSYMBOL (intern_c_string ("font-slant-table"))->constant
= 1;
5193 DEFVAR_LISP_NOPRO ("font-width-table", Vfont_width_table
,
5194 doc
: /* Alist of font width symbols vs the corresponding numeric values.
5195 See `font-weight-table' for the format of the vector. */);
5196 Vfont_width_table
= BUILD_STYLE_TABLE (width_table
);
5197 XSYMBOL (intern_c_string ("font-width-table"))->constant
= 1;
5199 staticpro (&font_style_table
);
5200 font_style_table
= Fmake_vector (make_number (3), Qnil
);
5201 ASET (font_style_table
, 0, Vfont_weight_table
);
5202 ASET (font_style_table
, 1, Vfont_slant_table
);
5203 ASET (font_style_table
, 2, Vfont_width_table
);
5205 DEFVAR_LISP ("font-log", Vfont_log
, doc
: /*
5206 *Logging list of font related actions and results.
5207 The value t means to suppress the logging.
5208 The initial value is set to nil if the environment variable
5209 EMACS_FONT_LOG is set. Otherwise, it is set to t. */);
5212 #ifdef HAVE_WINDOW_SYSTEM
5213 #ifdef HAVE_FREETYPE
5215 #ifdef HAVE_X_WINDOWS
5220 #endif /* HAVE_XFT */
5221 #endif /* HAVE_X_WINDOWS */
5222 #else /* not HAVE_FREETYPE */
5223 #ifdef HAVE_X_WINDOWS
5225 #endif /* HAVE_X_WINDOWS */
5226 #endif /* not HAVE_FREETYPE */
5229 #endif /* HAVE_BDFFONT */
5232 #endif /* WINDOWSNT */
5235 #endif /* HAVE_NS */
5236 #endif /* HAVE_WINDOW_SYSTEM */
5242 Vfont_log
= egetenv ("EMACS_FONT_LOG") ? Qnil
: Qt
;