Mercurial > emacs
annotate src/xfont.c @ 104712:c4fb8f245750
* paths.el (abbrev-file-name): Move to abbrev.el.
* abbrev.el (abbrev-file-name): Move from paths.el.
Obey user-emacs-directory.
* calc/calc.el (calc-settings-file): Don't autoload and instead obey
user-emacs-directory.
* dos-fns.el (dos-reevaluate-defcustoms): Don't reevaluate
abbrev-file-name and calc-settings-file any more.
* startup.el (command-line): Recompute abbrev-file-name and
abbreviated-home-dir.
(normal-no-mouse-startup-screen): Improve the generic code and get rid
of the special code for when C-h bindings haven't been changed.
(display-startup-echo-area-message): Use with-current-buffer.
(command-line-1): Use a list of strings, rather than a list of lists
of strings for longopts.
author | Stefan Monnier <monnier@iro.umontreal.ca> |
---|---|
date | Sat, 29 Aug 2009 19:22:38 +0000 |
parents | 1d6a73f0d113 |
children | 68dd71358159 |
rev | line source |
---|---|
90400 | 1 /* xfont.c -- X core font driver. |
100951 | 2 Copyright (C) 2006, 2007, 2008, 2009 Free Software Foundation, Inc. |
3 Copyright (C) 2006, 2007, 2008, 2009 | |
90400 | 4 National Institute of Advanced Industrial Science and Technology (AIST) |
5 Registration Number H13PRO009 | |
6 | |
7 This file is part of GNU Emacs. | |
8 | |
94963
8971ddf55736
Switch to recommended form of GPLv3 permissions notice.
Glenn Morris <rgm@gnu.org>
parents:
94940
diff
changeset
|
9 GNU Emacs is free software: you can redistribute it and/or modify |
90400 | 10 it under the terms of the GNU General Public License as published by |
94963
8971ddf55736
Switch to recommended form of GPLv3 permissions notice.
Glenn Morris <rgm@gnu.org>
parents:
94940
diff
changeset
|
11 the Free Software Foundation, either version 3 of the License, or |
8971ddf55736
Switch to recommended form of GPLv3 permissions notice.
Glenn Morris <rgm@gnu.org>
parents:
94940
diff
changeset
|
12 (at your option) any later version. |
90400 | 13 |
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. | |
18 | |
19 You should have received a copy of the GNU General Public License | |
94963
8971ddf55736
Switch to recommended form of GPLv3 permissions notice.
Glenn Morris <rgm@gnu.org>
parents:
94940
diff
changeset
|
20 along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>. */ |
90400 | 21 |
22 #include <config.h> | |
23 #include <stdio.h> | |
94940
061d44df20b7
Include <stdlib.h> and "ccl.h".
Kenichi Handa <handa@m17n.org>
parents:
92185
diff
changeset
|
24 #include <stdlib.h> |
90400 | 25 #include <X11/Xlib.h> |
26 | |
27 #include "lisp.h" | |
28 #include "dispextern.h" | |
29 #include "xterm.h" | |
30 #include "frame.h" | |
31 #include "blockinput.h" | |
32 #include "character.h" | |
33 #include "charset.h" | |
34 #include "fontset.h" | |
35 #include "font.h" | |
94940
061d44df20b7
Include <stdlib.h> and "ccl.h".
Kenichi Handa <handa@m17n.org>
parents:
92185
diff
changeset
|
36 #include "ccl.h" |
90400 | 37 |
38 | |
39 /* X core font driver. */ | |
40 | |
94940
061d44df20b7
Include <stdlib.h> and "ccl.h".
Kenichi Handa <handa@m17n.org>
parents:
92185
diff
changeset
|
41 struct xfont_info |
061d44df20b7
Include <stdlib.h> and "ccl.h".
Kenichi Handa <handa@m17n.org>
parents:
92185
diff
changeset
|
42 { |
061d44df20b7
Include <stdlib.h> and "ccl.h".
Kenichi Handa <handa@m17n.org>
parents:
92185
diff
changeset
|
43 struct font font; |
061d44df20b7
Include <stdlib.h> and "ccl.h".
Kenichi Handa <handa@m17n.org>
parents:
92185
diff
changeset
|
44 Display *display; |
061d44df20b7
Include <stdlib.h> and "ccl.h".
Kenichi Handa <handa@m17n.org>
parents:
92185
diff
changeset
|
45 XFontStruct *xfont; |
061d44df20b7
Include <stdlib.h> and "ccl.h".
Kenichi Handa <handa@m17n.org>
parents:
92185
diff
changeset
|
46 }; |
061d44df20b7
Include <stdlib.h> and "ccl.h".
Kenichi Handa <handa@m17n.org>
parents:
92185
diff
changeset
|
47 |
90400 | 48 /* Prototypes of support functions. */ |
49 extern void x_clear_errors P_ ((Display *)); | |
50 | |
51 static XCharStruct *xfont_get_pcm P_ ((XFontStruct *, XChar2b *)); | |
52 | |
53 /* Get metrics of character CHAR2B in XFONT. Value is null if CHAR2B | |
54 is not contained in the font. */ | |
55 | |
56 static XCharStruct * | |
57 xfont_get_pcm (xfont, char2b) | |
58 XFontStruct *xfont; | |
59 XChar2b *char2b; | |
60 { | |
61 /* The result metric information. */ | |
62 XCharStruct *pcm = NULL; | |
63 | |
95180
1520d3ef2a48
(xfont_get_pcm): Change xassert to font_assert.
Kenichi Handa <handa@m17n.org>
parents:
94963
diff
changeset
|
64 font_assert (xfont && char2b); |
90400 | 65 |
66 if (xfont->per_char != NULL) | |
67 { | |
68 if (xfont->min_byte1 == 0 && xfont->max_byte1 == 0) | |
69 { | |
70 /* min_char_or_byte2 specifies the linear character index | |
71 corresponding to the first element of the per_char array, | |
72 max_char_or_byte2 is the index of the last character. A | |
73 character with non-zero CHAR2B->byte1 is not in the font. | |
74 A character with byte2 less than min_char_or_byte2 or | |
75 greater max_char_or_byte2 is not in the font. */ | |
76 if (char2b->byte1 == 0 | |
77 && char2b->byte2 >= xfont->min_char_or_byte2 | |
78 && char2b->byte2 <= xfont->max_char_or_byte2) | |
79 pcm = xfont->per_char + char2b->byte2 - xfont->min_char_or_byte2; | |
80 } | |
81 else | |
82 { | |
83 /* If either min_byte1 or max_byte1 are nonzero, both | |
84 min_char_or_byte2 and max_char_or_byte2 are less than | |
85 256, and the 2-byte character index values corresponding | |
86 to the per_char array element N (counting from 0) are: | |
87 | |
88 byte1 = N/D + min_byte1 | |
89 byte2 = N\D + min_char_or_byte2 | |
90 | |
91 where: | |
92 | |
93 D = max_char_or_byte2 - min_char_or_byte2 + 1 | |
94 / = integer division | |
95 \ = integer modulus */ | |
96 if (char2b->byte1 >= xfont->min_byte1 | |
97 && char2b->byte1 <= xfont->max_byte1 | |
98 && char2b->byte2 >= xfont->min_char_or_byte2 | |
99 && char2b->byte2 <= xfont->max_char_or_byte2) | |
100 pcm = (xfont->per_char | |
101 + ((xfont->max_char_or_byte2 - xfont->min_char_or_byte2 + 1) | |
102 * (char2b->byte1 - xfont->min_byte1)) | |
103 + (char2b->byte2 - xfont->min_char_or_byte2)); | |
104 } | |
105 } | |
106 else | |
107 { | |
108 /* If the per_char pointer is null, all glyphs between the first | |
109 and last character indexes inclusive have the same | |
110 information, as given by both min_bounds and max_bounds. */ | |
111 if (char2b->byte2 >= xfont->min_char_or_byte2 | |
112 && char2b->byte2 <= xfont->max_char_or_byte2) | |
113 pcm = &xfont->max_bounds; | |
114 } | |
115 | |
116 return ((pcm == NULL | |
117 || (pcm->width == 0 && (pcm->rbearing - pcm->lbearing) == 0)) | |
118 ? NULL : pcm); | |
119 } | |
120 | |
91245
26541bdcecd0
(xfont_get_cache): Adjust the argument type.
Kenichi Handa <handa@m17n.org>
parents:
91177
diff
changeset
|
121 static Lisp_Object xfont_get_cache P_ ((FRAME_PTR)); |
90400 | 122 static Lisp_Object xfont_list P_ ((Lisp_Object, Lisp_Object)); |
90561
73750c4e078a
(xfont_match): New function.
Kenichi Handa <handa@m17n.org>
parents:
90545
diff
changeset
|
123 static Lisp_Object xfont_match P_ ((Lisp_Object, Lisp_Object)); |
90400 | 124 static Lisp_Object xfont_list_family P_ ((Lisp_Object)); |
94940
061d44df20b7
Include <stdlib.h> and "ccl.h".
Kenichi Handa <handa@m17n.org>
parents:
92185
diff
changeset
|
125 static Lisp_Object xfont_open P_ ((FRAME_PTR, Lisp_Object, int)); |
90400 | 126 static void xfont_close P_ ((FRAME_PTR, struct font *)); |
127 static int xfont_prepare_face P_ ((FRAME_PTR, struct face *)); | |
128 static int xfont_has_char P_ ((Lisp_Object, int)); | |
129 static unsigned xfont_encode_char P_ ((struct font *, int)); | |
130 static int xfont_text_extents P_ ((struct font *, unsigned *, int, | |
131 struct font_metrics *)); | |
132 static int xfont_draw P_ ((struct glyph_string *, int, int, int, int, int)); | |
94940
061d44df20b7
Include <stdlib.h> and "ccl.h".
Kenichi Handa <handa@m17n.org>
parents:
92185
diff
changeset
|
133 static int xfont_check P_ ((FRAME_PTR, struct font *)); |
90400 | 134 |
135 struct font_driver xfont_driver = | |
136 { | |
90698
a31984e21969
(xfont_driver): Initialize ftfont_driver.type by 0.
Kenichi Handa <handa@m17n.org>
parents:
90679
diff
changeset
|
137 0, /* Qx */ |
94940
061d44df20b7
Include <stdlib.h> and "ccl.h".
Kenichi Handa <handa@m17n.org>
parents:
92185
diff
changeset
|
138 0, /* case insensitive */ |
90400 | 139 xfont_get_cache, |
140 xfont_list, | |
90561
73750c4e078a
(xfont_match): New function.
Kenichi Handa <handa@m17n.org>
parents:
90545
diff
changeset
|
141 xfont_match, |
90400 | 142 xfont_list_family, |
143 NULL, | |
144 xfont_open, | |
145 xfont_close, | |
146 xfont_prepare_face, | |
94940
061d44df20b7
Include <stdlib.h> and "ccl.h".
Kenichi Handa <handa@m17n.org>
parents:
92185
diff
changeset
|
147 NULL, |
90400 | 148 xfont_has_char, |
149 xfont_encode_char, | |
150 xfont_text_extents, | |
94940
061d44df20b7
Include <stdlib.h> and "ccl.h".
Kenichi Handa <handa@m17n.org>
parents:
92185
diff
changeset
|
151 xfont_draw, |
061d44df20b7
Include <stdlib.h> and "ccl.h".
Kenichi Handa <handa@m17n.org>
parents:
92185
diff
changeset
|
152 NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, |
061d44df20b7
Include <stdlib.h> and "ccl.h".
Kenichi Handa <handa@m17n.org>
parents:
92185
diff
changeset
|
153 xfont_check |
90400 | 154 }; |
155 | |
156 extern Lisp_Object QCname; | |
157 | |
158 static Lisp_Object | |
91245
26541bdcecd0
(xfont_get_cache): Adjust the argument type.
Kenichi Handa <handa@m17n.org>
parents:
91177
diff
changeset
|
159 xfont_get_cache (f) |
26541bdcecd0
(xfont_get_cache): Adjust the argument type.
Kenichi Handa <handa@m17n.org>
parents:
91177
diff
changeset
|
160 FRAME_PTR f; |
90400 | 161 { |
91245
26541bdcecd0
(xfont_get_cache): Adjust the argument type.
Kenichi Handa <handa@m17n.org>
parents:
91177
diff
changeset
|
162 Display_Info *dpyinfo = FRAME_X_DISPLAY_INFO (f); |
90400 | 163 |
164 return (dpyinfo->name_list_element); | |
165 } | |
166 | |
167 extern Lisp_Object Vface_alternative_font_registry_alist; | |
168 | |
94940
061d44df20b7
Include <stdlib.h> and "ccl.h".
Kenichi Handa <handa@m17n.org>
parents:
92185
diff
changeset
|
169 static int |
061d44df20b7
Include <stdlib.h> and "ccl.h".
Kenichi Handa <handa@m17n.org>
parents:
92185
diff
changeset
|
170 compare_font_names (const void *name1, const void *name2) |
061d44df20b7
Include <stdlib.h> and "ccl.h".
Kenichi Handa <handa@m17n.org>
parents:
92185
diff
changeset
|
171 { |
95568
4fec6e274c04
(xfont_list): Don't set registry to iso8859-1 even if it
Kenichi Handa <handa@m17n.org>
parents:
95503
diff
changeset
|
172 return xstrcasecmp (*(const unsigned char **) name1, |
4fec6e274c04
(xfont_list): Don't set registry to iso8859-1 even if it
Kenichi Handa <handa@m17n.org>
parents:
95503
diff
changeset
|
173 *(const unsigned char **) name2); |
94940
061d44df20b7
Include <stdlib.h> and "ccl.h".
Kenichi Handa <handa@m17n.org>
parents:
92185
diff
changeset
|
174 } |
061d44df20b7
Include <stdlib.h> and "ccl.h".
Kenichi Handa <handa@m17n.org>
parents:
92185
diff
changeset
|
175 |
100553
e42552b2edda
(xfont_decode_coding_xlfd): New function.
Kenichi Handa <handa@m17n.org>
parents:
97327
diff
changeset
|
176 /* Decode XLFD as iso-8859-1 into OUTPUT, and return the byte length |
e42552b2edda
(xfont_decode_coding_xlfd): New function.
Kenichi Handa <handa@m17n.org>
parents:
97327
diff
changeset
|
177 of the decoding result. LEN is the byte length of XLFD, or -1 if |
e42552b2edda
(xfont_decode_coding_xlfd): New function.
Kenichi Handa <handa@m17n.org>
parents:
97327
diff
changeset
|
178 XLFD is NULL terminated. The caller must assure that OUTPUT is at |
e42552b2edda
(xfont_decode_coding_xlfd): New function.
Kenichi Handa <handa@m17n.org>
parents:
97327
diff
changeset
|
179 least twice (plus 1) as large as XLFD. */ |
e42552b2edda
(xfont_decode_coding_xlfd): New function.
Kenichi Handa <handa@m17n.org>
parents:
97327
diff
changeset
|
180 |
e42552b2edda
(xfont_decode_coding_xlfd): New function.
Kenichi Handa <handa@m17n.org>
parents:
97327
diff
changeset
|
181 static int |
e42552b2edda
(xfont_decode_coding_xlfd): New function.
Kenichi Handa <handa@m17n.org>
parents:
97327
diff
changeset
|
182 xfont_decode_coding_xlfd (char *xlfd, int len, char *output) |
e42552b2edda
(xfont_decode_coding_xlfd): New function.
Kenichi Handa <handa@m17n.org>
parents:
97327
diff
changeset
|
183 { |
e42552b2edda
(xfont_decode_coding_xlfd): New function.
Kenichi Handa <handa@m17n.org>
parents:
97327
diff
changeset
|
184 char *p0 = xlfd, *p1 = output; |
e42552b2edda
(xfont_decode_coding_xlfd): New function.
Kenichi Handa <handa@m17n.org>
parents:
97327
diff
changeset
|
185 int c; |
101943
97c9e9322753
Remove spurious semicolons.
Juanma Barranquero <lekktu@gmail.com>
parents:
100951
diff
changeset
|
186 |
100553
e42552b2edda
(xfont_decode_coding_xlfd): New function.
Kenichi Handa <handa@m17n.org>
parents:
97327
diff
changeset
|
187 while (*p0) |
e42552b2edda
(xfont_decode_coding_xlfd): New function.
Kenichi Handa <handa@m17n.org>
parents:
97327
diff
changeset
|
188 { |
e42552b2edda
(xfont_decode_coding_xlfd): New function.
Kenichi Handa <handa@m17n.org>
parents:
97327
diff
changeset
|
189 c = *(unsigned char *) p0++; |
e42552b2edda
(xfont_decode_coding_xlfd): New function.
Kenichi Handa <handa@m17n.org>
parents:
97327
diff
changeset
|
190 p1 += CHAR_STRING (c, p1); |
e42552b2edda
(xfont_decode_coding_xlfd): New function.
Kenichi Handa <handa@m17n.org>
parents:
97327
diff
changeset
|
191 if (--len == 0) |
e42552b2edda
(xfont_decode_coding_xlfd): New function.
Kenichi Handa <handa@m17n.org>
parents:
97327
diff
changeset
|
192 break; |
e42552b2edda
(xfont_decode_coding_xlfd): New function.
Kenichi Handa <handa@m17n.org>
parents:
97327
diff
changeset
|
193 } |
e42552b2edda
(xfont_decode_coding_xlfd): New function.
Kenichi Handa <handa@m17n.org>
parents:
97327
diff
changeset
|
194 *p1 = 0; |
e42552b2edda
(xfont_decode_coding_xlfd): New function.
Kenichi Handa <handa@m17n.org>
parents:
97327
diff
changeset
|
195 return (p1 - output); |
e42552b2edda
(xfont_decode_coding_xlfd): New function.
Kenichi Handa <handa@m17n.org>
parents:
97327
diff
changeset
|
196 } |
e42552b2edda
(xfont_decode_coding_xlfd): New function.
Kenichi Handa <handa@m17n.org>
parents:
97327
diff
changeset
|
197 |
e42552b2edda
(xfont_decode_coding_xlfd): New function.
Kenichi Handa <handa@m17n.org>
parents:
97327
diff
changeset
|
198 /* Encode XLFD from UTF-8 to iso-8859-1 destructively, and return the |
e42552b2edda
(xfont_decode_coding_xlfd): New function.
Kenichi Handa <handa@m17n.org>
parents:
97327
diff
changeset
|
199 resulting byte length. If XLFD contains unencodable character, |
e42552b2edda
(xfont_decode_coding_xlfd): New function.
Kenichi Handa <handa@m17n.org>
parents:
97327
diff
changeset
|
200 return -1. */ |
e42552b2edda
(xfont_decode_coding_xlfd): New function.
Kenichi Handa <handa@m17n.org>
parents:
97327
diff
changeset
|
201 |
e42552b2edda
(xfont_decode_coding_xlfd): New function.
Kenichi Handa <handa@m17n.org>
parents:
97327
diff
changeset
|
202 static int |
e42552b2edda
(xfont_decode_coding_xlfd): New function.
Kenichi Handa <handa@m17n.org>
parents:
97327
diff
changeset
|
203 xfont_encode_coding_xlfd (char *xlfd) |
e42552b2edda
(xfont_decode_coding_xlfd): New function.
Kenichi Handa <handa@m17n.org>
parents:
97327
diff
changeset
|
204 { |
e42552b2edda
(xfont_decode_coding_xlfd): New function.
Kenichi Handa <handa@m17n.org>
parents:
97327
diff
changeset
|
205 const unsigned char *p0 = (unsigned char *) xlfd; |
e42552b2edda
(xfont_decode_coding_xlfd): New function.
Kenichi Handa <handa@m17n.org>
parents:
97327
diff
changeset
|
206 unsigned char *p1 = (unsigned char *) xlfd; |
e42552b2edda
(xfont_decode_coding_xlfd): New function.
Kenichi Handa <handa@m17n.org>
parents:
97327
diff
changeset
|
207 int len = 0; |
101943
97c9e9322753
Remove spurious semicolons.
Juanma Barranquero <lekktu@gmail.com>
parents:
100951
diff
changeset
|
208 |
100553
e42552b2edda
(xfont_decode_coding_xlfd): New function.
Kenichi Handa <handa@m17n.org>
parents:
97327
diff
changeset
|
209 while (*p0) |
e42552b2edda
(xfont_decode_coding_xlfd): New function.
Kenichi Handa <handa@m17n.org>
parents:
97327
diff
changeset
|
210 { |
e42552b2edda
(xfont_decode_coding_xlfd): New function.
Kenichi Handa <handa@m17n.org>
parents:
97327
diff
changeset
|
211 int c = STRING_CHAR_ADVANCE (p0); |
e42552b2edda
(xfont_decode_coding_xlfd): New function.
Kenichi Handa <handa@m17n.org>
parents:
97327
diff
changeset
|
212 |
e42552b2edda
(xfont_decode_coding_xlfd): New function.
Kenichi Handa <handa@m17n.org>
parents:
97327
diff
changeset
|
213 if (c >= 0x100) |
e42552b2edda
(xfont_decode_coding_xlfd): New function.
Kenichi Handa <handa@m17n.org>
parents:
97327
diff
changeset
|
214 return -1; |
e42552b2edda
(xfont_decode_coding_xlfd): New function.
Kenichi Handa <handa@m17n.org>
parents:
97327
diff
changeset
|
215 *p1++ = c; |
e42552b2edda
(xfont_decode_coding_xlfd): New function.
Kenichi Handa <handa@m17n.org>
parents:
97327
diff
changeset
|
216 len++; |
e42552b2edda
(xfont_decode_coding_xlfd): New function.
Kenichi Handa <handa@m17n.org>
parents:
97327
diff
changeset
|
217 } |
e42552b2edda
(xfont_decode_coding_xlfd): New function.
Kenichi Handa <handa@m17n.org>
parents:
97327
diff
changeset
|
218 *p1 = 0; |
e42552b2edda
(xfont_decode_coding_xlfd): New function.
Kenichi Handa <handa@m17n.org>
parents:
97327
diff
changeset
|
219 return len; |
e42552b2edda
(xfont_decode_coding_xlfd): New function.
Kenichi Handa <handa@m17n.org>
parents:
97327
diff
changeset
|
220 } |
e42552b2edda
(xfont_decode_coding_xlfd): New function.
Kenichi Handa <handa@m17n.org>
parents:
97327
diff
changeset
|
221 |
103270
c4706100caab
(xfont_chars_supported, xfont_supported_scripts): New
Kenichi Handa <handa@m17n.org>
parents:
103184
diff
changeset
|
222 /* Check if CHARS (cons or vector) is supported by XFONT whose |
c4706100caab
(xfont_chars_supported, xfont_supported_scripts): New
Kenichi Handa <handa@m17n.org>
parents:
103184
diff
changeset
|
223 encoding charset is ENCODING (XFONT is NULL) or by a font whose |
c4706100caab
(xfont_chars_supported, xfont_supported_scripts): New
Kenichi Handa <handa@m17n.org>
parents:
103184
diff
changeset
|
224 registry corresponds to ENCODING and REPERTORY. |
c4706100caab
(xfont_chars_supported, xfont_supported_scripts): New
Kenichi Handa <handa@m17n.org>
parents:
103184
diff
changeset
|
225 Return 1 if supported, return 0 otherwise. */ |
c4706100caab
(xfont_chars_supported, xfont_supported_scripts): New
Kenichi Handa <handa@m17n.org>
parents:
103184
diff
changeset
|
226 |
c4706100caab
(xfont_chars_supported, xfont_supported_scripts): New
Kenichi Handa <handa@m17n.org>
parents:
103184
diff
changeset
|
227 static int |
c4706100caab
(xfont_chars_supported, xfont_supported_scripts): New
Kenichi Handa <handa@m17n.org>
parents:
103184
diff
changeset
|
228 xfont_chars_supported (Lisp_Object chars, XFontStruct *xfont, |
c4706100caab
(xfont_chars_supported, xfont_supported_scripts): New
Kenichi Handa <handa@m17n.org>
parents:
103184
diff
changeset
|
229 struct charset *encoding, struct charset *repertory) |
c4706100caab
(xfont_chars_supported, xfont_supported_scripts): New
Kenichi Handa <handa@m17n.org>
parents:
103184
diff
changeset
|
230 { |
c4706100caab
(xfont_chars_supported, xfont_supported_scripts): New
Kenichi Handa <handa@m17n.org>
parents:
103184
diff
changeset
|
231 struct charset *charset = repertory ? repertory : encoding; |
c4706100caab
(xfont_chars_supported, xfont_supported_scripts): New
Kenichi Handa <handa@m17n.org>
parents:
103184
diff
changeset
|
232 |
c4706100caab
(xfont_chars_supported, xfont_supported_scripts): New
Kenichi Handa <handa@m17n.org>
parents:
103184
diff
changeset
|
233 if (CONSP (chars)) |
c4706100caab
(xfont_chars_supported, xfont_supported_scripts): New
Kenichi Handa <handa@m17n.org>
parents:
103184
diff
changeset
|
234 { |
c4706100caab
(xfont_chars_supported, xfont_supported_scripts): New
Kenichi Handa <handa@m17n.org>
parents:
103184
diff
changeset
|
235 for (; CONSP (chars); chars = XCDR (chars)) |
c4706100caab
(xfont_chars_supported, xfont_supported_scripts): New
Kenichi Handa <handa@m17n.org>
parents:
103184
diff
changeset
|
236 { |
c4706100caab
(xfont_chars_supported, xfont_supported_scripts): New
Kenichi Handa <handa@m17n.org>
parents:
103184
diff
changeset
|
237 int c = XINT (XCAR (chars)); |
c4706100caab
(xfont_chars_supported, xfont_supported_scripts): New
Kenichi Handa <handa@m17n.org>
parents:
103184
diff
changeset
|
238 unsigned code = ENCODE_CHAR (charset, c); |
c4706100caab
(xfont_chars_supported, xfont_supported_scripts): New
Kenichi Handa <handa@m17n.org>
parents:
103184
diff
changeset
|
239 XChar2b char2b; |
c4706100caab
(xfont_chars_supported, xfont_supported_scripts): New
Kenichi Handa <handa@m17n.org>
parents:
103184
diff
changeset
|
240 |
c4706100caab
(xfont_chars_supported, xfont_supported_scripts): New
Kenichi Handa <handa@m17n.org>
parents:
103184
diff
changeset
|
241 if (code == CHARSET_INVALID_CODE (charset)) |
c4706100caab
(xfont_chars_supported, xfont_supported_scripts): New
Kenichi Handa <handa@m17n.org>
parents:
103184
diff
changeset
|
242 break; |
c4706100caab
(xfont_chars_supported, xfont_supported_scripts): New
Kenichi Handa <handa@m17n.org>
parents:
103184
diff
changeset
|
243 if (! xfont) |
c4706100caab
(xfont_chars_supported, xfont_supported_scripts): New
Kenichi Handa <handa@m17n.org>
parents:
103184
diff
changeset
|
244 continue; |
c4706100caab
(xfont_chars_supported, xfont_supported_scripts): New
Kenichi Handa <handa@m17n.org>
parents:
103184
diff
changeset
|
245 if (code >= 0x10000) |
c4706100caab
(xfont_chars_supported, xfont_supported_scripts): New
Kenichi Handa <handa@m17n.org>
parents:
103184
diff
changeset
|
246 break; |
c4706100caab
(xfont_chars_supported, xfont_supported_scripts): New
Kenichi Handa <handa@m17n.org>
parents:
103184
diff
changeset
|
247 char2b.byte1 = code >> 8; |
c4706100caab
(xfont_chars_supported, xfont_supported_scripts): New
Kenichi Handa <handa@m17n.org>
parents:
103184
diff
changeset
|
248 char2b.byte2 = code & 0xFF; |
c4706100caab
(xfont_chars_supported, xfont_supported_scripts): New
Kenichi Handa <handa@m17n.org>
parents:
103184
diff
changeset
|
249 if (! xfont_get_pcm (xfont, &char2b)) |
c4706100caab
(xfont_chars_supported, xfont_supported_scripts): New
Kenichi Handa <handa@m17n.org>
parents:
103184
diff
changeset
|
250 break; |
c4706100caab
(xfont_chars_supported, xfont_supported_scripts): New
Kenichi Handa <handa@m17n.org>
parents:
103184
diff
changeset
|
251 } |
c4706100caab
(xfont_chars_supported, xfont_supported_scripts): New
Kenichi Handa <handa@m17n.org>
parents:
103184
diff
changeset
|
252 return (NILP (chars)); |
c4706100caab
(xfont_chars_supported, xfont_supported_scripts): New
Kenichi Handa <handa@m17n.org>
parents:
103184
diff
changeset
|
253 } |
c4706100caab
(xfont_chars_supported, xfont_supported_scripts): New
Kenichi Handa <handa@m17n.org>
parents:
103184
diff
changeset
|
254 else if (VECTORP (chars)) |
c4706100caab
(xfont_chars_supported, xfont_supported_scripts): New
Kenichi Handa <handa@m17n.org>
parents:
103184
diff
changeset
|
255 { |
c4706100caab
(xfont_chars_supported, xfont_supported_scripts): New
Kenichi Handa <handa@m17n.org>
parents:
103184
diff
changeset
|
256 int i; |
c4706100caab
(xfont_chars_supported, xfont_supported_scripts): New
Kenichi Handa <handa@m17n.org>
parents:
103184
diff
changeset
|
257 |
c4706100caab
(xfont_chars_supported, xfont_supported_scripts): New
Kenichi Handa <handa@m17n.org>
parents:
103184
diff
changeset
|
258 for (i = ASIZE (chars) - 1; i >= 0; i--) |
c4706100caab
(xfont_chars_supported, xfont_supported_scripts): New
Kenichi Handa <handa@m17n.org>
parents:
103184
diff
changeset
|
259 { |
c4706100caab
(xfont_chars_supported, xfont_supported_scripts): New
Kenichi Handa <handa@m17n.org>
parents:
103184
diff
changeset
|
260 int c = XINT (AREF (chars, i)); |
c4706100caab
(xfont_chars_supported, xfont_supported_scripts): New
Kenichi Handa <handa@m17n.org>
parents:
103184
diff
changeset
|
261 unsigned code = ENCODE_CHAR (charset, c); |
c4706100caab
(xfont_chars_supported, xfont_supported_scripts): New
Kenichi Handa <handa@m17n.org>
parents:
103184
diff
changeset
|
262 XChar2b char2b; |
c4706100caab
(xfont_chars_supported, xfont_supported_scripts): New
Kenichi Handa <handa@m17n.org>
parents:
103184
diff
changeset
|
263 |
c4706100caab
(xfont_chars_supported, xfont_supported_scripts): New
Kenichi Handa <handa@m17n.org>
parents:
103184
diff
changeset
|
264 if (code == CHARSET_INVALID_CODE (charset)) |
c4706100caab
(xfont_chars_supported, xfont_supported_scripts): New
Kenichi Handa <handa@m17n.org>
parents:
103184
diff
changeset
|
265 continue; |
c4706100caab
(xfont_chars_supported, xfont_supported_scripts): New
Kenichi Handa <handa@m17n.org>
parents:
103184
diff
changeset
|
266 if (! xfont) |
c4706100caab
(xfont_chars_supported, xfont_supported_scripts): New
Kenichi Handa <handa@m17n.org>
parents:
103184
diff
changeset
|
267 break; |
c4706100caab
(xfont_chars_supported, xfont_supported_scripts): New
Kenichi Handa <handa@m17n.org>
parents:
103184
diff
changeset
|
268 if (code >= 0x10000) |
c4706100caab
(xfont_chars_supported, xfont_supported_scripts): New
Kenichi Handa <handa@m17n.org>
parents:
103184
diff
changeset
|
269 continue; |
c4706100caab
(xfont_chars_supported, xfont_supported_scripts): New
Kenichi Handa <handa@m17n.org>
parents:
103184
diff
changeset
|
270 char2b.byte1 = code >> 8; |
c4706100caab
(xfont_chars_supported, xfont_supported_scripts): New
Kenichi Handa <handa@m17n.org>
parents:
103184
diff
changeset
|
271 char2b.byte2 = code & 0xFF; |
c4706100caab
(xfont_chars_supported, xfont_supported_scripts): New
Kenichi Handa <handa@m17n.org>
parents:
103184
diff
changeset
|
272 if (xfont_get_pcm (xfont, &char2b)) |
c4706100caab
(xfont_chars_supported, xfont_supported_scripts): New
Kenichi Handa <handa@m17n.org>
parents:
103184
diff
changeset
|
273 break; |
c4706100caab
(xfont_chars_supported, xfont_supported_scripts): New
Kenichi Handa <handa@m17n.org>
parents:
103184
diff
changeset
|
274 } |
c4706100caab
(xfont_chars_supported, xfont_supported_scripts): New
Kenichi Handa <handa@m17n.org>
parents:
103184
diff
changeset
|
275 return (i >= 0); |
c4706100caab
(xfont_chars_supported, xfont_supported_scripts): New
Kenichi Handa <handa@m17n.org>
parents:
103184
diff
changeset
|
276 } |
c4706100caab
(xfont_chars_supported, xfont_supported_scripts): New
Kenichi Handa <handa@m17n.org>
parents:
103184
diff
changeset
|
277 return 0; |
c4706100caab
(xfont_chars_supported, xfont_supported_scripts): New
Kenichi Handa <handa@m17n.org>
parents:
103184
diff
changeset
|
278 } |
c4706100caab
(xfont_chars_supported, xfont_supported_scripts): New
Kenichi Handa <handa@m17n.org>
parents:
103184
diff
changeset
|
279 |
c4706100caab
(xfont_chars_supported, xfont_supported_scripts): New
Kenichi Handa <handa@m17n.org>
parents:
103184
diff
changeset
|
280 /* A hash table recoding which font supports which scritps. Each key |
c4706100caab
(xfont_chars_supported, xfont_supported_scripts): New
Kenichi Handa <handa@m17n.org>
parents:
103184
diff
changeset
|
281 is a vector of characteristic font propertis FOUNDRY to WIDTH and |
c4706100caab
(xfont_chars_supported, xfont_supported_scripts): New
Kenichi Handa <handa@m17n.org>
parents:
103184
diff
changeset
|
282 ADDSTYLE, and each value is a list of script symbols. |
c4706100caab
(xfont_chars_supported, xfont_supported_scripts): New
Kenichi Handa <handa@m17n.org>
parents:
103184
diff
changeset
|
283 |
c4706100caab
(xfont_chars_supported, xfont_supported_scripts): New
Kenichi Handa <handa@m17n.org>
parents:
103184
diff
changeset
|
284 We assume that fonts that have the same value in the above |
c4706100caab
(xfont_chars_supported, xfont_supported_scripts): New
Kenichi Handa <handa@m17n.org>
parents:
103184
diff
changeset
|
285 properties supports the same set of characters on all displays. */ |
c4706100caab
(xfont_chars_supported, xfont_supported_scripts): New
Kenichi Handa <handa@m17n.org>
parents:
103184
diff
changeset
|
286 |
c4706100caab
(xfont_chars_supported, xfont_supported_scripts): New
Kenichi Handa <handa@m17n.org>
parents:
103184
diff
changeset
|
287 static Lisp_Object xfont_scripts_cache; |
c4706100caab
(xfont_chars_supported, xfont_supported_scripts): New
Kenichi Handa <handa@m17n.org>
parents:
103184
diff
changeset
|
288 |
c4706100caab
(xfont_chars_supported, xfont_supported_scripts): New
Kenichi Handa <handa@m17n.org>
parents:
103184
diff
changeset
|
289 /* Re-usable vector to store characteristic font properites. */ |
c4706100caab
(xfont_chars_supported, xfont_supported_scripts): New
Kenichi Handa <handa@m17n.org>
parents:
103184
diff
changeset
|
290 static Lisp_Object xfont_scratch_props; |
c4706100caab
(xfont_chars_supported, xfont_supported_scripts): New
Kenichi Handa <handa@m17n.org>
parents:
103184
diff
changeset
|
291 |
c4706100caab
(xfont_chars_supported, xfont_supported_scripts): New
Kenichi Handa <handa@m17n.org>
parents:
103184
diff
changeset
|
292 extern Lisp_Object Qlatin; |
c4706100caab
(xfont_chars_supported, xfont_supported_scripts): New
Kenichi Handa <handa@m17n.org>
parents:
103184
diff
changeset
|
293 |
c4706100caab
(xfont_chars_supported, xfont_supported_scripts): New
Kenichi Handa <handa@m17n.org>
parents:
103184
diff
changeset
|
294 /* Return a list of scripts supported by the font of FONTNAME whose |
c4706100caab
(xfont_chars_supported, xfont_supported_scripts): New
Kenichi Handa <handa@m17n.org>
parents:
103184
diff
changeset
|
295 characteristic properties are in PROPS and whose encoding charset |
c4706100caab
(xfont_chars_supported, xfont_supported_scripts): New
Kenichi Handa <handa@m17n.org>
parents:
103184
diff
changeset
|
296 is ENCODING. A caller must call BLOCK_INPUT in advance. */ |
94940
061d44df20b7
Include <stdlib.h> and "ccl.h".
Kenichi Handa <handa@m17n.org>
parents:
92185
diff
changeset
|
297 |
90400 | 298 static Lisp_Object |
103270
c4706100caab
(xfont_chars_supported, xfont_supported_scripts): New
Kenichi Handa <handa@m17n.org>
parents:
103184
diff
changeset
|
299 xfont_supported_scripts (Display *display, char *fontname, Lisp_Object props, |
c4706100caab
(xfont_chars_supported, xfont_supported_scripts): New
Kenichi Handa <handa@m17n.org>
parents:
103184
diff
changeset
|
300 struct charset *encoding) |
c4706100caab
(xfont_chars_supported, xfont_supported_scripts): New
Kenichi Handa <handa@m17n.org>
parents:
103184
diff
changeset
|
301 { |
c4706100caab
(xfont_chars_supported, xfont_supported_scripts): New
Kenichi Handa <handa@m17n.org>
parents:
103184
diff
changeset
|
302 Lisp_Object scripts; |
c4706100caab
(xfont_chars_supported, xfont_supported_scripts): New
Kenichi Handa <handa@m17n.org>
parents:
103184
diff
changeset
|
303 |
c4706100caab
(xfont_chars_supported, xfont_supported_scripts): New
Kenichi Handa <handa@m17n.org>
parents:
103184
diff
changeset
|
304 /* Two special cases to avoid opening rather big fonts. */ |
c4706100caab
(xfont_chars_supported, xfont_supported_scripts): New
Kenichi Handa <handa@m17n.org>
parents:
103184
diff
changeset
|
305 if (EQ (AREF (props, 2), Qja)) |
c4706100caab
(xfont_chars_supported, xfont_supported_scripts): New
Kenichi Handa <handa@m17n.org>
parents:
103184
diff
changeset
|
306 return Fcons (intern ("kana"), Fcons (intern ("han"), Qnil)); |
c4706100caab
(xfont_chars_supported, xfont_supported_scripts): New
Kenichi Handa <handa@m17n.org>
parents:
103184
diff
changeset
|
307 if (EQ (AREF (props, 2), Qko)) |
c4706100caab
(xfont_chars_supported, xfont_supported_scripts): New
Kenichi Handa <handa@m17n.org>
parents:
103184
diff
changeset
|
308 return Fcons (intern ("hangul"), Qnil); |
c4706100caab
(xfont_chars_supported, xfont_supported_scripts): New
Kenichi Handa <handa@m17n.org>
parents:
103184
diff
changeset
|
309 scripts = Fgethash (props, xfont_scripts_cache, Qt); |
c4706100caab
(xfont_chars_supported, xfont_supported_scripts): New
Kenichi Handa <handa@m17n.org>
parents:
103184
diff
changeset
|
310 if (EQ (scripts, Qt)) |
c4706100caab
(xfont_chars_supported, xfont_supported_scripts): New
Kenichi Handa <handa@m17n.org>
parents:
103184
diff
changeset
|
311 { |
c4706100caab
(xfont_chars_supported, xfont_supported_scripts): New
Kenichi Handa <handa@m17n.org>
parents:
103184
diff
changeset
|
312 XFontStruct *xfont; |
c4706100caab
(xfont_chars_supported, xfont_supported_scripts): New
Kenichi Handa <handa@m17n.org>
parents:
103184
diff
changeset
|
313 Lisp_Object val; |
c4706100caab
(xfont_chars_supported, xfont_supported_scripts): New
Kenichi Handa <handa@m17n.org>
parents:
103184
diff
changeset
|
314 |
c4706100caab
(xfont_chars_supported, xfont_supported_scripts): New
Kenichi Handa <handa@m17n.org>
parents:
103184
diff
changeset
|
315 scripts = Qnil; |
c4706100caab
(xfont_chars_supported, xfont_supported_scripts): New
Kenichi Handa <handa@m17n.org>
parents:
103184
diff
changeset
|
316 xfont = XLoadQueryFont (display, fontname); |
c4706100caab
(xfont_chars_supported, xfont_supported_scripts): New
Kenichi Handa <handa@m17n.org>
parents:
103184
diff
changeset
|
317 if (xfont) |
c4706100caab
(xfont_chars_supported, xfont_supported_scripts): New
Kenichi Handa <handa@m17n.org>
parents:
103184
diff
changeset
|
318 { |
c4706100caab
(xfont_chars_supported, xfont_supported_scripts): New
Kenichi Handa <handa@m17n.org>
parents:
103184
diff
changeset
|
319 if (xfont->per_char) |
c4706100caab
(xfont_chars_supported, xfont_supported_scripts): New
Kenichi Handa <handa@m17n.org>
parents:
103184
diff
changeset
|
320 { |
c4706100caab
(xfont_chars_supported, xfont_supported_scripts): New
Kenichi Handa <handa@m17n.org>
parents:
103184
diff
changeset
|
321 for (val = Vscript_representative_chars; CONSP (val); |
c4706100caab
(xfont_chars_supported, xfont_supported_scripts): New
Kenichi Handa <handa@m17n.org>
parents:
103184
diff
changeset
|
322 val = XCDR (val)) |
c4706100caab
(xfont_chars_supported, xfont_supported_scripts): New
Kenichi Handa <handa@m17n.org>
parents:
103184
diff
changeset
|
323 if (CONSP (XCAR (val)) && SYMBOLP (XCAR (XCAR (val)))) |
c4706100caab
(xfont_chars_supported, xfont_supported_scripts): New
Kenichi Handa <handa@m17n.org>
parents:
103184
diff
changeset
|
324 { |
c4706100caab
(xfont_chars_supported, xfont_supported_scripts): New
Kenichi Handa <handa@m17n.org>
parents:
103184
diff
changeset
|
325 Lisp_Object script = XCAR (XCAR (val)); |
c4706100caab
(xfont_chars_supported, xfont_supported_scripts): New
Kenichi Handa <handa@m17n.org>
parents:
103184
diff
changeset
|
326 Lisp_Object chars = XCDR (XCAR (val)); |
c4706100caab
(xfont_chars_supported, xfont_supported_scripts): New
Kenichi Handa <handa@m17n.org>
parents:
103184
diff
changeset
|
327 |
c4706100caab
(xfont_chars_supported, xfont_supported_scripts): New
Kenichi Handa <handa@m17n.org>
parents:
103184
diff
changeset
|
328 if (xfont_chars_supported (chars, xfont, encoding, NULL)) |
c4706100caab
(xfont_chars_supported, xfont_supported_scripts): New
Kenichi Handa <handa@m17n.org>
parents:
103184
diff
changeset
|
329 scripts = Fcons (script, scripts); |
c4706100caab
(xfont_chars_supported, xfont_supported_scripts): New
Kenichi Handa <handa@m17n.org>
parents:
103184
diff
changeset
|
330 } |
c4706100caab
(xfont_chars_supported, xfont_supported_scripts): New
Kenichi Handa <handa@m17n.org>
parents:
103184
diff
changeset
|
331 } |
c4706100caab
(xfont_chars_supported, xfont_supported_scripts): New
Kenichi Handa <handa@m17n.org>
parents:
103184
diff
changeset
|
332 XFreeFont (display, xfont); |
c4706100caab
(xfont_chars_supported, xfont_supported_scripts): New
Kenichi Handa <handa@m17n.org>
parents:
103184
diff
changeset
|
333 } |
c4706100caab
(xfont_chars_supported, xfont_supported_scripts): New
Kenichi Handa <handa@m17n.org>
parents:
103184
diff
changeset
|
334 if (EQ (AREF (props, 3), Qiso10646_1) |
c4706100caab
(xfont_chars_supported, xfont_supported_scripts): New
Kenichi Handa <handa@m17n.org>
parents:
103184
diff
changeset
|
335 && NILP (Fmemq (Qlatin, scripts))) |
c4706100caab
(xfont_chars_supported, xfont_supported_scripts): New
Kenichi Handa <handa@m17n.org>
parents:
103184
diff
changeset
|
336 scripts = Fcons (Qlatin, scripts); |
c4706100caab
(xfont_chars_supported, xfont_supported_scripts): New
Kenichi Handa <handa@m17n.org>
parents:
103184
diff
changeset
|
337 Fputhash (Fcopy_sequence (props), scripts, xfont_scripts_cache); |
c4706100caab
(xfont_chars_supported, xfont_supported_scripts): New
Kenichi Handa <handa@m17n.org>
parents:
103184
diff
changeset
|
338 } |
c4706100caab
(xfont_chars_supported, xfont_supported_scripts): New
Kenichi Handa <handa@m17n.org>
parents:
103184
diff
changeset
|
339 return scripts; |
c4706100caab
(xfont_chars_supported, xfont_supported_scripts): New
Kenichi Handa <handa@m17n.org>
parents:
103184
diff
changeset
|
340 } |
c4706100caab
(xfont_chars_supported, xfont_supported_scripts): New
Kenichi Handa <handa@m17n.org>
parents:
103184
diff
changeset
|
341 |
c4706100caab
(xfont_chars_supported, xfont_supported_scripts): New
Kenichi Handa <handa@m17n.org>
parents:
103184
diff
changeset
|
342 extern Lisp_Object Vscalable_fonts_allowed; |
c4706100caab
(xfont_chars_supported, xfont_supported_scripts): New
Kenichi Handa <handa@m17n.org>
parents:
103184
diff
changeset
|
343 |
c4706100caab
(xfont_chars_supported, xfont_supported_scripts): New
Kenichi Handa <handa@m17n.org>
parents:
103184
diff
changeset
|
344 static Lisp_Object |
c4706100caab
(xfont_chars_supported, xfont_supported_scripts): New
Kenichi Handa <handa@m17n.org>
parents:
103184
diff
changeset
|
345 xfont_list_pattern (Display *display, char *pattern, |
c4706100caab
(xfont_chars_supported, xfont_supported_scripts): New
Kenichi Handa <handa@m17n.org>
parents:
103184
diff
changeset
|
346 Lisp_Object registry, Lisp_Object script) |
90400 | 347 { |
90501
2ef165ebcc7d
(xfont_query_font): Adjusted for the change of
Kenichi Handa <handa@m17n.org>
parents:
90461
diff
changeset
|
348 Lisp_Object list = Qnil; |
103270
c4706100caab
(xfont_chars_supported, xfont_supported_scripts): New
Kenichi Handa <handa@m17n.org>
parents:
103184
diff
changeset
|
349 Lisp_Object chars = Qnil; |
c4706100caab
(xfont_chars_supported, xfont_supported_scripts): New
Kenichi Handa <handa@m17n.org>
parents:
103184
diff
changeset
|
350 struct charset *encoding, *repertory = NULL; |
90501
2ef165ebcc7d
(xfont_query_font): Adjusted for the change of
Kenichi Handa <handa@m17n.org>
parents:
90461
diff
changeset
|
351 int i, limit, num_fonts; |
2ef165ebcc7d
(xfont_query_font): Adjusted for the change of
Kenichi Handa <handa@m17n.org>
parents:
90461
diff
changeset
|
352 char **names; |
100553
e42552b2edda
(xfont_decode_coding_xlfd): New function.
Kenichi Handa <handa@m17n.org>
parents:
97327
diff
changeset
|
353 /* Large enough to decode the longest XLFD (255 bytes). */ |
e42552b2edda
(xfont_decode_coding_xlfd): New function.
Kenichi Handa <handa@m17n.org>
parents:
97327
diff
changeset
|
354 char buf[512]; |
90400 | 355 |
103270
c4706100caab
(xfont_chars_supported, xfont_supported_scripts): New
Kenichi Handa <handa@m17n.org>
parents:
103184
diff
changeset
|
356 if (! NILP (registry) |
c4706100caab
(xfont_chars_supported, xfont_supported_scripts): New
Kenichi Handa <handa@m17n.org>
parents:
103184
diff
changeset
|
357 && font_registry_charsets (registry, &encoding, &repertory) < 0) |
c4706100caab
(xfont_chars_supported, xfont_supported_scripts): New
Kenichi Handa <handa@m17n.org>
parents:
103184
diff
changeset
|
358 /* Unknown REGISTRY, not supported. */ |
c4706100caab
(xfont_chars_supported, xfont_supported_scripts): New
Kenichi Handa <handa@m17n.org>
parents:
103184
diff
changeset
|
359 return Qnil; |
c4706100caab
(xfont_chars_supported, xfont_supported_scripts): New
Kenichi Handa <handa@m17n.org>
parents:
103184
diff
changeset
|
360 if (! NILP (script)) |
c4706100caab
(xfont_chars_supported, xfont_supported_scripts): New
Kenichi Handa <handa@m17n.org>
parents:
103184
diff
changeset
|
361 { |
c4706100caab
(xfont_chars_supported, xfont_supported_scripts): New
Kenichi Handa <handa@m17n.org>
parents:
103184
diff
changeset
|
362 chars = assq_no_quit (script, Vscript_representative_chars); |
c4706100caab
(xfont_chars_supported, xfont_supported_scripts): New
Kenichi Handa <handa@m17n.org>
parents:
103184
diff
changeset
|
363 if (NILP (chars)) |
c4706100caab
(xfont_chars_supported, xfont_supported_scripts): New
Kenichi Handa <handa@m17n.org>
parents:
103184
diff
changeset
|
364 /* We can't tell whether or not a font supports SCRIPT. */ |
c4706100caab
(xfont_chars_supported, xfont_supported_scripts): New
Kenichi Handa <handa@m17n.org>
parents:
103184
diff
changeset
|
365 return Qnil; |
c4706100caab
(xfont_chars_supported, xfont_supported_scripts): New
Kenichi Handa <handa@m17n.org>
parents:
103184
diff
changeset
|
366 chars = XCDR (chars); |
c4706100caab
(xfont_chars_supported, xfont_supported_scripts): New
Kenichi Handa <handa@m17n.org>
parents:
103184
diff
changeset
|
367 if (repertory) |
c4706100caab
(xfont_chars_supported, xfont_supported_scripts): New
Kenichi Handa <handa@m17n.org>
parents:
103184
diff
changeset
|
368 { |
c4706100caab
(xfont_chars_supported, xfont_supported_scripts): New
Kenichi Handa <handa@m17n.org>
parents:
103184
diff
changeset
|
369 if (! xfont_chars_supported (chars, NULL, encoding, repertory)) |
c4706100caab
(xfont_chars_supported, xfont_supported_scripts): New
Kenichi Handa <handa@m17n.org>
parents:
103184
diff
changeset
|
370 return Qnil; |
c4706100caab
(xfont_chars_supported, xfont_supported_scripts): New
Kenichi Handa <handa@m17n.org>
parents:
103184
diff
changeset
|
371 script = Qnil; |
c4706100caab
(xfont_chars_supported, xfont_supported_scripts): New
Kenichi Handa <handa@m17n.org>
parents:
103184
diff
changeset
|
372 } |
c4706100caab
(xfont_chars_supported, xfont_supported_scripts): New
Kenichi Handa <handa@m17n.org>
parents:
103184
diff
changeset
|
373 } |
c4706100caab
(xfont_chars_supported, xfont_supported_scripts): New
Kenichi Handa <handa@m17n.org>
parents:
103184
diff
changeset
|
374 |
90400 | 375 BLOCK_INPUT; |
90501
2ef165ebcc7d
(xfont_query_font): Adjusted for the change of
Kenichi Handa <handa@m17n.org>
parents:
90461
diff
changeset
|
376 x_catch_errors (display); |
90400 | 377 |
90501
2ef165ebcc7d
(xfont_query_font): Adjusted for the change of
Kenichi Handa <handa@m17n.org>
parents:
90461
diff
changeset
|
378 for (limit = 512; ; limit *= 2) |
90400 | 379 { |
90501
2ef165ebcc7d
(xfont_query_font): Adjusted for the change of
Kenichi Handa <handa@m17n.org>
parents:
90461
diff
changeset
|
380 names = XListFonts (display, pattern, limit, &num_fonts); |
2ef165ebcc7d
(xfont_query_font): Adjusted for the change of
Kenichi Handa <handa@m17n.org>
parents:
90461
diff
changeset
|
381 if (x_had_errors_p (display)) |
90400 | 382 { |
383 /* This error is perhaps due to insufficient memory on X | |
384 server. Let's just ignore it. */ | |
90501
2ef165ebcc7d
(xfont_query_font): Adjusted for the change of
Kenichi Handa <handa@m17n.org>
parents:
90461
diff
changeset
|
385 x_clear_errors (display); |
2ef165ebcc7d
(xfont_query_font): Adjusted for the change of
Kenichi Handa <handa@m17n.org>
parents:
90461
diff
changeset
|
386 num_fonts = 0; |
2ef165ebcc7d
(xfont_query_font): Adjusted for the change of
Kenichi Handa <handa@m17n.org>
parents:
90461
diff
changeset
|
387 break; |
90400 | 388 } |
90501
2ef165ebcc7d
(xfont_query_font): Adjusted for the change of
Kenichi Handa <handa@m17n.org>
parents:
90461
diff
changeset
|
389 if (num_fonts < limit) |
2ef165ebcc7d
(xfont_query_font): Adjusted for the change of
Kenichi Handa <handa@m17n.org>
parents:
90461
diff
changeset
|
390 break; |
2ef165ebcc7d
(xfont_query_font): Adjusted for the change of
Kenichi Handa <handa@m17n.org>
parents:
90461
diff
changeset
|
391 XFreeFontNames (names); |
2ef165ebcc7d
(xfont_query_font): Adjusted for the change of
Kenichi Handa <handa@m17n.org>
parents:
90461
diff
changeset
|
392 } |
2ef165ebcc7d
(xfont_query_font): Adjusted for the change of
Kenichi Handa <handa@m17n.org>
parents:
90461
diff
changeset
|
393 |
94940
061d44df20b7
Include <stdlib.h> and "ccl.h".
Kenichi Handa <handa@m17n.org>
parents:
92185
diff
changeset
|
394 if (num_fonts > 0) |
90501
2ef165ebcc7d
(xfont_query_font): Adjusted for the change of
Kenichi Handa <handa@m17n.org>
parents:
90461
diff
changeset
|
395 { |
94940
061d44df20b7
Include <stdlib.h> and "ccl.h".
Kenichi Handa <handa@m17n.org>
parents:
92185
diff
changeset
|
396 char **indices = alloca (sizeof (char *) * num_fonts); |
103274
0e85983c95eb
(xfont_list_pattern): Don't initialize xfont_scripts_cache
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
103270
diff
changeset
|
397 Lisp_Object *props = XVECTOR (xfont_scratch_props)->contents; |
103270
c4706100caab
(xfont_chars_supported, xfont_supported_scripts): New
Kenichi Handa <handa@m17n.org>
parents:
103184
diff
changeset
|
398 Lisp_Object scripts = Qnil; |
90501
2ef165ebcc7d
(xfont_query_font): Adjusted for the change of
Kenichi Handa <handa@m17n.org>
parents:
90461
diff
changeset
|
399 |
103274
0e85983c95eb
(xfont_list_pattern): Don't initialize xfont_scripts_cache
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
103270
diff
changeset
|
400 for (i = 0; i < ASIZE (xfont_scratch_props); i++) |
0e85983c95eb
(xfont_list_pattern): Don't initialize xfont_scripts_cache
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
103270
diff
changeset
|
401 props[i] = Qnil; |
94940
061d44df20b7
Include <stdlib.h> and "ccl.h".
Kenichi Handa <handa@m17n.org>
parents:
92185
diff
changeset
|
402 for (i = 0; i < num_fonts; i++) |
061d44df20b7
Include <stdlib.h> and "ccl.h".
Kenichi Handa <handa@m17n.org>
parents:
92185
diff
changeset
|
403 indices[i] = names[i]; |
061d44df20b7
Include <stdlib.h> and "ccl.h".
Kenichi Handa <handa@m17n.org>
parents:
92185
diff
changeset
|
404 qsort (indices, num_fonts, sizeof (char *), compare_font_names); |
90501
2ef165ebcc7d
(xfont_query_font): Adjusted for the change of
Kenichi Handa <handa@m17n.org>
parents:
90461
diff
changeset
|
405 |
94940
061d44df20b7
Include <stdlib.h> and "ccl.h".
Kenichi Handa <handa@m17n.org>
parents:
92185
diff
changeset
|
406 for (i = 0; i < num_fonts; i++) |
90400 | 407 { |
94940
061d44df20b7
Include <stdlib.h> and "ccl.h".
Kenichi Handa <handa@m17n.org>
parents:
92185
diff
changeset
|
408 Lisp_Object entity; |
90501
2ef165ebcc7d
(xfont_query_font): Adjusted for the change of
Kenichi Handa <handa@m17n.org>
parents:
90461
diff
changeset
|
409 |
95222
005a1655f51e
* dispextern.h, xfaces.c (xstrcasecmp): Renamed from xstricmp.
Jason Rumney <jasonr@gnu.org>
parents:
95202
diff
changeset
|
410 if (i > 0 && xstrcasecmp (indices[i - 1], indices[i]) == 0) |
90501
2ef165ebcc7d
(xfont_query_font): Adjusted for the change of
Kenichi Handa <handa@m17n.org>
parents:
90461
diff
changeset
|
411 continue; |
94940
061d44df20b7
Include <stdlib.h> and "ccl.h".
Kenichi Handa <handa@m17n.org>
parents:
92185
diff
changeset
|
412 entity = font_make_entity (); |
103270
c4706100caab
(xfont_chars_supported, xfont_supported_scripts): New
Kenichi Handa <handa@m17n.org>
parents:
103184
diff
changeset
|
413 xfont_decode_coding_xlfd (indices[i], -1, buf); |
104090
1d6a73f0d113
(xfont_list_pattern): Don't ignore the return value of
Kenichi Handa <handa@m17n.org>
parents:
103543
diff
changeset
|
414 if (font_parse_xlfd (buf, entity) < 0) |
1d6a73f0d113
(xfont_list_pattern): Don't ignore the return value of
Kenichi Handa <handa@m17n.org>
parents:
103543
diff
changeset
|
415 continue; |
94940
061d44df20b7
Include <stdlib.h> and "ccl.h".
Kenichi Handa <handa@m17n.org>
parents:
92185
diff
changeset
|
416 ASET (entity, FONT_TYPE_INDEX, Qx); |
103270
c4706100caab
(xfont_chars_supported, xfont_supported_scripts): New
Kenichi Handa <handa@m17n.org>
parents:
103184
diff
changeset
|
417 /* Avoid auto-scaled fonts. */ |
104090
1d6a73f0d113
(xfont_list_pattern): Don't ignore the return value of
Kenichi Handa <handa@m17n.org>
parents:
103543
diff
changeset
|
418 if (INTEGERP (AREF (entity, FONT_DPI_INDEX)) |
1d6a73f0d113
(xfont_list_pattern): Don't ignore the return value of
Kenichi Handa <handa@m17n.org>
parents:
103543
diff
changeset
|
419 && INTEGERP (AREF (entity, FONT_AVGWIDTH_INDEX)) |
1d6a73f0d113
(xfont_list_pattern): Don't ignore the return value of
Kenichi Handa <handa@m17n.org>
parents:
103543
diff
changeset
|
420 && XINT (AREF (entity, FONT_DPI_INDEX)) != 0 |
103270
c4706100caab
(xfont_chars_supported, xfont_supported_scripts): New
Kenichi Handa <handa@m17n.org>
parents:
103184
diff
changeset
|
421 && XINT (AREF (entity, FONT_AVGWIDTH_INDEX)) == 0) |
c4706100caab
(xfont_chars_supported, xfont_supported_scripts): New
Kenichi Handa <handa@m17n.org>
parents:
103184
diff
changeset
|
422 continue; |
c4706100caab
(xfont_chars_supported, xfont_supported_scripts): New
Kenichi Handa <handa@m17n.org>
parents:
103184
diff
changeset
|
423 /* Avoid not-allowed scalable fonts. */ |
c4706100caab
(xfont_chars_supported, xfont_supported_scripts): New
Kenichi Handa <handa@m17n.org>
parents:
103184
diff
changeset
|
424 if (NILP (Vscalable_fonts_allowed)) |
94940
061d44df20b7
Include <stdlib.h> and "ccl.h".
Kenichi Handa <handa@m17n.org>
parents:
92185
diff
changeset
|
425 { |
104090
1d6a73f0d113
(xfont_list_pattern): Don't ignore the return value of
Kenichi Handa <handa@m17n.org>
parents:
103543
diff
changeset
|
426 int size = 0; |
1d6a73f0d113
(xfont_list_pattern): Don't ignore the return value of
Kenichi Handa <handa@m17n.org>
parents:
103543
diff
changeset
|
427 |
1d6a73f0d113
(xfont_list_pattern): Don't ignore the return value of
Kenichi Handa <handa@m17n.org>
parents:
103543
diff
changeset
|
428 if (INTEGERP (AREF (entity, FONT_SIZE_INDEX))) |
1d6a73f0d113
(xfont_list_pattern): Don't ignore the return value of
Kenichi Handa <handa@m17n.org>
parents:
103543
diff
changeset
|
429 size = XINT (AREF (entity, FONT_SIZE_INDEX)); |
1d6a73f0d113
(xfont_list_pattern): Don't ignore the return value of
Kenichi Handa <handa@m17n.org>
parents:
103543
diff
changeset
|
430 else if (FLOATP (AREF (entity, FONT_SIZE_INDEX))) |
1d6a73f0d113
(xfont_list_pattern): Don't ignore the return value of
Kenichi Handa <handa@m17n.org>
parents:
103543
diff
changeset
|
431 size = XFLOAT_DATA (AREF (entity, FONT_SIZE_INDEX)); |
1d6a73f0d113
(xfont_list_pattern): Don't ignore the return value of
Kenichi Handa <handa@m17n.org>
parents:
103543
diff
changeset
|
432 if (size == 0) |
94940
061d44df20b7
Include <stdlib.h> and "ccl.h".
Kenichi Handa <handa@m17n.org>
parents:
92185
diff
changeset
|
433 continue; |
103270
c4706100caab
(xfont_chars_supported, xfont_supported_scripts): New
Kenichi Handa <handa@m17n.org>
parents:
103184
diff
changeset
|
434 } |
c4706100caab
(xfont_chars_supported, xfont_supported_scripts): New
Kenichi Handa <handa@m17n.org>
parents:
103184
diff
changeset
|
435 else if (CONSP (Vscalable_fonts_allowed)) |
c4706100caab
(xfont_chars_supported, xfont_supported_scripts): New
Kenichi Handa <handa@m17n.org>
parents:
103184
diff
changeset
|
436 { |
c4706100caab
(xfont_chars_supported, xfont_supported_scripts): New
Kenichi Handa <handa@m17n.org>
parents:
103184
diff
changeset
|
437 Lisp_Object tail, elt; |
90400 | 438 |
103270
c4706100caab
(xfont_chars_supported, xfont_supported_scripts): New
Kenichi Handa <handa@m17n.org>
parents:
103184
diff
changeset
|
439 for (tail = Vscalable_fonts_allowed; CONSP (tail); |
c4706100caab
(xfont_chars_supported, xfont_supported_scripts): New
Kenichi Handa <handa@m17n.org>
parents:
103184
diff
changeset
|
440 tail = XCDR (tail)) |
c4706100caab
(xfont_chars_supported, xfont_supported_scripts): New
Kenichi Handa <handa@m17n.org>
parents:
103184
diff
changeset
|
441 { |
c4706100caab
(xfont_chars_supported, xfont_supported_scripts): New
Kenichi Handa <handa@m17n.org>
parents:
103184
diff
changeset
|
442 elt = XCAR (tail); |
c4706100caab
(xfont_chars_supported, xfont_supported_scripts): New
Kenichi Handa <handa@m17n.org>
parents:
103184
diff
changeset
|
443 if (STRINGP (elt) |
c4706100caab
(xfont_chars_supported, xfont_supported_scripts): New
Kenichi Handa <handa@m17n.org>
parents:
103184
diff
changeset
|
444 && fast_c_string_match_ignore_case (elt, indices[i]) >= 0) |
c4706100caab
(xfont_chars_supported, xfont_supported_scripts): New
Kenichi Handa <handa@m17n.org>
parents:
103184
diff
changeset
|
445 break; |
94940
061d44df20b7
Include <stdlib.h> and "ccl.h".
Kenichi Handa <handa@m17n.org>
parents:
92185
diff
changeset
|
446 } |
103270
c4706100caab
(xfont_chars_supported, xfont_supported_scripts): New
Kenichi Handa <handa@m17n.org>
parents:
103184
diff
changeset
|
447 if (! CONSP (tail)) |
c4706100caab
(xfont_chars_supported, xfont_supported_scripts): New
Kenichi Handa <handa@m17n.org>
parents:
103184
diff
changeset
|
448 continue; |
94940
061d44df20b7
Include <stdlib.h> and "ccl.h".
Kenichi Handa <handa@m17n.org>
parents:
92185
diff
changeset
|
449 } |
90501
2ef165ebcc7d
(xfont_query_font): Adjusted for the change of
Kenichi Handa <handa@m17n.org>
parents:
90461
diff
changeset
|
450 |
104090
1d6a73f0d113
(xfont_list_pattern): Don't ignore the return value of
Kenichi Handa <handa@m17n.org>
parents:
103543
diff
changeset
|
451 /* Avoid fonts of invalid registry. */ |
1d6a73f0d113
(xfont_list_pattern): Don't ignore the return value of
Kenichi Handa <handa@m17n.org>
parents:
103543
diff
changeset
|
452 if (NILP (AREF (entity, FONT_REGISTRY_INDEX))) |
1d6a73f0d113
(xfont_list_pattern): Don't ignore the return value of
Kenichi Handa <handa@m17n.org>
parents:
103543
diff
changeset
|
453 continue; |
1d6a73f0d113
(xfont_list_pattern): Don't ignore the return value of
Kenichi Handa <handa@m17n.org>
parents:
103543
diff
changeset
|
454 |
103270
c4706100caab
(xfont_chars_supported, xfont_supported_scripts): New
Kenichi Handa <handa@m17n.org>
parents:
103184
diff
changeset
|
455 /* Update encoding and repertory if necessary. */ |
c4706100caab
(xfont_chars_supported, xfont_supported_scripts): New
Kenichi Handa <handa@m17n.org>
parents:
103184
diff
changeset
|
456 if (! EQ (registry, AREF (entity, FONT_REGISTRY_INDEX))) |
c4706100caab
(xfont_chars_supported, xfont_supported_scripts): New
Kenichi Handa <handa@m17n.org>
parents:
103184
diff
changeset
|
457 { |
c4706100caab
(xfont_chars_supported, xfont_supported_scripts): New
Kenichi Handa <handa@m17n.org>
parents:
103184
diff
changeset
|
458 registry = AREF (entity, FONT_REGISTRY_INDEX); |
c4706100caab
(xfont_chars_supported, xfont_supported_scripts): New
Kenichi Handa <handa@m17n.org>
parents:
103184
diff
changeset
|
459 if (font_registry_charsets (registry, &encoding, &repertory) < 0) |
c4706100caab
(xfont_chars_supported, xfont_supported_scripts): New
Kenichi Handa <handa@m17n.org>
parents:
103184
diff
changeset
|
460 encoding = NULL; |
c4706100caab
(xfont_chars_supported, xfont_supported_scripts): New
Kenichi Handa <handa@m17n.org>
parents:
103184
diff
changeset
|
461 } |
c4706100caab
(xfont_chars_supported, xfont_supported_scripts): New
Kenichi Handa <handa@m17n.org>
parents:
103184
diff
changeset
|
462 if (! encoding) |
c4706100caab
(xfont_chars_supported, xfont_supported_scripts): New
Kenichi Handa <handa@m17n.org>
parents:
103184
diff
changeset
|
463 /* Unknown REGISTRY, not supported. */ |
c4706100caab
(xfont_chars_supported, xfont_supported_scripts): New
Kenichi Handa <handa@m17n.org>
parents:
103184
diff
changeset
|
464 continue; |
c4706100caab
(xfont_chars_supported, xfont_supported_scripts): New
Kenichi Handa <handa@m17n.org>
parents:
103184
diff
changeset
|
465 if (repertory) |
c4706100caab
(xfont_chars_supported, xfont_supported_scripts): New
Kenichi Handa <handa@m17n.org>
parents:
103184
diff
changeset
|
466 { |
c4706100caab
(xfont_chars_supported, xfont_supported_scripts): New
Kenichi Handa <handa@m17n.org>
parents:
103184
diff
changeset
|
467 if (NILP (script) |
c4706100caab
(xfont_chars_supported, xfont_supported_scripts): New
Kenichi Handa <handa@m17n.org>
parents:
103184
diff
changeset
|
468 || xfont_chars_supported (chars, NULL, encoding, repertory)) |
c4706100caab
(xfont_chars_supported, xfont_supported_scripts): New
Kenichi Handa <handa@m17n.org>
parents:
103184
diff
changeset
|
469 list = Fcons (entity, list); |
c4706100caab
(xfont_chars_supported, xfont_supported_scripts): New
Kenichi Handa <handa@m17n.org>
parents:
103184
diff
changeset
|
470 continue; |
c4706100caab
(xfont_chars_supported, xfont_supported_scripts): New
Kenichi Handa <handa@m17n.org>
parents:
103184
diff
changeset
|
471 } |
c4706100caab
(xfont_chars_supported, xfont_supported_scripts): New
Kenichi Handa <handa@m17n.org>
parents:
103184
diff
changeset
|
472 if (memcmp (props, &(AREF (entity, FONT_FOUNDRY_INDEX)), |
c4706100caab
(xfont_chars_supported, xfont_supported_scripts): New
Kenichi Handa <handa@m17n.org>
parents:
103184
diff
changeset
|
473 sizeof (Lisp_Object) * 7) |
c4706100caab
(xfont_chars_supported, xfont_supported_scripts): New
Kenichi Handa <handa@m17n.org>
parents:
103184
diff
changeset
|
474 || ! EQ (AREF (entity, FONT_SPACING_INDEX), props[7])) |
c4706100caab
(xfont_chars_supported, xfont_supported_scripts): New
Kenichi Handa <handa@m17n.org>
parents:
103184
diff
changeset
|
475 { |
c4706100caab
(xfont_chars_supported, xfont_supported_scripts): New
Kenichi Handa <handa@m17n.org>
parents:
103184
diff
changeset
|
476 memcpy (props, &(AREF (entity, FONT_FOUNDRY_INDEX)), |
c4706100caab
(xfont_chars_supported, xfont_supported_scripts): New
Kenichi Handa <handa@m17n.org>
parents:
103184
diff
changeset
|
477 sizeof (Lisp_Object) * 7); |
c4706100caab
(xfont_chars_supported, xfont_supported_scripts): New
Kenichi Handa <handa@m17n.org>
parents:
103184
diff
changeset
|
478 props[7] = AREF (entity, FONT_SPACING_INDEX); |
c4706100caab
(xfont_chars_supported, xfont_supported_scripts): New
Kenichi Handa <handa@m17n.org>
parents:
103184
diff
changeset
|
479 scripts = xfont_supported_scripts (display, indices[i], |
c4706100caab
(xfont_chars_supported, xfont_supported_scripts): New
Kenichi Handa <handa@m17n.org>
parents:
103184
diff
changeset
|
480 xfont_scratch_props, encoding); |
c4706100caab
(xfont_chars_supported, xfont_supported_scripts): New
Kenichi Handa <handa@m17n.org>
parents:
103184
diff
changeset
|
481 } |
c4706100caab
(xfont_chars_supported, xfont_supported_scripts): New
Kenichi Handa <handa@m17n.org>
parents:
103184
diff
changeset
|
482 if (NILP (script) |
c4706100caab
(xfont_chars_supported, xfont_supported_scripts): New
Kenichi Handa <handa@m17n.org>
parents:
103184
diff
changeset
|
483 || ! NILP (Fmemq (script, scripts))) |
94940
061d44df20b7
Include <stdlib.h> and "ccl.h".
Kenichi Handa <handa@m17n.org>
parents:
92185
diff
changeset
|
484 list = Fcons (entity, list); |
90400 | 485 } |
95227
6df485632f28
(xfont_list_pattern): Free names returned from XListFonts.
Kenichi Handa <handa@m17n.org>
parents:
95222
diff
changeset
|
486 XFreeFontNames (names); |
90400 | 487 } |
488 | |
489 x_uncatch_errors (); | |
490 UNBLOCK_INPUT; | |
491 | |
103543
11b57e1bdb96
Change font_add_log to FONT_ADD_LOG.
Kenichi Handa <handa@m17n.org>
parents:
103274
diff
changeset
|
492 FONT_ADD_LOG ("xfont-list", build_string (pattern), list); |
90501
2ef165ebcc7d
(xfont_query_font): Adjusted for the change of
Kenichi Handa <handa@m17n.org>
parents:
90461
diff
changeset
|
493 return list; |
2ef165ebcc7d
(xfont_query_font): Adjusted for the change of
Kenichi Handa <handa@m17n.org>
parents:
90461
diff
changeset
|
494 } |
90400 | 495 |
90501
2ef165ebcc7d
(xfont_query_font): Adjusted for the change of
Kenichi Handa <handa@m17n.org>
parents:
90461
diff
changeset
|
496 static Lisp_Object |
2ef165ebcc7d
(xfont_query_font): Adjusted for the change of
Kenichi Handa <handa@m17n.org>
parents:
90461
diff
changeset
|
497 xfont_list (frame, spec) |
2ef165ebcc7d
(xfont_query_font): Adjusted for the change of
Kenichi Handa <handa@m17n.org>
parents:
90461
diff
changeset
|
498 Lisp_Object frame, spec; |
2ef165ebcc7d
(xfont_query_font): Adjusted for the change of
Kenichi Handa <handa@m17n.org>
parents:
90461
diff
changeset
|
499 { |
2ef165ebcc7d
(xfont_query_font): Adjusted for the change of
Kenichi Handa <handa@m17n.org>
parents:
90461
diff
changeset
|
500 FRAME_PTR f = XFRAME (frame); |
2ef165ebcc7d
(xfont_query_font): Adjusted for the change of
Kenichi Handa <handa@m17n.org>
parents:
90461
diff
changeset
|
501 Display *display = FRAME_X_DISPLAY_INFO (f)->display; |
103270
c4706100caab
(xfont_chars_supported, xfont_supported_scripts): New
Kenichi Handa <handa@m17n.org>
parents:
103184
diff
changeset
|
502 Lisp_Object registry, list, val, extra, script; |
90501
2ef165ebcc7d
(xfont_query_font): Adjusted for the change of
Kenichi Handa <handa@m17n.org>
parents:
90461
diff
changeset
|
503 int len; |
100553
e42552b2edda
(xfont_decode_coding_xlfd): New function.
Kenichi Handa <handa@m17n.org>
parents:
97327
diff
changeset
|
504 /* Large enough to contain the longest XLFD (255 bytes) in UTF-8. */ |
e42552b2edda
(xfont_decode_coding_xlfd): New function.
Kenichi Handa <handa@m17n.org>
parents:
97327
diff
changeset
|
505 char name[512]; |
101943
97c9e9322753
Remove spurious semicolons.
Juanma Barranquero <lekktu@gmail.com>
parents:
100951
diff
changeset
|
506 |
90501
2ef165ebcc7d
(xfont_query_font): Adjusted for the change of
Kenichi Handa <handa@m17n.org>
parents:
90461
diff
changeset
|
507 extra = AREF (spec, FONT_EXTRA_INDEX); |
2ef165ebcc7d
(xfont_query_font): Adjusted for the change of
Kenichi Handa <handa@m17n.org>
parents:
90461
diff
changeset
|
508 if (CONSP (extra)) |
90400 | 509 { |
90501
2ef165ebcc7d
(xfont_query_font): Adjusted for the change of
Kenichi Handa <handa@m17n.org>
parents:
90461
diff
changeset
|
510 val = assq_no_quit (QCotf, extra); |
2ef165ebcc7d
(xfont_query_font): Adjusted for the change of
Kenichi Handa <handa@m17n.org>
parents:
90461
diff
changeset
|
511 if (! NILP (val)) |
94940
061d44df20b7
Include <stdlib.h> and "ccl.h".
Kenichi Handa <handa@m17n.org>
parents:
92185
diff
changeset
|
512 return Qnil; |
061d44df20b7
Include <stdlib.h> and "ccl.h".
Kenichi Handa <handa@m17n.org>
parents:
92185
diff
changeset
|
513 val = assq_no_quit (QClang, extra); |
90501
2ef165ebcc7d
(xfont_query_font): Adjusted for the change of
Kenichi Handa <handa@m17n.org>
parents:
90461
diff
changeset
|
514 if (! NILP (val)) |
94940
061d44df20b7
Include <stdlib.h> and "ccl.h".
Kenichi Handa <handa@m17n.org>
parents:
92185
diff
changeset
|
515 return Qnil; |
90400 | 516 } |
103184 | 517 |
94940
061d44df20b7
Include <stdlib.h> and "ccl.h".
Kenichi Handa <handa@m17n.org>
parents:
92185
diff
changeset
|
518 registry = AREF (spec, FONT_REGISTRY_INDEX); |
100553
e42552b2edda
(xfont_decode_coding_xlfd): New function.
Kenichi Handa <handa@m17n.org>
parents:
97327
diff
changeset
|
519 len = font_unparse_xlfd (spec, 0, name, 512); |
e42552b2edda
(xfont_decode_coding_xlfd): New function.
Kenichi Handa <handa@m17n.org>
parents:
97327
diff
changeset
|
520 if (len < 0 || (len = xfont_encode_coding_xlfd (name)) < 0) |
e42552b2edda
(xfont_decode_coding_xlfd): New function.
Kenichi Handa <handa@m17n.org>
parents:
97327
diff
changeset
|
521 return Qnil; |
103270
c4706100caab
(xfont_chars_supported, xfont_supported_scripts): New
Kenichi Handa <handa@m17n.org>
parents:
103184
diff
changeset
|
522 |
c4706100caab
(xfont_chars_supported, xfont_supported_scripts): New
Kenichi Handa <handa@m17n.org>
parents:
103184
diff
changeset
|
523 val = assq_no_quit (QCscript, extra); |
c4706100caab
(xfont_chars_supported, xfont_supported_scripts): New
Kenichi Handa <handa@m17n.org>
parents:
103184
diff
changeset
|
524 script = CDR (val); |
c4706100caab
(xfont_chars_supported, xfont_supported_scripts): New
Kenichi Handa <handa@m17n.org>
parents:
103184
diff
changeset
|
525 list = xfont_list_pattern (display, name, registry, script); |
94940
061d44df20b7
Include <stdlib.h> and "ccl.h".
Kenichi Handa <handa@m17n.org>
parents:
92185
diff
changeset
|
526 if (NILP (list) && NILP (registry)) |
90400 | 527 { |
94940
061d44df20b7
Include <stdlib.h> and "ccl.h".
Kenichi Handa <handa@m17n.org>
parents:
92185
diff
changeset
|
528 /* Try iso10646-1 */ |
061d44df20b7
Include <stdlib.h> and "ccl.h".
Kenichi Handa <handa@m17n.org>
parents:
92185
diff
changeset
|
529 char *r = name + len - 9; /* 9 == strlen (iso8859-1) */ |
90501
2ef165ebcc7d
(xfont_query_font): Adjusted for the change of
Kenichi Handa <handa@m17n.org>
parents:
90461
diff
changeset
|
530 |
94940
061d44df20b7
Include <stdlib.h> and "ccl.h".
Kenichi Handa <handa@m17n.org>
parents:
92185
diff
changeset
|
531 if (r - name + 10 < 256) /* 10 == strlen (iso10646-1) */ |
061d44df20b7
Include <stdlib.h> and "ccl.h".
Kenichi Handa <handa@m17n.org>
parents:
92185
diff
changeset
|
532 { |
061d44df20b7
Include <stdlib.h> and "ccl.h".
Kenichi Handa <handa@m17n.org>
parents:
92185
diff
changeset
|
533 strcpy (r, "iso10646-1"); |
103270
c4706100caab
(xfont_chars_supported, xfont_supported_scripts): New
Kenichi Handa <handa@m17n.org>
parents:
103184
diff
changeset
|
534 list = xfont_list_pattern (display, name, Qiso10646_1, script); |
94940
061d44df20b7
Include <stdlib.h> and "ccl.h".
Kenichi Handa <handa@m17n.org>
parents:
92185
diff
changeset
|
535 } |
061d44df20b7
Include <stdlib.h> and "ccl.h".
Kenichi Handa <handa@m17n.org>
parents:
92185
diff
changeset
|
536 } |
061d44df20b7
Include <stdlib.h> and "ccl.h".
Kenichi Handa <handa@m17n.org>
parents:
92185
diff
changeset
|
537 if (NILP (list) && ! NILP (registry)) |
061d44df20b7
Include <stdlib.h> and "ccl.h".
Kenichi Handa <handa@m17n.org>
parents:
92185
diff
changeset
|
538 { |
95503
1699a530f6a3
(xfont_list): Try an alias.
Kenichi Handa <handa@m17n.org>
parents:
95330
diff
changeset
|
539 /* Try alternate registries. */ |
94940
061d44df20b7
Include <stdlib.h> and "ccl.h".
Kenichi Handa <handa@m17n.org>
parents:
92185
diff
changeset
|
540 Lisp_Object alter; |
90501
2ef165ebcc7d
(xfont_query_font): Adjusted for the change of
Kenichi Handa <handa@m17n.org>
parents:
90461
diff
changeset
|
541 |
94940
061d44df20b7
Include <stdlib.h> and "ccl.h".
Kenichi Handa <handa@m17n.org>
parents:
92185
diff
changeset
|
542 if ((alter = Fassoc (SYMBOL_NAME (registry), |
061d44df20b7
Include <stdlib.h> and "ccl.h".
Kenichi Handa <handa@m17n.org>
parents:
92185
diff
changeset
|
543 Vface_alternative_font_registry_alist), |
061d44df20b7
Include <stdlib.h> and "ccl.h".
Kenichi Handa <handa@m17n.org>
parents:
92185
diff
changeset
|
544 CONSP (alter))) |
061d44df20b7
Include <stdlib.h> and "ccl.h".
Kenichi Handa <handa@m17n.org>
parents:
92185
diff
changeset
|
545 { |
061d44df20b7
Include <stdlib.h> and "ccl.h".
Kenichi Handa <handa@m17n.org>
parents:
92185
diff
changeset
|
546 /* Pointer to REGISTRY-ENCODING field. */ |
061d44df20b7
Include <stdlib.h> and "ccl.h".
Kenichi Handa <handa@m17n.org>
parents:
92185
diff
changeset
|
547 char *r = name + len - SBYTES (SYMBOL_NAME (registry)); |
061d44df20b7
Include <stdlib.h> and "ccl.h".
Kenichi Handa <handa@m17n.org>
parents:
92185
diff
changeset
|
548 |
061d44df20b7
Include <stdlib.h> and "ccl.h".
Kenichi Handa <handa@m17n.org>
parents:
92185
diff
changeset
|
549 for (alter = XCDR (alter); CONSP (alter); alter = XCDR (alter)) |
061d44df20b7
Include <stdlib.h> and "ccl.h".
Kenichi Handa <handa@m17n.org>
parents:
92185
diff
changeset
|
550 if (STRINGP (XCAR (alter)) |
061d44df20b7
Include <stdlib.h> and "ccl.h".
Kenichi Handa <handa@m17n.org>
parents:
92185
diff
changeset
|
551 && ((r - name) + SBYTES (XCAR (alter))) < 256) |
061d44df20b7
Include <stdlib.h> and "ccl.h".
Kenichi Handa <handa@m17n.org>
parents:
92185
diff
changeset
|
552 { |
061d44df20b7
Include <stdlib.h> and "ccl.h".
Kenichi Handa <handa@m17n.org>
parents:
92185
diff
changeset
|
553 strcpy (r, (char *) SDATA (XCAR (alter))); |
103270
c4706100caab
(xfont_chars_supported, xfont_supported_scripts): New
Kenichi Handa <handa@m17n.org>
parents:
103184
diff
changeset
|
554 list = xfont_list_pattern (display, name, registry, script); |
94940
061d44df20b7
Include <stdlib.h> and "ccl.h".
Kenichi Handa <handa@m17n.org>
parents:
92185
diff
changeset
|
555 if (! NILP (list)) |
061d44df20b7
Include <stdlib.h> and "ccl.h".
Kenichi Handa <handa@m17n.org>
parents:
92185
diff
changeset
|
556 break; |
061d44df20b7
Include <stdlib.h> and "ccl.h".
Kenichi Handa <handa@m17n.org>
parents:
92185
diff
changeset
|
557 } |
90501
2ef165ebcc7d
(xfont_query_font): Adjusted for the change of
Kenichi Handa <handa@m17n.org>
parents:
90461
diff
changeset
|
558 } |
90400 | 559 } |
95503
1699a530f6a3
(xfont_list): Try an alias.
Kenichi Handa <handa@m17n.org>
parents:
95330
diff
changeset
|
560 if (NILP (list)) |
1699a530f6a3
(xfont_list): Try an alias.
Kenichi Handa <handa@m17n.org>
parents:
95330
diff
changeset
|
561 { |
1699a530f6a3
(xfont_list): Try an alias.
Kenichi Handa <handa@m17n.org>
parents:
95330
diff
changeset
|
562 /* Try alias. */ |
1699a530f6a3
(xfont_list): Try an alias.
Kenichi Handa <handa@m17n.org>
parents:
95330
diff
changeset
|
563 val = assq_no_quit (QCname, AREF (spec, FONT_EXTRA_INDEX)); |
100553
e42552b2edda
(xfont_decode_coding_xlfd): New function.
Kenichi Handa <handa@m17n.org>
parents:
97327
diff
changeset
|
564 if (CONSP (val) && STRINGP (XCDR (val)) && SBYTES (XCDR (val)) < 512) |
e42552b2edda
(xfont_decode_coding_xlfd): New function.
Kenichi Handa <handa@m17n.org>
parents:
97327
diff
changeset
|
565 { |
e42552b2edda
(xfont_decode_coding_xlfd): New function.
Kenichi Handa <handa@m17n.org>
parents:
97327
diff
changeset
|
566 bcopy (SDATA (XCDR (val)), name, SBYTES (XCDR (val)) + 1); |
e42552b2edda
(xfont_decode_coding_xlfd): New function.
Kenichi Handa <handa@m17n.org>
parents:
97327
diff
changeset
|
567 if (xfont_encode_coding_xlfd (name) < 0) |
e42552b2edda
(xfont_decode_coding_xlfd): New function.
Kenichi Handa <handa@m17n.org>
parents:
97327
diff
changeset
|
568 return Qnil; |
103270
c4706100caab
(xfont_chars_supported, xfont_supported_scripts): New
Kenichi Handa <handa@m17n.org>
parents:
103184
diff
changeset
|
569 list = xfont_list_pattern (display, name, registry, script); |
100553
e42552b2edda
(xfont_decode_coding_xlfd): New function.
Kenichi Handa <handa@m17n.org>
parents:
97327
diff
changeset
|
570 } |
95503
1699a530f6a3
(xfont_list): Try an alias.
Kenichi Handa <handa@m17n.org>
parents:
95330
diff
changeset
|
571 } |
103184 | 572 |
94940
061d44df20b7
Include <stdlib.h> and "ccl.h".
Kenichi Handa <handa@m17n.org>
parents:
92185
diff
changeset
|
573 return list; |
90400 | 574 } |
575 | |
90561
73750c4e078a
(xfont_match): New function.
Kenichi Handa <handa@m17n.org>
parents:
90545
diff
changeset
|
576 static Lisp_Object |
73750c4e078a
(xfont_match): New function.
Kenichi Handa <handa@m17n.org>
parents:
90545
diff
changeset
|
577 xfont_match (frame, spec) |
73750c4e078a
(xfont_match): New function.
Kenichi Handa <handa@m17n.org>
parents:
90545
diff
changeset
|
578 Lisp_Object frame, spec; |
73750c4e078a
(xfont_match): New function.
Kenichi Handa <handa@m17n.org>
parents:
90545
diff
changeset
|
579 { |
73750c4e078a
(xfont_match): New function.
Kenichi Handa <handa@m17n.org>
parents:
90545
diff
changeset
|
580 FRAME_PTR f = XFRAME (frame); |
73750c4e078a
(xfont_match): New function.
Kenichi Handa <handa@m17n.org>
parents:
90545
diff
changeset
|
581 Display *display = FRAME_X_DISPLAY_INFO (f)->display; |
73750c4e078a
(xfont_match): New function.
Kenichi Handa <handa@m17n.org>
parents:
90545
diff
changeset
|
582 Lisp_Object extra, val, entity; |
100553
e42552b2edda
(xfont_decode_coding_xlfd): New function.
Kenichi Handa <handa@m17n.org>
parents:
97327
diff
changeset
|
583 char name[512]; |
90561
73750c4e078a
(xfont_match): New function.
Kenichi Handa <handa@m17n.org>
parents:
90545
diff
changeset
|
584 XFontStruct *xfont; |
73750c4e078a
(xfont_match): New function.
Kenichi Handa <handa@m17n.org>
parents:
90545
diff
changeset
|
585 unsigned long value; |
73750c4e078a
(xfont_match): New function.
Kenichi Handa <handa@m17n.org>
parents:
90545
diff
changeset
|
586 |
73750c4e078a
(xfont_match): New function.
Kenichi Handa <handa@m17n.org>
parents:
90545
diff
changeset
|
587 extra = AREF (spec, FONT_EXTRA_INDEX); |
73750c4e078a
(xfont_match): New function.
Kenichi Handa <handa@m17n.org>
parents:
90545
diff
changeset
|
588 val = assq_no_quit (QCname, extra); |
73750c4e078a
(xfont_match): New function.
Kenichi Handa <handa@m17n.org>
parents:
90545
diff
changeset
|
589 if (! CONSP (val) || ! STRINGP (XCDR (val))) |
94940
061d44df20b7
Include <stdlib.h> and "ccl.h".
Kenichi Handa <handa@m17n.org>
parents:
92185
diff
changeset
|
590 { |
100553
e42552b2edda
(xfont_decode_coding_xlfd): New function.
Kenichi Handa <handa@m17n.org>
parents:
97327
diff
changeset
|
591 if (font_unparse_xlfd (spec, 0, name, 512) < 0) |
94940
061d44df20b7
Include <stdlib.h> and "ccl.h".
Kenichi Handa <handa@m17n.org>
parents:
92185
diff
changeset
|
592 return Qnil; |
061d44df20b7
Include <stdlib.h> and "ccl.h".
Kenichi Handa <handa@m17n.org>
parents:
92185
diff
changeset
|
593 } |
100553
e42552b2edda
(xfont_decode_coding_xlfd): New function.
Kenichi Handa <handa@m17n.org>
parents:
97327
diff
changeset
|
594 else if (SBYTES (XCDR (val)) < 512) |
e42552b2edda
(xfont_decode_coding_xlfd): New function.
Kenichi Handa <handa@m17n.org>
parents:
97327
diff
changeset
|
595 bcopy (SDATA (XCDR (val)), name, SBYTES (XCDR (val)) + 1); |
94940
061d44df20b7
Include <stdlib.h> and "ccl.h".
Kenichi Handa <handa@m17n.org>
parents:
92185
diff
changeset
|
596 else |
100553
e42552b2edda
(xfont_decode_coding_xlfd): New function.
Kenichi Handa <handa@m17n.org>
parents:
97327
diff
changeset
|
597 return Qnil; |
e42552b2edda
(xfont_decode_coding_xlfd): New function.
Kenichi Handa <handa@m17n.org>
parents:
97327
diff
changeset
|
598 if (xfont_encode_coding_xlfd (name) < 0) |
e42552b2edda
(xfont_decode_coding_xlfd): New function.
Kenichi Handa <handa@m17n.org>
parents:
97327
diff
changeset
|
599 return Qnil; |
90561
73750c4e078a
(xfont_match): New function.
Kenichi Handa <handa@m17n.org>
parents:
90545
diff
changeset
|
600 |
90569
0af2dbdeaeb3
(xfont_match): Block and unblock input while callin Xlib.
Kenichi Handa <handa@m17n.org>
parents:
90561
diff
changeset
|
601 BLOCK_INPUT; |
90561
73750c4e078a
(xfont_match): New function.
Kenichi Handa <handa@m17n.org>
parents:
90545
diff
changeset
|
602 entity = Qnil; |
73750c4e078a
(xfont_match): New function.
Kenichi Handa <handa@m17n.org>
parents:
90545
diff
changeset
|
603 xfont = XLoadQueryFont (display, name); |
73750c4e078a
(xfont_match): New function.
Kenichi Handa <handa@m17n.org>
parents:
90545
diff
changeset
|
604 if (xfont) |
73750c4e078a
(xfont_match): New function.
Kenichi Handa <handa@m17n.org>
parents:
90545
diff
changeset
|
605 { |
73750c4e078a
(xfont_match): New function.
Kenichi Handa <handa@m17n.org>
parents:
90545
diff
changeset
|
606 if (XGetFontProperty (xfont, XA_FONT, &value)) |
73750c4e078a
(xfont_match): New function.
Kenichi Handa <handa@m17n.org>
parents:
90545
diff
changeset
|
607 { |
73750c4e078a
(xfont_match): New function.
Kenichi Handa <handa@m17n.org>
parents:
90545
diff
changeset
|
608 int len; |
100553
e42552b2edda
(xfont_decode_coding_xlfd): New function.
Kenichi Handa <handa@m17n.org>
parents:
97327
diff
changeset
|
609 char *s; |
90561
73750c4e078a
(xfont_match): New function.
Kenichi Handa <handa@m17n.org>
parents:
90545
diff
changeset
|
610 |
100553
e42552b2edda
(xfont_decode_coding_xlfd): New function.
Kenichi Handa <handa@m17n.org>
parents:
97327
diff
changeset
|
611 s = (char *) XGetAtomName (display, (Atom) value); |
e42552b2edda
(xfont_decode_coding_xlfd): New function.
Kenichi Handa <handa@m17n.org>
parents:
97327
diff
changeset
|
612 len = strlen (s); |
90561
73750c4e078a
(xfont_match): New function.
Kenichi Handa <handa@m17n.org>
parents:
90545
diff
changeset
|
613 |
73750c4e078a
(xfont_match): New function.
Kenichi Handa <handa@m17n.org>
parents:
90545
diff
changeset
|
614 /* If DXPC (a Differential X Protocol Compressor) |
73750c4e078a
(xfont_match): New function.
Kenichi Handa <handa@m17n.org>
parents:
90545
diff
changeset
|
615 Ver.3.7 is running, XGetAtomName will return null |
73750c4e078a
(xfont_match): New function.
Kenichi Handa <handa@m17n.org>
parents:
90545
diff
changeset
|
616 string. We must avoid such a name. */ |
73750c4e078a
(xfont_match): New function.
Kenichi Handa <handa@m17n.org>
parents:
90545
diff
changeset
|
617 if (len > 0) |
73750c4e078a
(xfont_match): New function.
Kenichi Handa <handa@m17n.org>
parents:
90545
diff
changeset
|
618 { |
94940
061d44df20b7
Include <stdlib.h> and "ccl.h".
Kenichi Handa <handa@m17n.org>
parents:
92185
diff
changeset
|
619 entity = font_make_entity (); |
90561
73750c4e078a
(xfont_match): New function.
Kenichi Handa <handa@m17n.org>
parents:
90545
diff
changeset
|
620 ASET (entity, FONT_TYPE_INDEX, Qx); |
100553
e42552b2edda
(xfont_decode_coding_xlfd): New function.
Kenichi Handa <handa@m17n.org>
parents:
97327
diff
changeset
|
621 xfont_decode_coding_xlfd (s, -1, name); |
90561
73750c4e078a
(xfont_match): New function.
Kenichi Handa <handa@m17n.org>
parents:
90545
diff
changeset
|
622 if (font_parse_xlfd (name, entity) < 0) |
73750c4e078a
(xfont_match): New function.
Kenichi Handa <handa@m17n.org>
parents:
90545
diff
changeset
|
623 entity = Qnil; |
73750c4e078a
(xfont_match): New function.
Kenichi Handa <handa@m17n.org>
parents:
90545
diff
changeset
|
624 } |
100553
e42552b2edda
(xfont_decode_coding_xlfd): New function.
Kenichi Handa <handa@m17n.org>
parents:
97327
diff
changeset
|
625 XFree (s); |
90561
73750c4e078a
(xfont_match): New function.
Kenichi Handa <handa@m17n.org>
parents:
90545
diff
changeset
|
626 } |
73750c4e078a
(xfont_match): New function.
Kenichi Handa <handa@m17n.org>
parents:
90545
diff
changeset
|
627 XFreeFont (display, xfont); |
73750c4e078a
(xfont_match): New function.
Kenichi Handa <handa@m17n.org>
parents:
90545
diff
changeset
|
628 } |
90569
0af2dbdeaeb3
(xfont_match): Block and unblock input while callin Xlib.
Kenichi Handa <handa@m17n.org>
parents:
90561
diff
changeset
|
629 UNBLOCK_INPUT; |
90561
73750c4e078a
(xfont_match): New function.
Kenichi Handa <handa@m17n.org>
parents:
90545
diff
changeset
|
630 |
103543
11b57e1bdb96
Change font_add_log to FONT_ADD_LOG.
Kenichi Handa <handa@m17n.org>
parents:
103274
diff
changeset
|
631 FONT_ADD_LOG ("xfont-match", spec, entity); |
90561
73750c4e078a
(xfont_match): New function.
Kenichi Handa <handa@m17n.org>
parents:
90545
diff
changeset
|
632 return entity; |
73750c4e078a
(xfont_match): New function.
Kenichi Handa <handa@m17n.org>
parents:
90545
diff
changeset
|
633 } |
73750c4e078a
(xfont_match): New function.
Kenichi Handa <handa@m17n.org>
parents:
90545
diff
changeset
|
634 |
90400 | 635 static Lisp_Object |
636 xfont_list_family (frame) | |
90443
57b847825c30
(xfont_list): If script is specified for a font, return
Kenichi Handa <handa@m17n.org>
parents:
90427
diff
changeset
|
637 Lisp_Object frame; |
90400 | 638 { |
639 FRAME_PTR f = XFRAME (frame); | |
640 Display_Info *dpyinfo = FRAME_X_DISPLAY_INFO (f); | |
641 char **names; | |
642 int num_fonts, i; | |
643 Lisp_Object list; | |
644 char *last_family; | |
645 int last_len; | |
646 | |
647 BLOCK_INPUT; | |
648 x_catch_errors (dpyinfo->display); | |
649 names = XListFonts (dpyinfo->display, "-*-*-*-*-*-*-*-*-*-*-*-*-*-*", | |
650 0x8000, &num_fonts); | |
651 if (x_had_errors_p (dpyinfo->display)) | |
652 { | |
653 /* This error is perhaps due to insufficient memory on X server. | |
654 Let's just ignore it. */ | |
655 x_clear_errors (dpyinfo->display); | |
656 num_fonts = 0; | |
657 } | |
658 | |
659 list = Qnil; | |
660 for (i = 0, last_len = 0; i < num_fonts; i++) | |
661 { | |
100553
e42552b2edda
(xfont_decode_coding_xlfd): New function.
Kenichi Handa <handa@m17n.org>
parents:
97327
diff
changeset
|
662 char *p0 = names[i], *p1, buf[512]; |
90400 | 663 Lisp_Object family; |
100553
e42552b2edda
(xfont_decode_coding_xlfd): New function.
Kenichi Handa <handa@m17n.org>
parents:
97327
diff
changeset
|
664 int decoded_len; |
90400 | 665 |
666 p0++; /* skip the leading '-' */ | |
667 while (*p0 && *p0 != '-') p0++; /* skip foundry */ | |
668 if (! *p0) | |
669 continue; | |
670 p1 = ++p0; | |
671 while (*p1 && *p1 != '-') p1++; /* find the end of family */ | |
672 if (! *p1 || p1 == p0) | |
673 continue; | |
674 if (last_len == p1 - p0 | |
675 && bcmp (last_family, p0, last_len) == 0) | |
676 continue; | |
677 last_len = p1 - p0; | |
678 last_family = p0; | |
100553
e42552b2edda
(xfont_decode_coding_xlfd): New function.
Kenichi Handa <handa@m17n.org>
parents:
97327
diff
changeset
|
679 |
e42552b2edda
(xfont_decode_coding_xlfd): New function.
Kenichi Handa <handa@m17n.org>
parents:
97327
diff
changeset
|
680 decoded_len = xfont_decode_coding_xlfd (p0, last_len, buf); |
e42552b2edda
(xfont_decode_coding_xlfd): New function.
Kenichi Handa <handa@m17n.org>
parents:
97327
diff
changeset
|
681 family = font_intern_prop (p0, decoded_len, 1); |
97327
53bcf54737b2
(xfont_list_family): Return a list of symbols, not
Kenichi Handa <handa@m17n.org>
parents:
96657
diff
changeset
|
682 if (NILP (assq_no_quit (family, list))) |
90400 | 683 list = Fcons (family, list); |
684 } | |
685 | |
686 XFreeFontNames (names); | |
687 x_uncatch_errors (); | |
688 UNBLOCK_INPUT; | |
689 | |
690 return list; | |
691 } | |
692 | |
94940
061d44df20b7
Include <stdlib.h> and "ccl.h".
Kenichi Handa <handa@m17n.org>
parents:
92185
diff
changeset
|
693 extern Lisp_Object QCavgwidth; |
061d44df20b7
Include <stdlib.h> and "ccl.h".
Kenichi Handa <handa@m17n.org>
parents:
92185
diff
changeset
|
694 |
061d44df20b7
Include <stdlib.h> and "ccl.h".
Kenichi Handa <handa@m17n.org>
parents:
92185
diff
changeset
|
695 static Lisp_Object |
90400 | 696 xfont_open (f, entity, pixel_size) |
697 FRAME_PTR f; | |
698 Lisp_Object entity; | |
699 int pixel_size; | |
700 { | |
701 Display_Info *dpyinfo = FRAME_X_DISPLAY_INFO (f); | |
702 Display *display = dpyinfo->display; | |
100553
e42552b2edda
(xfont_decode_coding_xlfd): New function.
Kenichi Handa <handa@m17n.org>
parents:
97327
diff
changeset
|
703 char name[512]; |
90400 | 704 int len; |
705 unsigned long value; | |
706 Lisp_Object registry; | |
707 struct charset *encoding, *repertory; | |
94940
061d44df20b7
Include <stdlib.h> and "ccl.h".
Kenichi Handa <handa@m17n.org>
parents:
92185
diff
changeset
|
708 Lisp_Object font_object, fullname; |
90400 | 709 struct font *font; |
710 XFontStruct *xfont; | |
711 | |
712 /* At first, check if we know how to encode characters for this | |
713 font. */ | |
714 registry = AREF (entity, FONT_REGISTRY_INDEX); | |
91142
4bcf0716ddf4
* xfont.c (x_font_charset_alist): Moved to font.c and renamed.
Kenichi Handa <handa@m17n.org>
parents:
90698
diff
changeset
|
715 if (font_registry_charsets (registry, &encoding, &repertory) < 0) |
96575
2c94c05f0d89
(xfont_open): Log the reason of failure.
Kenichi Handa <handa@m17n.org>
parents:
96570
diff
changeset
|
716 { |
103543
11b57e1bdb96
Change font_add_log to FONT_ADD_LOG.
Kenichi Handa <handa@m17n.org>
parents:
103274
diff
changeset
|
717 FONT_ADD_LOG (" x:unknown registry", registry, Qnil); |
96575
2c94c05f0d89
(xfont_open): Log the reason of failure.
Kenichi Handa <handa@m17n.org>
parents:
96570
diff
changeset
|
718 return Qnil; |
2c94c05f0d89
(xfont_open): Log the reason of failure.
Kenichi Handa <handa@m17n.org>
parents:
96570
diff
changeset
|
719 } |
90400 | 720 |
721 if (XINT (AREF (entity, FONT_SIZE_INDEX)) != 0) | |
722 pixel_size = XINT (AREF (entity, FONT_SIZE_INDEX)); | |
94940
061d44df20b7
Include <stdlib.h> and "ccl.h".
Kenichi Handa <handa@m17n.org>
parents:
92185
diff
changeset
|
723 else if (pixel_size == 0) |
061d44df20b7
Include <stdlib.h> and "ccl.h".
Kenichi Handa <handa@m17n.org>
parents:
92185
diff
changeset
|
724 { |
061d44df20b7
Include <stdlib.h> and "ccl.h".
Kenichi Handa <handa@m17n.org>
parents:
92185
diff
changeset
|
725 if (FRAME_FONT (f)) |
061d44df20b7
Include <stdlib.h> and "ccl.h".
Kenichi Handa <handa@m17n.org>
parents:
92185
diff
changeset
|
726 pixel_size = FRAME_FONT (f)->pixel_size; |
061d44df20b7
Include <stdlib.h> and "ccl.h".
Kenichi Handa <handa@m17n.org>
parents:
92185
diff
changeset
|
727 else |
061d44df20b7
Include <stdlib.h> and "ccl.h".
Kenichi Handa <handa@m17n.org>
parents:
92185
diff
changeset
|
728 pixel_size = 14; |
061d44df20b7
Include <stdlib.h> and "ccl.h".
Kenichi Handa <handa@m17n.org>
parents:
92185
diff
changeset
|
729 } |
100553
e42552b2edda
(xfont_decode_coding_xlfd): New function.
Kenichi Handa <handa@m17n.org>
parents:
97327
diff
changeset
|
730 len = font_unparse_xlfd (entity, pixel_size, name, 512); |
e42552b2edda
(xfont_decode_coding_xlfd): New function.
Kenichi Handa <handa@m17n.org>
parents:
97327
diff
changeset
|
731 if (len <= 0 || (len = xfont_encode_coding_xlfd (name)) < 0) |
96575
2c94c05f0d89
(xfont_open): Log the reason of failure.
Kenichi Handa <handa@m17n.org>
parents:
96570
diff
changeset
|
732 { |
103543
11b57e1bdb96
Change font_add_log to FONT_ADD_LOG.
Kenichi Handa <handa@m17n.org>
parents:
103274
diff
changeset
|
733 FONT_ADD_LOG (" x:unparse failed", entity, Qnil); |
96575
2c94c05f0d89
(xfont_open): Log the reason of failure.
Kenichi Handa <handa@m17n.org>
parents:
96570
diff
changeset
|
734 return Qnil; |
2c94c05f0d89
(xfont_open): Log the reason of failure.
Kenichi Handa <handa@m17n.org>
parents:
96570
diff
changeset
|
735 } |
90400 | 736 |
737 BLOCK_INPUT; | |
738 x_catch_errors (display); | |
739 xfont = XLoadQueryFont (display, name); | |
740 if (x_had_errors_p (display)) | |
741 { | |
742 /* This error is perhaps due to insufficient memory on X server. | |
743 Let's just ignore it. */ | |
744 x_clear_errors (display); | |
745 xfont = NULL; | |
746 } | |
96657
fb9629443416
(xfont_open): Add workaround for X's bug.
Kenichi Handa <handa@m17n.org>
parents:
96575
diff
changeset
|
747 else if (! xfont) |
fb9629443416
(xfont_open): Add workaround for X's bug.
Kenichi Handa <handa@m17n.org>
parents:
96575
diff
changeset
|
748 { |
fb9629443416
(xfont_open): Add workaround for X's bug.
Kenichi Handa <handa@m17n.org>
parents:
96575
diff
changeset
|
749 /* Some version of X lists: |
fb9629443416
(xfont_open): Add workaround for X's bug.
Kenichi Handa <handa@m17n.org>
parents:
96575
diff
changeset
|
750 -misc-fixed-medium-r-normal--20-*-75-75-c-100-iso8859-1 |
fb9629443416
(xfont_open): Add workaround for X's bug.
Kenichi Handa <handa@m17n.org>
parents:
96575
diff
changeset
|
751 -misc-fixed-medium-r-normal--20-*-100-100-c-100-iso8859-1 |
fb9629443416
(xfont_open): Add workaround for X's bug.
Kenichi Handa <handa@m17n.org>
parents:
96575
diff
changeset
|
752 but can open only: |
fb9629443416
(xfont_open): Add workaround for X's bug.
Kenichi Handa <handa@m17n.org>
parents:
96575
diff
changeset
|
753 -misc-fixed-medium-r-normal--20-*-100-100-c-100-iso8859-1 |
fb9629443416
(xfont_open): Add workaround for X's bug.
Kenichi Handa <handa@m17n.org>
parents:
96575
diff
changeset
|
754 and |
fb9629443416
(xfont_open): Add workaround for X's bug.
Kenichi Handa <handa@m17n.org>
parents:
96575
diff
changeset
|
755 -misc-fixed-medium-r-normal--20-*-*-*-c-100-iso8859-1 |
fb9629443416
(xfont_open): Add workaround for X's bug.
Kenichi Handa <handa@m17n.org>
parents:
96575
diff
changeset
|
756 So, we try again with wildcards in RESX and RESY. */ |
fb9629443416
(xfont_open): Add workaround for X's bug.
Kenichi Handa <handa@m17n.org>
parents:
96575
diff
changeset
|
757 Lisp_Object temp; |
fb9629443416
(xfont_open): Add workaround for X's bug.
Kenichi Handa <handa@m17n.org>
parents:
96575
diff
changeset
|
758 |
fb9629443416
(xfont_open): Add workaround for X's bug.
Kenichi Handa <handa@m17n.org>
parents:
96575
diff
changeset
|
759 temp = Fcopy_font_spec (entity); |
fb9629443416
(xfont_open): Add workaround for X's bug.
Kenichi Handa <handa@m17n.org>
parents:
96575
diff
changeset
|
760 ASET (temp, FONT_DPI_INDEX, Qnil); |
100553
e42552b2edda
(xfont_decode_coding_xlfd): New function.
Kenichi Handa <handa@m17n.org>
parents:
97327
diff
changeset
|
761 len = font_unparse_xlfd (temp, pixel_size, name, 512); |
e42552b2edda
(xfont_decode_coding_xlfd): New function.
Kenichi Handa <handa@m17n.org>
parents:
97327
diff
changeset
|
762 if (len <= 0 || (len = xfont_encode_coding_xlfd (name)) < 0) |
96657
fb9629443416
(xfont_open): Add workaround for X's bug.
Kenichi Handa <handa@m17n.org>
parents:
96575
diff
changeset
|
763 { |
103543
11b57e1bdb96
Change font_add_log to FONT_ADD_LOG.
Kenichi Handa <handa@m17n.org>
parents:
103274
diff
changeset
|
764 FONT_ADD_LOG (" x:unparse failed", temp, Qnil); |
96657
fb9629443416
(xfont_open): Add workaround for X's bug.
Kenichi Handa <handa@m17n.org>
parents:
96575
diff
changeset
|
765 return Qnil; |
fb9629443416
(xfont_open): Add workaround for X's bug.
Kenichi Handa <handa@m17n.org>
parents:
96575
diff
changeset
|
766 } |
fb9629443416
(xfont_open): Add workaround for X's bug.
Kenichi Handa <handa@m17n.org>
parents:
96575
diff
changeset
|
767 xfont = XLoadQueryFont (display, name); |
fb9629443416
(xfont_open): Add workaround for X's bug.
Kenichi Handa <handa@m17n.org>
parents:
96575
diff
changeset
|
768 if (x_had_errors_p (display)) |
fb9629443416
(xfont_open): Add workaround for X's bug.
Kenichi Handa <handa@m17n.org>
parents:
96575
diff
changeset
|
769 { |
fb9629443416
(xfont_open): Add workaround for X's bug.
Kenichi Handa <handa@m17n.org>
parents:
96575
diff
changeset
|
770 /* This error is perhaps due to insufficient memory on X server. |
fb9629443416
(xfont_open): Add workaround for X's bug.
Kenichi Handa <handa@m17n.org>
parents:
96575
diff
changeset
|
771 Let's just ignore it. */ |
fb9629443416
(xfont_open): Add workaround for X's bug.
Kenichi Handa <handa@m17n.org>
parents:
96575
diff
changeset
|
772 x_clear_errors (display); |
fb9629443416
(xfont_open): Add workaround for X's bug.
Kenichi Handa <handa@m17n.org>
parents:
96575
diff
changeset
|
773 xfont = NULL; |
fb9629443416
(xfont_open): Add workaround for X's bug.
Kenichi Handa <handa@m17n.org>
parents:
96575
diff
changeset
|
774 } |
fb9629443416
(xfont_open): Add workaround for X's bug.
Kenichi Handa <handa@m17n.org>
parents:
96575
diff
changeset
|
775 } |
94940
061d44df20b7
Include <stdlib.h> and "ccl.h".
Kenichi Handa <handa@m17n.org>
parents:
92185
diff
changeset
|
776 fullname = Qnil; |
061d44df20b7
Include <stdlib.h> and "ccl.h".
Kenichi Handa <handa@m17n.org>
parents:
92185
diff
changeset
|
777 /* Try to get the full name of FONT. */ |
061d44df20b7
Include <stdlib.h> and "ccl.h".
Kenichi Handa <handa@m17n.org>
parents:
92185
diff
changeset
|
778 if (xfont && XGetFontProperty (xfont, XA_FONT, &value)) |
90400 | 779 { |
94940
061d44df20b7
Include <stdlib.h> and "ccl.h".
Kenichi Handa <handa@m17n.org>
parents:
92185
diff
changeset
|
780 char *p0, *p; |
90400 | 781 int dashes = 0; |
782 | |
101943
97c9e9322753
Remove spurious semicolons.
Juanma Barranquero <lekktu@gmail.com>
parents:
100951
diff
changeset
|
783 p0 = p = (char *) XGetAtomName (FRAME_X_DISPLAY (f), (Atom) value); |
90400 | 784 /* Count the number of dashes in the "full name". |
785 If it is too few, this isn't really the font's full name, | |
786 so don't use it. | |
787 In X11R4, the fonts did not come with their canonical names | |
788 stored in them. */ | |
789 while (*p) | |
790 { | |
791 if (*p == '-') | |
792 dashes++; | |
793 p++; | |
794 } | |
795 | |
796 if (dashes >= 13) | |
100553
e42552b2edda
(xfont_decode_coding_xlfd): New function.
Kenichi Handa <handa@m17n.org>
parents:
97327
diff
changeset
|
797 { |
e42552b2edda
(xfont_decode_coding_xlfd): New function.
Kenichi Handa <handa@m17n.org>
parents:
97327
diff
changeset
|
798 len = xfont_decode_coding_xlfd (p0, -1, name); |
e42552b2edda
(xfont_decode_coding_xlfd): New function.
Kenichi Handa <handa@m17n.org>
parents:
97327
diff
changeset
|
799 fullname = Fdowncase (make_string (name, len)); |
e42552b2edda
(xfont_decode_coding_xlfd): New function.
Kenichi Handa <handa@m17n.org>
parents:
97327
diff
changeset
|
800 } |
90400 | 801 XFree (p0); |
802 } | |
94940
061d44df20b7
Include <stdlib.h> and "ccl.h".
Kenichi Handa <handa@m17n.org>
parents:
92185
diff
changeset
|
803 x_uncatch_errors (); |
90400 | 804 UNBLOCK_INPUT; |
805 | |
94940
061d44df20b7
Include <stdlib.h> and "ccl.h".
Kenichi Handa <handa@m17n.org>
parents:
92185
diff
changeset
|
806 if (! xfont) |
96575
2c94c05f0d89
(xfont_open): Log the reason of failure.
Kenichi Handa <handa@m17n.org>
parents:
96570
diff
changeset
|
807 { |
103543
11b57e1bdb96
Change font_add_log to FONT_ADD_LOG.
Kenichi Handa <handa@m17n.org>
parents:
103274
diff
changeset
|
808 FONT_ADD_LOG (" x:open failed", build_string (name), Qnil); |
96575
2c94c05f0d89
(xfont_open): Log the reason of failure.
Kenichi Handa <handa@m17n.org>
parents:
96570
diff
changeset
|
809 return Qnil; |
2c94c05f0d89
(xfont_open): Log the reason of failure.
Kenichi Handa <handa@m17n.org>
parents:
96570
diff
changeset
|
810 } |
90400 | 811 |
96560
d87a9f1b9378
(xfont_open): Adjust it for the change of
Kenichi Handa <handa@m17n.org>
parents:
95568
diff
changeset
|
812 font_object = font_make_object (VECSIZE (struct xfont_info), |
d87a9f1b9378
(xfont_open): Adjust it for the change of
Kenichi Handa <handa@m17n.org>
parents:
95568
diff
changeset
|
813 entity, pixel_size); |
94940
061d44df20b7
Include <stdlib.h> and "ccl.h".
Kenichi Handa <handa@m17n.org>
parents:
92185
diff
changeset
|
814 ASET (font_object, FONT_TYPE_INDEX, Qx); |
061d44df20b7
Include <stdlib.h> and "ccl.h".
Kenichi Handa <handa@m17n.org>
parents:
92185
diff
changeset
|
815 if (STRINGP (fullname)) |
100553
e42552b2edda
(xfont_decode_coding_xlfd): New function.
Kenichi Handa <handa@m17n.org>
parents:
97327
diff
changeset
|
816 { |
e42552b2edda
(xfont_decode_coding_xlfd): New function.
Kenichi Handa <handa@m17n.org>
parents:
97327
diff
changeset
|
817 font_parse_xlfd ((char *) SDATA (fullname), font_object); |
e42552b2edda
(xfont_decode_coding_xlfd): New function.
Kenichi Handa <handa@m17n.org>
parents:
97327
diff
changeset
|
818 ASET (font_object, FONT_NAME_INDEX, fullname); |
e42552b2edda
(xfont_decode_coding_xlfd): New function.
Kenichi Handa <handa@m17n.org>
parents:
97327
diff
changeset
|
819 } |
94940
061d44df20b7
Include <stdlib.h> and "ccl.h".
Kenichi Handa <handa@m17n.org>
parents:
92185
diff
changeset
|
820 else |
100553
e42552b2edda
(xfont_decode_coding_xlfd): New function.
Kenichi Handa <handa@m17n.org>
parents:
97327
diff
changeset
|
821 { |
e42552b2edda
(xfont_decode_coding_xlfd): New function.
Kenichi Handa <handa@m17n.org>
parents:
97327
diff
changeset
|
822 char buf[512]; |
e42552b2edda
(xfont_decode_coding_xlfd): New function.
Kenichi Handa <handa@m17n.org>
parents:
97327
diff
changeset
|
823 |
e42552b2edda
(xfont_decode_coding_xlfd): New function.
Kenichi Handa <handa@m17n.org>
parents:
97327
diff
changeset
|
824 len = xfont_decode_coding_xlfd (name, -1, buf); |
e42552b2edda
(xfont_decode_coding_xlfd): New function.
Kenichi Handa <handa@m17n.org>
parents:
97327
diff
changeset
|
825 ASET (font_object, FONT_NAME_INDEX, make_string (buf, len)); |
e42552b2edda
(xfont_decode_coding_xlfd): New function.
Kenichi Handa <handa@m17n.org>
parents:
97327
diff
changeset
|
826 } |
94940
061d44df20b7
Include <stdlib.h> and "ccl.h".
Kenichi Handa <handa@m17n.org>
parents:
92185
diff
changeset
|
827 ASET (font_object, FONT_FULLNAME_INDEX, fullname); |
061d44df20b7
Include <stdlib.h> and "ccl.h".
Kenichi Handa <handa@m17n.org>
parents:
92185
diff
changeset
|
828 ASET (font_object, FONT_FILE_INDEX, Qnil); |
061d44df20b7
Include <stdlib.h> and "ccl.h".
Kenichi Handa <handa@m17n.org>
parents:
92185
diff
changeset
|
829 ASET (font_object, FONT_FORMAT_INDEX, Qx); |
061d44df20b7
Include <stdlib.h> and "ccl.h".
Kenichi Handa <handa@m17n.org>
parents:
92185
diff
changeset
|
830 font = XFONT_OBJECT (font_object); |
061d44df20b7
Include <stdlib.h> and "ccl.h".
Kenichi Handa <handa@m17n.org>
parents:
92185
diff
changeset
|
831 ((struct xfont_info *) font)->xfont = xfont; |
061d44df20b7
Include <stdlib.h> and "ccl.h".
Kenichi Handa <handa@m17n.org>
parents:
92185
diff
changeset
|
832 ((struct xfont_info *) font)->display = FRAME_X_DISPLAY (f); |
061d44df20b7
Include <stdlib.h> and "ccl.h".
Kenichi Handa <handa@m17n.org>
parents:
92185
diff
changeset
|
833 font->pixel_size = pixel_size; |
061d44df20b7
Include <stdlib.h> and "ccl.h".
Kenichi Handa <handa@m17n.org>
parents:
92185
diff
changeset
|
834 font->driver = &xfont_driver; |
061d44df20b7
Include <stdlib.h> and "ccl.h".
Kenichi Handa <handa@m17n.org>
parents:
92185
diff
changeset
|
835 font->encoding_charset = encoding->id; |
061d44df20b7
Include <stdlib.h> and "ccl.h".
Kenichi Handa <handa@m17n.org>
parents:
92185
diff
changeset
|
836 font->repertory_charset = repertory ? repertory->id : -1; |
061d44df20b7
Include <stdlib.h> and "ccl.h".
Kenichi Handa <handa@m17n.org>
parents:
92185
diff
changeset
|
837 font->ascent = xfont->ascent; |
061d44df20b7
Include <stdlib.h> and "ccl.h".
Kenichi Handa <handa@m17n.org>
parents:
92185
diff
changeset
|
838 font->descent = xfont->descent; |
061d44df20b7
Include <stdlib.h> and "ccl.h".
Kenichi Handa <handa@m17n.org>
parents:
92185
diff
changeset
|
839 font->height = font->ascent + font->descent; |
061d44df20b7
Include <stdlib.h> and "ccl.h".
Kenichi Handa <handa@m17n.org>
parents:
92185
diff
changeset
|
840 font->min_width = xfont->min_bounds.width; |
061d44df20b7
Include <stdlib.h> and "ccl.h".
Kenichi Handa <handa@m17n.org>
parents:
92185
diff
changeset
|
841 if (xfont->min_bounds.width == xfont->max_bounds.width) |
90400 | 842 { |
94940
061d44df20b7
Include <stdlib.h> and "ccl.h".
Kenichi Handa <handa@m17n.org>
parents:
92185
diff
changeset
|
843 /* Fixed width font. */ |
061d44df20b7
Include <stdlib.h> and "ccl.h".
Kenichi Handa <handa@m17n.org>
parents:
92185
diff
changeset
|
844 font->average_width = font->space_width = xfont->min_bounds.width; |
90400 | 845 } |
846 else | |
847 { | |
94940
061d44df20b7
Include <stdlib.h> and "ccl.h".
Kenichi Handa <handa@m17n.org>
parents:
92185
diff
changeset
|
848 XCharStruct *pcm; |
061d44df20b7
Include <stdlib.h> and "ccl.h".
Kenichi Handa <handa@m17n.org>
parents:
92185
diff
changeset
|
849 XChar2b char2b; |
061d44df20b7
Include <stdlib.h> and "ccl.h".
Kenichi Handa <handa@m17n.org>
parents:
92185
diff
changeset
|
850 Lisp_Object val; |
061d44df20b7
Include <stdlib.h> and "ccl.h".
Kenichi Handa <handa@m17n.org>
parents:
92185
diff
changeset
|
851 |
061d44df20b7
Include <stdlib.h> and "ccl.h".
Kenichi Handa <handa@m17n.org>
parents:
92185
diff
changeset
|
852 char2b.byte1 = 0x00, char2b.byte2 = 0x20; |
061d44df20b7
Include <stdlib.h> and "ccl.h".
Kenichi Handa <handa@m17n.org>
parents:
92185
diff
changeset
|
853 pcm = xfont_get_pcm (xfont, &char2b); |
061d44df20b7
Include <stdlib.h> and "ccl.h".
Kenichi Handa <handa@m17n.org>
parents:
92185
diff
changeset
|
854 if (pcm) |
061d44df20b7
Include <stdlib.h> and "ccl.h".
Kenichi Handa <handa@m17n.org>
parents:
92185
diff
changeset
|
855 font->space_width = pcm->width; |
061d44df20b7
Include <stdlib.h> and "ccl.h".
Kenichi Handa <handa@m17n.org>
parents:
92185
diff
changeset
|
856 else |
061d44df20b7
Include <stdlib.h> and "ccl.h".
Kenichi Handa <handa@m17n.org>
parents:
92185
diff
changeset
|
857 font->space_width = 0; |
061d44df20b7
Include <stdlib.h> and "ccl.h".
Kenichi Handa <handa@m17n.org>
parents:
92185
diff
changeset
|
858 |
061d44df20b7
Include <stdlib.h> and "ccl.h".
Kenichi Handa <handa@m17n.org>
parents:
92185
diff
changeset
|
859 val = Ffont_get (font_object, QCavgwidth); |
061d44df20b7
Include <stdlib.h> and "ccl.h".
Kenichi Handa <handa@m17n.org>
parents:
92185
diff
changeset
|
860 if (INTEGERP (val)) |
061d44df20b7
Include <stdlib.h> and "ccl.h".
Kenichi Handa <handa@m17n.org>
parents:
92185
diff
changeset
|
861 font->average_width = XINT (val); |
061d44df20b7
Include <stdlib.h> and "ccl.h".
Kenichi Handa <handa@m17n.org>
parents:
92185
diff
changeset
|
862 if (font->average_width < 0) |
061d44df20b7
Include <stdlib.h> and "ccl.h".
Kenichi Handa <handa@m17n.org>
parents:
92185
diff
changeset
|
863 font->average_width = - font->average_width; |
061d44df20b7
Include <stdlib.h> and "ccl.h".
Kenichi Handa <handa@m17n.org>
parents:
92185
diff
changeset
|
864 if (font->average_width == 0 |
061d44df20b7
Include <stdlib.h> and "ccl.h".
Kenichi Handa <handa@m17n.org>
parents:
92185
diff
changeset
|
865 && encoding->ascii_compatible_p) |
061d44df20b7
Include <stdlib.h> and "ccl.h".
Kenichi Handa <handa@m17n.org>
parents:
92185
diff
changeset
|
866 { |
061d44df20b7
Include <stdlib.h> and "ccl.h".
Kenichi Handa <handa@m17n.org>
parents:
92185
diff
changeset
|
867 int width = font->space_width, n = pcm != NULL; |
061d44df20b7
Include <stdlib.h> and "ccl.h".
Kenichi Handa <handa@m17n.org>
parents:
92185
diff
changeset
|
868 |
061d44df20b7
Include <stdlib.h> and "ccl.h".
Kenichi Handa <handa@m17n.org>
parents:
92185
diff
changeset
|
869 for (char2b.byte2 = 33; char2b.byte2 <= 126; char2b.byte2++) |
061d44df20b7
Include <stdlib.h> and "ccl.h".
Kenichi Handa <handa@m17n.org>
parents:
92185
diff
changeset
|
870 if ((pcm = xfont_get_pcm (xfont, &char2b)) != NULL) |
061d44df20b7
Include <stdlib.h> and "ccl.h".
Kenichi Handa <handa@m17n.org>
parents:
92185
diff
changeset
|
871 width += pcm->width, n++; |
95330
fe15ab9a9bc7
(xfont_open): Fix calculation of font->average_width.
Kenichi Handa <handa@m17n.org>
parents:
95227
diff
changeset
|
872 if (n > 0) |
fe15ab9a9bc7
(xfont_open): Fix calculation of font->average_width.
Kenichi Handa <handa@m17n.org>
parents:
95227
diff
changeset
|
873 font->average_width = width / n; |
94940
061d44df20b7
Include <stdlib.h> and "ccl.h".
Kenichi Handa <handa@m17n.org>
parents:
92185
diff
changeset
|
874 } |
95330
fe15ab9a9bc7
(xfont_open): Fix calculation of font->average_width.
Kenichi Handa <handa@m17n.org>
parents:
95227
diff
changeset
|
875 if (font->average_width == 0) |
fe15ab9a9bc7
(xfont_open): Fix calculation of font->average_width.
Kenichi Handa <handa@m17n.org>
parents:
95227
diff
changeset
|
876 /* No easy way other than this to get a reasonable |
fe15ab9a9bc7
(xfont_open): Fix calculation of font->average_width.
Kenichi Handa <handa@m17n.org>
parents:
95227
diff
changeset
|
877 average_width. */ |
fe15ab9a9bc7
(xfont_open): Fix calculation of font->average_width.
Kenichi Handa <handa@m17n.org>
parents:
95227
diff
changeset
|
878 font->average_width |
fe15ab9a9bc7
(xfont_open): Fix calculation of font->average_width.
Kenichi Handa <handa@m17n.org>
parents:
95227
diff
changeset
|
879 = (xfont->min_bounds.width + xfont->max_bounds.width) / 2; |
90400 | 880 } |
881 | |
94940
061d44df20b7
Include <stdlib.h> and "ccl.h".
Kenichi Handa <handa@m17n.org>
parents:
92185
diff
changeset
|
882 BLOCK_INPUT; |
061d44df20b7
Include <stdlib.h> and "ccl.h".
Kenichi Handa <handa@m17n.org>
parents:
92185
diff
changeset
|
883 font->underline_thickness |
061d44df20b7
Include <stdlib.h> and "ccl.h".
Kenichi Handa <handa@m17n.org>
parents:
92185
diff
changeset
|
884 = (XGetFontProperty (xfont, XA_UNDERLINE_THICKNESS, &value) |
061d44df20b7
Include <stdlib.h> and "ccl.h".
Kenichi Handa <handa@m17n.org>
parents:
92185
diff
changeset
|
885 ? (long) value : 0); |
061d44df20b7
Include <stdlib.h> and "ccl.h".
Kenichi Handa <handa@m17n.org>
parents:
92185
diff
changeset
|
886 font->underline_position |
061d44df20b7
Include <stdlib.h> and "ccl.h".
Kenichi Handa <handa@m17n.org>
parents:
92185
diff
changeset
|
887 = (XGetFontProperty (xfont, XA_UNDERLINE_POSITION, &value) |
061d44df20b7
Include <stdlib.h> and "ccl.h".
Kenichi Handa <handa@m17n.org>
parents:
92185
diff
changeset
|
888 ? (long) value : -1); |
061d44df20b7
Include <stdlib.h> and "ccl.h".
Kenichi Handa <handa@m17n.org>
parents:
92185
diff
changeset
|
889 font->baseline_offset |
061d44df20b7
Include <stdlib.h> and "ccl.h".
Kenichi Handa <handa@m17n.org>
parents:
92185
diff
changeset
|
890 = (XGetFontProperty (xfont, dpyinfo->Xatom_MULE_BASELINE_OFFSET, &value) |
061d44df20b7
Include <stdlib.h> and "ccl.h".
Kenichi Handa <handa@m17n.org>
parents:
92185
diff
changeset
|
891 ? (long) value : 0); |
061d44df20b7
Include <stdlib.h> and "ccl.h".
Kenichi Handa <handa@m17n.org>
parents:
92185
diff
changeset
|
892 font->relative_compose |
061d44df20b7
Include <stdlib.h> and "ccl.h".
Kenichi Handa <handa@m17n.org>
parents:
92185
diff
changeset
|
893 = (XGetFontProperty (xfont, dpyinfo->Xatom_MULE_RELATIVE_COMPOSE, &value) |
061d44df20b7
Include <stdlib.h> and "ccl.h".
Kenichi Handa <handa@m17n.org>
parents:
92185
diff
changeset
|
894 ? (long) value : 0); |
061d44df20b7
Include <stdlib.h> and "ccl.h".
Kenichi Handa <handa@m17n.org>
parents:
92185
diff
changeset
|
895 font->default_ascent |
061d44df20b7
Include <stdlib.h> and "ccl.h".
Kenichi Handa <handa@m17n.org>
parents:
92185
diff
changeset
|
896 = (XGetFontProperty (xfont, dpyinfo->Xatom_MULE_DEFAULT_ASCENT, &value) |
061d44df20b7
Include <stdlib.h> and "ccl.h".
Kenichi Handa <handa@m17n.org>
parents:
92185
diff
changeset
|
897 ? (long) value : 0); |
061d44df20b7
Include <stdlib.h> and "ccl.h".
Kenichi Handa <handa@m17n.org>
parents:
92185
diff
changeset
|
898 UNBLOCK_INPUT; |
061d44df20b7
Include <stdlib.h> and "ccl.h".
Kenichi Handa <handa@m17n.org>
parents:
92185
diff
changeset
|
899 |
061d44df20b7
Include <stdlib.h> and "ccl.h".
Kenichi Handa <handa@m17n.org>
parents:
92185
diff
changeset
|
900 if (NILP (fullname)) |
061d44df20b7
Include <stdlib.h> and "ccl.h".
Kenichi Handa <handa@m17n.org>
parents:
92185
diff
changeset
|
901 fullname = AREF (font_object, FONT_NAME_INDEX); |
96566
dec3815c40d7
(xfont_open): Cancel the previous about font->vertical_centering.
Kenichi Handa <handa@m17n.org>
parents:
96560
diff
changeset
|
902 font->vertical_centering |
dec3815c40d7
(xfont_open): Cancel the previous about font->vertical_centering.
Kenichi Handa <handa@m17n.org>
parents:
96560
diff
changeset
|
903 = (STRINGP (Vvertical_centering_font_regexp) |
dec3815c40d7
(xfont_open): Cancel the previous about font->vertical_centering.
Kenichi Handa <handa@m17n.org>
parents:
96560
diff
changeset
|
904 && (fast_string_match_ignore_case |
dec3815c40d7
(xfont_open): Cancel the previous about font->vertical_centering.
Kenichi Handa <handa@m17n.org>
parents:
96560
diff
changeset
|
905 (Vvertical_centering_font_regexp, fullname) >= 0)); |
94940
061d44df20b7
Include <stdlib.h> and "ccl.h".
Kenichi Handa <handa@m17n.org>
parents:
92185
diff
changeset
|
906 |
061d44df20b7
Include <stdlib.h> and "ccl.h".
Kenichi Handa <handa@m17n.org>
parents:
92185
diff
changeset
|
907 return font_object; |
90400 | 908 } |
909 | |
910 static void | |
911 xfont_close (f, font) | |
912 FRAME_PTR f; | |
913 struct font *font; | |
914 { | |
915 BLOCK_INPUT; | |
94940
061d44df20b7
Include <stdlib.h> and "ccl.h".
Kenichi Handa <handa@m17n.org>
parents:
92185
diff
changeset
|
916 XFreeFont (FRAME_X_DISPLAY (f), ((struct xfont_info *) font)->xfont); |
90400 | 917 UNBLOCK_INPUT; |
918 } | |
919 | |
920 static int | |
921 xfont_prepare_face (f, face) | |
922 FRAME_PTR f; | |
923 struct face *face; | |
924 { | |
925 BLOCK_INPUT; | |
94940
061d44df20b7
Include <stdlib.h> and "ccl.h".
Kenichi Handa <handa@m17n.org>
parents:
92185
diff
changeset
|
926 XSetFont (FRAME_X_DISPLAY (f), face->gc, |
061d44df20b7
Include <stdlib.h> and "ccl.h".
Kenichi Handa <handa@m17n.org>
parents:
92185
diff
changeset
|
927 ((struct xfont_info *) face->font)->xfont->fid); |
90400 | 928 UNBLOCK_INPUT; |
929 | |
930 return 0; | |
931 } | |
932 | |
933 static int | |
102993
2e2d289b5f6a
(xfont_has_char): Special handling of `ja' and `ko' adstyle.
Kenichi Handa <handa@m17n.org>
parents:
102956
diff
changeset
|
934 xfont_has_char (font, c) |
2e2d289b5f6a
(xfont_has_char): Special handling of `ja' and `ko' adstyle.
Kenichi Handa <handa@m17n.org>
parents:
102956
diff
changeset
|
935 Lisp_Object font; |
90400 | 936 int c; |
937 { | |
102993
2e2d289b5f6a
(xfont_has_char): Special handling of `ja' and `ko' adstyle.
Kenichi Handa <handa@m17n.org>
parents:
102956
diff
changeset
|
938 Lisp_Object registry = AREF (font, FONT_REGISTRY_INDEX); |
102956
b20a4659fd91
(xfont_has_char): The font has C if C is ASCII and the
Kenichi Handa <handa@m17n.org>
parents:
101943
diff
changeset
|
939 struct charset *encoding; |
102993
2e2d289b5f6a
(xfont_has_char): Special handling of `ja' and `ko' adstyle.
Kenichi Handa <handa@m17n.org>
parents:
102956
diff
changeset
|
940 struct charset *repertory = NULL; |
90400 | 941 |
102993
2e2d289b5f6a
(xfont_has_char): Special handling of `ja' and `ko' adstyle.
Kenichi Handa <handa@m17n.org>
parents:
102956
diff
changeset
|
942 if (EQ (registry, Qiso10646_1)) |
2e2d289b5f6a
(xfont_has_char): Special handling of `ja' and `ko' adstyle.
Kenichi Handa <handa@m17n.org>
parents:
102956
diff
changeset
|
943 { |
103270
c4706100caab
(xfont_chars_supported, xfont_supported_scripts): New
Kenichi Handa <handa@m17n.org>
parents:
103184
diff
changeset
|
944 encoding = CHARSET_FROM_ID (charset_unicode); |
102993
2e2d289b5f6a
(xfont_has_char): Special handling of `ja' and `ko' adstyle.
Kenichi Handa <handa@m17n.org>
parents:
102956
diff
changeset
|
945 /* We use a font of `ja' and `ko' adstyle only for a character |
2e2d289b5f6a
(xfont_has_char): Special handling of `ja' and `ko' adstyle.
Kenichi Handa <handa@m17n.org>
parents:
102956
diff
changeset
|
946 in JISX0208 and KSC5601 charsets respectively. */ |
2e2d289b5f6a
(xfont_has_char): Special handling of `ja' and `ko' adstyle.
Kenichi Handa <handa@m17n.org>
parents:
102956
diff
changeset
|
947 if (EQ (AREF (font, FONT_ADSTYLE_INDEX), Qja) |
2e2d289b5f6a
(xfont_has_char): Special handling of `ja' and `ko' adstyle.
Kenichi Handa <handa@m17n.org>
parents:
102956
diff
changeset
|
948 && charset_jisx0208 >= 0) |
103270
c4706100caab
(xfont_chars_supported, xfont_supported_scripts): New
Kenichi Handa <handa@m17n.org>
parents:
103184
diff
changeset
|
949 repertory = CHARSET_FROM_ID (charset_jisx0208); |
102993
2e2d289b5f6a
(xfont_has_char): Special handling of `ja' and `ko' adstyle.
Kenichi Handa <handa@m17n.org>
parents:
102956
diff
changeset
|
950 else if (EQ (AREF (font, FONT_ADSTYLE_INDEX), Qko) |
2e2d289b5f6a
(xfont_has_char): Special handling of `ja' and `ko' adstyle.
Kenichi Handa <handa@m17n.org>
parents:
102956
diff
changeset
|
951 && charset_ksc5601 >= 0) |
103270
c4706100caab
(xfont_chars_supported, xfont_supported_scripts): New
Kenichi Handa <handa@m17n.org>
parents:
103184
diff
changeset
|
952 repertory = CHARSET_FROM_ID (charset_ksc5601); |
102993
2e2d289b5f6a
(xfont_has_char): Special handling of `ja' and `ko' adstyle.
Kenichi Handa <handa@m17n.org>
parents:
102956
diff
changeset
|
953 } |
2e2d289b5f6a
(xfont_has_char): Special handling of `ja' and `ko' adstyle.
Kenichi Handa <handa@m17n.org>
parents:
102956
diff
changeset
|
954 else if (font_registry_charsets (registry, &encoding, &repertory) < 0) |
2e2d289b5f6a
(xfont_has_char): Special handling of `ja' and `ko' adstyle.
Kenichi Handa <handa@m17n.org>
parents:
102956
diff
changeset
|
955 /* Unknown REGISTRY, not usable. */ |
2e2d289b5f6a
(xfont_has_char): Special handling of `ja' and `ko' adstyle.
Kenichi Handa <handa@m17n.org>
parents:
102956
diff
changeset
|
956 return 0; |
102956
b20a4659fd91
(xfont_has_char): The font has C if C is ASCII and the
Kenichi Handa <handa@m17n.org>
parents:
101943
diff
changeset
|
957 if (ASCII_CHAR_P (c) && encoding->ascii_compatible_p) |
b20a4659fd91
(xfont_has_char): The font has C if C is ASCII and the
Kenichi Handa <handa@m17n.org>
parents:
101943
diff
changeset
|
958 return 1; |
90400 | 959 if (! repertory) |
960 return -1; | |
961 return (ENCODE_CHAR (repertory, c) != CHARSET_INVALID_CODE (repertory)); | |
962 } | |
963 | |
964 static unsigned | |
965 xfont_encode_char (font, c) | |
966 struct font *font; | |
967 int c; | |
968 { | |
94940
061d44df20b7
Include <stdlib.h> and "ccl.h".
Kenichi Handa <handa@m17n.org>
parents:
92185
diff
changeset
|
969 XFontStruct *xfont = ((struct xfont_info *) font)->xfont; |
90400 | 970 struct charset *charset; |
971 unsigned code; | |
972 XChar2b char2b; | |
973 | |
974 charset = CHARSET_FROM_ID (font->encoding_charset); | |
975 code = ENCODE_CHAR (charset, c); | |
976 if (code == CHARSET_INVALID_CODE (charset)) | |
91270
0dab56b22dca
(xfont_encode_char): Use the macro FONT_INVALID_CODE.
Kenichi Handa <handa@m17n.org>
parents:
91245
diff
changeset
|
977 return FONT_INVALID_CODE; |
90454
a8b745412821
(xfont_open, xfont_encode_char): Fix typo.
Kenichi Handa <handa@m17n.org>
parents:
90443
diff
changeset
|
978 if (font->repertory_charset >= 0) |
90400 | 979 { |
90454
a8b745412821
(xfont_open, xfont_encode_char): Fix typo.
Kenichi Handa <handa@m17n.org>
parents:
90443
diff
changeset
|
980 charset = CHARSET_FROM_ID (font->repertory_charset); |
90400 | 981 return (ENCODE_CHAR (charset, c) != CHARSET_INVALID_CODE (charset) |
91270
0dab56b22dca
(xfont_encode_char): Use the macro FONT_INVALID_CODE.
Kenichi Handa <handa@m17n.org>
parents:
91245
diff
changeset
|
982 ? code : FONT_INVALID_CODE); |
90400 | 983 } |
90425
5976e428d68e
(xfont_encode_char): Fix calculation of char2b.
Kenichi Handa <handa@m17n.org>
parents:
90400
diff
changeset
|
984 char2b.byte1 = code >> 8; |
5976e428d68e
(xfont_encode_char): Fix calculation of char2b.
Kenichi Handa <handa@m17n.org>
parents:
90400
diff
changeset
|
985 char2b.byte2 = code & 0xFF; |
94940
061d44df20b7
Include <stdlib.h> and "ccl.h".
Kenichi Handa <handa@m17n.org>
parents:
92185
diff
changeset
|
986 return (xfont_get_pcm (xfont, &char2b) ? code : FONT_INVALID_CODE); |
90400 | 987 } |
988 | |
989 static int | |
990 xfont_text_extents (font, code, nglyphs, metrics) | |
991 struct font *font; | |
992 unsigned *code; | |
993 int nglyphs; | |
994 struct font_metrics *metrics; | |
995 { | |
94940
061d44df20b7
Include <stdlib.h> and "ccl.h".
Kenichi Handa <handa@m17n.org>
parents:
92185
diff
changeset
|
996 XFontStruct *xfont = ((struct xfont_info *) font)->xfont; |
90400 | 997 int width = 0; |
96570
12587e64cfe3
(xfont_text_extents): Fix initial setting of metrics.
Kenichi Handa <handa@m17n.org>
parents:
96566
diff
changeset
|
998 int i, first, x; |
90400 | 999 |
1000 if (metrics) | |
1001 bzero (metrics, sizeof (struct font_metrics)); | |
96570
12587e64cfe3
(xfont_text_extents): Fix initial setting of metrics.
Kenichi Handa <handa@m17n.org>
parents:
96566
diff
changeset
|
1002 for (i = 0, x = 0, first = 1; i < nglyphs; i++) |
90400 | 1003 { |
1004 XChar2b char2b; | |
1005 static XCharStruct *pcm; | |
1006 | |
1007 if (code[i] >= 0x10000) | |
1008 continue; | |
1009 char2b.byte1 = code[i] >> 8, char2b.byte2 = code[i] & 0xFF; | |
94940
061d44df20b7
Include <stdlib.h> and "ccl.h".
Kenichi Handa <handa@m17n.org>
parents:
92185
diff
changeset
|
1010 pcm = xfont_get_pcm (xfont, &char2b); |
90400 | 1011 if (! pcm) |
1012 continue; | |
96570
12587e64cfe3
(xfont_text_extents): Fix initial setting of metrics.
Kenichi Handa <handa@m17n.org>
parents:
96566
diff
changeset
|
1013 if (first) |
12587e64cfe3
(xfont_text_extents): Fix initial setting of metrics.
Kenichi Handa <handa@m17n.org>
parents:
96566
diff
changeset
|
1014 { |
12587e64cfe3
(xfont_text_extents): Fix initial setting of metrics.
Kenichi Handa <handa@m17n.org>
parents:
96566
diff
changeset
|
1015 if (metrics) |
12587e64cfe3
(xfont_text_extents): Fix initial setting of metrics.
Kenichi Handa <handa@m17n.org>
parents:
96566
diff
changeset
|
1016 { |
12587e64cfe3
(xfont_text_extents): Fix initial setting of metrics.
Kenichi Handa <handa@m17n.org>
parents:
96566
diff
changeset
|
1017 metrics->lbearing = pcm->lbearing; |
12587e64cfe3
(xfont_text_extents): Fix initial setting of metrics.
Kenichi Handa <handa@m17n.org>
parents:
96566
diff
changeset
|
1018 metrics->rbearing = pcm->rbearing; |
12587e64cfe3
(xfont_text_extents): Fix initial setting of metrics.
Kenichi Handa <handa@m17n.org>
parents:
96566
diff
changeset
|
1019 metrics->ascent = pcm->ascent; |
12587e64cfe3
(xfont_text_extents): Fix initial setting of metrics.
Kenichi Handa <handa@m17n.org>
parents:
96566
diff
changeset
|
1020 metrics->descent = pcm->descent; |
12587e64cfe3
(xfont_text_extents): Fix initial setting of metrics.
Kenichi Handa <handa@m17n.org>
parents:
96566
diff
changeset
|
1021 } |
12587e64cfe3
(xfont_text_extents): Fix initial setting of metrics.
Kenichi Handa <handa@m17n.org>
parents:
96566
diff
changeset
|
1022 first = 0; |
12587e64cfe3
(xfont_text_extents): Fix initial setting of metrics.
Kenichi Handa <handa@m17n.org>
parents:
96566
diff
changeset
|
1023 } |
12587e64cfe3
(xfont_text_extents): Fix initial setting of metrics.
Kenichi Handa <handa@m17n.org>
parents:
96566
diff
changeset
|
1024 else |
12587e64cfe3
(xfont_text_extents): Fix initial setting of metrics.
Kenichi Handa <handa@m17n.org>
parents:
96566
diff
changeset
|
1025 { |
12587e64cfe3
(xfont_text_extents): Fix initial setting of metrics.
Kenichi Handa <handa@m17n.org>
parents:
96566
diff
changeset
|
1026 if (metrics) |
12587e64cfe3
(xfont_text_extents): Fix initial setting of metrics.
Kenichi Handa <handa@m17n.org>
parents:
96566
diff
changeset
|
1027 { |
12587e64cfe3
(xfont_text_extents): Fix initial setting of metrics.
Kenichi Handa <handa@m17n.org>
parents:
96566
diff
changeset
|
1028 if (metrics->lbearing > width + pcm->lbearing) |
12587e64cfe3
(xfont_text_extents): Fix initial setting of metrics.
Kenichi Handa <handa@m17n.org>
parents:
96566
diff
changeset
|
1029 metrics->lbearing = width + pcm->lbearing; |
12587e64cfe3
(xfont_text_extents): Fix initial setting of metrics.
Kenichi Handa <handa@m17n.org>
parents:
96566
diff
changeset
|
1030 if (metrics->rbearing < width + pcm->rbearing) |
12587e64cfe3
(xfont_text_extents): Fix initial setting of metrics.
Kenichi Handa <handa@m17n.org>
parents:
96566
diff
changeset
|
1031 metrics->rbearing = width + pcm->rbearing; |
12587e64cfe3
(xfont_text_extents): Fix initial setting of metrics.
Kenichi Handa <handa@m17n.org>
parents:
96566
diff
changeset
|
1032 if (metrics->ascent < pcm->ascent) |
12587e64cfe3
(xfont_text_extents): Fix initial setting of metrics.
Kenichi Handa <handa@m17n.org>
parents:
96566
diff
changeset
|
1033 metrics->ascent = pcm->ascent; |
12587e64cfe3
(xfont_text_extents): Fix initial setting of metrics.
Kenichi Handa <handa@m17n.org>
parents:
96566
diff
changeset
|
1034 if (metrics->descent < pcm->descent) |
12587e64cfe3
(xfont_text_extents): Fix initial setting of metrics.
Kenichi Handa <handa@m17n.org>
parents:
96566
diff
changeset
|
1035 metrics->descent = pcm->descent; |
12587e64cfe3
(xfont_text_extents): Fix initial setting of metrics.
Kenichi Handa <handa@m17n.org>
parents:
96566
diff
changeset
|
1036 } |
12587e64cfe3
(xfont_text_extents): Fix initial setting of metrics.
Kenichi Handa <handa@m17n.org>
parents:
96566
diff
changeset
|
1037 } |
90400 | 1038 width += pcm->width; |
1039 } | |
1040 if (metrics) | |
1041 metrics->width = width; | |
1042 return width; | |
1043 } | |
1044 | |
1045 static int | |
1046 xfont_draw (s, from, to, x, y, with_background) | |
1047 struct glyph_string *s; | |
1048 int from, to, x, y, with_background; | |
1049 { | |
94940
061d44df20b7
Include <stdlib.h> and "ccl.h".
Kenichi Handa <handa@m17n.org>
parents:
92185
diff
changeset
|
1050 XFontStruct *xfont = ((struct xfont_info *) s->font)->xfont; |
90400 | 1051 int len = to - from; |
90561
73750c4e078a
(xfont_match): New function.
Kenichi Handa <handa@m17n.org>
parents:
90545
diff
changeset
|
1052 GC gc = s->gc; |
92185
1e28008a13e5
(xfont_draw): Pay attention to s->padding_p.
Kenichi Handa <handa@m17n.org>
parents:
91905
diff
changeset
|
1053 int i; |
90561
73750c4e078a
(xfont_match): New function.
Kenichi Handa <handa@m17n.org>
parents:
90545
diff
changeset
|
1054 |
94940
061d44df20b7
Include <stdlib.h> and "ccl.h".
Kenichi Handa <handa@m17n.org>
parents:
92185
diff
changeset
|
1055 if (s->gc != s->face->gc) |
90561
73750c4e078a
(xfont_match): New function.
Kenichi Handa <handa@m17n.org>
parents:
90545
diff
changeset
|
1056 { |
91905
6ae79e72fea7
(xfont_draw): Use BLOCK_INPUT and UNBLOCK_INPUT.
Kenichi Handa <handa@m17n.org>
parents:
91554
diff
changeset
|
1057 BLOCK_INPUT; |
94940
061d44df20b7
Include <stdlib.h> and "ccl.h".
Kenichi Handa <handa@m17n.org>
parents:
92185
diff
changeset
|
1058 XSetFont (s->display, gc, xfont->fid); |
91905
6ae79e72fea7
(xfont_draw): Use BLOCK_INPUT and UNBLOCK_INPUT.
Kenichi Handa <handa@m17n.org>
parents:
91554
diff
changeset
|
1059 UNBLOCK_INPUT; |
90561
73750c4e078a
(xfont_match): New function.
Kenichi Handa <handa@m17n.org>
parents:
90545
diff
changeset
|
1060 } |
90400 | 1061 |
1062 if (xfont->min_byte1 == 0 && xfont->max_byte1 == 0) | |
1063 { | |
1064 char *str; | |
1065 USE_SAFE_ALLOCA; | |
1066 | |
1067 SAFE_ALLOCA (str, char *, len); | |
1068 for (i = 0; i < len ; i++) | |
1069 str[i] = XCHAR2B_BYTE2 (s->char2b + from + i); | |
91905
6ae79e72fea7
(xfont_draw): Use BLOCK_INPUT and UNBLOCK_INPUT.
Kenichi Handa <handa@m17n.org>
parents:
91554
diff
changeset
|
1070 BLOCK_INPUT; |
90400 | 1071 if (with_background > 0) |
92185
1e28008a13e5
(xfont_draw): Pay attention to s->padding_p.
Kenichi Handa <handa@m17n.org>
parents:
91905
diff
changeset
|
1072 { |
1e28008a13e5
(xfont_draw): Pay attention to s->padding_p.
Kenichi Handa <handa@m17n.org>
parents:
91905
diff
changeset
|
1073 if (s->padding_p) |
1e28008a13e5
(xfont_draw): Pay attention to s->padding_p.
Kenichi Handa <handa@m17n.org>
parents:
91905
diff
changeset
|
1074 for (i = 0; i < len; i++) |
1e28008a13e5
(xfont_draw): Pay attention to s->padding_p.
Kenichi Handa <handa@m17n.org>
parents:
91905
diff
changeset
|
1075 XDrawImageString (FRAME_X_DISPLAY (s->f), FRAME_X_WINDOW (s->f), |
1e28008a13e5
(xfont_draw): Pay attention to s->padding_p.
Kenichi Handa <handa@m17n.org>
parents:
91905
diff
changeset
|
1076 gc, x + i, y, str + i, 1); |
1e28008a13e5
(xfont_draw): Pay attention to s->padding_p.
Kenichi Handa <handa@m17n.org>
parents:
91905
diff
changeset
|
1077 else |
1e28008a13e5
(xfont_draw): Pay attention to s->padding_p.
Kenichi Handa <handa@m17n.org>
parents:
91905
diff
changeset
|
1078 XDrawImageString (FRAME_X_DISPLAY (s->f), FRAME_X_WINDOW (s->f), |
1e28008a13e5
(xfont_draw): Pay attention to s->padding_p.
Kenichi Handa <handa@m17n.org>
parents:
91905
diff
changeset
|
1079 gc, x, y, str, len); |
1e28008a13e5
(xfont_draw): Pay attention to s->padding_p.
Kenichi Handa <handa@m17n.org>
parents:
91905
diff
changeset
|
1080 } |
90400 | 1081 else |
92185
1e28008a13e5
(xfont_draw): Pay attention to s->padding_p.
Kenichi Handa <handa@m17n.org>
parents:
91905
diff
changeset
|
1082 { |
1e28008a13e5
(xfont_draw): Pay attention to s->padding_p.
Kenichi Handa <handa@m17n.org>
parents:
91905
diff
changeset
|
1083 if (s->padding_p) |
1e28008a13e5
(xfont_draw): Pay attention to s->padding_p.
Kenichi Handa <handa@m17n.org>
parents:
91905
diff
changeset
|
1084 for (i = 0; i < len; i++) |
1e28008a13e5
(xfont_draw): Pay attention to s->padding_p.
Kenichi Handa <handa@m17n.org>
parents:
91905
diff
changeset
|
1085 XDrawString (FRAME_X_DISPLAY (s->f), FRAME_X_WINDOW (s->f), |
1e28008a13e5
(xfont_draw): Pay attention to s->padding_p.
Kenichi Handa <handa@m17n.org>
parents:
91905
diff
changeset
|
1086 gc, x + i, y, str + i, 1); |
1e28008a13e5
(xfont_draw): Pay attention to s->padding_p.
Kenichi Handa <handa@m17n.org>
parents:
91905
diff
changeset
|
1087 else |
1e28008a13e5
(xfont_draw): Pay attention to s->padding_p.
Kenichi Handa <handa@m17n.org>
parents:
91905
diff
changeset
|
1088 XDrawString (FRAME_X_DISPLAY (s->f), FRAME_X_WINDOW (s->f), |
1e28008a13e5
(xfont_draw): Pay attention to s->padding_p.
Kenichi Handa <handa@m17n.org>
parents:
91905
diff
changeset
|
1089 gc, x, y, str, len); |
1e28008a13e5
(xfont_draw): Pay attention to s->padding_p.
Kenichi Handa <handa@m17n.org>
parents:
91905
diff
changeset
|
1090 } |
91905
6ae79e72fea7
(xfont_draw): Use BLOCK_INPUT and UNBLOCK_INPUT.
Kenichi Handa <handa@m17n.org>
parents:
91554
diff
changeset
|
1091 UNBLOCK_INPUT; |
90400 | 1092 SAFE_FREE (); |
1093 return s->nchars; | |
1094 } | |
1095 | |
91905
6ae79e72fea7
(xfont_draw): Use BLOCK_INPUT and UNBLOCK_INPUT.
Kenichi Handa <handa@m17n.org>
parents:
91554
diff
changeset
|
1096 BLOCK_INPUT; |
90400 | 1097 if (with_background > 0) |
92185
1e28008a13e5
(xfont_draw): Pay attention to s->padding_p.
Kenichi Handa <handa@m17n.org>
parents:
91905
diff
changeset
|
1098 { |
1e28008a13e5
(xfont_draw): Pay attention to s->padding_p.
Kenichi Handa <handa@m17n.org>
parents:
91905
diff
changeset
|
1099 if (s->padding_p) |
1e28008a13e5
(xfont_draw): Pay attention to s->padding_p.
Kenichi Handa <handa@m17n.org>
parents:
91905
diff
changeset
|
1100 for (i = 0; i < len; i++) |
1e28008a13e5
(xfont_draw): Pay attention to s->padding_p.
Kenichi Handa <handa@m17n.org>
parents:
91905
diff
changeset
|
1101 XDrawImageString16 (FRAME_X_DISPLAY (s->f), FRAME_X_WINDOW (s->f), |
1e28008a13e5
(xfont_draw): Pay attention to s->padding_p.
Kenichi Handa <handa@m17n.org>
parents:
91905
diff
changeset
|
1102 gc, x + i, y, s->char2b + from + i, 1); |
1e28008a13e5
(xfont_draw): Pay attention to s->padding_p.
Kenichi Handa <handa@m17n.org>
parents:
91905
diff
changeset
|
1103 else |
1e28008a13e5
(xfont_draw): Pay attention to s->padding_p.
Kenichi Handa <handa@m17n.org>
parents:
91905
diff
changeset
|
1104 XDrawImageString16 (FRAME_X_DISPLAY (s->f), FRAME_X_WINDOW (s->f), |
1e28008a13e5
(xfont_draw): Pay attention to s->padding_p.
Kenichi Handa <handa@m17n.org>
parents:
91905
diff
changeset
|
1105 gc, x, y, s->char2b + from, len); |
1e28008a13e5
(xfont_draw): Pay attention to s->padding_p.
Kenichi Handa <handa@m17n.org>
parents:
91905
diff
changeset
|
1106 } |
90400 | 1107 else |
92185
1e28008a13e5
(xfont_draw): Pay attention to s->padding_p.
Kenichi Handa <handa@m17n.org>
parents:
91905
diff
changeset
|
1108 { |
1e28008a13e5
(xfont_draw): Pay attention to s->padding_p.
Kenichi Handa <handa@m17n.org>
parents:
91905
diff
changeset
|
1109 if (s->padding_p) |
1e28008a13e5
(xfont_draw): Pay attention to s->padding_p.
Kenichi Handa <handa@m17n.org>
parents:
91905
diff
changeset
|
1110 for (i = 0; i < len; i++) |
1e28008a13e5
(xfont_draw): Pay attention to s->padding_p.
Kenichi Handa <handa@m17n.org>
parents:
91905
diff
changeset
|
1111 XDrawString16 (FRAME_X_DISPLAY (s->f), FRAME_X_WINDOW (s->f), |
1e28008a13e5
(xfont_draw): Pay attention to s->padding_p.
Kenichi Handa <handa@m17n.org>
parents:
91905
diff
changeset
|
1112 gc, x + i, y, s->char2b + from + i, 1); |
1e28008a13e5
(xfont_draw): Pay attention to s->padding_p.
Kenichi Handa <handa@m17n.org>
parents:
91905
diff
changeset
|
1113 else |
1e28008a13e5
(xfont_draw): Pay attention to s->padding_p.
Kenichi Handa <handa@m17n.org>
parents:
91905
diff
changeset
|
1114 XDrawString16 (FRAME_X_DISPLAY (s->f), FRAME_X_WINDOW (s->f), |
1e28008a13e5
(xfont_draw): Pay attention to s->padding_p.
Kenichi Handa <handa@m17n.org>
parents:
91905
diff
changeset
|
1115 gc, x, y, s->char2b + from, len); |
1e28008a13e5
(xfont_draw): Pay attention to s->padding_p.
Kenichi Handa <handa@m17n.org>
parents:
91905
diff
changeset
|
1116 } |
91905
6ae79e72fea7
(xfont_draw): Use BLOCK_INPUT and UNBLOCK_INPUT.
Kenichi Handa <handa@m17n.org>
parents:
91554
diff
changeset
|
1117 UNBLOCK_INPUT; |
90400 | 1118 |
1119 return len; | |
1120 } | |
1121 | |
94940
061d44df20b7
Include <stdlib.h> and "ccl.h".
Kenichi Handa <handa@m17n.org>
parents:
92185
diff
changeset
|
1122 static int |
061d44df20b7
Include <stdlib.h> and "ccl.h".
Kenichi Handa <handa@m17n.org>
parents:
92185
diff
changeset
|
1123 xfont_check (f, font) |
061d44df20b7
Include <stdlib.h> and "ccl.h".
Kenichi Handa <handa@m17n.org>
parents:
92185
diff
changeset
|
1124 FRAME_PTR f; |
061d44df20b7
Include <stdlib.h> and "ccl.h".
Kenichi Handa <handa@m17n.org>
parents:
92185
diff
changeset
|
1125 struct font *font; |
061d44df20b7
Include <stdlib.h> and "ccl.h".
Kenichi Handa <handa@m17n.org>
parents:
92185
diff
changeset
|
1126 { |
061d44df20b7
Include <stdlib.h> and "ccl.h".
Kenichi Handa <handa@m17n.org>
parents:
92185
diff
changeset
|
1127 struct xfont_info *xfont = (struct xfont_info *) font; |
061d44df20b7
Include <stdlib.h> and "ccl.h".
Kenichi Handa <handa@m17n.org>
parents:
92185
diff
changeset
|
1128 |
061d44df20b7
Include <stdlib.h> and "ccl.h".
Kenichi Handa <handa@m17n.org>
parents:
92185
diff
changeset
|
1129 return (FRAME_X_DISPLAY (f) == xfont->display ? 0 : -1); |
061d44df20b7
Include <stdlib.h> and "ccl.h".
Kenichi Handa <handa@m17n.org>
parents:
92185
diff
changeset
|
1130 } |
061d44df20b7
Include <stdlib.h> and "ccl.h".
Kenichi Handa <handa@m17n.org>
parents:
92185
diff
changeset
|
1131 |
90400 | 1132 |
1133 void | |
1134 syms_of_xfont () | |
1135 { | |
103270
c4706100caab
(xfont_chars_supported, xfont_supported_scripts): New
Kenichi Handa <handa@m17n.org>
parents:
103184
diff
changeset
|
1136 staticpro (&xfont_scripts_cache); |
103274
0e85983c95eb
(xfont_list_pattern): Don't initialize xfont_scripts_cache
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
103270
diff
changeset
|
1137 { /* Here we rely on the fact that syms_of_xfont (via syms_of_font) |
0e85983c95eb
(xfont_list_pattern): Don't initialize xfont_scripts_cache
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
103270
diff
changeset
|
1138 is called fairly late, when QCtest and Qequal are known to be set. */ |
0e85983c95eb
(xfont_list_pattern): Don't initialize xfont_scripts_cache
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
103270
diff
changeset
|
1139 Lisp_Object args[2]; |
0e85983c95eb
(xfont_list_pattern): Don't initialize xfont_scripts_cache
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
103270
diff
changeset
|
1140 args[0] = QCtest; |
0e85983c95eb
(xfont_list_pattern): Don't initialize xfont_scripts_cache
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
103270
diff
changeset
|
1141 args[1] = Qequal; |
0e85983c95eb
(xfont_list_pattern): Don't initialize xfont_scripts_cache
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
103270
diff
changeset
|
1142 xfont_scripts_cache = Fmake_hash_table (2, args); |
0e85983c95eb
(xfont_list_pattern): Don't initialize xfont_scripts_cache
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
103270
diff
changeset
|
1143 } |
103270
c4706100caab
(xfont_chars_supported, xfont_supported_scripts): New
Kenichi Handa <handa@m17n.org>
parents:
103184
diff
changeset
|
1144 staticpro (&xfont_scratch_props); |
103274
0e85983c95eb
(xfont_list_pattern): Don't initialize xfont_scripts_cache
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
103270
diff
changeset
|
1145 xfont_scratch_props = Fmake_vector (make_number (8), Qnil); |
90400 | 1146 xfont_driver.type = Qx; |
1147 register_font_driver (&xfont_driver, NULL); | |
1148 } | |
90427 | 1149 |
1150 /* arch-tag: 23c5f366-a5ee-44b7-a3b7-90d6da7fd749 | |
1151 (do not change this comment) */ |