1 /* font.c -- "Font" primitives.
2 Copyright (C) 2006, 2007, 2008, 2009, 2010, 2011 Free Software Foundation, Inc.
3 Copyright (C) 2006, 2007, 2008, 2009, 2010, 2011
4 National Institute of Advanced Industrial Science and Technology (AIST)
5 Registration Number H13PRO009
7 This file is part of GNU Emacs.
9 GNU Emacs is free software: you can redistribute it and/or modify
10 it under the terms of the GNU General Public License as published by
11 the Free Software Foundation, either version 3 of the License, or
12 (at your option) any later version.
14 GNU Emacs is distributed in the hope that it will be useful,
15 but WITHOUT ANY WARRANTY; without even the implied warranty of
16 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
17 GNU General Public License for more details.
19 You should have received a copy of the GNU General Public License
20 along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>. */
32 #include "dispextern.h"
34 #include "character.h"
35 #include "composite.h"
41 #endif /* HAVE_X_WINDOWS */
45 #endif /* HAVE_NTGUI */
52 extern Lisp_Object Qfontsize
;
55 Lisp_Object Qopentype
;
57 /* Important character set strings. */
58 Lisp_Object Qascii_0
, Qiso8859_1
, Qiso10646_1
, Qunicode_bmp
, Qunicode_sip
;
60 #define DEFAULT_ENCODING Qiso8859_1
62 /* Unicode category `Cf'. */
63 static Lisp_Object QCf
;
65 /* Special vector of zero length. This is repeatedly used by (struct
66 font_driver *)->list when a specified font is not found. */
67 static Lisp_Object null_vector
;
69 static Lisp_Object Vfont_weight_table
, Vfont_slant_table
, Vfont_width_table
;
71 /* Vector of Vfont_weight_table, Vfont_slant_table, and Vfont_width_table. */
72 static Lisp_Object font_style_table
;
74 /* Structure used for tables mapping weight, slant, and width numeric
75 values and their names. */
80 /* The first one is a valid name as a face attribute.
81 The second one (if any) is a typical name in XLFD field. */
85 /* Table of weight numeric values and their names. This table must be
86 sorted by numeric values in ascending order. */
88 static const struct table_entry weight_table
[] =
91 { 20, { "ultra-light", "ultralight" }},
92 { 40, { "extra-light", "extralight" }},
94 { 75, { "semi-light", "semilight", "demilight", "book" }},
95 { 100, { "normal", "medium", "regular", "unspecified" }},
96 { 180, { "semi-bold", "semibold", "demibold", "demi" }},
98 { 205, { "extra-bold", "extrabold" }},
99 { 210, { "ultra-bold", "ultrabold", "black" }}
102 /* Table of slant numeric values and their names. This table must be
103 sorted by numeric values in ascending order. */
105 static const struct table_entry slant_table
[] =
107 { 0, { "reverse-oblique", "ro" }},
108 { 10, { "reverse-italic", "ri" }},
109 { 100, { "normal", "r", "unspecified" }},
110 { 200, { "italic" ,"i", "ot" }},
111 { 210, { "oblique", "o" }}
114 /* Table of width numeric values and their names. This table must be
115 sorted by numeric values in ascending order. */
117 static const struct table_entry width_table
[] =
119 { 50, { "ultra-condensed", "ultracondensed" }},
120 { 63, { "extra-condensed", "extracondensed" }},
121 { 75, { "condensed", "compressed", "narrow" }},
122 { 87, { "semi-condensed", "semicondensed", "demicondensed" }},
123 { 100, { "normal", "medium", "regular", "unspecified" }},
124 { 113, { "semi-expanded", "semiexpanded", "demiexpanded" }},
125 { 125, { "expanded" }},
126 { 150, { "extra-expanded", "extraexpanded" }},
127 { 200, { "ultra-expanded", "ultraexpanded", "wide" }}
130 extern Lisp_Object Qnormal
;
132 /* Symbols representing keys of normal font properties. */
133 extern Lisp_Object QCtype
, QCfamily
, QCweight
, QCslant
, QCwidth
;
134 extern Lisp_Object QCheight
, QCsize
, QCname
;
136 Lisp_Object QCfoundry
, QCadstyle
, QCregistry
;
137 /* Symbols representing keys of font extra info. */
138 Lisp_Object QCspacing
, QCdpi
, QCscalable
, QCotf
, QClang
, QCscript
, QCavgwidth
;
139 Lisp_Object QCantialias
, QCfont_entity
, QCfc_unknown_spec
;
140 /* Symbols representing values of font spacing property. */
141 Lisp_Object Qc
, Qm
, Qp
, Qd
;
142 /* Special ADSTYLE properties to avoid fonts used for Latin
143 characters; used in xfont.c and ftfont.c. */
144 Lisp_Object Qja
, Qko
;
146 Lisp_Object QCuser_spec
;
148 Lisp_Object Vfont_encoding_alist
;
150 /* Alist of font registry symbol and the corresponding charsets
151 information. The information is retrieved from
152 Vfont_encoding_alist on demand.
154 Eash element has the form:
155 (REGISTRY . (ENCODING-CHARSET-ID . REPERTORY-CHARSET-ID))
159 In the former form, ENCODING-CHARSET-ID is an ID of a charset that
160 encodes a character code to a glyph code of a font, and
161 REPERTORY-CHARSET-ID is an ID of a charset that tells if a
162 character is supported by a font.
164 The latter form means that the information for REGISTRY couldn't be
166 static Lisp_Object font_charset_alist
;
168 /* List of all font drivers. Each font-backend (XXXfont.c) calls
169 register_font_driver in syms_of_XXXfont to register its font-driver
171 static struct font_driver_list
*font_driver_list
;
175 /* Creaters of font-related Lisp object. */
180 Lisp_Object font_spec
;
181 struct font_spec
*spec
182 = ((struct font_spec
*)
183 allocate_pseudovector (VECSIZE (struct font_spec
),
184 FONT_SPEC_MAX
, PVEC_FONT
));
185 XSETFONT (font_spec
, spec
);
192 Lisp_Object font_entity
;
193 struct font_entity
*entity
194 = ((struct font_entity
*)
195 allocate_pseudovector (VECSIZE (struct font_entity
),
196 FONT_ENTITY_MAX
, PVEC_FONT
));
197 XSETFONT (font_entity
, entity
);
201 /* Create a font-object whose structure size is SIZE. If ENTITY is
202 not nil, copy properties from ENTITY to the font-object. If
203 PIXELSIZE is positive, set the `size' property to PIXELSIZE. */
205 font_make_object (size
, entity
, pixelsize
)
210 Lisp_Object font_object
;
212 = (struct font
*) allocate_pseudovector (size
, FONT_OBJECT_MAX
, PVEC_FONT
);
215 XSETFONT (font_object
, font
);
219 for (i
= 1; i
< FONT_SPEC_MAX
; i
++)
220 font
->props
[i
] = AREF (entity
, i
);
221 if (! NILP (AREF (entity
, FONT_EXTRA_INDEX
)))
222 font
->props
[FONT_EXTRA_INDEX
]
223 = Fcopy_alist (AREF (entity
, FONT_EXTRA_INDEX
));
226 font
->props
[FONT_SIZE_INDEX
] = make_number (pixelsize
);
232 static int font_pixel_size
P_ ((FRAME_PTR f
, Lisp_Object
));
233 static Lisp_Object font_open_entity
P_ ((FRAME_PTR
, Lisp_Object
, int));
234 static Lisp_Object font_matching_entity
P_ ((FRAME_PTR
, Lisp_Object
*,
237 /* Number of registered font drivers. */
238 static int num_font_drivers
;
241 /* Return a Lispy value of a font property value at STR and LEN bytes.
242 If STR is "*", it returns nil.
243 If FORCE_SYMBOL is zero and all characters in STR are digits, it
244 returns an integer. Otherwise, it returns a symbol interned from
248 font_intern_prop (str
, len
, force_symbol
)
258 if (len
== 1 && *str
== '*')
260 if (!force_symbol
&& len
>=1 && isdigit (*str
))
262 for (i
= 1; i
< len
; i
++)
263 if (! isdigit (str
[i
]))
266 return make_number (atoi (str
));
269 /* The following code is copied from the function intern (in
270 lread.c), and modified to suite our purpose. */
272 if (!VECTORP (obarray
) || XVECTOR (obarray
)->size
== 0)
273 obarray
= check_obarray (obarray
);
274 parse_str_as_multibyte ((unsigned char *) str
, len
, &nchars
, &nbytes
);
275 if (len
== nchars
|| len
!= nbytes
)
276 /* CONTENTS contains no multibyte sequences or contains an invalid
277 multibyte sequence. We'll make a unibyte string. */
278 tem
= oblookup (obarray
, str
, len
, len
);
280 tem
= oblookup (obarray
, str
, nchars
, len
);
283 if (len
== nchars
|| len
!= nbytes
)
284 tem
= make_unibyte_string (str
, len
);
286 tem
= make_multibyte_string (str
, nchars
, len
);
287 return Fintern (tem
, obarray
);
290 /* Return a pixel size of font-spec SPEC on frame F. */
293 font_pixel_size (f
, spec
)
297 #ifdef HAVE_WINDOW_SYSTEM
298 Lisp_Object size
= AREF (spec
, FONT_SIZE_INDEX
);
307 font_assert (FLOATP (size
));
308 point_size
= XFLOAT_DATA (size
);
309 val
= AREF (spec
, FONT_DPI_INDEX
);
314 pixel_size
= POINT_TO_PIXEL (point_size
, dpi
);
322 /* Return a value of PROP's VAL (symbol or integer) to be stored in a
323 font vector. If VAL is not valid (i.e. not registered in
324 font_style_table), return -1 if NOERROR is zero, and return a
325 proper index if NOERROR is nonzero. In that case, register VAL in
326 font_style_table if VAL is a symbol, and return a closest index if
327 VAL is an integer. */
330 font_style_to_value (prop
, val
, noerror
)
331 enum font_property_index prop
;
335 Lisp_Object table
= AREF (font_style_table
, prop
- FONT_WEIGHT_INDEX
);
336 int len
= ASIZE (table
);
342 Lisp_Object args
[2], elt
;
344 /* At first try exact match. */
345 for (i
= 0; i
< len
; i
++)
346 for (j
= 1; j
< ASIZE (AREF (table
, i
)); j
++)
347 if (EQ (val
, AREF (AREF (table
, i
), j
)))
348 return ((XINT (AREF (AREF (table
, i
), 0)) << 8)
349 | (i
<< 4) | (j
- 1));
350 /* Try also with case-folding match. */
351 s
= SDATA (SYMBOL_NAME (val
));
352 for (i
= 0; i
< len
; i
++)
353 for (j
= 1; j
< ASIZE (AREF (table
, i
)); j
++)
355 elt
= AREF (AREF (table
, i
), j
);
356 if (xstrcasecmp (s
, SDATA (SYMBOL_NAME (elt
))) == 0)
357 return ((XINT (AREF (AREF (table
, i
), 0)) << 8)
358 | (i
<< 4) | (j
- 1));
364 elt
= Fmake_vector (make_number (2), make_number (100));
367 args
[1] = Fmake_vector (make_number (1), elt
);
368 ASET (font_style_table
, prop
- FONT_WEIGHT_INDEX
, Fvconcat (2, args
));
369 return (100 << 8) | (i
<< 4);
374 int numeric
= XINT (val
);
376 for (i
= 0, last_n
= -1; i
< len
; i
++)
378 int n
= XINT (AREF (AREF (table
, i
), 0));
381 return (n
<< 8) | (i
<< 4);
386 return ((i
== 0 || n
- numeric
< numeric
- last_n
)
387 ? (n
<< 8) | (i
<< 4): (last_n
<< 8 | ((i
- 1) << 4)));
393 return ((last_n
<< 8) | ((i
- 1) << 4));
398 font_style_symbolic (font
, prop
, for_face
)
400 enum font_property_index prop
;
403 Lisp_Object val
= AREF (font
, prop
);
404 Lisp_Object table
, elt
;
409 table
= AREF (font_style_table
, prop
- FONT_WEIGHT_INDEX
);
410 i
= XINT (val
) & 0xFF;
411 font_assert (((i
>> 4) & 0xF) < ASIZE (table
));
412 elt
= AREF (table
, ((i
>> 4) & 0xF));
413 font_assert ((i
& 0xF) + 1 < ASIZE (elt
));
414 return (for_face
? AREF (elt
, 1) : AREF (elt
, (i
& 0xF) + 1));
417 extern Lisp_Object Vface_alternative_font_family_alist
;
419 extern Lisp_Object find_font_encoding
P_ ((Lisp_Object
));
422 /* Return ENCODING or a cons of ENCODING and REPERTORY of the font
423 FONTNAME. ENCODING is a charset symbol that specifies the encoding
424 of the font. REPERTORY is a charset symbol or nil. */
427 find_font_encoding (fontname
)
428 Lisp_Object fontname
;
430 Lisp_Object tail
, elt
;
432 for (tail
= Vfont_encoding_alist
; CONSP (tail
); tail
= XCDR (tail
))
436 && STRINGP (XCAR (elt
))
437 && fast_string_match_ignore_case (XCAR (elt
), fontname
) >= 0
438 && (SYMBOLP (XCDR (elt
))
439 ? CHARSETP (XCDR (elt
))
440 : CONSP (XCDR (elt
)) && CHARSETP (XCAR (XCDR (elt
)))))
446 /* Return encoding charset and repertory charset for REGISTRY in
447 ENCODING and REPERTORY correspondingly. If correct information for
448 REGISTRY is available, return 0. Otherwise return -1. */
451 font_registry_charsets (registry
, encoding
, repertory
)
452 Lisp_Object registry
;
453 struct charset
**encoding
, **repertory
;
456 int encoding_id
, repertory_id
;
458 val
= Fassoc_string (registry
, font_charset_alist
, Qt
);
464 encoding_id
= XINT (XCAR (val
));
465 repertory_id
= XINT (XCDR (val
));
469 val
= find_font_encoding (SYMBOL_NAME (registry
));
470 if (SYMBOLP (val
) && CHARSETP (val
))
472 encoding_id
= repertory_id
= XINT (CHARSET_SYMBOL_ID (val
));
474 else if (CONSP (val
))
476 if (! CHARSETP (XCAR (val
)))
478 encoding_id
= XINT (CHARSET_SYMBOL_ID (XCAR (val
)));
479 if (NILP (XCDR (val
)))
483 if (! CHARSETP (XCDR (val
)))
485 repertory_id
= XINT (CHARSET_SYMBOL_ID (XCDR (val
)));
490 val
= Fcons (make_number (encoding_id
), make_number (repertory_id
));
492 = nconc2 (font_charset_alist
, Fcons (Fcons (registry
, val
), Qnil
));
496 *encoding
= CHARSET_FROM_ID (encoding_id
);
498 *repertory
= repertory_id
>= 0 ? CHARSET_FROM_ID (repertory_id
) : NULL
;
503 = nconc2 (font_charset_alist
, Fcons (Fcons (registry
, Qnil
), Qnil
));
508 /* Font property value validaters. See the comment of
509 font_property_table for the meaning of the arguments. */
511 static Lisp_Object font_prop_validate
P_ ((int, Lisp_Object
, Lisp_Object
));
512 static Lisp_Object font_prop_validate_symbol
P_ ((Lisp_Object
, Lisp_Object
));
513 static Lisp_Object font_prop_validate_style
P_ ((Lisp_Object
, Lisp_Object
));
514 static Lisp_Object font_prop_validate_non_neg
P_ ((Lisp_Object
, Lisp_Object
));
515 static Lisp_Object font_prop_validate_spacing
P_ ((Lisp_Object
, Lisp_Object
));
516 static int get_font_prop_index
P_ ((Lisp_Object
));
519 font_prop_validate_symbol (prop
, val
)
520 Lisp_Object prop
, 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 (style
, val
)
534 Lisp_Object style
, val
;
536 enum font_property_index prop
= (EQ (style
, QCweight
) ? FONT_WEIGHT_INDEX
537 : EQ (style
, QCslant
) ? FONT_SLANT_INDEX
544 >= ASIZE (AREF (font_style_table
, prop
- FONT_WEIGHT_INDEX
)))
548 Lisp_Object elt
= AREF (AREF (font_style_table
, prop
- FONT_WEIGHT_INDEX
), (n
>> 4) & 0xF);
550 if ((n
& 0xF) + 1 >= ASIZE (elt
))
552 else if (XINT (AREF (elt
, 0)) != (n
>> 8))
556 else if (SYMBOLP (val
))
558 int n
= font_style_to_value (prop
, val
, 0);
560 val
= n
>= 0 ? make_number (n
) : Qerror
;
568 font_prop_validate_non_neg (prop
, val
)
569 Lisp_Object prop
, val
;
571 return (NATNUMP (val
) || (FLOATP (val
) && XFLOAT_DATA (val
) >= 0)
576 font_prop_validate_spacing (prop
, val
)
577 Lisp_Object prop
, val
;
579 if (NILP (val
) || (NATNUMP (val
) && XINT (val
) <= FONT_SPACING_CHARCELL
))
581 if (SYMBOLP (val
) && SBYTES (SYMBOL_NAME (val
)) == 1)
583 char spacing
= SDATA (SYMBOL_NAME (val
))[0];
585 if (spacing
== 'c' || spacing
== 'C')
586 return make_number (FONT_SPACING_CHARCELL
);
587 if (spacing
== 'm' || spacing
== 'M')
588 return make_number (FONT_SPACING_MONO
);
589 if (spacing
== 'p' || spacing
== 'P')
590 return make_number (FONT_SPACING_PROPORTIONAL
);
591 if (spacing
== 'd' || spacing
== 'D')
592 return make_number (FONT_SPACING_DUAL
);
598 font_prop_validate_otf (prop
, val
)
599 Lisp_Object prop
, val
;
601 Lisp_Object tail
, tmp
;
604 /* VAL = (SCRIPT [ LANGSYS [ GSUB-FEATURES [ GPOS-FEATURES ]]])
605 GSUB-FEATURES = (FEATURE ... [ nil FEATURE ... ]) | nil
606 GPOS-FEATURES = (FEATURE ... [ nil FEATURE ... ]) | nil */
609 if (! SYMBOLP (XCAR (val
)))
614 if (! CONSP (tail
) || ! SYMBOLP (XCAR (val
)))
616 for (i
= 0; i
< 2; i
++)
623 for (tmp
= XCAR (tail
); CONSP (tmp
); tmp
= XCDR (tmp
))
624 if (! SYMBOLP (XCAR (tmp
)))
632 /* Structure of known font property keys and validater of the
636 /* Pointer to the key symbol. */
638 /* Function to validate PROP's value VAL, or NULL if any value is
639 ok. The value is VAL or its regularized value if VAL is valid,
640 and Qerror if not. */
641 Lisp_Object (*validater
) P_ ((Lisp_Object prop
, Lisp_Object val
));
642 } font_property_table
[] =
643 { { &QCtype
, font_prop_validate_symbol
},
644 { &QCfoundry
, font_prop_validate_symbol
},
645 { &QCfamily
, font_prop_validate_symbol
},
646 { &QCadstyle
, font_prop_validate_symbol
},
647 { &QCregistry
, font_prop_validate_symbol
},
648 { &QCweight
, font_prop_validate_style
},
649 { &QCslant
, font_prop_validate_style
},
650 { &QCwidth
, font_prop_validate_style
},
651 { &QCsize
, font_prop_validate_non_neg
},
652 { &QCdpi
, font_prop_validate_non_neg
},
653 { &QCspacing
, font_prop_validate_spacing
},
654 { &QCavgwidth
, font_prop_validate_non_neg
},
655 /* The order of the above entries must match with enum
656 font_property_index. */
657 { &QClang
, font_prop_validate_symbol
},
658 { &QCscript
, font_prop_validate_symbol
},
659 { &QCotf
, font_prop_validate_otf
}
662 /* Size (number of elements) of the above table. */
663 #define FONT_PROPERTY_TABLE_SIZE \
664 ((sizeof font_property_table) / (sizeof *font_property_table))
666 /* Return an index number of font property KEY or -1 if KEY is not an
667 already known property. */
670 get_font_prop_index (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 (idx
, prop
, val
)
688 Lisp_Object prop
, val
;
690 Lisp_Object validated
;
695 prop
= *font_property_table
[idx
].key
;
698 idx
= get_font_prop_index (prop
);
702 validated
= (font_property_table
[idx
].validater
) (prop
, val
);
703 if (EQ (validated
, Qerror
))
704 signal_error ("invalid font property", Fcons (prop
, val
));
709 /* Store VAL as a value of extra font property PROP in FONT while
710 keeping the sorting order. Don't check the validity of VAL. */
713 font_put_extra (font
, prop
, val
)
714 Lisp_Object font
, prop
, val
;
716 Lisp_Object extra
= AREF (font
, FONT_EXTRA_INDEX
);
717 Lisp_Object slot
= (NILP (extra
) ? Qnil
: assq_no_quit (prop
, extra
));
721 Lisp_Object prev
= Qnil
;
724 && NILP (Fstring_lessp (prop
, XCAR (XCAR (extra
)))))
725 prev
= extra
, extra
= XCDR (extra
);
728 ASET (font
, FONT_EXTRA_INDEX
, Fcons (Fcons (prop
, val
), extra
));
730 XSETCDR (prev
, Fcons (Fcons (prop
, val
), extra
));
736 ASET (font
, FONT_EXTRA_INDEX
, Fdelq (slot
, extra
));
741 /* Font name parser and unparser */
743 static int parse_matrix
P_ ((char *));
744 static int font_expand_wildcards
P_ ((Lisp_Object
*, int));
745 static int font_parse_name
P_ ((char *, Lisp_Object
));
747 /* An enumerator for each field of an XLFD font name. */
748 enum xlfd_field_index
767 /* An enumerator for mask bit corresponding to each XLFD field. */
770 XLFD_FOUNDRY_MASK
= 0x0001,
771 XLFD_FAMILY_MASK
= 0x0002,
772 XLFD_WEIGHT_MASK
= 0x0004,
773 XLFD_SLANT_MASK
= 0x0008,
774 XLFD_SWIDTH_MASK
= 0x0010,
775 XLFD_ADSTYLE_MASK
= 0x0020,
776 XLFD_PIXEL_MASK
= 0x0040,
777 XLFD_POINT_MASK
= 0x0080,
778 XLFD_RESX_MASK
= 0x0100,
779 XLFD_RESY_MASK
= 0x0200,
780 XLFD_SPACING_MASK
= 0x0400,
781 XLFD_AVGWIDTH_MASK
= 0x0800,
782 XLFD_REGISTRY_MASK
= 0x1000,
783 XLFD_ENCODING_MASK
= 0x2000
787 /* Parse P pointing the pixel/point size field of the form
788 `[A B C D]' which specifies a transformation matrix:
794 by which all glyphs of the font are transformed. The spec says
795 that scalar value N for the pixel/point size is equivalent to:
796 A = N * resx/resy, B = C = 0, D = N.
798 Return the scalar value N if the form is valid. Otherwise return
809 for (i
= 0, p
++; i
< 4 && *p
&& *p
!= ']'; i
++)
812 matrix
[i
] = - strtod (p
+ 1, &end
);
814 matrix
[i
] = strtod (p
, &end
);
817 return (i
== 4 ? (int) matrix
[3] : -1);
820 /* Expand a wildcard field in FIELD (the first N fields are filled) to
821 multiple fields to fill in all 14 XLFD fields while restring a
822 field position by its contents. */
825 font_expand_wildcards (field
, n
)
826 Lisp_Object field
[XLFD_LAST_INDEX
];
830 Lisp_Object tmp
[XLFD_LAST_INDEX
];
831 /* Array of information about where this element can go. Nth
832 element is for Nth element of FIELD. */
834 /* Minimum possible field. */
836 /* Maxinum possible field. */
838 /* Bit mask of possible field. Nth bit corresponds to Nth field. */
840 } range
[XLFD_LAST_INDEX
];
842 int range_from
, range_to
;
845 #define XLFD_SYMBOL_MASK (XLFD_FOUNDRY_MASK | XLFD_FAMILY_MASK \
846 | XLFD_ADSTYLE_MASK | XLFD_REGISTRY_MASK)
847 #define XLFD_NULL_MASK (XLFD_FOUNDRY_MASK | XLFD_ADSTYLE_MASK)
848 #define XLFD_LARGENUM_MASK (XLFD_POINT_MASK | XLFD_RESX_MASK | XLFD_RESY_MASK \
849 | XLFD_AVGWIDTH_MASK)
850 #define XLFD_REGENC_MASK (XLFD_REGISTRY_MASK | XLFD_ENCODING_MASK)
852 /* Initialize RANGE_MASK for FIELD[0] which can be 0th to (14 - N)th
853 field. The value is shifted to left one bit by one in the
855 for (i
= 0, range_mask
= 0; i
<= 14 - n
; i
++)
856 range_mask
= (range_mask
<< 1) | 1;
858 /* The triplet RANGE_FROM, RANGE_TO, and RANGE_MASK is a
859 position-based retriction for FIELD[I]. */
860 for (i
= 0, range_from
= 0, range_to
= 14 - n
; i
< n
;
861 i
++, range_from
++, range_to
++, range_mask
<<= 1)
863 Lisp_Object val
= field
[i
];
869 range
[i
].from
= range_from
;
870 range
[i
].to
= range_to
;
871 range
[i
].mask
= range_mask
;
875 /* The triplet FROM, TO, and MASK is a value-based
876 retriction for FIELD[I]. */
882 int numeric
= XINT (val
);
885 from
= to
= XLFD_ENCODING_INDEX
,
886 mask
= XLFD_ENCODING_MASK
;
887 else if (numeric
== 0)
888 from
= XLFD_PIXEL_INDEX
, to
= XLFD_AVGWIDTH_INDEX
,
889 mask
= XLFD_PIXEL_MASK
| XLFD_LARGENUM_MASK
;
890 else if (numeric
<= 48)
891 from
= to
= XLFD_PIXEL_INDEX
,
892 mask
= XLFD_PIXEL_MASK
;
894 from
= XLFD_POINT_INDEX
, to
= XLFD_AVGWIDTH_INDEX
,
895 mask
= XLFD_LARGENUM_MASK
;
897 else if (SBYTES (SYMBOL_NAME (val
)) == 0)
898 from
= XLFD_FOUNDRY_INDEX
, to
= XLFD_ADSTYLE_INDEX
,
899 mask
= XLFD_NULL_MASK
;
901 from
= to
= XLFD_FOUNDRY_INDEX
, mask
= XLFD_FOUNDRY_MASK
;
904 Lisp_Object name
= SYMBOL_NAME (val
);
906 if (SDATA (name
)[SBYTES (name
) - 1] == '*')
907 from
= XLFD_REGISTRY_INDEX
, to
= XLFD_ENCODING_INDEX
,
908 mask
= XLFD_REGENC_MASK
;
910 from
= to
= XLFD_ENCODING_INDEX
,
911 mask
= XLFD_ENCODING_MASK
;
913 else if (range_from
<= XLFD_WEIGHT_INDEX
914 && range_to
>= XLFD_WEIGHT_INDEX
915 && FONT_WEIGHT_NAME_NUMERIC (val
) >= 0)
916 from
= to
= XLFD_WEIGHT_INDEX
, mask
= XLFD_WEIGHT_MASK
;
917 else if (range_from
<= XLFD_SLANT_INDEX
918 && range_to
>= XLFD_SLANT_INDEX
919 && FONT_SLANT_NAME_NUMERIC (val
) >= 0)
920 from
= to
= XLFD_SLANT_INDEX
, mask
= XLFD_SLANT_MASK
;
921 else if (range_from
<= XLFD_SWIDTH_INDEX
922 && range_to
>= XLFD_SWIDTH_INDEX
923 && FONT_WIDTH_NAME_NUMERIC (val
) >= 0)
924 from
= to
= XLFD_SWIDTH_INDEX
, mask
= XLFD_SWIDTH_MASK
;
927 if (EQ (val
, Qc
) || EQ (val
, Qm
) || EQ (val
, Qp
) || EQ (val
, Qd
))
928 from
= to
= XLFD_SPACING_INDEX
, mask
= XLFD_SPACING_MASK
;
930 from
= XLFD_FOUNDRY_INDEX
, to
= XLFD_ENCODING_INDEX
,
931 mask
= XLFD_SYMBOL_MASK
;
934 /* Merge position-based and value-based restrictions. */
936 while (from
< range_from
)
937 mask
&= ~(1 << from
++);
938 while (from
< 14 && ! (mask
& (1 << from
)))
940 while (to
> range_to
)
941 mask
&= ~(1 << to
--);
942 while (to
>= 0 && ! (mask
& (1 << to
)))
946 range
[i
].from
= from
;
948 range
[i
].mask
= mask
;
950 if (from
> range_from
|| to
< range_to
)
952 /* The range is narrowed by value-based restrictions.
953 Reflect it to the other fields. */
955 /* Following fields should be after FROM. */
957 /* Preceding fields should be before TO. */
958 for (j
= i
- 1, from
--, to
--; j
>= 0; j
--, from
--, to
--)
960 /* Check FROM for non-wildcard field. */
961 if (! NILP (tmp
[j
]) && range
[j
].from
< from
)
963 while (range
[j
].from
< from
)
964 range
[j
].mask
&= ~(1 << range
[j
].from
++);
965 while (from
< 14 && ! (range
[j
].mask
& (1 << from
)))
967 range
[j
].from
= from
;
970 from
= range
[j
].from
;
971 if (range
[j
].to
> to
)
973 while (range
[j
].to
> to
)
974 range
[j
].mask
&= ~(1 << range
[j
].to
--);
975 while (to
>= 0 && ! (range
[j
].mask
& (1 << to
)))
988 /* Decide all fileds from restrictions in RANGE. */
989 for (i
= j
= 0; i
< n
; i
++)
991 if (j
< range
[i
].from
)
993 if (i
== 0 || ! NILP (tmp
[i
- 1]))
994 /* None of TMP[X] corresponds to Jth field. */
996 for (; j
< range
[i
].from
; j
++)
1001 if (! NILP (tmp
[n
- 1]) && j
< XLFD_REGISTRY_INDEX
)
1003 for (; j
< XLFD_LAST_INDEX
; j
++)
1005 if (INTEGERP (field
[XLFD_ENCODING_INDEX
]))
1006 field
[XLFD_ENCODING_INDEX
]
1007 = Fintern (Fnumber_to_string (field
[XLFD_ENCODING_INDEX
]), Qnil
);
1012 #ifdef ENABLE_CHECKING
1013 /* Match a 14-field XLFD pattern against a full XLFD font name. */
1015 font_match_xlfd (char *pattern
, char *name
)
1017 while (*pattern
&& *name
)
1019 if (*pattern
== *name
)
1021 else if (*pattern
== '*')
1022 if (*name
== pattern
[1])
1033 /* Make sure the font object matches the XLFD font name. */
1035 font_check_xlfd_parse (Lisp_Object font
, char *name
)
1037 char name_check
[256];
1038 font_unparse_xlfd (font
, 0, name_check
, 255);
1039 return font_match_xlfd (name_check
, name
);
1045 /* Parse NAME (null terminated) as XLFD and store information in FONT
1046 (font-spec or font-entity). Size property of FONT is set as
1048 specified XLFD fields FONT property
1049 --------------------- -------------
1050 PIXEL_SIZE PIXEL_SIZE (Lisp integer)
1051 POINT_SIZE and RESY calculated pixel size (Lisp integer)
1052 POINT_SIZE POINT_SIZE/10 (Lisp float)
1054 If NAME is successfully parsed, return 0. Otherwise return -1.
1056 FONT is usually a font-spec, but when this function is called from
1057 X font backend driver, it is a font-entity. In that case, NAME is
1058 a fully specified XLFD. */
1061 font_parse_xlfd (name
, font
)
1065 int len
= strlen (name
);
1067 char *f
[XLFD_LAST_INDEX
+ 1];
1071 if (len
> 255 || !len
)
1072 /* Maximum XLFD name length is 255. */
1074 /* Accept "*-.." as a fully specified XLFD. */
1075 if (name
[0] == '*' && (len
== 1 || name
[1] == '-'))
1076 i
= 1, f
[XLFD_FOUNDRY_INDEX
] = name
;
1079 for (p
= name
+ i
; *p
; p
++)
1083 if (i
== XLFD_LAST_INDEX
)
1088 #define INTERN_FIELD(N) font_intern_prop (f[N], f[(N) + 1] - 1 - f[N], 0)
1089 #define INTERN_FIELD_SYM(N) font_intern_prop (f[N], f[(N) + 1] - 1 - f[N], 1)
1091 if (i
== XLFD_LAST_INDEX
)
1093 /* Fully specified XLFD. */
1096 ASET (font
, FONT_FOUNDRY_INDEX
, INTERN_FIELD_SYM (XLFD_FOUNDRY_INDEX
));
1097 ASET (font
, FONT_FAMILY_INDEX
, INTERN_FIELD_SYM (XLFD_FAMILY_INDEX
));
1098 for (i
= XLFD_WEIGHT_INDEX
, j
= FONT_WEIGHT_INDEX
;
1099 i
<= XLFD_SWIDTH_INDEX
; i
++, j
++)
1101 val
= INTERN_FIELD_SYM (i
);
1104 if ((n
= font_style_to_value (j
, INTERN_FIELD_SYM (i
), 0)) < 0)
1106 ASET (font
, j
, make_number (n
));
1109 ASET (font
, FONT_ADSTYLE_INDEX
, INTERN_FIELD_SYM (XLFD_ADSTYLE_INDEX
));
1110 if (strcmp (f
[XLFD_REGISTRY_INDEX
], "*-*") == 0)
1111 ASET (font
, FONT_REGISTRY_INDEX
, Qnil
);
1113 ASET (font
, FONT_REGISTRY_INDEX
,
1114 font_intern_prop (f
[XLFD_REGISTRY_INDEX
],
1115 f
[XLFD_LAST_INDEX
] - f
[XLFD_REGISTRY_INDEX
],
1117 p
= f
[XLFD_PIXEL_INDEX
];
1118 if (*p
== '[' && (pixel_size
= parse_matrix (p
)) >= 0)
1119 ASET (font
, FONT_SIZE_INDEX
, make_number (pixel_size
));
1122 val
= INTERN_FIELD (XLFD_PIXEL_INDEX
);
1124 ASET (font
, FONT_SIZE_INDEX
, val
);
1125 else if (FONT_ENTITY_P (font
))
1129 double point_size
= -1;
1131 font_assert (FONT_SPEC_P (font
));
1132 p
= f
[XLFD_POINT_INDEX
];
1134 point_size
= parse_matrix (p
);
1135 else if (isdigit (*p
))
1136 point_size
= atoi (p
), point_size
/= 10;
1137 if (point_size
>= 0)
1138 ASET (font
, FONT_SIZE_INDEX
, make_float (point_size
));
1142 val
= INTERN_FIELD (XLFD_RESY_INDEX
);
1143 if (! NILP (val
) && ! INTEGERP (val
))
1145 ASET (font
, FONT_DPI_INDEX
, val
);
1146 val
= INTERN_FIELD (XLFD_SPACING_INDEX
);
1149 val
= font_prop_validate_spacing (QCspacing
, val
);
1150 if (! INTEGERP (val
))
1152 ASET (font
, FONT_SPACING_INDEX
, val
);
1154 p
= f
[XLFD_AVGWIDTH_INDEX
];
1157 val
= font_intern_prop (p
, f
[XLFD_REGISTRY_INDEX
] - 1 - p
, 0);
1158 if (! NILP (val
) && ! INTEGERP (val
))
1160 ASET (font
, FONT_AVGWIDTH_INDEX
, val
);
1164 int wild_card_found
= 0;
1165 Lisp_Object prop
[XLFD_LAST_INDEX
];
1167 if (FONT_ENTITY_P (font
))
1169 for (j
= 0; j
< i
; j
++)
1173 if (f
[j
][1] && f
[j
][1] != '-')
1176 wild_card_found
= 1;
1179 prop
[j
] = INTERN_FIELD (j
);
1181 prop
[j
] = font_intern_prop (f
[j
], f
[i
] - f
[j
], 0);
1183 if (! wild_card_found
)
1185 if (font_expand_wildcards (prop
, i
) < 0)
1188 ASET (font
, FONT_FOUNDRY_INDEX
, prop
[XLFD_FOUNDRY_INDEX
]);
1189 ASET (font
, FONT_FAMILY_INDEX
, prop
[XLFD_FAMILY_INDEX
]);
1190 for (i
= XLFD_WEIGHT_INDEX
, j
= FONT_WEIGHT_INDEX
;
1191 i
<= XLFD_SWIDTH_INDEX
; i
++, j
++)
1192 if (! NILP (prop
[i
]))
1194 if ((n
= font_style_to_value (j
, prop
[i
], 1)) < 0)
1196 ASET (font
, j
, make_number (n
));
1198 ASET (font
, FONT_ADSTYLE_INDEX
, prop
[XLFD_ADSTYLE_INDEX
]);
1199 val
= prop
[XLFD_REGISTRY_INDEX
];
1202 val
= prop
[XLFD_ENCODING_INDEX
];
1204 val
= concat2 (build_string ("*-"), SYMBOL_NAME (val
));
1206 else if (NILP (prop
[XLFD_ENCODING_INDEX
]))
1207 val
= concat2 (SYMBOL_NAME (val
), build_string ("-*"));
1209 val
= concat3 (SYMBOL_NAME (val
), build_string ("-"),
1210 SYMBOL_NAME (prop
[XLFD_ENCODING_INDEX
]));
1212 ASET (font
, FONT_REGISTRY_INDEX
, Fintern (val
, Qnil
));
1214 if (INTEGERP (prop
[XLFD_PIXEL_INDEX
]))
1215 ASET (font
, FONT_SIZE_INDEX
, prop
[XLFD_PIXEL_INDEX
]);
1216 else if (INTEGERP (prop
[XLFD_POINT_INDEX
]))
1218 double point_size
= XINT (prop
[XLFD_POINT_INDEX
]);
1220 ASET (font
, FONT_SIZE_INDEX
, make_float (point_size
/ 10));
1223 if (INTEGERP (prop
[XLFD_RESX_INDEX
]))
1224 ASET (font
, FONT_DPI_INDEX
, prop
[XLFD_RESY_INDEX
]);
1225 if (! NILP (prop
[XLFD_SPACING_INDEX
]))
1227 val
= font_prop_validate_spacing (QCspacing
,
1228 prop
[XLFD_SPACING_INDEX
]);
1229 if (! INTEGERP (val
))
1231 ASET (font
, FONT_SPACING_INDEX
, val
);
1233 if (INTEGERP (prop
[XLFD_AVGWIDTH_INDEX
]))
1234 ASET (font
, FONT_AVGWIDTH_INDEX
, prop
[XLFD_AVGWIDTH_INDEX
]);
1240 /* Store XLFD name of FONT (font-spec or font-entity) in NAME (NBYTES
1241 length), and return the name length. If FONT_SIZE_INDEX of FONT is
1242 0, use PIXEL_SIZE instead. */
1245 font_unparse_xlfd (font
, pixel_size
, name
, nbytes
)
1251 char *f
[XLFD_REGISTRY_INDEX
+ 1];
1255 font_assert (FONTP (font
));
1257 for (i
= FONT_FOUNDRY_INDEX
, j
= XLFD_FOUNDRY_INDEX
; i
<= FONT_REGISTRY_INDEX
;
1260 if (i
== FONT_ADSTYLE_INDEX
)
1261 j
= XLFD_ADSTYLE_INDEX
;
1262 else if (i
== FONT_REGISTRY_INDEX
)
1263 j
= XLFD_REGISTRY_INDEX
;
1264 val
= AREF (font
, i
);
1267 if (j
== XLFD_REGISTRY_INDEX
)
1268 f
[j
] = "*-*", len
+= 4;
1270 f
[j
] = "*", len
+= 2;
1275 val
= SYMBOL_NAME (val
);
1276 if (j
== XLFD_REGISTRY_INDEX
1277 && ! strchr ((char *) SDATA (val
), '-'))
1279 /* Change "jisx0208*" and "jisx0208" to "jisx0208*-*". */
1280 if (SDATA (val
)[SBYTES (val
) - 1] == '*')
1282 f
[j
] = alloca (SBYTES (val
) + 3);
1283 sprintf (f
[j
], "%s-*", SDATA (val
));
1284 len
+= SBYTES (val
) + 3;
1288 f
[j
] = alloca (SBYTES (val
) + 4);
1289 sprintf (f
[j
], "%s*-*", SDATA (val
));
1290 len
+= SBYTES (val
) + 4;
1294 f
[j
] = (char *) SDATA (val
), len
+= SBYTES (val
) + 1;
1298 for (i
= FONT_WEIGHT_INDEX
, j
= XLFD_WEIGHT_INDEX
; i
<= FONT_WIDTH_INDEX
;
1301 val
= font_style_symbolic (font
, i
, 0);
1303 f
[j
] = "*", len
+= 2;
1306 val
= SYMBOL_NAME (val
);
1307 f
[j
] = (char *) SDATA (val
), len
+= SBYTES (val
) + 1;
1311 val
= AREF (font
, FONT_SIZE_INDEX
);
1312 font_assert (NUMBERP (val
) || NILP (val
));
1320 f
[XLFD_PIXEL_INDEX
] = alloca (22);
1321 len
+= sprintf (f
[XLFD_PIXEL_INDEX
], "%d-*", i
) + 1;
1324 f
[XLFD_PIXEL_INDEX
] = "*-*", len
+= 4;
1326 else if (FLOATP (val
))
1328 i
= XFLOAT_DATA (val
) * 10;
1329 f
[XLFD_PIXEL_INDEX
] = alloca (12);
1330 len
+= sprintf (f
[XLFD_PIXEL_INDEX
], "*-%d", i
) + 1;
1333 f
[XLFD_PIXEL_INDEX
] = "*-*", len
+= 4;
1335 if (INTEGERP (AREF (font
, FONT_DPI_INDEX
)))
1337 i
= XINT (AREF (font
, FONT_DPI_INDEX
));
1338 f
[XLFD_RESX_INDEX
] = alloca (22);
1339 len
+= sprintf (f
[XLFD_RESX_INDEX
],
1343 f
[XLFD_RESX_INDEX
] = "*-*", len
+= 4;
1344 if (INTEGERP (AREF (font
, FONT_SPACING_INDEX
)))
1346 int spacing
= XINT (AREF (font
, FONT_SPACING_INDEX
));
1348 f
[XLFD_SPACING_INDEX
] = (spacing
<= FONT_SPACING_PROPORTIONAL
? "p"
1349 : spacing
<= FONT_SPACING_DUAL
? "d"
1350 : spacing
<= FONT_SPACING_MONO
? "m"
1355 f
[XLFD_SPACING_INDEX
] = "*", len
+= 2;
1356 if (INTEGERP (AREF (font
, FONT_AVGWIDTH_INDEX
)))
1358 f
[XLFD_AVGWIDTH_INDEX
] = alloca (11);
1359 len
+= sprintf (f
[XLFD_AVGWIDTH_INDEX
], "%ld",
1360 (long) XINT (AREF (font
, FONT_AVGWIDTH_INDEX
))) + 1;
1363 f
[XLFD_AVGWIDTH_INDEX
] = "*", len
+= 2;
1364 len
++; /* for terminating '\0'. */
1367 return sprintf (name
, "-%s-%s-%s-%s-%s-%s-%s-%s-%s-%s-%s",
1368 f
[XLFD_FOUNDRY_INDEX
], f
[XLFD_FAMILY_INDEX
],
1369 f
[XLFD_WEIGHT_INDEX
], f
[XLFD_SLANT_INDEX
],
1370 f
[XLFD_SWIDTH_INDEX
], f
[XLFD_ADSTYLE_INDEX
],
1371 f
[XLFD_PIXEL_INDEX
], f
[XLFD_RESX_INDEX
],
1372 f
[XLFD_SPACING_INDEX
], f
[XLFD_AVGWIDTH_INDEX
],
1373 f
[XLFD_REGISTRY_INDEX
]);
1376 /* Parse NAME (null terminated) and store information in FONT
1377 (font-spec or font-entity). NAME is supplied in either the
1378 Fontconfig or GTK font name format. If NAME is successfully
1379 parsed, return 0. Otherwise return -1.
1381 The fontconfig format is
1383 FAMILY[-SIZE][:PROP1[=VAL1][:PROP2[=VAL2]...]]
1387 FAMILY [PROPS...] [SIZE]
1389 This function tries to guess which format it is. */
1392 font_parse_fcname (name
, font
)
1397 char *size_beg
= NULL
, *size_end
= NULL
;
1398 char *props_beg
= NULL
, *family_end
= NULL
;
1399 int len
= strlen (name
);
1404 for (p
= name
; *p
; p
++)
1406 if (*p
== '\\' && p
[1])
1410 props_beg
= family_end
= p
;
1415 int decimal
= 0, size_found
= 1;
1416 for (q
= p
+ 1; *q
&& *q
!= ':'; q
++)
1419 if (*q
!= '.' || decimal
)
1438 Lisp_Object extra_props
= Qnil
;
1440 /* A fontconfig name with size and/or property data. */
1441 if (family_end
> name
)
1444 family
= font_intern_prop (name
, family_end
- name
, 1);
1445 ASET (font
, FONT_FAMILY_INDEX
, family
);
1449 double point_size
= strtod (size_beg
, &size_end
);
1450 ASET (font
, FONT_SIZE_INDEX
, make_float (point_size
));
1451 if (*size_end
== ':' && size_end
[1])
1452 props_beg
= size_end
;
1456 /* Now parse ":KEY=VAL" patterns. */
1459 for (p
= props_beg
; *p
; p
= q
)
1461 for (q
= p
+ 1; *q
&& *q
!= '=' && *q
!= ':'; q
++);
1464 /* Must be an enumerated value. */
1468 val
= font_intern_prop (p
, q
- p
, 1);
1470 #define PROP_MATCH(STR,N) ((word_len == N) && memcmp (p, STR, N) == 0)
1472 if (PROP_MATCH ("light", 5)
1473 || PROP_MATCH ("medium", 6)
1474 || PROP_MATCH ("demibold", 8)
1475 || PROP_MATCH ("bold", 4)
1476 || PROP_MATCH ("black", 5))
1477 FONT_SET_STYLE (font
, FONT_WEIGHT_INDEX
, val
);
1478 else if (PROP_MATCH ("roman", 5)
1479 || PROP_MATCH ("italic", 6)
1480 || PROP_MATCH ("oblique", 7))
1481 FONT_SET_STYLE (font
, FONT_SLANT_INDEX
, val
);
1482 else if (PROP_MATCH ("charcell", 8))
1483 ASET (font
, FONT_SPACING_INDEX
,
1484 make_number (FONT_SPACING_CHARCELL
));
1485 else if (PROP_MATCH ("mono", 4))
1486 ASET (font
, FONT_SPACING_INDEX
,
1487 make_number (FONT_SPACING_MONO
));
1488 else if (PROP_MATCH ("proportional", 12))
1489 ASET (font
, FONT_SPACING_INDEX
,
1490 make_number (FONT_SPACING_PROPORTIONAL
));
1499 if (q
- p
== 10 && memcmp (p
+ 1, "pixelsize", 9) == 0)
1500 prop
= FONT_SIZE_INDEX
;
1503 key
= font_intern_prop (p
, q
- p
, 1);
1504 prop
= get_font_prop_index (key
);
1508 for (q
= p
; *q
&& *q
!= ':'; q
++);
1509 val
= font_intern_prop (p
, q
- p
, 0);
1511 if (prop
>= FONT_FOUNDRY_INDEX
1512 && prop
< FONT_EXTRA_INDEX
)
1513 ASET (font
, prop
, font_prop_validate (prop
, Qnil
, val
));
1516 extra_props
= nconc2 (extra_props
,
1517 Fcons (Fcons (key
, val
), Qnil
));
1524 if (! NILP (extra_props
))
1526 struct font_driver_list
*driver_list
= font_driver_list
;
1527 for ( ; driver_list
; driver_list
= driver_list
->next
)
1528 if (driver_list
->driver
->filter_properties
)
1529 (*driver_list
->driver
->filter_properties
) (font
, extra_props
);
1535 /* Either a fontconfig-style name with no size and property
1536 data, or a GTK-style name. */
1538 int word_len
, prop_found
= 0;
1540 for (p
= name
; *p
; p
= *q
? q
+ 1 : q
)
1546 for (q
= p
+ 1; *q
&& *q
!= ' '; q
++)
1554 double point_size
= strtod (p
, &q
);
1555 ASET (font
, FONT_SIZE_INDEX
, make_float (point_size
));
1560 for (q
= p
+ 1; *q
&& *q
!= ' '; q
++)
1561 if (*q
== '\\' && q
[1])
1565 #define PROP_MATCH(STR,N) ((word_len == N) && memcmp (p, STR, N) == 0)
1567 if (PROP_MATCH ("Ultra-Light", 11))
1570 prop
= font_intern_prop ("ultra-light", 11, 1);
1571 FONT_SET_STYLE (font
, FONT_WEIGHT_INDEX
, prop
);
1573 else if (PROP_MATCH ("Light", 5))
1576 prop
= font_intern_prop ("light", 5, 1);
1577 FONT_SET_STYLE (font
, FONT_WEIGHT_INDEX
, prop
);
1579 else if (PROP_MATCH ("Book", 4))
1582 prop
= font_intern_prop ("book", 4, 1);
1583 FONT_SET_STYLE (font
, FONT_WEIGHT_INDEX
, prop
);
1585 else if (PROP_MATCH ("Medium", 6))
1588 prop
= font_intern_prop ("medium", 6, 1);
1589 FONT_SET_STYLE (font
, FONT_WEIGHT_INDEX
, prop
);
1591 else if (PROP_MATCH ("Semi-Bold", 9))
1594 prop
= font_intern_prop ("semi-bold", 9, 1);
1595 FONT_SET_STYLE (font
, FONT_WEIGHT_INDEX
, prop
);
1597 else if (PROP_MATCH ("Bold", 4))
1600 prop
= font_intern_prop ("bold", 4, 1);
1601 FONT_SET_STYLE (font
, FONT_WEIGHT_INDEX
, prop
);
1603 else if (PROP_MATCH ("Italic", 6))
1606 prop
= font_intern_prop ("italic", 4, 1);
1607 FONT_SET_STYLE (font
, FONT_SLANT_INDEX
, prop
);
1609 else if (PROP_MATCH ("Oblique", 7))
1612 prop
= font_intern_prop ("oblique", 7, 1);
1613 FONT_SET_STYLE (font
, FONT_SLANT_INDEX
, prop
);
1615 else if (PROP_MATCH ("Semi-Condensed", 14))
1618 prop
= font_intern_prop ("semi-condensed", 14, 1);
1619 FONT_SET_STYLE (font
, FONT_WIDTH_INDEX
, prop
);
1621 else if (PROP_MATCH ("Condensed", 9))
1624 prop
= font_intern_prop ("condensed", 9, 1);
1625 FONT_SET_STYLE (font
, FONT_WIDTH_INDEX
, prop
);
1629 return -1; /* Unknown property in GTK-style font name. */
1638 family
= font_intern_prop (name
, family_end
- name
, 1);
1639 ASET (font
, FONT_FAMILY_INDEX
, family
);
1646 /* Store fontconfig's font name of FONT (font-spec or font-entity) in
1647 NAME (NBYTES length), and return the name length. If
1648 FONT_SIZE_INDEX of FONT is 0, use PIXEL_SIZE instead. */
1651 font_unparse_fcname (font
, pixel_size
, name
, nbytes
)
1657 Lisp_Object family
, foundry
;
1658 Lisp_Object tail
, val
;
1662 Lisp_Object styles
[3];
1663 char *style_names
[3] = { "weight", "slant", "width" };
1666 family
= AREF (font
, FONT_FAMILY_INDEX
);
1667 if (! NILP (family
))
1669 if (SYMBOLP (family
))
1671 family
= SYMBOL_NAME (family
);
1672 len
+= SBYTES (family
);
1678 val
= AREF (font
, FONT_SIZE_INDEX
);
1681 if (XINT (val
) != 0)
1682 pixel_size
= XINT (val
);
1684 len
+= 21; /* for ":pixelsize=NUM" */
1686 else if (FLOATP (val
))
1689 point_size
= (int) XFLOAT_DATA (val
);
1690 len
+= 11; /* for "-NUM" */
1693 foundry
= AREF (font
, FONT_FOUNDRY_INDEX
);
1694 if (! NILP (foundry
))
1696 if (SYMBOLP (foundry
))
1698 foundry
= SYMBOL_NAME (foundry
);
1699 len
+= 9 + SBYTES (foundry
); /* ":foundry=NAME" */
1705 for (i
= 0; i
< 3; i
++)
1707 styles
[i
] = font_style_symbolic (font
, FONT_WEIGHT_INDEX
+ i
, 0);
1708 if (! NILP (styles
[i
]))
1709 len
+= sprintf (work
, ":%s=%s", style_names
[i
],
1710 SDATA (SYMBOL_NAME (styles
[i
])));
1713 if (INTEGERP (AREF (font
, FONT_DPI_INDEX
)))
1714 len
+= sprintf (work
, ":dpi=%ld", (long)XINT (AREF (font
, FONT_DPI_INDEX
)));
1715 if (INTEGERP (AREF (font
, FONT_SPACING_INDEX
)))
1716 len
+= strlen (":spacing=100");
1717 if (INTEGERP (AREF (font
, FONT_AVGWIDTH_INDEX
)))
1718 len
+= strlen (":scalable=false"); /* or ":scalable=true" */
1719 for (tail
= AREF (font
, FONT_EXTRA_INDEX
); CONSP (tail
); tail
= XCDR (tail
))
1721 Lisp_Object key
= XCAR (XCAR (tail
)), val
= XCDR (XCAR (tail
));
1723 len
+= SBYTES (SYMBOL_NAME (key
)) + 1; /* for :KEY= */
1725 len
+= SBYTES (val
);
1726 else if (INTEGERP (val
))
1727 len
+= sprintf (work
, "%ld", (long) XINT (val
));
1728 else if (SYMBOLP (val
))
1729 len
+= (NILP (val
) ? 5 : 4); /* for "false" or "true" */
1735 if (! NILP (family
))
1736 p
+= sprintf (p
, "%s", SDATA (family
));
1740 p
+= sprintf (p
, "%d", point_size
);
1742 p
+= sprintf (p
, "-%d", point_size
);
1744 else if (pixel_size
> 0)
1745 p
+= sprintf (p
, ":pixelsize=%d", pixel_size
);
1746 if (! NILP (AREF (font
, FONT_FOUNDRY_INDEX
)))
1747 p
+= sprintf (p
, ":foundry=%s",
1748 SDATA (SYMBOL_NAME (AREF (font
, FONT_FOUNDRY_INDEX
))));
1749 for (i
= 0; i
< 3; i
++)
1750 if (! NILP (styles
[i
]))
1751 p
+= sprintf (p
, ":%s=%s", style_names
[i
],
1752 SDATA (SYMBOL_NAME (styles
[i
])));
1753 if (INTEGERP (AREF (font
, FONT_DPI_INDEX
)))
1754 p
+= sprintf (p
, ":dpi=%ld", (long) XINT (AREF (font
, FONT_DPI_INDEX
)));
1755 if (INTEGERP (AREF (font
, FONT_SPACING_INDEX
)))
1756 p
+= sprintf (p
, ":spacing=%ld",
1757 (long) XINT (AREF (font
, FONT_SPACING_INDEX
)));
1758 if (INTEGERP (AREF (font
, FONT_AVGWIDTH_INDEX
)))
1760 if (XINT (AREF (font
, FONT_AVGWIDTH_INDEX
)) == 0)
1761 p
+= sprintf (p
, ":scalable=true");
1763 p
+= sprintf (p
, ":scalable=false");
1768 /* Store GTK-style font name of FONT (font-spec or font-entity) in
1769 NAME (NBYTES length), and return the name length. F is the frame
1770 on which the font is displayed; it is used to calculate the point
1774 font_unparse_gtkname (font
, f
, name
, nbytes
)
1782 Lisp_Object family
, weight
, slant
, size
;
1783 int point_size
= -1;
1785 family
= AREF (font
, FONT_FAMILY_INDEX
);
1786 if (! NILP (family
))
1788 if (! SYMBOLP (family
))
1790 family
= SYMBOL_NAME (family
);
1791 len
+= SBYTES (family
);
1794 weight
= font_style_symbolic (font
, FONT_WEIGHT_INDEX
, 0);
1795 if (EQ (weight
, Qnormal
))
1797 else if (! NILP (weight
))
1799 weight
= SYMBOL_NAME (weight
);
1800 len
+= SBYTES (weight
);
1803 slant
= font_style_symbolic (font
, FONT_SLANT_INDEX
, 0);
1804 if (EQ (slant
, Qnormal
))
1806 else if (! NILP (slant
))
1808 slant
= SYMBOL_NAME (slant
);
1809 len
+= SBYTES (slant
);
1812 size
= AREF (font
, FONT_SIZE_INDEX
);
1813 /* Convert pixel size to point size. */
1814 if (INTEGERP (size
))
1816 Lisp_Object font_dpi
= AREF (font
, FONT_DPI_INDEX
);
1818 if (INTEGERP (font_dpi
))
1819 dpi
= XINT (font_dpi
);
1822 point_size
= PIXEL_TO_POINT (XINT (size
), dpi
);
1825 else if (FLOATP (size
))
1827 point_size
= (int) XFLOAT_DATA (size
);
1834 p
= name
+ sprintf (name
, "%s", SDATA (family
));
1836 if (! NILP (weight
))
1839 p
+= sprintf (p
, " %s", SDATA (weight
));
1840 q
[1] = toupper (q
[1]);
1846 p
+= sprintf (p
, " %s", SDATA (slant
));
1847 q
[1] = toupper (q
[1]);
1851 p
+= sprintf (p
, " %d", point_size
);
1856 /* Parse NAME (null terminated) and store information in FONT
1857 (font-spec or font-entity). If NAME is successfully parsed, return
1858 0. Otherwise return -1. */
1861 font_parse_name (name
, font
)
1865 if (name
[0] == '-' || index (name
, '*') || index (name
, '?'))
1866 return font_parse_xlfd (name
, font
);
1867 return font_parse_fcname (name
, font
);
1871 /* Merge FAMILY and REGISTRY into FONT_SPEC. FAMILY may have the form
1872 "FAMILY-FOUNDRY". REGISTRY may not contain charset-encoding
1876 font_parse_family_registry (family
, registry
, font_spec
)
1877 Lisp_Object family
, registry
, font_spec
;
1883 && NILP (AREF (font_spec
, FONT_FAMILY_INDEX
)))
1885 CHECK_STRING (family
);
1886 len
= SBYTES (family
);
1887 p0
= (char *) SDATA (family
);
1888 p1
= index (p0
, '-');
1891 if ((*p0
!= '*' && p1
- p0
> 0)
1892 && NILP (AREF (font_spec
, FONT_FOUNDRY_INDEX
)))
1893 Ffont_put (font_spec
, QCfoundry
, font_intern_prop (p0
, p1
- p0
, 1));
1896 Ffont_put (font_spec
, QCfamily
, font_intern_prop (p1
, len
, 1));
1899 ASET (font_spec
, FONT_FAMILY_INDEX
, Fintern (family
, Qnil
));
1901 if (! NILP (registry
))
1903 /* Convert "XXX" and "XXX*" to "XXX*-*". */
1904 CHECK_STRING (registry
);
1905 len
= SBYTES (registry
);
1906 p0
= (char *) SDATA (registry
);
1907 p1
= index (p0
, '-');
1910 if (SDATA (registry
)[len
- 1] == '*')
1911 registry
= concat2 (registry
, build_string ("-*"));
1913 registry
= concat2 (registry
, build_string ("*-*"));
1915 registry
= Fdowncase (registry
);
1916 ASET (font_spec
, FONT_REGISTRY_INDEX
, Fintern (registry
, Qnil
));
1921 /* This part (through the next ^L) is still experimental and not
1922 tested much. We may drastically change codes. */
1928 #define LGSTRING_HEADER_SIZE 6
1929 #define LGSTRING_GLYPH_SIZE 8
1932 check_gstring (gstring
)
1933 Lisp_Object gstring
;
1938 CHECK_VECTOR (gstring
);
1939 val
= AREF (gstring
, 0);
1941 if (ASIZE (val
) < LGSTRING_HEADER_SIZE
)
1943 CHECK_FONT_OBJECT (LGSTRING_FONT (gstring
));
1944 if (!NILP (LGSTRING_SLOT (gstring
, LGSTRING_IX_LBEARING
)))
1945 CHECK_NUMBER (LGSTRING_SLOT (gstring
, LGSTRING_IX_LBEARING
));
1946 if (!NILP (LGSTRING_SLOT (gstring
, LGSTRING_IX_RBEARING
)))
1947 CHECK_NUMBER (LGSTRING_SLOT (gstring
, LGSTRING_IX_RBEARING
));
1948 if (!NILP (LGSTRING_SLOT (gstring
, LGSTRING_IX_WIDTH
)))
1949 CHECK_NATNUM (LGSTRING_SLOT (gstring
, LGSTRING_IX_WIDTH
));
1950 if (!NILP (LGSTRING_SLOT (gstring
, LGSTRING_IX_ASCENT
)))
1951 CHECK_NUMBER (LGSTRING_SLOT (gstring
, LGSTRING_IX_ASCENT
));
1952 if (!NILP (LGSTRING_SLOT (gstring
, LGSTRING_IX_ASCENT
)))
1953 CHECK_NUMBER (LGSTRING_SLOT (gstring
, LGSTRING_IX_ASCENT
));
1955 for (i
= 0; i
< LGSTRING_GLYPH_LEN (gstring
); i
++)
1957 val
= LGSTRING_GLYPH (gstring
, i
);
1959 if (ASIZE (val
) < LGSTRING_GLYPH_SIZE
)
1961 if (NILP (AREF (val
, LGLYPH_IX_CHAR
)))
1963 CHECK_NATNUM (AREF (val
, LGLYPH_IX_FROM
));
1964 CHECK_NATNUM (AREF (val
, LGLYPH_IX_TO
));
1965 CHECK_CHARACTER (AREF (val
, LGLYPH_IX_CHAR
));
1966 if (!NILP (AREF (val
, LGLYPH_IX_CODE
)))
1967 CHECK_NATNUM (AREF (val
, LGLYPH_IX_CODE
));
1968 if (!NILP (AREF (val
, LGLYPH_IX_WIDTH
)))
1969 CHECK_NATNUM (AREF (val
, LGLYPH_IX_WIDTH
));
1970 if (!NILP (AREF (val
, LGLYPH_IX_ADJUSTMENT
)))
1972 val
= AREF (val
, LGLYPH_IX_ADJUSTMENT
);
1974 if (ASIZE (val
) < 3)
1976 for (j
= 0; j
< 3; j
++)
1977 CHECK_NUMBER (AREF (val
, j
));
1982 error ("Invalid glyph-string format");
1987 check_otf_features (otf_features
)
1988 Lisp_Object otf_features
;
1992 CHECK_CONS (otf_features
);
1993 CHECK_SYMBOL (XCAR (otf_features
));
1994 otf_features
= XCDR (otf_features
);
1995 CHECK_CONS (otf_features
);
1996 CHECK_SYMBOL (XCAR (otf_features
));
1997 otf_features
= XCDR (otf_features
);
1998 for (val
= Fcar (otf_features
); ! NILP (val
); val
= Fcdr (val
))
2000 CHECK_SYMBOL (Fcar (val
));
2001 if (SBYTES (SYMBOL_NAME (XCAR (val
))) > 4)
2002 error ("Invalid OTF GSUB feature: %s", SYMBOL_NAME (XCAR (val
)));
2004 otf_features
= XCDR (otf_features
);
2005 for (val
= Fcar (otf_features
); ! NILP (val
); val
= Fcdr (val
))
2007 CHECK_SYMBOL (Fcar (val
));
2008 if (SBYTES (SYMBOL_NAME (XCAR (val
))) > 4)
2009 error ("Invalid OTF GPOS feature: %s", SYMBOL_NAME (XCAR (val
)));
2016 Lisp_Object otf_list
;
2019 otf_tag_symbol (tag
)
2024 OTF_tag_name (tag
, name
);
2025 return Fintern (make_unibyte_string (name
, 4), Qnil
);
2032 Lisp_Object val
= Fassoc (file
, otf_list
);
2036 otf
= XSAVE_VALUE (XCDR (val
))->pointer
;
2039 otf
= STRINGP (file
) ? OTF_open ((char *) SDATA (file
)) : NULL
;
2040 val
= make_save_value (otf
, 0);
2041 otf_list
= Fcons (Fcons (file
, val
), otf_list
);
2047 /* Return a list describing which scripts/languages FONT supports by
2048 which GSUB/GPOS features of OpenType tables. See the comment of
2049 (struct font_driver).otf_capability. */
2052 font_otf_capability (font
)
2056 Lisp_Object capability
= Fcons (Qnil
, Qnil
);
2059 otf
= otf_open (font
->props
[FONT_FILE_INDEX
]);
2062 for (i
= 0; i
< 2; i
++)
2064 OTF_GSUB_GPOS
*gsub_gpos
;
2065 Lisp_Object script_list
= Qnil
;
2068 if (OTF_get_features (otf
, i
== 0) < 0)
2070 gsub_gpos
= i
== 0 ? otf
->gsub
: otf
->gpos
;
2071 for (j
= gsub_gpos
->ScriptList
.ScriptCount
- 1; j
>= 0; j
--)
2073 OTF_Script
*script
= gsub_gpos
->ScriptList
.Script
+ j
;
2074 Lisp_Object langsys_list
= Qnil
;
2075 Lisp_Object script_tag
= otf_tag_symbol (script
->ScriptTag
);
2078 for (k
= script
->LangSysCount
; k
>= 0; k
--)
2080 OTF_LangSys
*langsys
;
2081 Lisp_Object feature_list
= Qnil
;
2082 Lisp_Object langsys_tag
;
2085 if (k
== script
->LangSysCount
)
2087 langsys
= &script
->DefaultLangSys
;
2092 langsys
= script
->LangSys
+ k
;
2094 = otf_tag_symbol (script
->LangSysRecord
[k
].LangSysTag
);
2096 for (l
= langsys
->FeatureCount
- 1; l
>= 0; l
--)
2098 OTF_Feature
*feature
2099 = gsub_gpos
->FeatureList
.Feature
+ langsys
->FeatureIndex
[l
];
2100 Lisp_Object feature_tag
2101 = otf_tag_symbol (feature
->FeatureTag
);
2103 feature_list
= Fcons (feature_tag
, feature_list
);
2105 langsys_list
= Fcons (Fcons (langsys_tag
, feature_list
),
2108 script_list
= Fcons (Fcons (script_tag
, langsys_list
),
2113 XSETCAR (capability
, script_list
);
2115 XSETCDR (capability
, script_list
);
2121 /* Parse OTF features in SPEC and write a proper features spec string
2122 in FEATURES for the call of OTF_drive_gsub/gpos (of libotf). It is
2123 assured that the sufficient memory has already allocated for
2127 generate_otf_features (spec
, features
)
2137 for (asterisk
= 0; CONSP (spec
); spec
= XCDR (spec
))
2143 if (SREF (SYMBOL_NAME (val
), 0) == '*')
2148 else if (! asterisk
)
2150 val
= SYMBOL_NAME (val
);
2151 p
+= sprintf (p
, "%s", SDATA (val
));
2155 val
= SYMBOL_NAME (val
);
2156 p
+= sprintf (p
, "~%s", SDATA (val
));
2160 error ("OTF spec too long");
2164 font_otf_DeviceTable (device_table
)
2165 OTF_DeviceTable
*device_table
;
2167 int len
= device_table
->StartSize
- device_table
->EndSize
+ 1;
2169 return Fcons (make_number (len
),
2170 make_unibyte_string (device_table
->DeltaValue
, len
));
2174 font_otf_ValueRecord (value_format
, value_record
)
2176 OTF_ValueRecord
*value_record
;
2178 Lisp_Object val
= Fmake_vector (make_number (8), Qnil
);
2180 if (value_format
& OTF_XPlacement
)
2181 ASET (val
, 0, make_number (value_record
->XPlacement
));
2182 if (value_format
& OTF_YPlacement
)
2183 ASET (val
, 1, make_number (value_record
->YPlacement
));
2184 if (value_format
& OTF_XAdvance
)
2185 ASET (val
, 2, make_number (value_record
->XAdvance
));
2186 if (value_format
& OTF_YAdvance
)
2187 ASET (val
, 3, make_number (value_record
->YAdvance
));
2188 if (value_format
& OTF_XPlaDevice
)
2189 ASET (val
, 4, font_otf_DeviceTable (&value_record
->XPlaDevice
));
2190 if (value_format
& OTF_YPlaDevice
)
2191 ASET (val
, 4, font_otf_DeviceTable (&value_record
->YPlaDevice
));
2192 if (value_format
& OTF_XAdvDevice
)
2193 ASET (val
, 4, font_otf_DeviceTable (&value_record
->XAdvDevice
));
2194 if (value_format
& OTF_YAdvDevice
)
2195 ASET (val
, 4, font_otf_DeviceTable (&value_record
->YAdvDevice
));
2200 font_otf_Anchor (anchor
)
2205 val
= Fmake_vector (make_number (anchor
->AnchorFormat
+ 1), Qnil
);
2206 ASET (val
, 0, make_number (anchor
->XCoordinate
));
2207 ASET (val
, 1, make_number (anchor
->YCoordinate
));
2208 if (anchor
->AnchorFormat
== 2)
2209 ASET (val
, 2, make_number (anchor
->f
.f1
.AnchorPoint
));
2212 ASET (val
, 3, font_otf_DeviceTable (&anchor
->f
.f2
.XDeviceTable
));
2213 ASET (val
, 4, font_otf_DeviceTable (&anchor
->f
.f2
.YDeviceTable
));
2217 #endif /* HAVE_LIBOTF */
2223 static unsigned font_score
P_ ((Lisp_Object
, Lisp_Object
*));
2224 static int font_compare
P_ ((const void *, const void *));
2225 static Lisp_Object font_sort_entities
P_ ((Lisp_Object
, Lisp_Object
,
2228 /* Return a rescaling ratio of FONT_ENTITY. */
2229 extern Lisp_Object Vface_font_rescale_alist
;
2232 font_rescale_ratio (font_entity
)
2233 Lisp_Object font_entity
;
2235 Lisp_Object tail
, elt
;
2236 Lisp_Object name
= Qnil
;
2238 for (tail
= Vface_font_rescale_alist
; CONSP (tail
); tail
= XCDR (tail
))
2241 if (FLOATP (XCDR (elt
)))
2243 if (STRINGP (XCAR (elt
)))
2246 name
= Ffont_xlfd_name (font_entity
, Qnil
);
2247 if (fast_string_match_ignore_case (XCAR (elt
), name
) >= 0)
2248 return XFLOAT_DATA (XCDR (elt
));
2250 else if (FONT_SPEC_P (XCAR (elt
)))
2252 if (font_match_p (XCAR (elt
), font_entity
))
2253 return XFLOAT_DATA (XCDR (elt
));
2260 /* We sort fonts by scoring each of them against a specified
2261 font-spec. The score value is 32 bit (`unsigned'), and the smaller
2262 the value is, the closer the font is to the font-spec.
2264 The lowest 2 bits of the score is used for driver type. The font
2265 available by the most preferred font driver is 0.
2267 Each 7-bit in the higher 28 bits are used for numeric properties
2268 WEIGHT, SLANT, WIDTH, and SIZE. */
2270 /* How many bits to shift to store the difference value of each font
2271 property in a score. Note that flots for FONT_TYPE_INDEX and
2272 FONT_REGISTRY_INDEX are not used. */
2273 static int sort_shift_bits
[FONT_SIZE_INDEX
+ 1];
2275 /* Score font-entity ENTITY against properties of font-spec SPEC_PROP.
2276 The return value indicates how different ENTITY is compared with
2280 font_score (entity
, spec_prop
)
2281 Lisp_Object entity
, *spec_prop
;
2286 /* Score three style numeric fields. Maximum difference is 127. */
2287 for (i
= FONT_WEIGHT_INDEX
; i
<= FONT_WIDTH_INDEX
; i
++)
2288 if (! NILP (spec_prop
[i
]) && ! EQ (AREF (entity
, i
), spec_prop
[i
]))
2290 int diff
= (XINT (AREF (entity
, i
)) >> 8) - (XINT (spec_prop
[i
]) >> 8);
2295 score
|= min (diff
, 127) << sort_shift_bits
[i
];
2298 /* Score the size. Maximum difference is 127. */
2299 i
= FONT_SIZE_INDEX
;
2300 if (! NILP (spec_prop
[FONT_SIZE_INDEX
])
2301 && XINT (AREF (entity
, FONT_SIZE_INDEX
)) > 0)
2303 /* We use the higher 6-bit for the actual size difference. The
2304 lowest bit is set if the DPI is different. */
2306 int pixel_size
= XINT (spec_prop
[FONT_SIZE_INDEX
]);
2308 if (CONSP (Vface_font_rescale_alist
))
2309 pixel_size
*= font_rescale_ratio (entity
);
2310 diff
= pixel_size
- XINT (AREF (entity
, FONT_SIZE_INDEX
));
2314 if (! NILP (spec_prop
[FONT_DPI_INDEX
])
2315 && ! EQ (spec_prop
[FONT_DPI_INDEX
], AREF (entity
, FONT_DPI_INDEX
)))
2317 if (! NILP (spec_prop
[FONT_AVGWIDTH_INDEX
])
2318 && ! EQ (spec_prop
[FONT_AVGWIDTH_INDEX
], AREF (entity
, FONT_AVGWIDTH_INDEX
)))
2320 score
|= min (diff
, 127) << sort_shift_bits
[FONT_SIZE_INDEX
];
2327 /* Concatenate all elements of LIST into one vector. LIST is a list
2328 of font-entity vectors. */
2331 font_vconcat_entity_vectors (Lisp_Object list
)
2333 int nargs
= XINT (Flength (list
));
2334 Lisp_Object
*args
= alloca (sizeof (Lisp_Object
) * nargs
);
2337 for (i
= 0; i
< nargs
; i
++, list
= XCDR (list
))
2338 args
[i
] = XCAR (list
);
2339 return Fvconcat (nargs
, args
);
2343 /* The structure for elements being sorted by qsort. */
2344 struct font_sort_data
2347 int font_driver_preference
;
2352 /* The comparison function for qsort. */
2355 font_compare (d1
, d2
)
2356 const void *d1
, *d2
;
2358 const struct font_sort_data
*data1
= d1
;
2359 const struct font_sort_data
*data2
= d2
;
2361 if (data1
->score
< data2
->score
)
2363 else if (data1
->score
> data2
->score
)
2365 return (data1
->font_driver_preference
- data2
->font_driver_preference
);
2369 /* Sort each font-entity vector in LIST by closeness to font-spec PREFER.
2370 If PREFER specifies a point-size, calculate the corresponding
2371 pixel-size from QCdpi property of PREFER or from the Y-resolution
2372 of FRAME before sorting.
2374 If BEST-ONLY is nonzero, return the best matching entity (that
2375 supports the character BEST-ONLY if BEST-ONLY is positive, or any
2376 if BEST-ONLY is negative). Otherwise, return the sorted result as
2377 a single vector of font-entities.
2379 This function does no optimization for the case that the total
2380 number of elements is 1. The caller should avoid calling this in
2384 font_sort_entities (list
, prefer
, frame
, best_only
)
2385 Lisp_Object list
, prefer
, frame
;
2388 Lisp_Object prefer_prop
[FONT_SPEC_MAX
];
2390 struct font_sort_data
*data
;
2391 unsigned best_score
;
2392 Lisp_Object best_entity
;
2393 struct frame
*f
= XFRAME (frame
);
2394 Lisp_Object tail
, vec
;
2397 for (i
= FONT_WEIGHT_INDEX
; i
<= FONT_AVGWIDTH_INDEX
; i
++)
2398 prefer_prop
[i
] = AREF (prefer
, i
);
2399 if (FLOATP (prefer_prop
[FONT_SIZE_INDEX
]))
2400 prefer_prop
[FONT_SIZE_INDEX
]
2401 = make_number (font_pixel_size (XFRAME (frame
), prefer
));
2403 if (NILP (XCDR (list
)))
2405 /* What we have to take care of is this single vector. */
2407 maxlen
= ASIZE (vec
);
2411 /* We don't have to perform sort, so there's no need of creating
2412 a single vector. But, we must find the length of the longest
2415 for (tail
= list
; CONSP (tail
); tail
= XCDR (tail
))
2416 if (maxlen
< ASIZE (XCAR (tail
)))
2417 maxlen
= ASIZE (XCAR (tail
));
2421 /* We have to create a single vector to sort it. */
2422 vec
= font_vconcat_entity_vectors (list
);
2423 maxlen
= ASIZE (vec
);
2426 SAFE_ALLOCA (data
, struct font_sort_data
*, (sizeof *data
) * maxlen
);
2427 best_score
= 0xFFFFFFFF;
2430 for (tail
= list
; CONSP (tail
); tail
= XCDR (tail
))
2432 int font_driver_preference
= 0;
2433 Lisp_Object current_font_driver
;
2439 /* We are sure that the length of VEC > 0. */
2440 current_font_driver
= AREF (AREF (vec
, 0), FONT_TYPE_INDEX
);
2441 /* Score the elements. */
2442 for (i
= 0; i
< len
; i
++)
2444 data
[i
].entity
= AREF (vec
, i
);
2446 = ((best_only
<= 0 || font_has_char (f
, data
[i
].entity
, best_only
)
2448 ? font_score (data
[i
].entity
, prefer_prop
)
2450 if (best_only
&& best_score
> data
[i
].score
)
2452 best_score
= data
[i
].score
;
2453 best_entity
= data
[i
].entity
;
2454 if (best_score
== 0)
2457 if (! EQ (current_font_driver
, AREF (AREF (vec
, i
), FONT_TYPE_INDEX
)))
2459 current_font_driver
= AREF (AREF (vec
, i
), FONT_TYPE_INDEX
);
2460 font_driver_preference
++;
2462 data
[i
].font_driver_preference
= font_driver_preference
;
2465 /* Sort if necessary. */
2468 qsort (data
, len
, sizeof *data
, font_compare
);
2469 for (i
= 0; i
< len
; i
++)
2470 ASET (vec
, i
, data
[i
].entity
);
2479 FONT_ADD_LOG ("sort-by", prefer
, vec
);
2484 /* API of Font Service Layer. */
2486 /* Reflect ORDER (see the variable font_sort_order in xfaces.c) to
2487 sort_shift_bits. Finternal_set_font_selection_order calls this
2488 function with font_sort_order after setting up it. */
2491 font_update_sort_order (order
)
2496 for (i
= 0, shift_bits
= 23; i
< 4; i
++, shift_bits
-= 7)
2498 int xlfd_idx
= order
[i
];
2500 if (xlfd_idx
== XLFD_WEIGHT_INDEX
)
2501 sort_shift_bits
[FONT_WEIGHT_INDEX
] = shift_bits
;
2502 else if (xlfd_idx
== XLFD_SLANT_INDEX
)
2503 sort_shift_bits
[FONT_SLANT_INDEX
] = shift_bits
;
2504 else if (xlfd_idx
== XLFD_SWIDTH_INDEX
)
2505 sort_shift_bits
[FONT_WIDTH_INDEX
] = shift_bits
;
2507 sort_shift_bits
[FONT_SIZE_INDEX
] = shift_bits
;
2512 font_check_otf_features (script
, langsys
, features
, table
)
2513 Lisp_Object script
, langsys
, features
, table
;
2518 table
= assq_no_quit (script
, table
);
2521 table
= XCDR (table
);
2522 if (! NILP (langsys
))
2524 table
= assq_no_quit (langsys
, table
);
2530 val
= assq_no_quit (Qnil
, table
);
2532 table
= XCAR (table
);
2536 table
= XCDR (table
);
2537 for (negative
= 0; CONSP (features
); features
= XCDR (features
))
2539 if (NILP (XCAR (features
)))
2544 if (NILP (Fmemq (XCAR (features
), table
)) != negative
)
2550 /* Check if OTF_CAPABILITY satisfies SPEC (otf-spec). */
2553 font_check_otf (Lisp_Object spec
, Lisp_Object otf_capability
)
2555 Lisp_Object script
, langsys
= Qnil
, gsub
= Qnil
, gpos
= Qnil
;
2557 script
= XCAR (spec
);
2561 langsys
= XCAR (spec
);
2572 if (! NILP (gsub
) && ! font_check_otf_features (script
, langsys
, gsub
,
2573 XCAR (otf_capability
)))
2575 if (! NILP (gpos
) && ! font_check_otf_features (script
, langsys
, gpos
,
2576 XCDR (otf_capability
)))
2583 /* Check if FONT (font-entity or font-object) matches with the font
2584 specification SPEC. */
2587 font_match_p (spec
, font
)
2588 Lisp_Object spec
, font
;
2590 Lisp_Object prop
[FONT_SPEC_MAX
], *props
;
2591 Lisp_Object extra
, font_extra
;
2594 for (i
= FONT_FOUNDRY_INDEX
; i
<= FONT_REGISTRY_INDEX
; i
++)
2595 if (! NILP (AREF (spec
, i
))
2596 && ! NILP (AREF (font
, i
))
2597 && ! EQ (AREF (spec
, i
), AREF (font
, i
)))
2599 props
= XFONT_SPEC (spec
)->props
;
2600 if (FLOATP (props
[FONT_SIZE_INDEX
]))
2602 for (i
= FONT_FOUNDRY_INDEX
; i
< FONT_SIZE_INDEX
; i
++)
2603 prop
[i
] = AREF (spec
, i
);
2604 prop
[FONT_SIZE_INDEX
]
2605 = make_number (font_pixel_size (XFRAME (selected_frame
), spec
));
2609 if (font_score (font
, props
) > 0)
2611 extra
= AREF (spec
, FONT_EXTRA_INDEX
);
2612 font_extra
= AREF (font
, FONT_EXTRA_INDEX
);
2613 for (; CONSP (extra
); extra
= XCDR (extra
))
2615 Lisp_Object key
= XCAR (XCAR (extra
));
2616 Lisp_Object val
= XCDR (XCAR (extra
)), val2
;
2618 if (EQ (key
, QClang
))
2620 val2
= assq_no_quit (key
, font_extra
);
2629 if (NILP (Fmemq (val
, val2
)))
2634 ? NILP (Fmemq (val
, XCDR (val2
)))
2638 else if (EQ (key
, QCscript
))
2640 val2
= assq_no_quit (val
, Vscript_representative_chars
);
2646 /* All characters in the list must be supported. */
2647 for (; CONSP (val2
); val2
= XCDR (val2
))
2649 if (! NATNUMP (XCAR (val2
)))
2651 if (font_encode_char (font
, XFASTINT (XCAR (val2
)))
2652 == FONT_INVALID_CODE
)
2656 else if (VECTORP (val2
))
2658 /* At most one character in the vector must be supported. */
2659 for (i
= 0; i
< ASIZE (val2
); i
++)
2661 if (! NATNUMP (AREF (val2
, i
)))
2663 if (font_encode_char (font
, XFASTINT (AREF (val2
, i
)))
2664 != FONT_INVALID_CODE
)
2667 if (i
== ASIZE (val2
))
2672 else if (EQ (key
, QCotf
))
2676 if (! FONT_OBJECT_P (font
))
2678 fontp
= XFONT_OBJECT (font
);
2679 if (! fontp
->driver
->otf_capability
)
2681 val2
= fontp
->driver
->otf_capability (fontp
);
2682 if (NILP (val2
) || ! font_check_otf (val
, val2
))
2693 Each font backend has the callback function get_cache, and it
2694 returns a cons cell of which cdr part can be freely used for
2695 caching fonts. The cons cell may be shared by multiple frames
2696 and/or multiple font drivers. So, we arrange the cdr part as this:
2698 ((DRIVER-TYPE NUM-FRAMES FONT-CACHE-DATA ...) ...)
2700 where DRIVER-TYPE is a symbol such as `x', `xft', etc., NUM-FRAMES
2701 is a number frames sharing this cache, and FONT-CACHE-DATA is a
2702 cons (FONT-SPEC FONT-ENTITY ...). */
2704 static void font_prepare_cache
P_ ((FRAME_PTR
, struct font_driver
*));
2705 static void font_finish_cache
P_ ((FRAME_PTR
, struct font_driver
*));
2706 static Lisp_Object font_get_cache
P_ ((FRAME_PTR
, struct font_driver
*));
2707 static void font_clear_cache
P_ ((FRAME_PTR
, Lisp_Object
,
2708 struct font_driver
*));
2711 font_prepare_cache (f
, driver
)
2713 struct font_driver
*driver
;
2715 Lisp_Object cache
, val
;
2717 cache
= driver
->get_cache (f
);
2719 while (CONSP (val
) && ! EQ (XCAR (XCAR (val
)), driver
->type
))
2723 val
= Fcons (driver
->type
, Fcons (make_number (1), Qnil
));
2724 XSETCDR (cache
, Fcons (val
, XCDR (cache
)));
2728 val
= XCDR (XCAR (val
));
2729 XSETCAR (val
, make_number (XINT (XCAR (val
)) + 1));
2735 font_finish_cache (f
, driver
)
2737 struct font_driver
*driver
;
2739 Lisp_Object cache
, val
, tmp
;
2742 cache
= driver
->get_cache (f
);
2744 while (CONSP (val
) && ! EQ (XCAR (XCAR (val
)), driver
->type
))
2745 cache
= val
, val
= XCDR (val
);
2746 font_assert (! NILP (val
));
2747 tmp
= XCDR (XCAR (val
));
2748 XSETCAR (tmp
, make_number (XINT (XCAR (tmp
)) - 1));
2749 if (XINT (XCAR (tmp
)) == 0)
2751 font_clear_cache (f
, XCAR (val
), driver
);
2752 XSETCDR (cache
, XCDR (val
));
2758 font_get_cache (f
, driver
)
2760 struct font_driver
*driver
;
2762 Lisp_Object val
= driver
->get_cache (f
);
2763 Lisp_Object type
= driver
->type
;
2765 font_assert (CONSP (val
));
2766 for (val
= XCDR (val
); ! EQ (XCAR (XCAR (val
)), type
); val
= XCDR (val
));
2767 font_assert (CONSP (val
));
2768 /* VAL = ((DRIVER-TYPE NUM-FRAMES FONT-CACHE-DATA ...) ...) */
2769 val
= XCDR (XCAR (val
));
2773 static int num_fonts
;
2776 font_clear_cache (f
, cache
, driver
)
2779 struct font_driver
*driver
;
2781 Lisp_Object tail
, elt
;
2782 Lisp_Object tail2
, entity
;
2784 /* CACHE = (DRIVER-TYPE NUM-FRAMES FONT-CACHE-DATA ...) */
2785 for (tail
= XCDR (XCDR (cache
)); CONSP (tail
); tail
= XCDR (tail
))
2788 /* elt should have the form (FONT-SPEC FONT-ENTITY ...) */
2789 if (CONSP (elt
) && FONT_SPEC_P (XCAR (elt
)))
2791 for (tail2
= XCDR (elt
); CONSP (tail2
); tail2
= XCDR (tail2
))
2793 entity
= XCAR (tail2
);
2795 if (FONT_ENTITY_P (entity
)
2796 && EQ (driver
->type
, AREF (entity
, FONT_TYPE_INDEX
)))
2798 Lisp_Object objlist
= AREF (entity
, FONT_OBJLIST_INDEX
);
2800 for (; CONSP (objlist
); objlist
= XCDR (objlist
))
2802 Lisp_Object val
= XCAR (objlist
);
2803 struct font
*font
= XFONT_OBJECT (val
);
2805 if (! NILP (AREF (val
, FONT_TYPE_INDEX
)))
2807 font_assert (font
&& driver
== font
->driver
);
2808 driver
->close (f
, font
);
2812 if (driver
->free_entity
)
2813 driver
->free_entity (entity
);
2818 XSETCDR (cache
, Qnil
);
2822 static Lisp_Object scratch_font_spec
, scratch_font_prefer
;
2824 /* Check each font-entity in VEC, and return a list of font-entities
2825 that satisfy this condition:
2826 (1) matches with SPEC and SIZE if SPEC is not nil, and
2827 (2) doesn't match with any regexps in Vface_ignored_fonts (if non-nil).
2830 extern Lisp_Object Vface_ignored_fonts
;
2833 font_delete_unmatched (vec
, spec
, size
)
2834 Lisp_Object vec
, spec
;
2837 Lisp_Object entity
, val
;
2838 enum font_property_index prop
;
2841 for (val
= Qnil
, i
= ASIZE (vec
) - 1; i
>= 0; i
--)
2843 entity
= AREF (vec
, i
);
2844 if (! NILP (Vface_ignored_fonts
))
2847 Lisp_Object tail
, regexp
;
2849 if (font_unparse_xlfd (entity
, 0, name
, 256) >= 0)
2851 for (tail
= Vface_ignored_fonts
; CONSP (tail
); tail
= XCDR (tail
))
2853 regexp
= XCAR (tail
);
2854 if (STRINGP (regexp
)
2855 && fast_c_string_match_ignore_case (regexp
, name
) >= 0)
2864 val
= Fcons (entity
, val
);
2867 for (prop
= FONT_WEIGHT_INDEX
; prop
< FONT_SIZE_INDEX
; prop
++)
2868 if (INTEGERP (AREF (spec
, prop
))
2869 && ((XINT (AREF (spec
, prop
)) >> 8)
2870 != (XINT (AREF (entity
, prop
)) >> 8)))
2871 prop
= FONT_SPEC_MAX
;
2872 if (prop
< FONT_SPEC_MAX
2874 && XINT (AREF (entity
, FONT_SIZE_INDEX
)) > 0)
2876 int diff
= XINT (AREF (entity
, FONT_SIZE_INDEX
)) - size
;
2879 && (diff
< 0 ? -diff
> FONT_PIXEL_SIZE_QUANTUM
2880 : diff
> FONT_PIXEL_SIZE_QUANTUM
))
2881 prop
= FONT_SPEC_MAX
;
2883 if (prop
< FONT_SPEC_MAX
2884 && INTEGERP (AREF (spec
, FONT_DPI_INDEX
))
2885 && INTEGERP (AREF (entity
, FONT_DPI_INDEX
))
2886 && XINT (AREF (entity
, FONT_DPI_INDEX
)) != 0
2887 && ! EQ (AREF (spec
, FONT_DPI_INDEX
), AREF (entity
, FONT_DPI_INDEX
)))
2888 prop
= FONT_SPEC_MAX
;
2889 if (prop
< FONT_SPEC_MAX
2890 && INTEGERP (AREF (spec
, FONT_AVGWIDTH_INDEX
))
2891 && INTEGERP (AREF (entity
, FONT_AVGWIDTH_INDEX
))
2892 && XINT (AREF (entity
, FONT_AVGWIDTH_INDEX
)) != 0
2893 && ! EQ (AREF (spec
, FONT_AVGWIDTH_INDEX
),
2894 AREF (entity
, FONT_AVGWIDTH_INDEX
)))
2895 prop
= FONT_SPEC_MAX
;
2896 if (prop
< FONT_SPEC_MAX
)
2897 val
= Fcons (entity
, val
);
2899 return (Fvconcat (1, &val
));
2903 /* Return a list of vectors of font-entities matching with SPEC on
2904 FRAME. Each elements in the list is a vector of entities from the
2905 same font-driver. */
2908 font_list_entities (frame
, spec
)
2909 Lisp_Object frame
, spec
;
2911 FRAME_PTR f
= XFRAME (frame
);
2912 struct font_driver_list
*driver_list
= f
->font_driver_list
;
2913 Lisp_Object ftype
, val
;
2914 Lisp_Object list
= Qnil
;
2916 int need_filtering
= 0;
2919 font_assert (FONT_SPEC_P (spec
));
2921 if (INTEGERP (AREF (spec
, FONT_SIZE_INDEX
)))
2922 size
= XINT (AREF (spec
, FONT_SIZE_INDEX
));
2923 else if (FLOATP (AREF (spec
, FONT_SIZE_INDEX
)))
2924 size
= font_pixel_size (f
, spec
);
2928 ftype
= AREF (spec
, FONT_TYPE_INDEX
);
2929 for (i
= FONT_FOUNDRY_INDEX
; i
<= FONT_REGISTRY_INDEX
; i
++)
2930 ASET (scratch_font_spec
, i
, AREF (spec
, i
));
2931 for (i
= FONT_WEIGHT_INDEX
; i
< FONT_EXTRA_INDEX
; i
++)
2933 ASET (scratch_font_spec
, i
, Qnil
);
2934 if (! NILP (AREF (spec
, i
)))
2936 if (i
== FONT_DPI_INDEX
)
2937 /* Skip FONT_SPACING_INDEX */
2940 ASET (scratch_font_spec
, FONT_SPACING_INDEX
, AREF (spec
, FONT_SPACING_INDEX
));
2941 ASET (scratch_font_spec
, FONT_EXTRA_INDEX
, AREF (spec
, FONT_EXTRA_INDEX
));
2943 for (i
= 0; driver_list
; driver_list
= driver_list
->next
)
2945 && (NILP (ftype
) || EQ (driver_list
->driver
->type
, ftype
)))
2947 Lisp_Object cache
= font_get_cache (f
, driver_list
->driver
);
2949 ASET (scratch_font_spec
, FONT_TYPE_INDEX
, driver_list
->driver
->type
);
2950 val
= assoc_no_quit (scratch_font_spec
, XCDR (cache
));
2957 val
= driver_list
->driver
->list (frame
, scratch_font_spec
);
2961 val
= Fvconcat (1, &val
);
2962 copy
= Fcopy_font_spec (scratch_font_spec
);
2963 ASET (copy
, FONT_TYPE_INDEX
, driver_list
->driver
->type
);
2964 XSETCDR (cache
, Fcons (Fcons (copy
, val
), XCDR (cache
)));
2968 || ! NILP (Vface_ignored_fonts
)))
2969 val
= font_delete_unmatched (val
, need_filtering
? spec
: Qnil
, size
);
2970 if (ASIZE (val
) > 0)
2971 list
= Fcons (val
, list
);
2974 list
= Fnreverse (list
);
2975 FONT_ADD_LOG ("list", spec
, list
);
2980 /* Return a font entity matching with SPEC on FRAME. ATTRS, if non
2981 nil, is an array of face's attributes, which specifies preferred
2982 font-related attributes. */
2985 font_matching_entity (f
, attrs
, spec
)
2987 Lisp_Object
*attrs
, spec
;
2989 struct font_driver_list
*driver_list
= f
->font_driver_list
;
2990 Lisp_Object ftype
, size
, entity
;
2992 Lisp_Object work
= Fcopy_font_spec (spec
);
2994 XSETFRAME (frame
, f
);
2995 ftype
= AREF (spec
, FONT_TYPE_INDEX
);
2996 size
= AREF (spec
, FONT_SIZE_INDEX
);
2999 ASET (work
, FONT_SIZE_INDEX
, make_number (font_pixel_size (f
, spec
)));
3000 FONT_SET_STYLE (work
, FONT_WEIGHT_INDEX
, attrs
[LFACE_WEIGHT_INDEX
]);
3001 FONT_SET_STYLE (work
, FONT_SLANT_INDEX
, attrs
[LFACE_SLANT_INDEX
]);
3002 FONT_SET_STYLE (work
, FONT_WIDTH_INDEX
, attrs
[LFACE_SWIDTH_INDEX
]);
3005 for (; driver_list
; driver_list
= driver_list
->next
)
3007 && (NILP (ftype
) || EQ (driver_list
->driver
->type
, ftype
)))
3009 Lisp_Object cache
= font_get_cache (f
, driver_list
->driver
);
3012 ASET (work
, FONT_TYPE_INDEX
, driver_list
->driver
->type
);
3013 entity
= assoc_no_quit (work
, XCDR (cache
));
3015 entity
= XCDR (entity
);
3018 entity
= driver_list
->driver
->match (frame
, work
);
3019 copy
= Fcopy_font_spec (work
);
3020 ASET (copy
, FONT_TYPE_INDEX
, driver_list
->driver
->type
);
3021 XSETCDR (cache
, Fcons (Fcons (copy
, entity
), XCDR (cache
)));
3023 if (! NILP (entity
))
3026 FONT_ADD_LOG ("match", work
, entity
);
3031 /* Open a font of ENTITY and PIXEL_SIZE on frame F, and return the
3032 opened font object. */
3035 font_open_entity (f
, entity
, pixel_size
)
3040 struct font_driver_list
*driver_list
;
3041 Lisp_Object objlist
, size
, val
, font_object
;
3043 int min_width
, height
;
3044 int scaled_pixel_size
;
3046 font_assert (FONT_ENTITY_P (entity
));
3047 size
= AREF (entity
, FONT_SIZE_INDEX
);
3048 if (XINT (size
) != 0)
3049 scaled_pixel_size
= pixel_size
= XINT (size
);
3050 else if (CONSP (Vface_font_rescale_alist
))
3051 scaled_pixel_size
= pixel_size
* font_rescale_ratio (entity
);
3053 val
= AREF (entity
, FONT_TYPE_INDEX
);
3054 for (driver_list
= f
->font_driver_list
;
3055 driver_list
&& ! EQ (driver_list
->driver
->type
, val
);
3056 driver_list
= driver_list
->next
);
3060 for (objlist
= AREF (entity
, FONT_OBJLIST_INDEX
); CONSP (objlist
);
3061 objlist
= XCDR (objlist
))
3063 Lisp_Object fn
= XCAR (objlist
);
3064 if (! NILP (AREF (fn
, FONT_TYPE_INDEX
))
3065 && XFONT_OBJECT (fn
)->pixel_size
== pixel_size
)
3067 if (driver_list
->driver
->cached_font_ok
== NULL
3068 || driver_list
->driver
->cached_font_ok (f
, fn
, entity
))
3073 font_object
= driver_list
->driver
->open (f
, entity
, scaled_pixel_size
);
3074 if (!NILP (font_object
))
3075 ASET (font_object
, FONT_SIZE_INDEX
, make_number (pixel_size
));
3076 FONT_ADD_LOG ("open", entity
, font_object
);
3077 if (NILP (font_object
))
3079 ASET (entity
, FONT_OBJLIST_INDEX
,
3080 Fcons (font_object
, AREF (entity
, FONT_OBJLIST_INDEX
)));
3081 ASET (font_object
, FONT_OBJLIST_INDEX
, Qnil
);
3084 font
= XFONT_OBJECT (font_object
);
3085 min_width
= (font
->min_width
? font
->min_width
3086 : font
->average_width
? font
->average_width
3087 : font
->space_width
? font
->space_width
3089 height
= (font
->height
? font
->height
: 1);
3090 #ifdef HAVE_WINDOW_SYSTEM
3091 FRAME_X_DISPLAY_INFO (f
)->n_fonts
++;
3092 if (FRAME_X_DISPLAY_INFO (f
)->n_fonts
== 1)
3094 FRAME_SMALLEST_CHAR_WIDTH (f
) = min_width
;
3095 FRAME_SMALLEST_FONT_HEIGHT (f
) = height
;
3096 fonts_changed_p
= 1;
3100 if (FRAME_SMALLEST_CHAR_WIDTH (f
) > min_width
)
3101 FRAME_SMALLEST_CHAR_WIDTH (f
) = min_width
, fonts_changed_p
= 1;
3102 if (FRAME_SMALLEST_FONT_HEIGHT (f
) > height
)
3103 FRAME_SMALLEST_FONT_HEIGHT (f
) = height
, fonts_changed_p
= 1;
3111 /* Close FONT_OBJECT that is opened on frame F. */
3114 font_close_object (f
, font_object
)
3116 Lisp_Object font_object
;
3118 struct font
*font
= XFONT_OBJECT (font_object
);
3120 if (NILP (AREF (font_object
, FONT_TYPE_INDEX
)))
3121 /* Already closed. */
3123 FONT_ADD_LOG ("close", font_object
, Qnil
);
3124 font
->driver
->close (f
, font
);
3125 #ifdef HAVE_WINDOW_SYSTEM
3126 font_assert (FRAME_X_DISPLAY_INFO (f
)->n_fonts
);
3127 FRAME_X_DISPLAY_INFO (f
)->n_fonts
--;
3133 /* Return 1 if FONT on F has a glyph for character C, 0 if not, -1 if
3134 FONT is a font-entity and it must be opened to check. */
3137 font_has_char (f
, font
, c
)
3144 if (FONT_ENTITY_P (font
))
3146 Lisp_Object type
= AREF (font
, FONT_TYPE_INDEX
);
3147 struct font_driver_list
*driver_list
;
3149 for (driver_list
= f
->font_driver_list
;
3150 driver_list
&& ! EQ (driver_list
->driver
->type
, type
);
3151 driver_list
= driver_list
->next
);
3154 if (! driver_list
->driver
->has_char
)
3156 return driver_list
->driver
->has_char (font
, c
);
3159 font_assert (FONT_OBJECT_P (font
));
3160 fontp
= XFONT_OBJECT (font
);
3161 if (fontp
->driver
->has_char
)
3163 int result
= fontp
->driver
->has_char (font
, c
);
3168 return (fontp
->driver
->encode_char (fontp
, c
) != FONT_INVALID_CODE
);
3172 /* Return the glyph ID of FONT_OBJECT for character C. */
3175 font_encode_char (font_object
, c
)
3176 Lisp_Object font_object
;
3181 font_assert (FONT_OBJECT_P (font_object
));
3182 font
= XFONT_OBJECT (font_object
);
3183 return font
->driver
->encode_char (font
, c
);
3187 /* Return the name of FONT_OBJECT. */
3190 font_get_name (font_object
)
3191 Lisp_Object font_object
;
3193 font_assert (FONT_OBJECT_P (font_object
));
3194 return AREF (font_object
, FONT_NAME_INDEX
);
3198 /* Return the specification of FONT_OBJECT. */
3201 font_get_spec (font_object
)
3202 Lisp_Object font_object
;
3204 Lisp_Object spec
= font_make_spec ();
3207 for (i
= 0; i
< FONT_SIZE_INDEX
; i
++)
3208 ASET (spec
, i
, AREF (font_object
, i
));
3209 ASET (spec
, FONT_SIZE_INDEX
,
3210 make_number (XFONT_OBJECT (font_object
)->pixel_size
));
3215 /* Create a new font spec from FONT_NAME, and return it. If FONT_NAME
3216 could not be parsed by font_parse_name, return Qnil. */
3219 font_spec_from_name (font_name
)
3220 Lisp_Object font_name
;
3222 Lisp_Object spec
= Ffont_spec (0, NULL
);
3224 CHECK_STRING (font_name
);
3225 if (font_parse_name ((char *) SDATA (font_name
), spec
) == -1)
3227 font_put_extra (spec
, QCname
, font_name
);
3228 font_put_extra (spec
, QCuser_spec
, font_name
);
3234 font_clear_prop (attrs
, prop
)
3236 enum font_property_index prop
;
3238 Lisp_Object font
= attrs
[LFACE_FONT_INDEX
];
3243 if (! NILP (Ffont_get (font
, QCname
)))
3245 font
= Fcopy_font_spec (font
);
3246 font_put_extra (font
, QCname
, Qnil
);
3249 if (NILP (AREF (font
, prop
))
3250 && prop
!= FONT_FAMILY_INDEX
3251 && prop
!= FONT_FOUNDRY_INDEX
3252 && prop
!= FONT_WIDTH_INDEX
3253 && prop
!= FONT_SIZE_INDEX
)
3255 if (EQ (font
, attrs
[LFACE_FONT_INDEX
]))
3256 font
= Fcopy_font_spec (font
);
3257 ASET (font
, prop
, Qnil
);
3258 if (prop
== FONT_FAMILY_INDEX
|| prop
== FONT_FOUNDRY_INDEX
)
3260 if (prop
== FONT_FAMILY_INDEX
)
3262 ASET (font
, FONT_FOUNDRY_INDEX
, Qnil
);
3263 /* If we are setting the font family, we must also clear
3264 FONT_WIDTH_INDEX to avoid rejecting families that lack
3265 support for some widths. */
3266 ASET (font
, FONT_WIDTH_INDEX
, Qnil
);
3268 ASET (font
, FONT_ADSTYLE_INDEX
, Qnil
);
3269 ASET (font
, FONT_REGISTRY_INDEX
, Qnil
);
3270 ASET (font
, FONT_SIZE_INDEX
, Qnil
);
3271 ASET (font
, FONT_DPI_INDEX
, Qnil
);
3272 ASET (font
, FONT_SPACING_INDEX
, Qnil
);
3273 ASET (font
, FONT_AVGWIDTH_INDEX
, Qnil
);
3275 else if (prop
== FONT_SIZE_INDEX
)
3277 ASET (font
, FONT_DPI_INDEX
, Qnil
);
3278 ASET (font
, FONT_SPACING_INDEX
, Qnil
);
3279 ASET (font
, FONT_AVGWIDTH_INDEX
, Qnil
);
3281 else if (prop
== FONT_WIDTH_INDEX
)
3282 ASET (font
, FONT_AVGWIDTH_INDEX
, Qnil
);
3283 attrs
[LFACE_FONT_INDEX
] = font
;
3287 font_update_lface (f
, attrs
)
3293 spec
= attrs
[LFACE_FONT_INDEX
];
3294 if (! FONT_SPEC_P (spec
))
3297 if (! NILP (AREF (spec
, FONT_FOUNDRY_INDEX
)))
3298 attrs
[LFACE_FOUNDRY_INDEX
] = SYMBOL_NAME (AREF (spec
, FONT_FOUNDRY_INDEX
));
3299 if (! NILP (AREF (spec
, FONT_FAMILY_INDEX
)))
3300 attrs
[LFACE_FAMILY_INDEX
] = SYMBOL_NAME (AREF (spec
, FONT_FAMILY_INDEX
));
3301 if (! NILP (AREF (spec
, FONT_WEIGHT_INDEX
)))
3302 attrs
[LFACE_WEIGHT_INDEX
] = FONT_WEIGHT_FOR_FACE (spec
);
3303 if (! NILP (AREF (spec
, FONT_SLANT_INDEX
)))
3304 attrs
[LFACE_SLANT_INDEX
] = FONT_SLANT_FOR_FACE (spec
);
3305 if (! NILP (AREF (spec
, FONT_WIDTH_INDEX
)))
3306 attrs
[LFACE_SWIDTH_INDEX
] = FONT_WIDTH_FOR_FACE (spec
);
3307 if (! NILP (AREF (spec
, FONT_SIZE_INDEX
)))
3311 if (INTEGERP (AREF (spec
, FONT_SIZE_INDEX
)))
3316 val
= Ffont_get (spec
, QCdpi
);
3319 point
= PIXEL_TO_POINT (XINT (AREF (spec
, FONT_SIZE_INDEX
)) * 10,
3321 attrs
[LFACE_HEIGHT_INDEX
] = make_number (point
);
3323 else if (FLOATP (AREF (spec
, FONT_SIZE_INDEX
)))
3325 point
= XFLOAT_DATA (AREF (spec
, FONT_SIZE_INDEX
)) * 10;
3326 attrs
[LFACE_HEIGHT_INDEX
] = make_number (point
);
3332 /* Selecte a font from ENTITIES (list of font-entity vectors) that
3333 supports C and matches best with ATTRS and PIXEL_SIZE. */
3336 font_select_entity (frame
, entities
, attrs
, pixel_size
, c
)
3337 Lisp_Object frame
, entities
, *attrs
;
3340 Lisp_Object font_entity
;
3343 FRAME_PTR f
= XFRAME (frame
);
3345 if (NILP (XCDR (entities
))
3346 && ASIZE (XCAR (entities
)) == 1)
3348 font_entity
= AREF (XCAR (entities
), 0);
3350 || (result
= font_has_char (f
, font_entity
, c
)) > 0)
3355 /* Sort fonts by properties specified in ATTRS. */
3356 prefer
= scratch_font_prefer
;
3358 for (i
= FONT_WEIGHT_INDEX
; i
<= FONT_SIZE_INDEX
; i
++)
3359 ASET (prefer
, i
, Qnil
);
3360 if (FONTP (attrs
[LFACE_FONT_INDEX
]))
3362 Lisp_Object face_font
= attrs
[LFACE_FONT_INDEX
];
3364 for (i
= FONT_WEIGHT_INDEX
; i
<= FONT_SIZE_INDEX
; i
++)
3365 ASET (prefer
, i
, AREF (face_font
, i
));
3367 if (NILP (AREF (prefer
, FONT_WEIGHT_INDEX
)))
3368 FONT_SET_STYLE (prefer
, FONT_WEIGHT_INDEX
, attrs
[LFACE_WEIGHT_INDEX
]);
3369 if (NILP (AREF (prefer
, FONT_SLANT_INDEX
)))
3370 FONT_SET_STYLE (prefer
, FONT_SLANT_INDEX
, attrs
[LFACE_SLANT_INDEX
]);
3371 if (NILP (AREF (prefer
, FONT_WIDTH_INDEX
)))
3372 FONT_SET_STYLE (prefer
, FONT_WIDTH_INDEX
, attrs
[LFACE_SWIDTH_INDEX
]);
3373 ASET (prefer
, FONT_SIZE_INDEX
, make_number (pixel_size
));
3375 return font_sort_entities (entities
, prefer
, frame
, c
);
3378 /* Return a font-entity satisfying SPEC and best matching with face's
3379 font related attributes in ATTRS. C, if not negative, is a
3380 character that the entity must support. */
3383 font_find_for_lface (f
, attrs
, spec
, c
)
3390 Lisp_Object frame
, entities
, val
;
3391 Lisp_Object size
, foundry
[3], *family
, registry
[3], adstyle
[3];
3395 registry
[0] = AREF (spec
, FONT_REGISTRY_INDEX
);
3396 if (NILP (registry
[0]))
3398 registry
[0] = DEFAULT_ENCODING
;
3399 registry
[1] = Qascii_0
;
3400 registry
[2] = null_vector
;
3403 registry
[1] = null_vector
;
3405 if (c
>= 0 && ! NILP (AREF (spec
, FONT_REGISTRY_INDEX
)))
3407 struct charset
*encoding
, *repertory
;
3409 if (font_registry_charsets (AREF (spec
, FONT_REGISTRY_INDEX
),
3410 &encoding
, &repertory
) < 0)
3413 && ENCODE_CHAR (repertory
, c
) == CHARSET_INVALID_CODE (repertory
))
3415 else if (c
> encoding
->max_char
)
3419 work
= Fcopy_font_spec (spec
);
3420 ASET (work
, FONT_TYPE_INDEX
, AREF (spec
, FONT_TYPE_INDEX
));
3421 XSETFRAME (frame
, f
);
3422 size
= AREF (spec
, FONT_SIZE_INDEX
);
3423 pixel_size
= font_pixel_size (f
, spec
);
3424 if (pixel_size
== 0)
3426 double pt
= XINT (attrs
[LFACE_HEIGHT_INDEX
]);
3428 pixel_size
= POINT_TO_PIXEL (pt
/ 10, f
->resy
);
3430 ASET (work
, FONT_SIZE_INDEX
, Qnil
);
3431 foundry
[0] = AREF (work
, FONT_FOUNDRY_INDEX
);
3432 if (! NILP (foundry
[0]))
3433 foundry
[1] = null_vector
;
3434 else if (STRINGP (attrs
[LFACE_FOUNDRY_INDEX
]))
3436 val
= attrs
[LFACE_FOUNDRY_INDEX
];
3437 foundry
[0] = font_intern_prop ((char *) SDATA (val
), SBYTES (val
), 1);
3439 foundry
[2] = null_vector
;
3442 foundry
[0] = Qnil
, foundry
[1] = null_vector
;
3444 adstyle
[0] = AREF (work
, FONT_ADSTYLE_INDEX
);
3445 if (! NILP (adstyle
[0]))
3446 adstyle
[1] = null_vector
;
3447 else if (FONTP (attrs
[LFACE_FONT_INDEX
]))
3449 Lisp_Object face_font
= attrs
[LFACE_FONT_INDEX
];
3451 if (! NILP (AREF (face_font
, FONT_ADSTYLE_INDEX
)))
3453 adstyle
[0] = AREF (face_font
, FONT_ADSTYLE_INDEX
);
3455 adstyle
[2] = null_vector
;
3458 adstyle
[0] = Qnil
, adstyle
[1] = null_vector
;
3461 adstyle
[0] = Qnil
, adstyle
[1] = null_vector
;
3464 val
= AREF (work
, FONT_FAMILY_INDEX
);
3465 if (NILP (val
) && STRINGP (attrs
[LFACE_FAMILY_INDEX
]))
3467 val
= attrs
[LFACE_FAMILY_INDEX
];
3468 val
= font_intern_prop ((char *) SDATA (val
), SBYTES (val
), 1);
3472 family
= alloca ((sizeof family
[0]) * 2);
3474 family
[1] = null_vector
; /* terminator. */
3479 = Fassoc_string (val
, Vface_alternative_font_family_alist
,
3480 /* Font family names are case-sensitive under NS. */
3488 if (! NILP (alters
))
3490 family
= alloca ((sizeof family
[0]) * (XINT (Flength (alters
)) + 2));
3491 for (i
= 0; CONSP (alters
); i
++, alters
= XCDR (alters
))
3492 family
[i
] = XCAR (alters
);
3493 if (NILP (AREF (spec
, FONT_FAMILY_INDEX
)))
3495 family
[i
] = null_vector
;
3499 family
= alloca ((sizeof family
[0]) * 3);
3502 if (NILP (AREF (spec
, FONT_FAMILY_INDEX
)))
3504 family
[i
] = null_vector
;
3508 for (i
= 0; SYMBOLP (family
[i
]); i
++)
3510 ASET (work
, FONT_FAMILY_INDEX
, family
[i
]);
3511 for (j
= 0; SYMBOLP (foundry
[j
]); j
++)
3513 ASET (work
, FONT_FOUNDRY_INDEX
, foundry
[j
]);
3514 for (k
= 0; SYMBOLP (registry
[k
]); k
++)
3516 ASET (work
, FONT_REGISTRY_INDEX
, registry
[k
]);
3517 for (l
= 0; SYMBOLP (adstyle
[l
]); l
++)
3519 ASET (work
, FONT_ADSTYLE_INDEX
, adstyle
[l
]);
3520 entities
= font_list_entities (frame
, work
);
3521 if (! NILP (entities
))
3523 val
= font_select_entity (frame
, entities
,
3524 attrs
, pixel_size
, c
);
3537 font_open_for_lface (f
, entity
, attrs
, spec
)
3545 if (INTEGERP (AREF (entity
, FONT_SIZE_INDEX
))
3546 && XINT (AREF (entity
, FONT_SIZE_INDEX
)) > 0)
3547 size
= XINT (AREF (entity
, FONT_SIZE_INDEX
));
3548 else if (FONT_SPEC_P (spec
) && ! NILP (AREF (spec
, FONT_SIZE_INDEX
)))
3549 size
= font_pixel_size (f
, spec
);
3553 if (INTEGERP (attrs
[LFACE_HEIGHT_INDEX
]))
3554 pt
= XINT (attrs
[LFACE_HEIGHT_INDEX
]);
3557 struct face
*def
= FACE_FROM_ID (f
, DEFAULT_FACE_ID
);
3558 Lisp_Object height
= def
->lface
[LFACE_HEIGHT_INDEX
];
3559 if (INTEGERP (height
))
3562 abort(); /* We should never end up here. */
3566 size
= POINT_TO_PIXEL (pt
, f
->resy
);
3570 Lisp_Object ffsize
= get_frame_param(f
, Qfontsize
);
3571 size
= NUMBERP (ffsize
) ? POINT_TO_PIXEL (XINT (ffsize
), f
->resy
) : 0;
3575 return font_open_entity (f
, entity
, size
);
3579 /* Find a font satisfying SPEC and best matching with face's
3580 attributes in ATTRS on FRAME, and return the opened
3584 font_load_for_lface (f
, attrs
, spec
)
3586 Lisp_Object
*attrs
, spec
;
3588 Lisp_Object entity
, name
;
3590 entity
= font_find_for_lface (f
, attrs
, spec
, -1);
3593 /* No font is listed for SPEC, but each font-backend may have
3594 the different criteria about "font matching". So, try
3596 entity
= font_matching_entity (f
, attrs
, spec
);
3600 /* Don't loose the original name that was put in initially. We need
3601 it to re-apply the font when font parameters (like hinting or dpi) have
3603 entity
= font_open_for_lface (f
, entity
, attrs
, spec
);
3606 name
= Ffont_get (spec
, QCuser_spec
);
3607 if (STRINGP (name
)) font_put_extra (entity
, QCuser_spec
, name
);
3613 /* Make FACE on frame F ready to use the font opened for FACE. */
3616 font_prepare_for_face (f
, face
)
3620 if (face
->font
->driver
->prepare_face
)
3621 face
->font
->driver
->prepare_face (f
, face
);
3625 /* Make FACE on frame F stop using the font opened for FACE. */
3628 font_done_for_face (f
, face
)
3632 if (face
->font
->driver
->done_face
)
3633 face
->font
->driver
->done_face (f
, face
);
3638 /* Open a font matching with font-spec SPEC on frame F. If no proper
3639 font is found, return Qnil. */
3642 font_open_by_spec (f
, spec
)
3646 Lisp_Object attrs
[LFACE_VECTOR_SIZE
];
3648 /* We set up the default font-related attributes of a face to prefer
3650 attrs
[LFACE_FAMILY_INDEX
] = attrs
[LFACE_FOUNDRY_INDEX
] = Qnil
;
3651 attrs
[LFACE_SWIDTH_INDEX
] = attrs
[LFACE_WEIGHT_INDEX
]
3652 = attrs
[LFACE_SLANT_INDEX
] = Qnormal
;
3654 attrs
[LFACE_HEIGHT_INDEX
] = make_number (120);
3656 attrs
[LFACE_HEIGHT_INDEX
] = make_number (0);
3658 attrs
[LFACE_FONT_INDEX
] = Qnil
;
3660 return font_load_for_lface (f
, attrs
, spec
);
3664 /* Open a font matching with NAME on frame F. If no proper font is
3665 found, return Qnil. */
3668 font_open_by_name (f
, name
)
3672 Lisp_Object args
[2];
3673 Lisp_Object spec
, ret
;
3676 args
[1] = make_unibyte_string (name
, strlen (name
));
3677 spec
= Ffont_spec (2, args
);
3678 ret
= font_open_by_spec (f
, spec
);
3679 /* Do not loose name originally put in. */
3681 font_put_extra (ret
, QCuser_spec
, args
[1]);
3687 /* Register font-driver DRIVER. This function is used in two ways.
3689 The first is with frame F non-NULL. In this case, make DRIVER
3690 available (but not yet activated) on F. All frame creaters
3691 (e.g. Fx_create_frame) must call this function at least once with
3692 an available font-driver.
3694 The second is with frame F NULL. In this case, DRIVER is globally
3695 registered in the variable `font_driver_list'. All font-driver
3696 implementations must call this function in its syms_of_XXXX
3697 (e.g. syms_of_xfont). */
3700 register_font_driver (driver
, f
)
3701 struct font_driver
*driver
;
3704 struct font_driver_list
*root
= f
? f
->font_driver_list
: font_driver_list
;
3705 struct font_driver_list
*prev
, *list
;
3707 if (f
&& ! driver
->draw
)
3708 error ("Unusable font driver for a frame: %s",
3709 SDATA (SYMBOL_NAME (driver
->type
)));
3711 for (prev
= NULL
, list
= root
; list
; prev
= list
, list
= list
->next
)
3712 if (EQ (list
->driver
->type
, driver
->type
))
3713 error ("Duplicated font driver: %s", SDATA (SYMBOL_NAME (driver
->type
)));
3715 list
= xmalloc (sizeof (struct font_driver_list
));
3717 list
->driver
= driver
;
3722 f
->font_driver_list
= list
;
3724 font_driver_list
= list
;
3730 free_font_driver_list (f
)
3733 struct font_driver_list
*list
, *next
;
3735 for (list
= f
->font_driver_list
; list
; list
= next
)
3740 f
->font_driver_list
= NULL
;
3744 /* Make the frame F use font backends listed in NEW_DRIVERS (list of
3745 symbols, e.g. xft, x). If NEW_DRIVERS is t, make F use all
3746 available font drivers. If NEW_DRIVERS is nil, finalize all drivers.
3748 A caller must free all realized faces if any in advance. The
3749 return value is a list of font backends actually made used on
3753 font_update_drivers (f
, new_drivers
)
3755 Lisp_Object new_drivers
;
3757 Lisp_Object active_drivers
= Qnil
;
3758 struct font_driver
*driver
;
3759 struct font_driver_list
*list
;
3761 /* At first, turn off non-requested drivers, and turn on requested
3763 for (list
= f
->font_driver_list
; list
; list
= list
->next
)
3765 driver
= list
->driver
;
3766 if ((EQ (new_drivers
, Qt
) || ! NILP (Fmemq (driver
->type
, new_drivers
)))
3771 if (driver
->end_for_frame
)
3772 driver
->end_for_frame (f
);
3773 font_finish_cache (f
, driver
);
3778 if (! driver
->start_for_frame
3779 || driver
->start_for_frame (f
) == 0)
3781 font_prepare_cache (f
, driver
);
3788 if (NILP (new_drivers
))
3791 if (! EQ (new_drivers
, Qt
))
3793 /* Re-order the driver list according to new_drivers. */
3794 struct font_driver_list
**list_table
, **next
;
3798 list_table
= alloca (sizeof list_table
[0] * (num_font_drivers
+ 1));
3799 for (i
= 0, tail
= new_drivers
; ! NILP (tail
); tail
= XCDR (tail
))
3801 for (list
= f
->font_driver_list
; list
; list
= list
->next
)
3802 if (list
->on
&& EQ (list
->driver
->type
, XCAR (tail
)))
3805 list_table
[i
++] = list
;
3807 for (list
= f
->font_driver_list
; list
; list
= list
->next
)
3809 list_table
[i
++] = list
;
3810 list_table
[i
] = NULL
;
3812 next
= &f
->font_driver_list
;
3813 for (i
= 0; list_table
[i
]; i
++)
3815 *next
= list_table
[i
];
3816 next
= &(*next
)->next
;
3820 if (! f
->font_driver_list
->on
)
3821 { /* None of the drivers is enabled: enable them all.
3822 Happens if you set the list of drivers to (xft x) in your .emacs
3823 and then use it under w32 or ns. */
3824 for (list
= f
->font_driver_list
; list
; list
= list
->next
)
3826 struct font_driver
*driver
= list
->driver
;
3827 eassert (! list
->on
);
3828 if (! driver
->start_for_frame
3829 || driver
->start_for_frame (f
) == 0)
3831 font_prepare_cache (f
, driver
);
3838 for (list
= f
->font_driver_list
; list
; list
= list
->next
)
3840 active_drivers
= nconc2 (active_drivers
,
3841 Fcons (list
->driver
->type
, Qnil
));
3842 return active_drivers
;
3846 font_put_frame_data (f
, driver
, data
)
3848 struct font_driver
*driver
;
3851 struct font_data_list
*list
, *prev
;
3853 for (prev
= NULL
, list
= f
->font_data_list
; list
;
3854 prev
= list
, list
= list
->next
)
3855 if (list
->driver
== driver
)
3862 prev
->next
= list
->next
;
3864 f
->font_data_list
= list
->next
;
3872 list
= xmalloc (sizeof (struct font_data_list
));
3873 list
->driver
= driver
;
3874 list
->next
= f
->font_data_list
;
3875 f
->font_data_list
= list
;
3883 font_get_frame_data (f
, driver
)
3885 struct font_driver
*driver
;
3887 struct font_data_list
*list
;
3889 for (list
= f
->font_data_list
; list
; list
= list
->next
)
3890 if (list
->driver
== driver
)
3898 /* Sets attributes on a font. Any properties that appear in ALIST and
3899 BOOLEAN_PROPERTIES or NON_BOOLEAN_PROPERTIES are set on the font.
3900 BOOLEAN_PROPERTIES and NON_BOOLEAN_PROPERTIES are NULL-terminated
3901 arrays of strings. This function is intended for use by the font
3902 drivers to implement their specific font_filter_properties. */
3904 font_filter_properties (font
, alist
, boolean_properties
, non_boolean_properties
)
3907 const char *boolean_properties
[];
3908 const char *non_boolean_properties
[];
3913 /* Set boolean values to Qt or Qnil */
3914 for (i
= 0; boolean_properties
[i
] != NULL
; ++i
)
3915 for (it
= alist
; ! NILP (it
); it
= XCDR (it
))
3917 Lisp_Object key
= XCAR (XCAR (it
));
3918 Lisp_Object val
= XCDR (XCAR (it
));
3919 char *keystr
= SDATA (SYMBOL_NAME (key
));
3921 if (strcmp (boolean_properties
[i
], keystr
) == 0)
3923 const char *str
= INTEGERP (val
) ? (XINT (val
) ? "true" : "false")
3924 : SYMBOLP (val
) ? (const char *) SDATA (SYMBOL_NAME (val
))
3927 if (strcmp ("false", str
) == 0 || strcmp ("False", str
) == 0
3928 || strcmp ("FALSE", str
) == 0 || strcmp ("FcFalse", str
) == 0
3929 || strcmp ("off", str
) == 0 || strcmp ("OFF", str
) == 0
3930 || strcmp ("Off", str
) == 0)
3935 Ffont_put (font
, key
, val
);
3939 for (i
= 0; non_boolean_properties
[i
] != NULL
; ++i
)
3940 for (it
= alist
; ! NILP (it
); it
= XCDR (it
))
3942 Lisp_Object key
= XCAR (XCAR (it
));
3943 Lisp_Object val
= XCDR (XCAR (it
));
3944 char *keystr
= SDATA (SYMBOL_NAME (key
));
3945 if (strcmp (non_boolean_properties
[i
], keystr
) == 0)
3946 Ffont_put (font
, key
, val
);
3951 /* Return the font used to draw character C by FACE at buffer position
3952 POS in window W. If STRING is non-nil, it is a string containing C
3953 at index POS. If C is negative, get C from the current buffer or
3957 font_at (c
, pos
, face
, w
, string
)
3966 Lisp_Object font_object
;
3968 multibyte
= (NILP (string
)
3969 ? ! NILP (current_buffer
->enable_multibyte_characters
)
3970 : STRING_MULTIBYTE (string
));
3977 EMACS_INT pos_byte
= CHAR_TO_BYTE (pos
);
3979 c
= FETCH_CHAR (pos_byte
);
3982 c
= FETCH_BYTE (pos
);
3988 multibyte
= STRING_MULTIBYTE (string
);
3991 EMACS_INT pos_byte
= string_char_to_byte (string
, pos
);
3993 str
= SDATA (string
) + pos_byte
;
3994 c
= STRING_CHAR (str
);
3997 c
= SDATA (string
)[pos
];
4001 f
= XFRAME (w
->frame
);
4002 if (! FRAME_WINDOW_P (f
))
4009 if (STRINGP (string
))
4010 face_id
= face_at_string_position (w
, string
, pos
, 0, -1, -1, &endptr
,
4011 DEFAULT_FACE_ID
, 0);
4013 face_id
= face_at_buffer_position (w
, pos
, -1, -1, &endptr
,
4015 face
= FACE_FROM_ID (f
, face_id
);
4019 int face_id
= FACE_FOR_CHAR (f
, face
, c
, pos
, string
);
4020 face
= FACE_FROM_ID (f
, face_id
);
4025 XSETFONT (font_object
, face
->font
);
4030 #ifdef HAVE_WINDOW_SYSTEM
4032 /* Check how many characters after POS (at most to *LIMIT) can be
4033 displayed by the same font on the window W. FACE, if non-NULL, is
4034 the face selected for the character at POS. If STRING is not nil,
4035 it is the string to check instead of the current buffer. In that
4036 case, FACE must be not NULL.
4038 The return value is the font-object for the character at POS.
4039 *LIMIT is set to the position where that font can't be used.
4041 It is assured that the current buffer (or STRING) is multibyte. */
4044 font_range (pos
, limit
, w
, face
, string
)
4045 EMACS_INT pos
, *limit
;
4050 EMACS_INT pos_byte
, ignore
, start
, start_byte
;
4052 Lisp_Object font_object
= Qnil
;
4056 pos_byte
= CHAR_TO_BYTE (pos
);
4061 face_id
= face_at_buffer_position (w
, pos
, 0, 0, &ignore
,
4063 face
= FACE_FROM_ID (XFRAME (w
->frame
), face_id
);
4069 pos_byte
= string_char_to_byte (string
, pos
);
4072 start
= pos
, start_byte
= pos_byte
;
4073 while (pos
< *limit
)
4075 Lisp_Object category
;
4078 FETCH_CHAR_ADVANCE_NO_CHECK (c
, pos
, pos_byte
);
4080 FETCH_STRING_CHAR_ADVANCE_NO_CHECK (c
, string
, pos
, pos_byte
);
4081 if (NILP (font_object
))
4083 font_object
= font_for_char (face
, c
, pos
- 1, string
);
4084 if (NILP (font_object
))
4089 category
= CHAR_TABLE_REF (Vunicode_category_table
, c
);
4090 if (! EQ (category
, QCf
)
4091 && ! CHAR_VARIATION_SELECTOR_P (c
)
4092 && font_encode_char (font_object
, c
) == FONT_INVALID_CODE
)
4094 Lisp_Object f
= font_for_char (face
, c
, pos
- 1, string
);
4095 EMACS_INT i
, i_byte
;
4103 i
= start
, i_byte
= start_byte
;
4108 FETCH_CHAR_ADVANCE_NO_CHECK (c
, i
, i_byte
);
4110 FETCH_STRING_CHAR_ADVANCE_NO_CHECK (c
, string
, i
, i_byte
);
4111 category
= CHAR_TABLE_REF (Vunicode_category_table
, c
);
4112 if (! EQ (category
, QCf
)
4113 && ! CHAR_VARIATION_SELECTOR_P (c
)
4114 && font_encode_char (f
, c
) == FONT_INVALID_CODE
)
4130 DEFUN ("fontp", Ffontp
, Sfontp
, 1, 2, 0,
4131 doc
: /* Return t if OBJECT is a font-spec, font-entity, or font-object.
4132 Return nil otherwise.
4133 Optional 2nd argument EXTRA-TYPE, if non-nil, specifies to check
4134 which kind of font it is. It must be one of `font-spec', `font-entity',
4136 (object
, extra_type
)
4137 Lisp_Object object
, extra_type
;
4139 if (NILP (extra_type
))
4140 return (FONTP (object
) ? Qt
: Qnil
);
4141 if (EQ (extra_type
, Qfont_spec
))
4142 return (FONT_SPEC_P (object
) ? Qt
: Qnil
);
4143 if (EQ (extra_type
, Qfont_entity
))
4144 return (FONT_ENTITY_P (object
) ? Qt
: Qnil
);
4145 if (EQ (extra_type
, Qfont_object
))
4146 return (FONT_OBJECT_P (object
) ? Qt
: Qnil
);
4147 wrong_type_argument (intern ("font-extra-type"), extra_type
);
4150 DEFUN ("font-spec", Ffont_spec
, Sfont_spec
, 0, MANY
, 0,
4151 doc
: /* Return a newly created font-spec with arguments as properties.
4153 ARGS must come in pairs KEY VALUE of font properties. KEY must be a
4154 valid font property name listed below:
4156 `:family', `:weight', `:slant', `:width'
4158 They are the same as face attributes of the same name. See
4159 `set-face-attribute'.
4163 VALUE must be a string or a symbol specifying the font foundry, e.g. ``misc''.
4167 VALUE must be a string or a symbol specifying the additional
4168 typographic style information of a font, e.g. ``sans''.
4172 VALUE must be a string or a symbol specifying the charset registry and
4173 encoding of a font, e.g. ``iso8859-1''.
4177 VALUE must be a non-negative integer or a floating point number
4178 specifying the font size. It specifies the font size in pixels (if
4179 VALUE is an integer), or in points (if VALUE is a float).
4183 VALUE must be a string of XLFD-style or fontconfig-style font name.
4187 VALUE must be a symbol representing a script that the font must
4188 support. It may be a symbol representing a subgroup of a script
4189 listed in the variable `script-representative-chars'.
4193 VALUE must be a symbol of two-letter ISO-639 language names,
4198 VALUE must be a list (SCRIPT-TAG LANGSYS-TAG GSUB [ GPOS ]) to specify
4199 required OpenType features.
4201 SCRIPT-TAG: OpenType script tag symbol (e.g. `deva').
4202 LANGSYS-TAG: OpenType language system tag symbol,
4203 or nil for the default language system.
4204 GSUB: List of OpenType GSUB feature tag symbols, or nil if none required.
4205 GPOS: List of OpenType GPOS feature tag symbols, or nil if none required.
4207 GSUB and GPOS may contain `nil' element. In such a case, the font
4208 must not have any of the remaining elements.
4210 For instance, if the VALUE is `(thai nil nil (mark))', the font must
4211 be an OpenType font, and whose GPOS table of `thai' script's default
4212 language system must contain `mark' feature.
4214 usage: (font-spec ARGS...) */)
4219 Lisp_Object spec
= font_make_spec ();
4222 for (i
= 0; i
< nargs
; i
+= 2)
4224 Lisp_Object key
= args
[i
], val
;
4228 error ("No value for key `%s'", SDATA (SYMBOL_NAME (key
)));
4231 if (EQ (key
, QCname
))
4234 font_parse_name ((char *) SDATA (val
), spec
);
4235 font_put_extra (spec
, key
, val
);
4239 int idx
= get_font_prop_index (key
);
4243 val
= font_prop_validate (idx
, Qnil
, val
);
4244 if (idx
< FONT_EXTRA_INDEX
)
4245 ASET (spec
, idx
, val
);
4247 font_put_extra (spec
, key
, val
);
4250 font_put_extra (spec
, key
, font_prop_validate (0, key
, val
));
4256 DEFUN ("copy-font-spec", Fcopy_font_spec
, Scopy_font_spec
, 1, 1, 0,
4257 doc
: /* Return a copy of FONT as a font-spec. */)
4261 Lisp_Object new_spec
, tail
, prev
, extra
;
4265 new_spec
= font_make_spec ();
4266 for (i
= 1; i
< FONT_EXTRA_INDEX
; i
++)
4267 ASET (new_spec
, i
, AREF (font
, i
));
4268 extra
= Fcopy_alist (AREF (font
, FONT_EXTRA_INDEX
));
4269 /* We must remove :font-entity property. */
4270 for (prev
= Qnil
, tail
= extra
; CONSP (tail
); prev
= tail
, tail
= XCDR (tail
))
4271 if (EQ (XCAR (XCAR (tail
)), QCfont_entity
))
4274 extra
= XCDR (extra
);
4276 XSETCDR (prev
, XCDR (tail
));
4279 ASET (new_spec
, FONT_EXTRA_INDEX
, extra
);
4283 DEFUN ("merge-font-spec", Fmerge_font_spec
, Smerge_font_spec
, 2, 2, 0,
4284 doc
: /* Merge font-specs FROM and TO, and return a new font-spec.
4285 Every specified properties in FROM override the corresponding
4286 properties in TO. */)
4288 Lisp_Object from
, to
;
4290 Lisp_Object extra
, tail
;
4295 to
= Fcopy_font_spec (to
);
4296 for (i
= 0; i
< FONT_EXTRA_INDEX
; i
++)
4297 ASET (to
, i
, AREF (from
, i
));
4298 extra
= AREF (to
, FONT_EXTRA_INDEX
);
4299 for (tail
= AREF (from
, FONT_EXTRA_INDEX
); CONSP (tail
); tail
= XCDR (tail
))
4300 if (! EQ (XCAR (XCAR (tail
)), Qfont_entity
))
4302 Lisp_Object slot
= assq_no_quit (XCAR (XCAR (tail
)), extra
);
4305 XSETCDR (slot
, XCDR (XCAR (tail
)));
4307 extra
= Fcons (Fcons (XCAR (XCAR (tail
)), XCDR (XCAR (tail
))), extra
);
4309 ASET (to
, FONT_EXTRA_INDEX
, extra
);
4313 DEFUN ("font-get", Ffont_get
, Sfont_get
, 2, 2, 0,
4314 doc
: /* Return the value of FONT's property KEY.
4315 FONT is a font-spec, a font-entity, or a font-object.
4316 KEY must be one of these symbols:
4317 :family, :weight, :slant, :width, :foundry, :adstyle, :registry,
4318 :size, :name, :script
4319 See the documentation of `font-spec' for their meanings.
4320 If FONT is a font-entity or font-object, the value of :script may be
4321 a list of scripts that are supported by the font. */)
4323 Lisp_Object font
, key
;
4330 idx
= get_font_prop_index (key
);
4331 if (idx
>= FONT_WEIGHT_INDEX
&& idx
<= FONT_WIDTH_INDEX
)
4332 return font_style_symbolic (font
, idx
, 0);
4333 if (idx
>= 0 && idx
< FONT_EXTRA_INDEX
)
4334 return AREF (font
, idx
);
4335 return Fcdr (Fassq (key
, AREF (font
, FONT_EXTRA_INDEX
)));
4338 #ifdef HAVE_WINDOW_SYSTEM
4340 DEFUN ("font-face-attributes", Ffont_face_attributes
, Sfont_face_attributes
, 1, 2, 0,
4341 doc
: /* Return a plist of face attributes generated by FONT.
4342 FONT is a font name, a font-spec, a font-entity, or a font-object.
4343 The return value is a list of the form
4345 \(:family FAMILY :height HEIGHT :weight WEIGHT :slant SLANT :width WIDTH)
4347 where FAMILY, HEIGHT, WEIGHT, SLANT, and WIDTH are face attribute values
4348 compatible with `set-face-attribute'. Some of these key-attribute pairs
4349 may be omitted from the list if they are not specified by FONT.
4351 The optional argument FRAME specifies the frame that the face attributes
4352 are to be displayed on. If omitted, the selected frame is used. */)
4354 Lisp_Object font
, frame
;
4357 Lisp_Object plist
[10];
4362 frame
= selected_frame
;
4363 CHECK_LIVE_FRAME (frame
);
4368 int fontset
= fs_query_fontset (font
, 0);
4369 Lisp_Object name
= font
;
4371 font
= fontset_ascii (fontset
);
4372 font
= font_spec_from_name (name
);
4374 signal_error ("Invalid font name", name
);
4376 else if (! FONTP (font
))
4377 signal_error ("Invalid font object", font
);
4379 val
= AREF (font
, FONT_FAMILY_INDEX
);
4382 plist
[n
++] = QCfamily
;
4383 plist
[n
++] = SYMBOL_NAME (val
);
4386 val
= AREF (font
, FONT_SIZE_INDEX
);
4389 Lisp_Object font_dpi
= AREF (font
, FONT_DPI_INDEX
);
4390 int dpi
= INTEGERP (font_dpi
) ? XINT (font_dpi
) : f
->resy
;
4391 plist
[n
++] = QCheight
;
4392 plist
[n
++] = make_number (PIXEL_TO_POINT (XINT (val
) * 10, dpi
));
4394 else if (FLOATP (val
))
4396 plist
[n
++] = QCheight
;
4397 plist
[n
++] = make_number (10 * (int) XFLOAT_DATA (val
));
4400 val
= FONT_WEIGHT_FOR_FACE (font
);
4403 plist
[n
++] = QCweight
;
4407 val
= FONT_SLANT_FOR_FACE (font
);
4410 plist
[n
++] = QCslant
;
4414 val
= FONT_WIDTH_FOR_FACE (font
);
4417 plist
[n
++] = QCwidth
;
4421 return Flist (n
, plist
);
4426 DEFUN ("font-put", Ffont_put
, Sfont_put
, 3, 3, 0,
4427 doc
: /* Set one property of FONT-SPEC: give property PROP value VAL. */)
4428 (font_spec
, prop
, val
)
4429 Lisp_Object font_spec
, prop
, val
;
4433 CHECK_FONT_SPEC (font_spec
);
4434 idx
= get_font_prop_index (prop
);
4435 if (idx
>= 0 && idx
< FONT_EXTRA_INDEX
)
4436 ASET (font_spec
, idx
, font_prop_validate (idx
, Qnil
, val
));
4438 font_put_extra (font_spec
, prop
, font_prop_validate (0, prop
, val
));
4442 DEFUN ("list-fonts", Flist_fonts
, Slist_fonts
, 1, 4, 0,
4443 doc
: /* List available fonts matching FONT-SPEC on the current frame.
4444 Optional 2nd argument FRAME specifies the target frame.
4445 Optional 3rd argument NUM, if non-nil, limits the number of returned fonts.
4446 Optional 4th argument PREFER, if non-nil, is a font-spec to
4447 control the order of the returned list. Fonts are sorted by
4448 how close they are to PREFER. */)
4449 (font_spec
, frame
, num
, prefer
)
4450 Lisp_Object font_spec
, frame
, num
, prefer
;
4452 Lisp_Object vec
, list
;
4456 frame
= selected_frame
;
4457 CHECK_LIVE_FRAME (frame
);
4458 CHECK_FONT_SPEC (font_spec
);
4466 if (! NILP (prefer
))
4467 CHECK_FONT_SPEC (prefer
);
4469 list
= font_list_entities (frame
, font_spec
);
4472 if (NILP (XCDR (list
))
4473 && ASIZE (XCAR (list
)) == 1)
4474 return Fcons (AREF (XCAR (list
), 0), Qnil
);
4476 if (! NILP (prefer
))
4477 vec
= font_sort_entities (list
, prefer
, frame
, 0);
4479 vec
= font_vconcat_entity_vectors (list
);
4480 if (n
== 0 || n
>= ASIZE (vec
))
4482 Lisp_Object args
[2];
4486 list
= Fappend (2, args
);
4490 for (list
= Qnil
, n
--; n
>= 0; n
--)
4491 list
= Fcons (AREF (vec
, n
), list
);
4496 DEFUN ("font-family-list", Ffont_family_list
, Sfont_family_list
, 0, 1, 0,
4497 doc
: /* List available font families on the current frame.
4498 Optional argument FRAME, if non-nil, specifies the target frame. */)
4503 struct font_driver_list
*driver_list
;
4507 frame
= selected_frame
;
4508 CHECK_LIVE_FRAME (frame
);
4511 for (driver_list
= f
->font_driver_list
; driver_list
;
4512 driver_list
= driver_list
->next
)
4513 if (driver_list
->driver
->list_family
)
4515 Lisp_Object val
= driver_list
->driver
->list_family (frame
);
4516 Lisp_Object tail
= list
;
4518 for (; CONSP (val
); val
= XCDR (val
))
4519 if (NILP (Fmemq (XCAR (val
), tail
))
4520 && SYMBOLP (XCAR (val
)))
4521 list
= Fcons (SYMBOL_NAME (XCAR (val
)), list
);
4526 DEFUN ("find-font", Ffind_font
, Sfind_font
, 1, 2, 0,
4527 doc
: /* Return a font-entity matching with FONT-SPEC on the current frame.
4528 Optional 2nd argument FRAME, if non-nil, specifies the target frame. */)
4530 Lisp_Object font_spec
, frame
;
4532 Lisp_Object val
= Flist_fonts (font_spec
, frame
, make_number (1), Qnil
);
4539 DEFUN ("font-xlfd-name", Ffont_xlfd_name
, Sfont_xlfd_name
, 1, 2, 0,
4540 doc
: /* Return XLFD name of FONT.
4541 FONT is a font-spec, font-entity, or font-object.
4542 If the name is too long for XLFD (maximum 255 chars), return nil.
4543 If the 2nd optional arg FOLD-WILDCARDS is non-nil,
4544 the consecutive wildcards are folded to one. */)
4545 (font
, fold_wildcards
)
4546 Lisp_Object font
, fold_wildcards
;
4553 if (FONT_OBJECT_P (font
))
4555 Lisp_Object font_name
= AREF (font
, FONT_NAME_INDEX
);
4557 if (STRINGP (font_name
)
4558 && SDATA (font_name
)[0] == '-')
4560 if (NILP (fold_wildcards
))
4562 strcpy (name
, (char *) SDATA (font_name
));
4565 pixel_size
= XFONT_OBJECT (font
)->pixel_size
;
4567 if (font_unparse_xlfd (font
, pixel_size
, name
, 256) < 0)
4570 if (! NILP (fold_wildcards
))
4572 char *p0
= name
, *p1
;
4574 while ((p1
= strstr (p0
, "-*-*")))
4576 strcpy (p1
, p1
+ 2);
4581 return build_string (name
);
4584 DEFUN ("clear-font-cache", Fclear_font_cache
, Sclear_font_cache
, 0, 0, 0,
4585 doc
: /* Clear font cache. */)
4588 Lisp_Object list
, frame
;
4590 FOR_EACH_FRAME (list
, frame
)
4592 FRAME_PTR f
= XFRAME (frame
);
4593 struct font_driver_list
*driver_list
= f
->font_driver_list
;
4595 for (; driver_list
; driver_list
= driver_list
->next
)
4596 if (driver_list
->on
)
4598 Lisp_Object cache
= driver_list
->driver
->get_cache (f
);
4599 Lisp_Object val
, tmp
;
4603 && ! EQ (XCAR (XCAR (val
)), driver_list
->driver
->type
))
4605 font_assert (! NILP (val
));
4606 tmp
= XCDR (XCAR (val
));
4607 if (XINT (XCAR (tmp
)) == 0)
4609 font_clear_cache (f
, XCAR (val
), driver_list
->driver
);
4610 XSETCDR (cache
, XCDR (val
));
4620 font_fill_lglyph_metrics (glyph
, font_object
)
4621 Lisp_Object glyph
, font_object
;
4623 struct font
*font
= XFONT_OBJECT (font_object
);
4625 /* ecode used in LGLYPH_SET_CODE to avoid compiler warnings. */
4626 EMACS_INT ecode
= font
->driver
->encode_char (font
, LGLYPH_CHAR (glyph
));
4627 struct font_metrics metrics
;
4629 LGLYPH_SET_CODE (glyph
, ecode
);
4631 font
->driver
->text_extents (font
, &code
, 1, &metrics
);
4632 LGLYPH_SET_LBEARING (glyph
, metrics
.lbearing
);
4633 LGLYPH_SET_RBEARING (glyph
, metrics
.rbearing
);
4634 LGLYPH_SET_WIDTH (glyph
, metrics
.width
);
4635 LGLYPH_SET_ASCENT (glyph
, metrics
.ascent
);
4636 LGLYPH_SET_DESCENT (glyph
, metrics
.descent
);
4640 DEFUN ("font-shape-gstring", Ffont_shape_gstring
, Sfont_shape_gstring
, 1, 1, 0,
4641 doc
: /* Shape the glyph-string GSTRING.
4642 Shaping means substituting glyphs and/or adjusting positions of glyphs
4643 to get the correct visual image of character sequences set in the
4644 header of the glyph-string.
4646 If the shaping was successful, the value is GSTRING itself or a newly
4647 created glyph-string. Otherwise, the value is nil. */)
4649 Lisp_Object gstring
;
4652 Lisp_Object font_object
, n
, glyph
;
4655 if (! composition_gstring_p (gstring
))
4656 signal_error ("Invalid glyph-string: ", gstring
);
4657 if (! NILP (LGSTRING_ID (gstring
)))
4659 font_object
= LGSTRING_FONT (gstring
);
4660 CHECK_FONT_OBJECT (font_object
);
4661 font
= XFONT_OBJECT (font_object
);
4662 if (! font
->driver
->shape
)
4665 /* Try at most three times with larger gstring each time. */
4666 for (i
= 0; i
< 3; i
++)
4668 n
= font
->driver
->shape (gstring
);
4671 gstring
= larger_vector (gstring
,
4672 ASIZE (gstring
) + LGSTRING_GLYPH_LEN (gstring
),
4675 if (i
== 3 || XINT (n
) == 0)
4678 glyph
= LGSTRING_GLYPH (gstring
, 0);
4679 from
= LGLYPH_FROM (glyph
);
4680 to
= LGLYPH_TO (glyph
);
4681 for (i
= 1, j
= 0; i
< LGSTRING_GLYPH_LEN (gstring
); i
++)
4683 Lisp_Object
this = LGSTRING_GLYPH (gstring
, i
);
4687 if (NILP (LGLYPH_ADJUSTMENT (this)))
4692 glyph
= LGSTRING_GLYPH (gstring
, j
);
4693 LGLYPH_SET_FROM (glyph
, from
);
4694 LGLYPH_SET_TO (glyph
, to
);
4696 from
= LGLYPH_FROM (this);
4697 to
= LGLYPH_TO (this);
4702 if (from
> LGLYPH_FROM (this))
4703 from
= LGLYPH_FROM (this);
4704 if (to
< LGLYPH_TO (this))
4705 to
= LGLYPH_TO (this);
4711 glyph
= LGSTRING_GLYPH (gstring
, j
);
4712 LGLYPH_SET_FROM (glyph
, from
);
4713 LGLYPH_SET_TO (glyph
, to
);
4715 return composition_gstring_put_cache (gstring
, XINT (n
));
4718 DEFUN ("font-variation-glyphs", Ffont_variation_glyphs
, Sfont_variation_glyphs
,
4720 doc
: /* Return a list of variation glyphs for CHAR in FONT-OBJECT.
4721 Each element of the value is a cons (VARIATION-SELECTOR . GLYPH-ID),
4723 VARIATION-SELECTOR is a character code of variation selection
4724 (#xFE00..#xFE0F or #xE0100..#xE01EF)
4725 GLYPH-ID is a glyph code of the corresponding variation glyph. */)
4726 (font_object
, character
)
4727 Lisp_Object font_object
, character
;
4729 unsigned variations
[256];
4734 CHECK_FONT_OBJECT (font_object
);
4735 CHECK_CHARACTER (character
);
4736 font
= XFONT_OBJECT (font_object
);
4737 if (! font
->driver
->get_variation_glyphs
)
4739 n
= font
->driver
->get_variation_glyphs (font
, XINT (character
), variations
);
4743 for (i
= 0; i
< 255; i
++)
4747 int vs
= (i
< 16 ? 0xFE00 + i
: 0xE0100 + (i
- 16));
4748 /* Stops GCC whining about limited range of data type. */
4749 EMACS_INT var
= variations
[i
];
4751 if (var
> MOST_POSITIVE_FIXNUM
)
4752 code
= Fcons (make_number ((variations
[i
]) >> 16),
4753 make_number ((variations
[i
]) & 0xFFFF));
4755 code
= make_number (variations
[i
]);
4756 val
= Fcons (Fcons (make_number (vs
), code
), val
);
4763 DEFUN ("font-drive-otf", Ffont_drive_otf
, Sfont_drive_otf
, 6, 6, 0,
4764 doc
: /* Apply OpenType features on glyph-string GSTRING-IN.
4765 OTF-FEATURES specifies which features to apply in this format:
4766 (SCRIPT LANGSYS GSUB GPOS)
4768 SCRIPT is a symbol specifying a script tag of OpenType,
4769 LANGSYS is a symbol specifying a langsys tag of OpenType,
4770 GSUB and GPOS, if non-nil, are lists of symbols specifying feature tags.
4772 If LANGYS is nil, the default langsys is selected.
4774 The features are applied in the order they appear in the list. The
4775 symbol `*' means to apply all available features not present in this
4776 list, and the remaining features are ignored. For instance, (vatu
4777 pstf * haln) is to apply vatu and pstf in this order, then to apply
4778 all available features other than vatu, pstf, and haln.
4780 The features are applied to the glyphs in the range FROM and TO of
4781 the glyph-string GSTRING-IN.
4783 If some feature is actually applicable, the resulting glyphs are
4784 produced in the glyph-string GSTRING-OUT from the index INDEX. In
4785 this case, the value is the number of produced glyphs.
4787 If no feature is applicable, no glyph is produced in GSTRING-OUT, and
4790 If GSTRING-OUT is too short to hold produced glyphs, no glyphs are
4791 produced in GSTRING-OUT, and the value is nil.
4793 See the documentation of `font-make-gstring' for the format of
4795 (otf_features
, gstring_in
, from
, to
, gstring_out
, index
)
4796 Lisp_Object otf_features
, gstring_in
, from
, to
, gstring_out
, index
;
4798 Lisp_Object font_object
= LGSTRING_FONT (gstring_in
);
4803 check_otf_features (otf_features
);
4804 CHECK_FONT_OBJECT (font_object
);
4805 font
= XFONT_OBJECT (font_object
);
4806 if (! font
->driver
->otf_drive
)
4807 error ("Font backend %s can't drive OpenType GSUB table",
4808 SDATA (SYMBOL_NAME (font
->driver
->type
)));
4809 CHECK_CONS (otf_features
);
4810 CHECK_SYMBOL (XCAR (otf_features
));
4811 val
= XCDR (otf_features
);
4812 CHECK_SYMBOL (XCAR (val
));
4813 val
= XCDR (otf_features
);
4816 len
= check_gstring (gstring_in
);
4817 CHECK_VECTOR (gstring_out
);
4818 CHECK_NATNUM (from
);
4820 CHECK_NATNUM (index
);
4822 if (XINT (from
) >= XINT (to
) || XINT (to
) > len
)
4823 args_out_of_range_3 (from
, to
, make_number (len
));
4824 if (XINT (index
) >= ASIZE (gstring_out
))
4825 args_out_of_range (index
, make_number (ASIZE (gstring_out
)));
4826 num
= font
->driver
->otf_drive (font
, otf_features
,
4827 gstring_in
, XINT (from
), XINT (to
),
4828 gstring_out
, XINT (index
), 0);
4831 return make_number (num
);
4834 DEFUN ("font-otf-alternates", Ffont_otf_alternates
, Sfont_otf_alternates
,
4836 doc
: /* Return a list of alternate glyphs of CHARACTER in FONT-OBJECT.
4837 OTF-FEATURES specifies which features of the font FONT-OBJECT to apply
4839 (SCRIPT LANGSYS FEATURE ...)
4840 See the documentation of `font-drive-otf' for more detail.
4842 The value is a list of cons cells of the format (GLYPH-ID . CHARACTER),
4843 where GLYPH-ID is a glyph index of the font, and CHARACTER is a
4844 character code corresponding to the glyph or nil if there's no
4845 corresponding character. */)
4846 (font_object
, character
, otf_features
)
4847 Lisp_Object font_object
, character
, otf_features
;
4850 Lisp_Object gstring_in
, gstring_out
, g
;
4851 Lisp_Object alternates
;
4854 CHECK_FONT_GET_OBJECT (font_object
, font
);
4855 if (! font
->driver
->otf_drive
)
4856 error ("Font backend %s can't drive OpenType GSUB table",
4857 SDATA (SYMBOL_NAME (font
->driver
->type
)));
4858 CHECK_CHARACTER (character
);
4859 CHECK_CONS (otf_features
);
4861 gstring_in
= Ffont_make_gstring (font_object
, make_number (1));
4862 g
= LGSTRING_GLYPH (gstring_in
, 0);
4863 LGLYPH_SET_CHAR (g
, XINT (character
));
4864 gstring_out
= Ffont_make_gstring (font_object
, make_number (10));
4865 while ((num
= font
->driver
->otf_drive (font
, otf_features
, gstring_in
, 0, 1,
4866 gstring_out
, 0, 1)) < 0)
4867 gstring_out
= Ffont_make_gstring (font_object
,
4868 make_number (ASIZE (gstring_out
) * 2));
4870 for (i
= 0; i
< num
; i
++)
4872 Lisp_Object g
= LGSTRING_GLYPH (gstring_out
, i
);
4873 int c
= LGLYPH_CHAR (g
);
4874 unsigned code
= LGLYPH_CODE (g
);
4876 alternates
= Fcons (Fcons (make_number (code
),
4877 c
> 0 ? make_number (c
) : Qnil
),
4880 return Fnreverse (alternates
);
4886 DEFUN ("open-font", Fopen_font
, Sopen_font
, 1, 3, 0,
4887 doc
: /* Open FONT-ENTITY. */)
4888 (font_entity
, size
, frame
)
4889 Lisp_Object font_entity
;
4895 CHECK_FONT_ENTITY (font_entity
);
4897 frame
= selected_frame
;
4898 CHECK_LIVE_FRAME (frame
);
4901 isize
= XINT (AREF (font_entity
, FONT_SIZE_INDEX
));
4904 CHECK_NUMBER_OR_FLOAT (size
);
4906 isize
= POINT_TO_PIXEL (XFLOAT_DATA (size
), XFRAME (frame
)->resy
);
4908 isize
= XINT (size
);
4912 return font_open_entity (XFRAME (frame
), font_entity
, isize
);
4915 DEFUN ("close-font", Fclose_font
, Sclose_font
, 1, 2, 0,
4916 doc
: /* Close FONT-OBJECT. */)
4917 (font_object
, frame
)
4918 Lisp_Object font_object
, frame
;
4920 CHECK_FONT_OBJECT (font_object
);
4922 frame
= selected_frame
;
4923 CHECK_LIVE_FRAME (frame
);
4924 font_close_object (XFRAME (frame
), font_object
);
4928 DEFUN ("query-font", Fquery_font
, Squery_font
, 1, 1, 0,
4929 doc
: /* Return information about FONT-OBJECT.
4930 The value is a vector:
4931 [ NAME FILENAME PIXEL-SIZE SIZE ASCENT DESCENT SPACE-WIDTH AVERAGE-WIDTH
4934 NAME is a string of the font name (or nil if the font backend doesn't
4937 FILENAME is a string of the font file (or nil if the font backend
4938 doesn't provide a file name).
4940 PIXEL-SIZE is a pixel size by which the font is opened.
4942 SIZE is a maximum advance width of the font in pixels.
4944 ASCENT, DESCENT, SPACE-WIDTH, AVERAGE-WIDTH are metrics of the font in
4947 CAPABILITY is a list whose first element is a symbol representing the
4948 font format \(x, opentype, truetype, type1, pcf, or bdf) and the
4949 remaining elements describe the details of the font capability.
4951 If the font is OpenType font, the form of the list is
4952 \(opentype GSUB GPOS)
4953 where GSUB shows which "GSUB" features the font supports, and GPOS
4954 shows which "GPOS" features the font supports. Both GSUB and GPOS are
4955 lists of the format:
4956 \((SCRIPT (LANGSYS FEATURE ...) ...) ...)
4958 If the font is not OpenType font, currently the length of the form is
4961 SCRIPT is a symbol representing OpenType script tag.
4963 LANGSYS is a symbol representing OpenType langsys tag, or nil
4964 representing the default langsys.
4966 FEATURE is a symbol representing OpenType feature tag.
4968 If the font is not OpenType font, CAPABILITY is nil. */)
4970 Lisp_Object font_object
;
4975 CHECK_FONT_GET_OBJECT (font_object
, font
);
4977 val
= Fmake_vector (make_number (9), Qnil
);
4978 ASET (val
, 0, AREF (font_object
, FONT_NAME_INDEX
));
4979 ASET (val
, 1, AREF (font_object
, FONT_FILE_INDEX
));
4980 ASET (val
, 2, make_number (font
->pixel_size
));
4981 ASET (val
, 3, make_number (font
->max_width
));
4982 ASET (val
, 4, make_number (font
->ascent
));
4983 ASET (val
, 5, make_number (font
->descent
));
4984 ASET (val
, 6, make_number (font
->space_width
));
4985 ASET (val
, 7, make_number (font
->average_width
));
4986 if (font
->driver
->otf_capability
)
4987 ASET (val
, 8, Fcons (Qopentype
, font
->driver
->otf_capability (font
)));
4991 DEFUN ("get-font-glyphs", Fget_font_glyphs
, Sget_font_glyphs
, 2, 2, 0,
4992 doc
: /* Return a vector of glyphs of FONT-OBJECT for drawing STRING.
4993 Each element is a vector [GLYPH-CODE LBEARING RBEARING WIDTH ASCENT DESCENT]. */)
4994 (font_object
, string
)
4995 Lisp_Object font_object
, string
;
5001 CHECK_FONT_GET_OBJECT (font_object
, font
);
5002 CHECK_STRING (string
);
5003 len
= SCHARS (string
);
5004 vec
= Fmake_vector (make_number (len
), Qnil
);
5005 for (i
= 0; i
< len
; i
++)
5007 Lisp_Object ch
= Faref (string
, make_number (i
));
5012 struct font_metrics metrics
;
5014 cod
= code
= font
->driver
->encode_char (font
, c
);
5015 if (code
== FONT_INVALID_CODE
)
5017 val
= Fmake_vector (make_number (6), Qnil
);
5018 if (cod
<= MOST_POSITIVE_FIXNUM
)
5019 ASET (val
, 0, make_number (code
));
5021 ASET (val
, 0, Fcons (make_number (code
>> 16),
5022 make_number (code
& 0xFFFF)));
5023 font
->driver
->text_extents (font
, &code
, 1, &metrics
);
5024 ASET (val
, 1, make_number (metrics
.lbearing
));
5025 ASET (val
, 2, make_number (metrics
.rbearing
));
5026 ASET (val
, 3, make_number (metrics
.width
));
5027 ASET (val
, 4, make_number (metrics
.ascent
));
5028 ASET (val
, 5, make_number (metrics
.descent
));
5034 DEFUN ("font-match-p", Ffont_match_p
, Sfont_match_p
, 2, 2, 0,
5035 doc
: /* Return t if and only if font-spec SPEC matches with FONT.
5036 FONT is a font-spec, font-entity, or font-object. */)
5038 Lisp_Object spec
, font
;
5040 CHECK_FONT_SPEC (spec
);
5043 return (font_match_p (spec
, font
) ? Qt
: Qnil
);
5046 DEFUN ("font-at", Ffont_at
, Sfont_at
, 1, 3, 0,
5047 doc
: /* Return a font-object for displaying a character at POSITION.
5048 Optional second arg WINDOW, if non-nil, is a window displaying
5049 the current buffer. It defaults to the currently selected window. */)
5050 (position
, window
, string
)
5051 Lisp_Object position
, window
, string
;
5058 CHECK_NUMBER_COERCE_MARKER (position
);
5059 pos
= XINT (position
);
5060 if (pos
< BEGV
|| pos
>= ZV
)
5061 args_out_of_range_3 (position
, make_number (BEGV
), make_number (ZV
));
5065 CHECK_NUMBER (position
);
5066 CHECK_STRING (string
);
5067 pos
= XINT (position
);
5068 if (pos
< 0 || pos
>= SCHARS (string
))
5069 args_out_of_range (string
, position
);
5072 window
= selected_window
;
5073 CHECK_LIVE_WINDOW (window
);
5074 w
= XWINDOW (window
);
5076 return font_at (-1, pos
, NULL
, w
, string
);
5080 DEFUN ("draw-string", Fdraw_string
, Sdraw_string
, 2, 2, 0,
5081 doc
: /* Draw STRING by FONT-OBJECT on the top left corner of the current frame.
5082 The value is a number of glyphs drawn.
5083 Type C-l to recover what previously shown. */)
5084 (font_object
, string
)
5085 Lisp_Object font_object
, string
;
5087 Lisp_Object frame
= selected_frame
;
5088 FRAME_PTR f
= XFRAME (frame
);
5094 CHECK_FONT_GET_OBJECT (font_object
, font
);
5095 CHECK_STRING (string
);
5096 len
= SCHARS (string
);
5097 code
= alloca (sizeof (unsigned) * len
);
5098 for (i
= 0; i
< len
; i
++)
5100 Lisp_Object ch
= Faref (string
, make_number (i
));
5104 code
[i
] = font
->driver
->encode_char (font
, c
);
5105 if (code
[i
] == FONT_INVALID_CODE
)
5108 face
= FACE_FROM_ID (f
, DEFAULT_FACE_ID
);
5110 if (font
->driver
->prepare_face
)
5111 font
->driver
->prepare_face (f
, face
);
5112 width
= font
->driver
->text_extents (font
, code
, i
, NULL
);
5113 len
= font
->driver
->draw_text (f
, face
, 0, font
->ascent
, code
, i
, width
);
5114 if (font
->driver
->done_face
)
5115 font
->driver
->done_face (f
, face
);
5117 return make_number (len
);
5121 #endif /* FONT_DEBUG */
5123 #ifdef HAVE_WINDOW_SYSTEM
5125 DEFUN ("font-info", Ffont_info
, Sfont_info
, 1, 2, 0,
5126 doc
: /* Return information about a font named NAME on frame FRAME.
5127 If FRAME is omitted or nil, use the selected frame.
5128 The returned value is a vector of OPENED-NAME, FULL-NAME, SIZE,
5129 HEIGHT, BASELINE-OFFSET, RELATIVE-COMPOSE, and DEFAULT-ASCENT,
5131 OPENED-NAME is the name used for opening the font,
5132 FULL-NAME is the full name of the font,
5133 SIZE is the pixelsize of the font,
5134 HEIGHT is the pixel-height of the font (i.e ascent + descent),
5135 BASELINE-OFFSET is the upward offset pixels from ASCII baseline,
5136 RELATIVE-COMPOSE and DEFAULT-ASCENT are the numbers controlling
5137 how to compose characters.
5138 If the named font is not yet loaded, return nil. */)
5140 Lisp_Object name
, frame
;
5145 Lisp_Object font_object
;
5147 (*check_window_system_func
) ();
5150 CHECK_STRING (name
);
5152 frame
= selected_frame
;
5153 CHECK_LIVE_FRAME (frame
);
5158 int fontset
= fs_query_fontset (name
, 0);
5161 name
= fontset_ascii (fontset
);
5162 font_object
= font_open_by_name (f
, (char *) SDATA (name
));
5164 else if (FONT_OBJECT_P (name
))
5166 else if (FONT_ENTITY_P (name
))
5167 font_object
= font_open_entity (f
, name
, 0);
5170 struct face
*face
= FACE_FROM_ID (f
, DEFAULT_FACE_ID
);
5171 Lisp_Object entity
= font_matching_entity (f
, face
->lface
, name
);
5173 font_object
= ! NILP (entity
) ? font_open_entity (f
, entity
, 0) : Qnil
;
5175 if (NILP (font_object
))
5177 font
= XFONT_OBJECT (font_object
);
5179 info
= Fmake_vector (make_number (7), Qnil
);
5180 XVECTOR (info
)->contents
[0] = AREF (font_object
, FONT_NAME_INDEX
);
5181 XVECTOR (info
)->contents
[1] = AREF (font_object
, FONT_FULLNAME_INDEX
);
5182 XVECTOR (info
)->contents
[2] = make_number (font
->pixel_size
);
5183 XVECTOR (info
)->contents
[3] = make_number (font
->height
);
5184 XVECTOR (info
)->contents
[4] = make_number (font
->baseline_offset
);
5185 XVECTOR (info
)->contents
[5] = make_number (font
->relative_compose
);
5186 XVECTOR (info
)->contents
[6] = make_number (font
->default_ascent
);
5189 /* As font_object is still in FONT_OBJLIST of the entity, we can't
5190 close it now. Perhaps, we should manage font-objects
5191 by `reference-count'. */
5192 font_close_object (f
, font_object
);
5199 #define BUILD_STYLE_TABLE(TBL) \
5200 build_style_table ((TBL), sizeof TBL / sizeof (struct table_entry))
5203 build_style_table (entry
, nelement
)
5204 struct table_entry
*entry
;
5208 Lisp_Object table
, elt
;
5210 table
= Fmake_vector (make_number (nelement
), Qnil
);
5211 for (i
= 0; i
< nelement
; i
++)
5213 for (j
= 0; entry
[i
].names
[j
]; j
++);
5214 elt
= Fmake_vector (make_number (j
+ 1), Qnil
);
5215 ASET (elt
, 0, make_number (entry
[i
].numeric
));
5216 for (j
= 0; entry
[i
].names
[j
]; j
++)
5217 ASET (elt
, j
+ 1, intern_c_string (entry
[i
].names
[j
]));
5218 ASET (table
, i
, elt
);
5223 Lisp_Object Vfont_log
;
5225 /* The deferred font-log data of the form [ACTION ARG RESULT].
5226 If ACTION is not nil, that is added to the log when font_add_log is
5227 called next time. At that time, ACTION is set back to nil. */
5228 static Lisp_Object Vfont_log_deferred
;
5230 /* Prepend the font-related logging data in Vfont_log if it is not
5231 `t'. ACTION describes a kind of font-related action (e.g. listing,
5232 opening), ARG is the argument for the action, and RESULT is the
5233 result of the action. */
5235 font_add_log (action
, arg
, result
)
5237 Lisp_Object arg
, result
;
5239 Lisp_Object tail
, val
;
5242 if (EQ (Vfont_log
, Qt
))
5244 if (STRINGP (AREF (Vfont_log_deferred
, 0)))
5246 char *str
= (char *) SDATA (AREF (Vfont_log_deferred
, 0));
5248 ASET (Vfont_log_deferred
, 0, Qnil
);
5249 font_add_log (str
, AREF (Vfont_log_deferred
, 1),
5250 AREF (Vfont_log_deferred
, 2));
5255 Lisp_Object tail
, elt
;
5256 Lisp_Object equalstr
= build_string ("=");
5258 val
= Ffont_xlfd_name (arg
, Qt
);
5259 for (tail
= AREF (arg
, FONT_EXTRA_INDEX
); CONSP (tail
);
5263 if (EQ (XCAR (elt
), QCscript
)
5264 && SYMBOLP (XCDR (elt
)))
5265 val
= concat3 (val
, SYMBOL_NAME (QCscript
),
5266 concat2 (equalstr
, SYMBOL_NAME (XCDR (elt
))));
5267 else if (EQ (XCAR (elt
), QClang
)
5268 && SYMBOLP (XCDR (elt
)))
5269 val
= concat3 (val
, SYMBOL_NAME (QClang
),
5270 concat2 (equalstr
, SYMBOL_NAME (XCDR (elt
))));
5271 else if (EQ (XCAR (elt
), QCotf
)
5272 && CONSP (XCDR (elt
)) && SYMBOLP (XCAR (XCDR (elt
))))
5273 val
= concat3 (val
, SYMBOL_NAME (QCotf
),
5275 SYMBOL_NAME (XCAR (XCDR (elt
)))));
5281 && VECTORP (XCAR (result
))
5282 && ASIZE (XCAR (result
)) > 0
5283 && FONTP (AREF (XCAR (result
), 0)))
5284 result
= font_vconcat_entity_vectors (result
);
5287 val
= Ffont_xlfd_name (result
, Qt
);
5288 if (! FONT_SPEC_P (result
))
5289 val
= concat3 (SYMBOL_NAME (AREF (result
, FONT_TYPE_INDEX
)),
5290 build_string (":"), val
);
5293 else if (CONSP (result
))
5295 result
= Fcopy_sequence (result
);
5296 for (tail
= result
; CONSP (tail
); tail
= XCDR (tail
))
5300 val
= Ffont_xlfd_name (val
, Qt
);
5301 XSETCAR (tail
, val
);
5304 else if (VECTORP (result
))
5306 result
= Fcopy_sequence (result
);
5307 for (i
= 0; i
< ASIZE (result
); i
++)
5309 val
= AREF (result
, i
);
5311 val
= Ffont_xlfd_name (val
, Qt
);
5312 ASET (result
, i
, val
);
5315 Vfont_log
= Fcons (list3 (intern (action
), arg
, result
), Vfont_log
);
5318 /* Record a font-related logging data to be added to Vfont_log when
5319 font_add_log is called next time. ACTION, ARG, RESULT are the same
5323 font_deferred_log (action
, arg
, result
)
5325 Lisp_Object arg
, result
;
5327 if (EQ (Vfont_log
, Qt
))
5329 ASET (Vfont_log_deferred
, 0, build_string (action
));
5330 ASET (Vfont_log_deferred
, 1, arg
);
5331 ASET (Vfont_log_deferred
, 2, result
);
5334 extern void syms_of_ftfont
P_ (());
5335 extern void syms_of_xfont
P_ (());
5336 extern void syms_of_xftfont
P_ (());
5337 extern void syms_of_ftxfont
P_ (());
5338 extern void syms_of_bdffont
P_ (());
5339 extern void syms_of_w32font
P_ (());
5340 extern void syms_of_atmfont
P_ (());
5341 extern void syms_of_nsfont
P_ (());
5346 sort_shift_bits
[FONT_TYPE_INDEX
] = 0;
5347 sort_shift_bits
[FONT_SLANT_INDEX
] = 2;
5348 sort_shift_bits
[FONT_WEIGHT_INDEX
] = 9;
5349 sort_shift_bits
[FONT_SIZE_INDEX
] = 16;
5350 sort_shift_bits
[FONT_WIDTH_INDEX
] = 23;
5351 /* Note that the other elements in sort_shift_bits are not used. */
5353 staticpro (&font_charset_alist
);
5354 font_charset_alist
= Qnil
;
5356 DEFSYM (Qopentype
, "opentype");
5358 DEFSYM (Qascii_0
, "ascii-0");
5359 DEFSYM (Qiso8859_1
, "iso8859-1");
5360 DEFSYM (Qiso10646_1
, "iso10646-1");
5361 DEFSYM (Qunicode_bmp
, "unicode-bmp");
5362 DEFSYM (Qunicode_sip
, "unicode-sip");
5366 DEFSYM (QCotf
, ":otf");
5367 DEFSYM (QClang
, ":lang");
5368 DEFSYM (QCscript
, ":script");
5369 DEFSYM (QCantialias
, ":antialias");
5371 DEFSYM (QCfoundry
, ":foundry");
5372 DEFSYM (QCadstyle
, ":adstyle");
5373 DEFSYM (QCregistry
, ":registry");
5374 DEFSYM (QCspacing
, ":spacing");
5375 DEFSYM (QCdpi
, ":dpi");
5376 DEFSYM (QCscalable
, ":scalable");
5377 DEFSYM (QCavgwidth
, ":avgwidth");
5378 DEFSYM (QCfont_entity
, ":font-entity");
5379 DEFSYM (QCfc_unknown_spec
, ":fc-unknown-spec");
5389 DEFSYM (QCuser_spec
, "user-spec");
5391 staticpro (&null_vector
);
5392 null_vector
= Fmake_vector (make_number (0), Qnil
);
5394 staticpro (&scratch_font_spec
);
5395 scratch_font_spec
= Ffont_spec (0, NULL
);
5396 staticpro (&scratch_font_prefer
);
5397 scratch_font_prefer
= Ffont_spec (0, NULL
);
5399 staticpro (&Vfont_log_deferred
);
5400 Vfont_log_deferred
= Fmake_vector (make_number (3), Qnil
);
5404 staticpro (&otf_list
);
5406 #endif /* HAVE_LIBOTF */
5410 defsubr (&Sfont_spec
);
5411 defsubr (&Sfont_get
);
5412 #ifdef HAVE_WINDOW_SYSTEM
5413 defsubr (&Sfont_face_attributes
);
5415 defsubr (&Sfont_put
);
5416 defsubr (&Slist_fonts
);
5417 defsubr (&Sfont_family_list
);
5418 defsubr (&Sfind_font
);
5419 defsubr (&Sfont_xlfd_name
);
5420 defsubr (&Sclear_font_cache
);
5421 defsubr (&Sfont_shape_gstring
);
5422 defsubr (&Sfont_variation_glyphs
);
5424 defsubr (&Sfont_drive_otf
);
5425 defsubr (&Sfont_otf_alternates
);
5429 defsubr (&Sopen_font
);
5430 defsubr (&Sclose_font
);
5431 defsubr (&Squery_font
);
5432 defsubr (&Sget_font_glyphs
);
5433 defsubr (&Sfont_match_p
);
5434 defsubr (&Sfont_at
);
5436 defsubr (&Sdraw_string
);
5438 #endif /* FONT_DEBUG */
5439 #ifdef HAVE_WINDOW_SYSTEM
5440 defsubr (&Sfont_info
);
5443 DEFVAR_LISP ("font-encoding-alist", &Vfont_encoding_alist
,
5445 Alist of fontname patterns vs the corresponding encoding and repertory info.
5446 Each element looks like (REGEXP . (ENCODING . REPERTORY)),
5447 where ENCODING is a charset or a char-table,
5448 and REPERTORY is a charset, a char-table, or nil.
5450 If ENCODING and REPERTORY are the same, the element can have the form
5451 \(REGEXP . ENCODING).
5453 ENCODING is for converting a character to a glyph code of the font.
5454 If ENCODING is a charset, encoding a character by the charset gives
5455 the corresponding glyph code. If ENCODING is a char-table, looking up
5456 the table by a character gives the corresponding glyph code.
5458 REPERTORY specifies a repertory of characters supported by the font.
5459 If REPERTORY is a charset, all characters beloging to the charset are
5460 supported. If REPERTORY is a char-table, all characters who have a
5461 non-nil value in the table are supported. If REPERTORY is nil, Emacs
5462 gets the repertory information by an opened font and ENCODING. */);
5463 Vfont_encoding_alist
= Qnil
;
5465 DEFVAR_LISP_NOPRO ("font-weight-table", &Vfont_weight_table
,
5466 doc
: /* Vector of valid font weight values.
5467 Each element has the form:
5468 [NUMERIC-VALUE SYMBOLIC-NAME ALIAS-NAME ...]
5469 NUMERIC-VALUE is an integer, and SYMBOLIC-NAME and ALIAS-NAME are symbols. */);
5470 Vfont_weight_table
= BUILD_STYLE_TABLE (weight_table
);
5472 DEFVAR_LISP_NOPRO ("font-slant-table", &Vfont_slant_table
,
5473 doc
: /* Vector of font slant symbols vs the corresponding numeric values.
5474 See `font-weight-table' for the format of the vector. */);
5475 Vfont_slant_table
= BUILD_STYLE_TABLE (slant_table
);
5477 DEFVAR_LISP_NOPRO ("font-width-table", &Vfont_width_table
,
5478 doc
: /* Alist of font width symbols vs the corresponding numeric values.
5479 See `font-weight-table' for the format of the vector. */);
5480 Vfont_width_table
= BUILD_STYLE_TABLE (width_table
);
5482 staticpro (&font_style_table
);
5483 font_style_table
= Fmake_vector (make_number (3), Qnil
);
5484 ASET (font_style_table
, 0, Vfont_weight_table
);
5485 ASET (font_style_table
, 1, Vfont_slant_table
);
5486 ASET (font_style_table
, 2, Vfont_width_table
);
5488 DEFVAR_LISP ("font-log", &Vfont_log
, doc
: /*
5489 *Logging list of font related actions and results.
5490 The value t means to suppress the logging.
5491 The initial value is set to nil if the environment variable
5492 EMACS_FONT_LOG is set. Otherwise, it is set to t. */);
5495 #ifdef HAVE_WINDOW_SYSTEM
5496 #ifdef HAVE_FREETYPE
5498 #ifdef HAVE_X_WINDOWS
5503 #endif /* HAVE_XFT */
5504 #endif /* HAVE_X_WINDOWS */
5505 #else /* not HAVE_FREETYPE */
5506 #ifdef HAVE_X_WINDOWS
5508 #endif /* HAVE_X_WINDOWS */
5509 #endif /* not HAVE_FREETYPE */
5512 #endif /* HAVE_BDFFONT */
5515 #endif /* WINDOWSNT */
5518 #endif /* HAVE_NS */
5519 #endif /* HAVE_WINDOW_SYSTEM */
5525 Vfont_log
= egetenv ("EMACS_FONT_LOG") ? Qnil
: Qt
;
5528 /* arch-tag: 74c9475d-5976-4c93-a327-942ae3072846
5529 (do not change this comment) */