1 /* xfont.c -- X core font driver.
2 Copyright (C) 2006-2012 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/>. */
28 #include "dispextern.h"
31 #include "blockinput.h"
32 #include "character.h"
39 /* X core font driver. */
48 /* Prototypes of support functions. */
49 extern void x_clear_errors (Display
*);
51 static XCharStruct
*xfont_get_pcm (XFontStruct
*, XChar2b
*);
53 /* Get metrics of character CHAR2B in XFONT. Value is null if CHAR2B
54 is not contained in the font. */
57 xfont_get_pcm (XFontStruct
*xfont
, XChar2b
*char2b
)
59 /* The result metric information. */
60 XCharStruct
*pcm
= NULL
;
62 font_assert (xfont
&& char2b
);
64 if (xfont
->per_char
!= NULL
)
66 if (xfont
->min_byte1
== 0 && xfont
->max_byte1
== 0)
68 /* min_char_or_byte2 specifies the linear character index
69 corresponding to the first element of the per_char array,
70 max_char_or_byte2 is the index of the last character. A
71 character with non-zero CHAR2B->byte1 is not in the font.
72 A character with byte2 less than min_char_or_byte2 or
73 greater max_char_or_byte2 is not in the font. */
74 if (char2b
->byte1
== 0
75 && char2b
->byte2
>= xfont
->min_char_or_byte2
76 && char2b
->byte2
<= xfont
->max_char_or_byte2
)
77 pcm
= xfont
->per_char
+ char2b
->byte2
- xfont
->min_char_or_byte2
;
81 /* If either min_byte1 or max_byte1 are nonzero, both
82 min_char_or_byte2 and max_char_or_byte2 are less than
83 256, and the 2-byte character index values corresponding
84 to the per_char array element N (counting from 0) are:
86 byte1 = N/D + min_byte1
87 byte2 = N\D + min_char_or_byte2
91 D = max_char_or_byte2 - min_char_or_byte2 + 1
93 \ = integer modulus */
94 if (char2b
->byte1
>= xfont
->min_byte1
95 && char2b
->byte1
<= xfont
->max_byte1
96 && char2b
->byte2
>= xfont
->min_char_or_byte2
97 && char2b
->byte2
<= xfont
->max_char_or_byte2
)
98 pcm
= (xfont
->per_char
99 + ((xfont
->max_char_or_byte2
- xfont
->min_char_or_byte2
+ 1)
100 * (char2b
->byte1
- xfont
->min_byte1
))
101 + (char2b
->byte2
- xfont
->min_char_or_byte2
));
106 /* If the per_char pointer is null, all glyphs between the first
107 and last character indexes inclusive have the same
108 information, as given by both min_bounds and max_bounds. */
109 if (char2b
->byte2
>= xfont
->min_char_or_byte2
110 && char2b
->byte2
<= xfont
->max_char_or_byte2
)
111 pcm
= &xfont
->max_bounds
;
115 || (pcm
->width
== 0 && (pcm
->rbearing
- pcm
->lbearing
) == 0))
119 static Lisp_Object
xfont_get_cache (FRAME_PTR
);
120 static Lisp_Object
xfont_list (Lisp_Object
, Lisp_Object
);
121 static Lisp_Object
xfont_match (Lisp_Object
, Lisp_Object
);
122 static Lisp_Object
xfont_list_family (Lisp_Object
);
123 static Lisp_Object
xfont_open (FRAME_PTR
, Lisp_Object
, int);
124 static void xfont_close (FRAME_PTR
, struct font
*);
125 static int xfont_prepare_face (FRAME_PTR
, struct face
*);
126 static int xfont_has_char (Lisp_Object
, int);
127 static unsigned xfont_encode_char (struct font
*, int);
128 static int xfont_text_extents (struct font
*, unsigned *, int,
129 struct font_metrics
*);
130 static int xfont_draw (struct glyph_string
*, int, int, int, int, int);
131 static int xfont_check (FRAME_PTR
, struct font
*);
133 struct font_driver xfont_driver
=
135 LISP_INITIALLY_ZERO
, /* Qx */
136 0, /* case insensitive */
150 NULL
, NULL
, NULL
, NULL
, NULL
, NULL
, NULL
, NULL
, NULL
, NULL
,
152 NULL
, /* get_variation_glyphs */
153 NULL
, /* filter_properties */
157 xfont_get_cache (FRAME_PTR f
)
159 Display_Info
*dpyinfo
= FRAME_X_DISPLAY_INFO (f
);
161 return (dpyinfo
->name_list_element
);
165 compare_font_names (const void *name1
, const void *name2
)
167 char *const *n1
= name1
;
168 char *const *n2
= name2
;
169 return xstrcasecmp (*n1
, *n2
);
172 /* Decode XLFD as iso-8859-1 into OUTPUT, and return the byte length
173 of the decoding result. LEN is the byte length of XLFD, or -1 if
174 XLFD is NULL terminated. The caller must assure that OUTPUT is at
175 least twice (plus 1) as large as XLFD. */
178 xfont_decode_coding_xlfd (char *xlfd
, int len
, char *output
)
180 char *p0
= xlfd
, *p1
= output
;
185 c
= *(unsigned char *) p0
++;
186 p1
+= CHAR_STRING (c
, (unsigned char *) p1
);
191 return (p1
- output
);
194 /* Encode XLFD from UTF-8 to iso-8859-1 destructively, and return the
195 resulting byte length. If XLFD contains unencodable character,
199 xfont_encode_coding_xlfd (char *xlfd
)
201 const unsigned char *p0
= (unsigned char *) xlfd
;
202 unsigned char *p1
= (unsigned char *) xlfd
;
207 int c
= STRING_CHAR_ADVANCE (p0
);
218 /* Check if CHARS (cons or vector) is supported by XFONT whose
219 encoding charset is ENCODING (XFONT is NULL) or by a font whose
220 registry corresponds to ENCODING and REPERTORY.
221 Return 1 if supported, return 0 otherwise. */
224 xfont_chars_supported (Lisp_Object chars
, XFontStruct
*xfont
,
225 struct charset
*encoding
, struct charset
*repertory
)
227 struct charset
*charset
= repertory
? repertory
: encoding
;
231 for (; CONSP (chars
); chars
= XCDR (chars
))
233 int c
= XINT (XCAR (chars
));
234 unsigned code
= ENCODE_CHAR (charset
, c
);
237 if (code
== CHARSET_INVALID_CODE (charset
))
243 char2b
.byte1
= code
>> 8;
244 char2b
.byte2
= code
& 0xFF;
245 if (! xfont_get_pcm (xfont
, &char2b
))
248 return (NILP (chars
));
250 else if (VECTORP (chars
))
254 for (i
= ASIZE (chars
) - 1; i
>= 0; i
--)
256 int c
= XINT (AREF (chars
, i
));
257 unsigned code
= ENCODE_CHAR (charset
, c
);
260 if (code
== CHARSET_INVALID_CODE (charset
))
266 char2b
.byte1
= code
>> 8;
267 char2b
.byte2
= code
& 0xFF;
268 if (xfont_get_pcm (xfont
, &char2b
))
276 /* A hash table recoding which font supports which scripts. Each key
277 is a vector of characteristic font properties FOUNDRY to WIDTH and
278 ADDSTYLE, and each value is a list of script symbols.
280 We assume that fonts that have the same value in the above
281 properties supports the same set of characters on all displays. */
283 static Lisp_Object xfont_scripts_cache
;
285 /* Re-usable vector to store characteristic font properties. */
286 static Lisp_Object xfont_scratch_props
;
288 /* Return a list of scripts supported by the font of FONTNAME whose
289 characteristic properties are in PROPS and whose encoding charset
290 is ENCODING. A caller must call BLOCK_INPUT in advance. */
293 xfont_supported_scripts (Display
*display
, char *fontname
, Lisp_Object props
,
294 struct charset
*encoding
)
298 /* Two special cases to avoid opening rather big fonts. */
299 if (EQ (AREF (props
, 2), Qja
))
300 return Fcons (intern ("kana"), Fcons (intern ("han"), Qnil
));
301 if (EQ (AREF (props
, 2), Qko
))
302 return Fcons (intern ("hangul"), Qnil
);
303 scripts
= Fgethash (props
, xfont_scripts_cache
, Qt
);
304 if (EQ (scripts
, Qt
))
310 xfont
= XLoadQueryFont (display
, fontname
);
315 for (val
= Vscript_representative_chars
; CONSP (val
);
317 if (CONSP (XCAR (val
)) && SYMBOLP (XCAR (XCAR (val
))))
319 Lisp_Object script
= XCAR (XCAR (val
));
320 Lisp_Object chars
= XCDR (XCAR (val
));
322 if (xfont_chars_supported (chars
, xfont
, encoding
, NULL
))
323 scripts
= Fcons (script
, scripts
);
326 XFreeFont (display
, xfont
);
328 if (EQ (AREF (props
, 3), Qiso10646_1
)
329 && NILP (Fmemq (Qlatin
, scripts
)))
330 scripts
= Fcons (Qlatin
, scripts
);
331 Fputhash (Fcopy_sequence (props
), scripts
, xfont_scripts_cache
);
337 xfont_list_pattern (Display
*display
, const char *pattern
,
338 Lisp_Object registry
, Lisp_Object script
)
340 Lisp_Object list
= Qnil
;
341 Lisp_Object chars
= Qnil
;
342 struct charset
*encoding
, *repertory
= NULL
;
343 int i
, limit
, num_fonts
;
345 /* Large enough to decode the longest XLFD (255 bytes). */
348 if (! NILP (registry
)
349 && font_registry_charsets (registry
, &encoding
, &repertory
) < 0)
350 /* Unknown REGISTRY, not supported. */
354 chars
= assq_no_quit (script
, Vscript_representative_chars
);
356 /* We can't tell whether or not a font supports SCRIPT. */
358 chars
= XCDR (chars
);
361 if (! xfont_chars_supported (chars
, NULL
, encoding
, repertory
))
368 x_catch_errors (display
);
370 for (limit
= 512; ; limit
*= 2)
372 names
= XListFonts (display
, pattern
, limit
, &num_fonts
);
373 if (x_had_errors_p (display
))
375 /* This error is perhaps due to insufficient memory on X
376 server. Let's just ignore it. */
377 x_clear_errors (display
);
381 if (num_fonts
< limit
)
383 XFreeFontNames (names
);
388 char **indices
= alloca (sizeof (char *) * num_fonts
);
389 Lisp_Object
*props
= XVECTOR (xfont_scratch_props
)->contents
;
390 Lisp_Object scripts
= Qnil
;
392 for (i
= 0; i
< ASIZE (xfont_scratch_props
); i
++)
394 for (i
= 0; i
< num_fonts
; i
++)
395 indices
[i
] = names
[i
];
396 qsort (indices
, num_fonts
, sizeof (char *), compare_font_names
);
398 for (i
= 0; i
< num_fonts
; i
++)
403 if (i
> 0 && xstrcasecmp (indices
[i
- 1], indices
[i
]) == 0)
405 entity
= font_make_entity ();
406 len
= xfont_decode_coding_xlfd (indices
[i
], -1, buf
);
407 if (font_parse_xlfd (buf
, len
, entity
) < 0)
409 ASET (entity
, FONT_TYPE_INDEX
, Qx
);
410 /* Avoid auto-scaled fonts. */
411 if (INTEGERP (AREF (entity
, FONT_DPI_INDEX
))
412 && INTEGERP (AREF (entity
, FONT_AVGWIDTH_INDEX
))
413 && XINT (AREF (entity
, FONT_DPI_INDEX
)) != 0
414 && XINT (AREF (entity
, FONT_AVGWIDTH_INDEX
)) == 0)
416 /* Avoid not-allowed scalable fonts. */
417 if (NILP (Vscalable_fonts_allowed
))
421 if (INTEGERP (AREF (entity
, FONT_SIZE_INDEX
)))
422 size
= XINT (AREF (entity
, FONT_SIZE_INDEX
));
423 else if (FLOATP (AREF (entity
, FONT_SIZE_INDEX
)))
424 size
= XFLOAT_DATA (AREF (entity
, FONT_SIZE_INDEX
));
428 else if (CONSP (Vscalable_fonts_allowed
))
430 Lisp_Object tail
, elt
;
432 for (tail
= Vscalable_fonts_allowed
; CONSP (tail
);
437 && fast_c_string_match_ignore_case (elt
, indices
[i
],
445 /* Avoid fonts of invalid registry. */
446 if (NILP (AREF (entity
, FONT_REGISTRY_INDEX
)))
449 /* Update encoding and repertory if necessary. */
450 if (! EQ (registry
, AREF (entity
, FONT_REGISTRY_INDEX
)))
452 registry
= AREF (entity
, FONT_REGISTRY_INDEX
);
453 if (font_registry_charsets (registry
, &encoding
, &repertory
) < 0)
457 /* Unknown REGISTRY, not supported. */
462 || xfont_chars_supported (chars
, NULL
, encoding
, repertory
))
463 list
= Fcons (entity
, list
);
466 if (memcmp (props
, &(AREF (entity
, FONT_FOUNDRY_INDEX
)),
467 sizeof (Lisp_Object
) * 7)
468 || ! EQ (AREF (entity
, FONT_SPACING_INDEX
), props
[7]))
470 memcpy (props
, &(AREF (entity
, FONT_FOUNDRY_INDEX
)),
471 sizeof (Lisp_Object
) * 7);
472 props
[7] = AREF (entity
, FONT_SPACING_INDEX
);
473 scripts
= xfont_supported_scripts (display
, indices
[i
],
474 xfont_scratch_props
, encoding
);
477 || ! NILP (Fmemq (script
, scripts
)))
478 list
= Fcons (entity
, list
);
480 XFreeFontNames (names
);
486 FONT_ADD_LOG ("xfont-list", build_string (pattern
), list
);
491 xfont_list (Lisp_Object frame
, Lisp_Object spec
)
493 FRAME_PTR f
= XFRAME (frame
);
494 Display
*display
= FRAME_X_DISPLAY_INFO (f
)->display
;
495 Lisp_Object registry
, list
, val
, extra
, script
;
497 /* Large enough to contain the longest XLFD (255 bytes) in UTF-8. */
500 extra
= AREF (spec
, FONT_EXTRA_INDEX
);
503 val
= assq_no_quit (QCotf
, extra
);
506 val
= assq_no_quit (QClang
, extra
);
511 registry
= AREF (spec
, FONT_REGISTRY_INDEX
);
512 len
= font_unparse_xlfd (spec
, 0, name
, 512);
513 if (len
< 0 || (len
= xfont_encode_coding_xlfd (name
)) < 0)
516 val
= assq_no_quit (QCscript
, extra
);
518 list
= xfont_list_pattern (display
, name
, registry
, script
);
519 if (NILP (list
) && NILP (registry
))
522 char *r
= name
+ len
- 9; /* 9 == strlen (iso8859-1) */
524 if (r
- name
+ 10 < 256) /* 10 == strlen (iso10646-1) */
526 strcpy (r
, "iso10646-1");
527 list
= xfont_list_pattern (display
, name
, Qiso10646_1
, script
);
530 if (NILP (list
) && ! NILP (registry
))
532 /* Try alternate registries. */
535 if ((alter
= Fassoc (SYMBOL_NAME (registry
),
536 Vface_alternative_font_registry_alist
),
539 /* Pointer to REGISTRY-ENCODING field. */
540 char *r
= name
+ len
- SBYTES (SYMBOL_NAME (registry
));
542 for (alter
= XCDR (alter
); CONSP (alter
); alter
= XCDR (alter
))
543 if (STRINGP (XCAR (alter
))
544 && ((r
- name
) + SBYTES (XCAR (alter
))) < 256)
546 strcpy (r
, SSDATA (XCAR (alter
)));
547 list
= xfont_list_pattern (display
, name
, registry
, script
);
556 val
= assq_no_quit (QCname
, AREF (spec
, FONT_EXTRA_INDEX
));
557 if (CONSP (val
) && STRINGP (XCDR (val
)) && SBYTES (XCDR (val
)) < 512)
559 memcpy (name
, SDATA (XCDR (val
)), SBYTES (XCDR (val
)) + 1);
560 if (xfont_encode_coding_xlfd (name
) < 0)
562 list
= xfont_list_pattern (display
, name
, registry
, script
);
570 xfont_match (Lisp_Object frame
, Lisp_Object spec
)
572 FRAME_PTR f
= XFRAME (frame
);
573 Display
*display
= FRAME_X_DISPLAY_INFO (f
)->display
;
574 Lisp_Object extra
, val
, entity
;
579 extra
= AREF (spec
, FONT_EXTRA_INDEX
);
580 val
= assq_no_quit (QCname
, extra
);
581 if (! CONSP (val
) || ! STRINGP (XCDR (val
)))
583 if (font_unparse_xlfd (spec
, 0, name
, 512) < 0)
586 else if (SBYTES (XCDR (val
)) < 512)
587 memcpy (name
, SDATA (XCDR (val
)), SBYTES (XCDR (val
)) + 1);
590 if (xfont_encode_coding_xlfd (name
) < 0)
595 xfont
= XLoadQueryFont (display
, name
);
598 if (XGetFontProperty (xfont
, XA_FONT
, &value
))
602 s
= (char *) XGetAtomName (display
, (Atom
) value
);
604 /* If DXPC (a Differential X Protocol Compressor)
605 Ver.3.7 is running, XGetAtomName will return null
606 string. We must avoid such a name. */
610 entity
= font_make_entity ();
611 ASET (entity
, FONT_TYPE_INDEX
, Qx
);
612 len
= xfont_decode_coding_xlfd (s
, -1, name
);
613 if (font_parse_xlfd (name
, len
, entity
) < 0)
618 XFreeFont (display
, xfont
);
622 FONT_ADD_LOG ("xfont-match", spec
, entity
);
627 xfont_list_family (Lisp_Object frame
)
629 FRAME_PTR f
= XFRAME (frame
);
630 Display_Info
*dpyinfo
= FRAME_X_DISPLAY_INFO (f
);
634 char *last_family
IF_LINT (= 0);
638 x_catch_errors (dpyinfo
->display
);
639 names
= XListFonts (dpyinfo
->display
, "-*-*-*-*-*-*-*-*-*-*-*-*-*-*",
641 if (x_had_errors_p (dpyinfo
->display
))
643 /* This error is perhaps due to insufficient memory on X server.
644 Let's just ignore it. */
645 x_clear_errors (dpyinfo
->display
);
650 for (i
= 0, last_len
= 0; i
< num_fonts
; i
++)
652 char *p0
= names
[i
], *p1
, buf
[512];
656 p0
++; /* skip the leading '-' */
657 while (*p0
&& *p0
!= '-') p0
++; /* skip foundry */
661 while (*p1
&& *p1
!= '-') p1
++; /* find the end of family */
662 if (! *p1
|| p1
== p0
)
664 if (last_len
== p1
- p0
665 && memcmp (last_family
, p0
, last_len
) == 0)
670 decoded_len
= xfont_decode_coding_xlfd (p0
, last_len
, buf
);
671 family
= font_intern_prop (p0
, decoded_len
, 1);
672 if (NILP (assq_no_quit (family
, list
)))
673 list
= Fcons (family
, list
);
676 XFreeFontNames (names
);
684 xfont_open (FRAME_PTR f
, Lisp_Object entity
, int pixel_size
)
686 Display_Info
*dpyinfo
= FRAME_X_DISPLAY_INFO (f
);
687 Display
*display
= dpyinfo
->display
;
691 Lisp_Object registry
;
692 struct charset
*encoding
, *repertory
;
693 Lisp_Object font_object
, fullname
;
697 /* At first, check if we know how to encode characters for this
699 registry
= AREF (entity
, FONT_REGISTRY_INDEX
);
700 if (font_registry_charsets (registry
, &encoding
, &repertory
) < 0)
702 FONT_ADD_LOG (" x:unknown registry", registry
, Qnil
);
706 if (XINT (AREF (entity
, FONT_SIZE_INDEX
)) != 0)
707 pixel_size
= XINT (AREF (entity
, FONT_SIZE_INDEX
));
708 else if (pixel_size
== 0)
711 pixel_size
= FRAME_FONT (f
)->pixel_size
;
715 len
= font_unparse_xlfd (entity
, pixel_size
, name
, 512);
716 if (len
<= 0 || (len
= xfont_encode_coding_xlfd (name
)) < 0)
718 FONT_ADD_LOG (" x:unparse failed", entity
, Qnil
);
723 x_catch_errors (display
);
724 xfont
= XLoadQueryFont (display
, name
);
725 if (x_had_errors_p (display
))
727 /* This error is perhaps due to insufficient memory on X server.
728 Let's just ignore it. */
729 x_clear_errors (display
);
734 /* Some version of X lists:
735 -misc-fixed-medium-r-normal--20-*-75-75-c-100-iso8859-1
736 -misc-fixed-medium-r-normal--20-*-100-100-c-100-iso8859-1
738 -misc-fixed-medium-r-normal--20-*-100-100-c-100-iso8859-1
740 -misc-fixed-medium-r-normal--20-*-*-*-c-100-iso8859-1
741 So, we try again with wildcards in RESX and RESY. */
744 temp
= copy_font_spec (entity
);
745 ASET (temp
, FONT_DPI_INDEX
, Qnil
);
746 len
= font_unparse_xlfd (temp
, pixel_size
, name
, 512);
747 if (len
<= 0 || (len
= xfont_encode_coding_xlfd (name
)) < 0)
749 FONT_ADD_LOG (" x:unparse failed", temp
, Qnil
);
752 xfont
= XLoadQueryFont (display
, name
);
753 if (x_had_errors_p (display
))
755 /* This error is perhaps due to insufficient memory on X server.
756 Let's just ignore it. */
757 x_clear_errors (display
);
762 /* Try to get the full name of FONT. */
763 if (xfont
&& XGetFontProperty (xfont
, XA_FONT
, &value
))
768 p0
= p
= (char *) XGetAtomName (FRAME_X_DISPLAY (f
), (Atom
) value
);
769 /* Count the number of dashes in the "full name".
770 If it is too few, this isn't really the font's full name,
772 In X11R4, the fonts did not come with their canonical names
783 len
= xfont_decode_coding_xlfd (p0
, -1, name
);
784 fullname
= Fdowncase (make_string (name
, len
));
793 FONT_ADD_LOG (" x:open failed", build_string (name
), Qnil
);
797 font_object
= font_make_object (VECSIZE (struct xfont_info
),
799 ASET (font_object
, FONT_TYPE_INDEX
, Qx
);
800 if (STRINGP (fullname
))
802 font_parse_xlfd (SSDATA (fullname
), SBYTES (fullname
), font_object
);
803 ASET (font_object
, FONT_NAME_INDEX
, fullname
);
809 len
= xfont_decode_coding_xlfd (name
, -1, buf
);
810 ASET (font_object
, FONT_NAME_INDEX
, make_string (buf
, len
));
812 ASET (font_object
, FONT_FULLNAME_INDEX
, fullname
);
813 ASET (font_object
, FONT_FILE_INDEX
, Qnil
);
814 ASET (font_object
, FONT_FORMAT_INDEX
, Qx
);
815 font
= XFONT_OBJECT (font_object
);
816 ((struct xfont_info
*) font
)->xfont
= xfont
;
817 ((struct xfont_info
*) font
)->display
= FRAME_X_DISPLAY (f
);
818 font
->pixel_size
= pixel_size
;
819 font
->driver
= &xfont_driver
;
820 font
->encoding_charset
= encoding
->id
;
821 font
->repertory_charset
= repertory
? repertory
->id
: -1;
822 font
->ascent
= xfont
->ascent
;
823 font
->descent
= xfont
->descent
;
824 font
->height
= font
->ascent
+ font
->descent
;
825 font
->min_width
= xfont
->min_bounds
.width
;
826 if (xfont
->min_bounds
.width
== xfont
->max_bounds
.width
)
828 /* Fixed width font. */
829 font
->average_width
= font
->space_width
= xfont
->min_bounds
.width
;
837 char2b
.byte1
= 0x00, char2b
.byte2
= 0x20;
838 pcm
= xfont_get_pcm (xfont
, &char2b
);
840 font
->space_width
= pcm
->width
;
842 font
->space_width
= 0;
844 val
= Ffont_get (font_object
, QCavgwidth
);
846 font
->average_width
= XINT (val
) / 10;
847 if (font
->average_width
< 0)
848 font
->average_width
= - font
->average_width
;
851 if (font
->average_width
== 0
852 && encoding
->ascii_compatible_p
)
854 int width
= font
->space_width
, n
= pcm
!= NULL
;
856 for (char2b
.byte2
= 33; char2b
.byte2
<= 126; char2b
.byte2
++)
857 if ((pcm
= xfont_get_pcm (xfont
, &char2b
)) != NULL
)
858 width
+= pcm
->width
, n
++;
860 font
->average_width
= width
/ n
;
862 if (font
->average_width
== 0)
863 /* No easy way other than this to get a reasonable
866 = (xfont
->min_bounds
.width
+ xfont
->max_bounds
.width
) / 2;
871 font
->underline_thickness
872 = (XGetFontProperty (xfont
, XA_UNDERLINE_THICKNESS
, &value
)
874 font
->underline_position
875 = (XGetFontProperty (xfont
, XA_UNDERLINE_POSITION
, &value
)
876 ? (long) value
: -1);
877 font
->baseline_offset
878 = (XGetFontProperty (xfont
, dpyinfo
->Xatom_MULE_BASELINE_OFFSET
, &value
)
880 font
->relative_compose
881 = (XGetFontProperty (xfont
, dpyinfo
->Xatom_MULE_RELATIVE_COMPOSE
, &value
)
884 = (XGetFontProperty (xfont
, dpyinfo
->Xatom_MULE_DEFAULT_ASCENT
, &value
)
889 fullname
= AREF (font_object
, FONT_NAME_INDEX
);
890 font
->vertical_centering
891 = (STRINGP (Vvertical_centering_font_regexp
)
892 && (fast_string_match_ignore_case
893 (Vvertical_centering_font_regexp
, fullname
) >= 0));
899 xfont_close (FRAME_PTR f
, struct font
*font
)
902 XFreeFont (FRAME_X_DISPLAY (f
), ((struct xfont_info
*) font
)->xfont
);
907 xfont_prepare_face (FRAME_PTR f
, struct face
*face
)
910 XSetFont (FRAME_X_DISPLAY (f
), face
->gc
,
911 ((struct xfont_info
*) face
->font
)->xfont
->fid
);
918 xfont_has_char (Lisp_Object font
, int c
)
920 Lisp_Object registry
= AREF (font
, FONT_REGISTRY_INDEX
);
921 struct charset
*encoding
;
922 struct charset
*repertory
= NULL
;
924 if (EQ (registry
, Qiso10646_1
))
926 encoding
= CHARSET_FROM_ID (charset_unicode
);
927 /* We use a font of `ja' and `ko' adstyle only for a character
928 in JISX0208 and KSC5601 charsets respectively. */
929 if (EQ (AREF (font
, FONT_ADSTYLE_INDEX
), Qja
)
930 && charset_jisx0208
>= 0)
931 repertory
= CHARSET_FROM_ID (charset_jisx0208
);
932 else if (EQ (AREF (font
, FONT_ADSTYLE_INDEX
), Qko
)
933 && charset_ksc5601
>= 0)
934 repertory
= CHARSET_FROM_ID (charset_ksc5601
);
936 else if (font_registry_charsets (registry
, &encoding
, &repertory
) < 0)
937 /* Unknown REGISTRY, not usable. */
939 if (ASCII_CHAR_P (c
) && encoding
->ascii_compatible_p
)
943 return (ENCODE_CHAR (repertory
, c
) != CHARSET_INVALID_CODE (repertory
));
947 xfont_encode_char (struct font
*font
, int c
)
949 XFontStruct
*xfont
= ((struct xfont_info
*) font
)->xfont
;
950 struct charset
*charset
;
954 charset
= CHARSET_FROM_ID (font
->encoding_charset
);
955 code
= ENCODE_CHAR (charset
, c
);
956 if (code
== CHARSET_INVALID_CODE (charset
))
957 return FONT_INVALID_CODE
;
958 if (font
->repertory_charset
>= 0)
960 charset
= CHARSET_FROM_ID (font
->repertory_charset
);
961 return (ENCODE_CHAR (charset
, c
) != CHARSET_INVALID_CODE (charset
)
962 ? code
: FONT_INVALID_CODE
);
964 char2b
.byte1
= code
>> 8;
965 char2b
.byte2
= code
& 0xFF;
966 return (xfont_get_pcm (xfont
, &char2b
) ? code
: FONT_INVALID_CODE
);
970 xfont_text_extents (struct font
*font
, unsigned int *code
, int nglyphs
, struct font_metrics
*metrics
)
972 XFontStruct
*xfont
= ((struct xfont_info
*) font
)->xfont
;
977 memset (metrics
, 0, sizeof (struct font_metrics
));
978 for (i
= 0, first
= 1; i
< nglyphs
; i
++)
981 static XCharStruct
*pcm
;
983 if (code
[i
] >= 0x10000)
985 char2b
.byte1
= code
[i
] >> 8, char2b
.byte2
= code
[i
] & 0xFF;
986 pcm
= xfont_get_pcm (xfont
, &char2b
);
993 metrics
->lbearing
= pcm
->lbearing
;
994 metrics
->rbearing
= pcm
->rbearing
;
995 metrics
->ascent
= pcm
->ascent
;
996 metrics
->descent
= pcm
->descent
;
1004 if (metrics
->lbearing
> width
+ pcm
->lbearing
)
1005 metrics
->lbearing
= width
+ pcm
->lbearing
;
1006 if (metrics
->rbearing
< width
+ pcm
->rbearing
)
1007 metrics
->rbearing
= width
+ pcm
->rbearing
;
1008 if (metrics
->ascent
< pcm
->ascent
)
1009 metrics
->ascent
= pcm
->ascent
;
1010 if (metrics
->descent
< pcm
->descent
)
1011 metrics
->descent
= pcm
->descent
;
1014 width
+= pcm
->width
;
1017 metrics
->width
= width
;
1022 xfont_draw (struct glyph_string
*s
, int from
, int to
, int x
, int y
, int with_background
)
1024 XFontStruct
*xfont
= ((struct xfont_info
*) s
->font
)->xfont
;
1025 int len
= to
- from
;
1029 if (s
->gc
!= s
->face
->gc
)
1032 XSetFont (s
->display
, gc
, xfont
->fid
);
1036 if (xfont
->min_byte1
== 0 && xfont
->max_byte1
== 0)
1041 SAFE_ALLOCA (str
, char *, len
);
1042 for (i
= 0; i
< len
; i
++)
1043 str
[i
] = XCHAR2B_BYTE2 (s
->char2b
+ from
+ i
);
1045 if (with_background
> 0)
1048 for (i
= 0; i
< len
; i
++)
1049 XDrawImageString (FRAME_X_DISPLAY (s
->f
), FRAME_X_WINDOW (s
->f
),
1050 gc
, x
+ i
, y
, str
+ i
, 1);
1052 XDrawImageString (FRAME_X_DISPLAY (s
->f
), FRAME_X_WINDOW (s
->f
),
1053 gc
, x
, y
, str
, len
);
1058 for (i
= 0; i
< len
; i
++)
1059 XDrawString (FRAME_X_DISPLAY (s
->f
), FRAME_X_WINDOW (s
->f
),
1060 gc
, x
+ i
, y
, str
+ i
, 1);
1062 XDrawString (FRAME_X_DISPLAY (s
->f
), FRAME_X_WINDOW (s
->f
),
1063 gc
, x
, y
, str
, len
);
1071 if (with_background
> 0)
1074 for (i
= 0; i
< len
; i
++)
1075 XDrawImageString16 (FRAME_X_DISPLAY (s
->f
), FRAME_X_WINDOW (s
->f
),
1076 gc
, x
+ i
, y
, s
->char2b
+ from
+ i
, 1);
1078 XDrawImageString16 (FRAME_X_DISPLAY (s
->f
), FRAME_X_WINDOW (s
->f
),
1079 gc
, x
, y
, s
->char2b
+ from
, len
);
1084 for (i
= 0; i
< len
; i
++)
1085 XDrawString16 (FRAME_X_DISPLAY (s
->f
), FRAME_X_WINDOW (s
->f
),
1086 gc
, x
+ i
, y
, s
->char2b
+ from
+ i
, 1);
1088 XDrawString16 (FRAME_X_DISPLAY (s
->f
), FRAME_X_WINDOW (s
->f
),
1089 gc
, x
, y
, s
->char2b
+ from
, len
);
1097 xfont_check (FRAME_PTR f
, struct font
*font
)
1099 struct xfont_info
*xfont
= (struct xfont_info
*) font
;
1101 return (FRAME_X_DISPLAY (f
) == xfont
->display
? 0 : -1);
1106 syms_of_xfont (void)
1108 staticpro (&xfont_scripts_cache
);
1109 { /* Here we rely on the fact that syms_of_xfont (via syms_of_font)
1110 is called fairly late, when QCtest and Qequal are known to be set. */
1111 Lisp_Object args
[2];
1114 xfont_scripts_cache
= Fmake_hash_table (2, args
);
1116 staticpro (&xfont_scratch_props
);
1117 xfont_scratch_props
= Fmake_vector (make_number (8), Qnil
);
1118 xfont_driver
.type
= Qx
;
1119 register_font_driver (&xfont_driver
, NULL
);