Mercurial > emacs
annotate src/xftfont.c @ 95248:740676cab436
custom.texi: Minor project settings fixes.
author | Michael Olson <mwolson@gnu.org> |
---|---|
date | Fri, 23 May 2008 06:30:37 +0000 |
parents | a3868b9c34f4 |
children | 089ad7a58f94 |
rev | line source |
---|---|
90400 | 1 /* xftfont.c -- XFT font driver. |
91556
0920231c95f2
Update copyright years and GPL version.
Glenn Morris <rgm@gnu.org>
parents:
91269
diff
changeset
|
2 Copyright (C) 2006, 2007, 2008 Free Software Foundation, Inc. |
0920231c95f2
Update copyright years and GPL version.
Glenn Morris <rgm@gnu.org>
parents:
91269
diff
changeset
|
3 Copyright (C) 2006, 2007, 2008 |
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:
94941
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:
94941
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:
94941
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:
94941
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> | |
24 #include <X11/Xlib.h> | |
25 #include <X11/Xft/Xft.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" | |
91143 | 36 #include "ftfont.h" |
90400 | 37 |
38 /* Xft font driver. */ | |
39 | |
40 static Lisp_Object Qxft; | |
41 | |
42 /* The actual structure for Xft font that can be casted to struct | |
43 font. */ | |
44 | |
45 struct xftfont_info | |
46 { | |
47 struct font font; | |
48 Display *display; | |
49 int screen; | |
50 XftFont *xftfont; | |
91143 | 51 #ifdef HAVE_LIBOTF |
52 int maybe_otf; /* Flag to tell if this may be OTF or not. */ | |
53 OTF *otf; | |
91163 | 54 #endif /* HAVE_LIBOTF */ |
90400 | 55 }; |
56 | |
57 /* Structure pointed by (struct face *)->extra */ | |
90559
fb5d3ac2d786
(xftfont_match): New function.
Kenichi Handa <handa@m17n.org>
parents:
90527
diff
changeset
|
58 |
90400 | 59 struct xftface_info |
60 { | |
90559
fb5d3ac2d786
(xftfont_match): New function.
Kenichi Handa <handa@m17n.org>
parents:
90527
diff
changeset
|
61 XftColor xft_fg; /* color for face->foreground */ |
fb5d3ac2d786
(xftfont_match): New function.
Kenichi Handa <handa@m17n.org>
parents:
90527
diff
changeset
|
62 XftColor xft_bg; /* color for face->background */ |
90400 | 63 }; |
64 | |
65 static void xftfont_get_colors P_ ((FRAME_PTR, struct face *, GC gc, | |
66 struct xftface_info *, | |
67 XftColor *fg, XftColor *bg)); | |
68 | |
69 | |
90559
fb5d3ac2d786
(xftfont_match): New function.
Kenichi Handa <handa@m17n.org>
parents:
90527
diff
changeset
|
70 /* Setup foreground and background colors of GC into FG and BG. If |
fb5d3ac2d786
(xftfont_match): New function.
Kenichi Handa <handa@m17n.org>
parents:
90527
diff
changeset
|
71 XFTFACE_INFO is not NULL, reuse the colors in it if possible. BG |
fb5d3ac2d786
(xftfont_match): New function.
Kenichi Handa <handa@m17n.org>
parents:
90527
diff
changeset
|
72 may be NULL. */ |
fb5d3ac2d786
(xftfont_match): New function.
Kenichi Handa <handa@m17n.org>
parents:
90527
diff
changeset
|
73 |
90400 | 74 static void |
75 xftfont_get_colors (f, face, gc, xftface_info, fg, bg) | |
76 FRAME_PTR f; | |
77 struct face *face; | |
78 GC gc; | |
79 struct xftface_info *xftface_info; | |
80 XftColor *fg, *bg; | |
81 { | |
82 if (xftface_info && face->gc == gc) | |
83 { | |
84 *fg = xftface_info->xft_fg; | |
85 if (bg) | |
86 *bg = xftface_info->xft_bg; | |
87 } | |
88 else | |
89 { | |
90 XGCValues xgcv; | |
91 int fg_done = 0, bg_done = 0; | |
92 | |
93 BLOCK_INPUT; | |
94 XGetGCValues (FRAME_X_DISPLAY (f), gc, | |
95 GCForeground | GCBackground, &xgcv); | |
96 if (xftface_info) | |
97 { | |
98 if (xgcv.foreground == face->foreground) | |
99 *fg = xftface_info->xft_fg, fg_done = 1; | |
100 else if (xgcv.foreground == face->background) | |
101 *fg = xftface_info->xft_bg, fg_done = 1; | |
102 if (! bg) | |
103 bg_done = 1; | |
104 else if (xgcv.background == face->background) | |
105 *bg = xftface_info->xft_bg, bg_done = 1; | |
106 else if (xgcv.background == face->foreground) | |
107 *bg = xftface_info->xft_fg, bg_done = 1; | |
108 } | |
109 | |
110 if (fg_done + bg_done < 2) | |
111 { | |
112 XColor colors[2]; | |
113 | |
114 colors[0].pixel = fg->pixel = xgcv.foreground; | |
115 if (bg) | |
116 colors[1].pixel = bg->pixel = xgcv.background; | |
117 XQueryColors (FRAME_X_DISPLAY (f), FRAME_X_COLORMAP (f), colors, | |
118 bg ? 2 : 1); | |
119 fg->color.alpha = 0xFFFF; | |
120 fg->color.red = colors[0].red; | |
121 fg->color.green = colors[0].green; | |
122 fg->color.blue = colors[0].blue; | |
123 if (bg) | |
124 { | |
125 bg->color.alpha = 0xFFFF; | |
126 bg->color.red = colors[1].red; | |
127 bg->color.green = colors[1].green; | |
128 bg->color.blue = colors[1].blue; | |
129 } | |
130 } | |
131 UNBLOCK_INPUT; | |
132 } | |
133 } | |
134 | |
135 | |
136 static Lisp_Object xftfont_list P_ ((Lisp_Object, Lisp_Object)); | |
90559
fb5d3ac2d786
(xftfont_match): New function.
Kenichi Handa <handa@m17n.org>
parents:
90527
diff
changeset
|
137 static Lisp_Object xftfont_match P_ ((Lisp_Object, Lisp_Object)); |
94941
8cbdb26068b4
(xftfont_list): Adjusted for the change of `list'
Kenichi Handa <handa@m17n.org>
parents:
92184
diff
changeset
|
138 static Lisp_Object xftfont_open P_ ((FRAME_PTR, Lisp_Object, int)); |
90400 | 139 static void xftfont_close P_ ((FRAME_PTR, struct font *)); |
140 static int xftfont_prepare_face P_ ((FRAME_PTR, struct face *)); | |
141 static void xftfont_done_face P_ ((FRAME_PTR, struct face *)); | |
142 static unsigned xftfont_encode_char P_ ((struct font *, int)); | |
143 static int xftfont_text_extents P_ ((struct font *, unsigned *, int, | |
144 struct font_metrics *)); | |
145 static int xftfont_draw P_ ((struct glyph_string *, int, int, int, int, int)); | |
146 | |
147 static int xftfont_anchor_point P_ ((struct font *, unsigned, int, | |
148 int *, int *)); | |
91110
82a42637237c
(struct xftface_info): Delete the member xft_draw.
Kenichi Handa <handa@m17n.org>
parents:
91027
diff
changeset
|
149 static int xftfont_end_for_frame P_ ((FRAME_PTR f)); |
90400 | 150 |
151 struct font_driver xftfont_driver; | |
152 | |
153 static Lisp_Object | |
154 xftfont_list (frame, spec) | |
155 Lisp_Object frame; | |
156 Lisp_Object spec; | |
157 { | |
94941
8cbdb26068b4
(xftfont_list): Adjusted for the change of `list'
Kenichi Handa <handa@m17n.org>
parents:
92184
diff
changeset
|
158 Lisp_Object list = ftfont_driver.list (frame, spec), tail; |
90400 | 159 |
94941
8cbdb26068b4
(xftfont_list): Adjusted for the change of `list'
Kenichi Handa <handa@m17n.org>
parents:
92184
diff
changeset
|
160 for (tail = list; CONSP (tail); tail = XCDR (tail)) |
8cbdb26068b4
(xftfont_list): Adjusted for the change of `list'
Kenichi Handa <handa@m17n.org>
parents:
92184
diff
changeset
|
161 ASET (XCAR (tail), FONT_TYPE_INDEX, Qxft); |
8cbdb26068b4
(xftfont_list): Adjusted for the change of `list'
Kenichi Handa <handa@m17n.org>
parents:
92184
diff
changeset
|
162 return list; |
90559
fb5d3ac2d786
(xftfont_match): New function.
Kenichi Handa <handa@m17n.org>
parents:
90527
diff
changeset
|
163 } |
90400 | 164 |
90559
fb5d3ac2d786
(xftfont_match): New function.
Kenichi Handa <handa@m17n.org>
parents:
90527
diff
changeset
|
165 static Lisp_Object |
fb5d3ac2d786
(xftfont_match): New function.
Kenichi Handa <handa@m17n.org>
parents:
90527
diff
changeset
|
166 xftfont_match (frame, spec) |
fb5d3ac2d786
(xftfont_match): New function.
Kenichi Handa <handa@m17n.org>
parents:
90527
diff
changeset
|
167 Lisp_Object frame; |
fb5d3ac2d786
(xftfont_match): New function.
Kenichi Handa <handa@m17n.org>
parents:
90527
diff
changeset
|
168 Lisp_Object spec; |
fb5d3ac2d786
(xftfont_match): New function.
Kenichi Handa <handa@m17n.org>
parents:
90527
diff
changeset
|
169 { |
fb5d3ac2d786
(xftfont_match): New function.
Kenichi Handa <handa@m17n.org>
parents:
90527
diff
changeset
|
170 Lisp_Object entity = ftfont_driver.match (frame, spec); |
fb5d3ac2d786
(xftfont_match): New function.
Kenichi Handa <handa@m17n.org>
parents:
90527
diff
changeset
|
171 |
94941
8cbdb26068b4
(xftfont_list): Adjusted for the change of `list'
Kenichi Handa <handa@m17n.org>
parents:
92184
diff
changeset
|
172 if (! NILP (entity)) |
90559
fb5d3ac2d786
(xftfont_match): New function.
Kenichi Handa <handa@m17n.org>
parents:
90527
diff
changeset
|
173 ASET (entity, FONT_TYPE_INDEX, Qxft); |
fb5d3ac2d786
(xftfont_match): New function.
Kenichi Handa <handa@m17n.org>
parents:
90527
diff
changeset
|
174 return entity; |
90400 | 175 } |
176 | |
90700
b165eceb829f
(ftfont_font_format): Extern declaration.
Kenichi Handa <handa@m17n.org>
parents:
90675
diff
changeset
|
177 extern Lisp_Object ftfont_font_format P_ ((FcPattern *)); |
b165eceb829f
(ftfont_font_format): Extern declaration.
Kenichi Handa <handa@m17n.org>
parents:
90675
diff
changeset
|
178 |
90400 | 179 static FcChar8 ascii_printable[95]; |
180 | |
94941
8cbdb26068b4
(xftfont_list): Adjusted for the change of `list'
Kenichi Handa <handa@m17n.org>
parents:
92184
diff
changeset
|
181 static Lisp_Object |
90400 | 182 xftfont_open (f, entity, pixel_size) |
183 FRAME_PTR f; | |
184 Lisp_Object entity; | |
185 int pixel_size; | |
186 { | |
187 Display *display = FRAME_X_DISPLAY (f); | |
95102
a3868b9c34f4
(xftfont_open): Ajusted for the change of extra info
Kenichi Handa <handa@m17n.org>
parents:
94963
diff
changeset
|
188 Lisp_Object val, filename, cache, font_object; |
a3868b9c34f4
(xftfont_open): Ajusted for the change of extra info
Kenichi Handa <handa@m17n.org>
parents:
94963
diff
changeset
|
189 FcPattern *pat = NULL; |
90460
86449661f321
(xftfont_open): Change coding style of error
Kenichi Handa <handa@m17n.org>
parents:
90442
diff
changeset
|
190 struct xftfont_info *xftfont_info = NULL; |
90400 | 191 struct font *font; |
192 double size = 0; | |
90460
86449661f321
(xftfont_open): Change coding style of error
Kenichi Handa <handa@m17n.org>
parents:
90442
diff
changeset
|
193 XftFont *xftfont = NULL; |
90400 | 194 int spacing; |
94941
8cbdb26068b4
(xftfont_list): Adjusted for the change of `list'
Kenichi Handa <handa@m17n.org>
parents:
92184
diff
changeset
|
195 char name[256]; |
8cbdb26068b4
(xftfont_list): Adjusted for the change of `list'
Kenichi Handa <handa@m17n.org>
parents:
92184
diff
changeset
|
196 int len, i; |
90959
3f83c9d3f96c
(xftfont_open): If one of font's ASCII glyph has
Kenichi Handa <handa@m17n.org>
parents:
90714
diff
changeset
|
197 XGlyphInfo extents; |
91226
040f2e332dc3
(struct xftfont_info): Delete the member ft_face.
Kenichi Handa <handa@m17n.org>
parents:
91163
diff
changeset
|
198 FT_Face ft_face; |
90400 | 199 |
94941
8cbdb26068b4
(xftfont_list): Adjusted for the change of `list'
Kenichi Handa <handa@m17n.org>
parents:
92184
diff
changeset
|
200 val = assq_no_quit (QCfont_entity, AREF (entity, FONT_EXTRA_INDEX)); |
95102
a3868b9c34f4
(xftfont_open): Ajusted for the change of extra info
Kenichi Handa <handa@m17n.org>
parents:
94963
diff
changeset
|
201 if (! CONSP (val)) |
94941
8cbdb26068b4
(xftfont_list): Adjusted for the change of `list'
Kenichi Handa <handa@m17n.org>
parents:
92184
diff
changeset
|
202 return Qnil; |
95102
a3868b9c34f4
(xftfont_open): Ajusted for the change of extra info
Kenichi Handa <handa@m17n.org>
parents:
94963
diff
changeset
|
203 val = XCDR (val); |
a3868b9c34f4
(xftfont_open): Ajusted for the change of extra info
Kenichi Handa <handa@m17n.org>
parents:
94963
diff
changeset
|
204 filename = XCAR (val); |
90400 | 205 size = XINT (AREF (entity, FONT_SIZE_INDEX)); |
206 if (size == 0) | |
207 size = pixel_size; | |
208 pat = FcPatternCreate (); | |
95102
a3868b9c34f4
(xftfont_open): Ajusted for the change of extra info
Kenichi Handa <handa@m17n.org>
parents:
94963
diff
changeset
|
209 FcPatternAddString (pat, FC_FILE, (FcChar8 *) SDATA (filename)); |
90400 | 210 FcPatternAddDouble (pat, FC_PIXEL_SIZE, pixel_size); |
90712
8594053c8fec
(xftfont_open): Don't enable antialias explicitly.
Kenichi Handa <handa@m17n.org>
parents:
90700
diff
changeset
|
211 /*FcPatternAddBool (pat, FC_ANTIALIAS, FcTrue);*/ |
90714
698001835583
(xftfont_open): Call FcConfigSubstitute.
Kenichi Handa <handa@m17n.org>
parents:
90712
diff
changeset
|
212 val = AREF (entity, FONT_FAMILY_INDEX); |
698001835583
(xftfont_open): Call FcConfigSubstitute.
Kenichi Handa <handa@m17n.org>
parents:
90712
diff
changeset
|
213 if (! NILP (val)) |
698001835583
(xftfont_open): Call FcConfigSubstitute.
Kenichi Handa <handa@m17n.org>
parents:
90712
diff
changeset
|
214 FcPatternAddString (pat, FC_FAMILY, (FcChar8 *) SDATA (SYMBOL_NAME (val))); |
698001835583
(xftfont_open): Call FcConfigSubstitute.
Kenichi Handa <handa@m17n.org>
parents:
90712
diff
changeset
|
215 FcConfigSubstitute (NULL, pat, FcMatchPattern); |
90442
d6abf2344438
(xftfont_open): Make the font name fontconfig's
Kenichi Handa <handa@m17n.org>
parents:
90427
diff
changeset
|
216 |
d6abf2344438
(xftfont_open): Make the font name fontconfig's
Kenichi Handa <handa@m17n.org>
parents:
90427
diff
changeset
|
217 BLOCK_INPUT; |
90589
697dcc1df88d
(xftfont_open): Call XftDefaultSubstitute before
Kenichi Handa <handa@m17n.org>
parents:
90559
diff
changeset
|
218 XftDefaultSubstitute (display, FRAME_X_SCREEN_NUMBER (f), pat); |
90400 | 219 xftfont = XftFontOpenPattern (display, pat); |
94941
8cbdb26068b4
(xftfont_list): Adjusted for the change of `list'
Kenichi Handa <handa@m17n.org>
parents:
92184
diff
changeset
|
220 UNBLOCK_INPUT; |
8cbdb26068b4
(xftfont_list): Adjusted for the change of `list'
Kenichi Handa <handa@m17n.org>
parents:
92184
diff
changeset
|
221 if (! xftfont) |
8cbdb26068b4
(xftfont_list): Adjusted for the change of `list'
Kenichi Handa <handa@m17n.org>
parents:
92184
diff
changeset
|
222 return Qnil; |
90400 | 223 /* We should not destroy PAT here because it is kept in XFTFONT and |
224 destroyed automatically when XFTFONT is closed. */ | |
94941
8cbdb26068b4
(xftfont_list): Adjusted for the change of `list'
Kenichi Handa <handa@m17n.org>
parents:
92184
diff
changeset
|
225 font_object = font_make_object (VECSIZE (struct xftfont_info)); |
8cbdb26068b4
(xftfont_list): Adjusted for the change of `list'
Kenichi Handa <handa@m17n.org>
parents:
92184
diff
changeset
|
226 ASET (font_object, FONT_TYPE_INDEX, Qxft); |
8cbdb26068b4
(xftfont_list): Adjusted for the change of `list'
Kenichi Handa <handa@m17n.org>
parents:
92184
diff
changeset
|
227 for (i = 1; i < FONT_ENTITY_MAX; i++) |
8cbdb26068b4
(xftfont_list): Adjusted for the change of `list'
Kenichi Handa <handa@m17n.org>
parents:
92184
diff
changeset
|
228 ASET (font_object, i, AREF (entity, i)); |
8cbdb26068b4
(xftfont_list): Adjusted for the change of `list'
Kenichi Handa <handa@m17n.org>
parents:
92184
diff
changeset
|
229 ASET (font_object, FONT_SIZE_INDEX, make_number (size)); |
8cbdb26068b4
(xftfont_list): Adjusted for the change of `list'
Kenichi Handa <handa@m17n.org>
parents:
92184
diff
changeset
|
230 len = font_unparse_xlfd (entity, size, name, 256); |
8cbdb26068b4
(xftfont_list): Adjusted for the change of `list'
Kenichi Handa <handa@m17n.org>
parents:
92184
diff
changeset
|
231 if (len > 0) |
8cbdb26068b4
(xftfont_list): Adjusted for the change of `list'
Kenichi Handa <handa@m17n.org>
parents:
92184
diff
changeset
|
232 ASET (font_object, FONT_NAME_INDEX, make_unibyte_string (name, len)); |
8cbdb26068b4
(xftfont_list): Adjusted for the change of `list'
Kenichi Handa <handa@m17n.org>
parents:
92184
diff
changeset
|
233 len = font_unparse_fcname (entity, size, name, 256); |
8cbdb26068b4
(xftfont_list): Adjusted for the change of `list'
Kenichi Handa <handa@m17n.org>
parents:
92184
diff
changeset
|
234 if (len > 0) |
8cbdb26068b4
(xftfont_list): Adjusted for the change of `list'
Kenichi Handa <handa@m17n.org>
parents:
92184
diff
changeset
|
235 ASET (font_object, FONT_FULLNAME_INDEX, make_unibyte_string (name, len)); |
8cbdb26068b4
(xftfont_list): Adjusted for the change of `list'
Kenichi Handa <handa@m17n.org>
parents:
92184
diff
changeset
|
236 else |
8cbdb26068b4
(xftfont_list): Adjusted for the change of `list'
Kenichi Handa <handa@m17n.org>
parents:
92184
diff
changeset
|
237 ASET (font_object, FONT_FULLNAME_INDEX, |
8cbdb26068b4
(xftfont_list): Adjusted for the change of `list'
Kenichi Handa <handa@m17n.org>
parents:
92184
diff
changeset
|
238 AREF (font_object, FONT_NAME_INDEX)); |
95102
a3868b9c34f4
(xftfont_open): Ajusted for the change of extra info
Kenichi Handa <handa@m17n.org>
parents:
94963
diff
changeset
|
239 ASET (font_object, FONT_FILE_INDEX, filename); |
a3868b9c34f4
(xftfont_open): Ajusted for the change of extra info
Kenichi Handa <handa@m17n.org>
parents:
94963
diff
changeset
|
240 ASET (font_object, FONT_FORMAT_INDEX, |
a3868b9c34f4
(xftfont_open): Ajusted for the change of extra info
Kenichi Handa <handa@m17n.org>
parents:
94963
diff
changeset
|
241 ftfont_font_format (xftfont->pattern)); |
94941
8cbdb26068b4
(xftfont_list): Adjusted for the change of `list'
Kenichi Handa <handa@m17n.org>
parents:
92184
diff
changeset
|
242 font = XFONT_OBJECT (font_object); |
8cbdb26068b4
(xftfont_list): Adjusted for the change of `list'
Kenichi Handa <handa@m17n.org>
parents:
92184
diff
changeset
|
243 font->pixel_size = pixel_size; |
8cbdb26068b4
(xftfont_list): Adjusted for the change of `list'
Kenichi Handa <handa@m17n.org>
parents:
92184
diff
changeset
|
244 font->driver = &xftfont_driver; |
8cbdb26068b4
(xftfont_list): Adjusted for the change of `list'
Kenichi Handa <handa@m17n.org>
parents:
92184
diff
changeset
|
245 font->encoding_charset = font->repertory_charset = -1; |
90400 | 246 |
94941
8cbdb26068b4
(xftfont_list): Adjusted for the change of `list'
Kenichi Handa <handa@m17n.org>
parents:
92184
diff
changeset
|
247 xftfont_info = (struct xftfont_info *) font; |
90400 | 248 xftfont_info->display = display; |
249 xftfont_info->screen = FRAME_X_SCREEN_NUMBER (f); | |
250 xftfont_info->xftfont = xftfont; | |
251 font->pixel_size = size; | |
252 font->driver = &xftfont_driver; | |
95102
a3868b9c34f4
(xftfont_open): Ajusted for the change of extra info
Kenichi Handa <handa@m17n.org>
parents:
94963
diff
changeset
|
253 if (INTEGERP (AREF (entity, FONT_SPACING_INDEX))) |
a3868b9c34f4
(xftfont_open): Ajusted for the change of extra info
Kenichi Handa <handa@m17n.org>
parents:
94963
diff
changeset
|
254 spacing = XINT (AREF (entity, FONT_SPACING_INDEX)); |
a3868b9c34f4
(xftfont_open): Ajusted for the change of extra info
Kenichi Handa <handa@m17n.org>
parents:
94963
diff
changeset
|
255 else |
90400 | 256 spacing = FC_PROPORTIONAL; |
90959
3f83c9d3f96c
(xftfont_open): If one of font's ASCII glyph has
Kenichi Handa <handa@m17n.org>
parents:
90714
diff
changeset
|
257 if (! ascii_printable[0]) |
3f83c9d3f96c
(xftfont_open): If one of font's ASCII glyph has
Kenichi Handa <handa@m17n.org>
parents:
90714
diff
changeset
|
258 { |
3f83c9d3f96c
(xftfont_open): If one of font's ASCII glyph has
Kenichi Handa <handa@m17n.org>
parents:
90714
diff
changeset
|
259 int i; |
3f83c9d3f96c
(xftfont_open): If one of font's ASCII glyph has
Kenichi Handa <handa@m17n.org>
parents:
90714
diff
changeset
|
260 for (i = 0; i < 95; i++) |
3f83c9d3f96c
(xftfont_open): If one of font's ASCII glyph has
Kenichi Handa <handa@m17n.org>
parents:
90714
diff
changeset
|
261 ascii_printable[i] = ' ' + i; |
3f83c9d3f96c
(xftfont_open): If one of font's ASCII glyph has
Kenichi Handa <handa@m17n.org>
parents:
90714
diff
changeset
|
262 } |
94941
8cbdb26068b4
(xftfont_list): Adjusted for the change of `list'
Kenichi Handa <handa@m17n.org>
parents:
92184
diff
changeset
|
263 BLOCK_INPUT; |
90400 | 264 if (spacing != FC_PROPORTIONAL) |
90959
3f83c9d3f96c
(xftfont_open): If one of font's ASCII glyph has
Kenichi Handa <handa@m17n.org>
parents:
90714
diff
changeset
|
265 { |
94941
8cbdb26068b4
(xftfont_list): Adjusted for the change of `list'
Kenichi Handa <handa@m17n.org>
parents:
92184
diff
changeset
|
266 font->min_width = font->average_width = font->space_width |
90959
3f83c9d3f96c
(xftfont_open): If one of font's ASCII glyph has
Kenichi Handa <handa@m17n.org>
parents:
90714
diff
changeset
|
267 = xftfont->max_advance_width; |
3f83c9d3f96c
(xftfont_open): If one of font's ASCII glyph has
Kenichi Handa <handa@m17n.org>
parents:
90714
diff
changeset
|
268 XftTextExtents8 (display, xftfont, ascii_printable + 1, 94, &extents); |
3f83c9d3f96c
(xftfont_open): If one of font's ASCII glyph has
Kenichi Handa <handa@m17n.org>
parents:
90714
diff
changeset
|
269 } |
90400 | 270 else |
271 { | |
272 XftTextExtents8 (display, xftfont, ascii_printable, 1, &extents); | |
94941
8cbdb26068b4
(xftfont_list): Adjusted for the change of `list'
Kenichi Handa <handa@m17n.org>
parents:
92184
diff
changeset
|
273 font->space_width = extents.xOff; |
8cbdb26068b4
(xftfont_list): Adjusted for the change of `list'
Kenichi Handa <handa@m17n.org>
parents:
92184
diff
changeset
|
274 if (font->space_width <= 0) |
90400 | 275 /* dirty workaround */ |
94941
8cbdb26068b4
(xftfont_list): Adjusted for the change of `list'
Kenichi Handa <handa@m17n.org>
parents:
92184
diff
changeset
|
276 font->space_width = pixel_size; |
90400 | 277 XftTextExtents8 (display, xftfont, ascii_printable + 1, 94, &extents); |
94941
8cbdb26068b4
(xftfont_list): Adjusted for the change of `list'
Kenichi Handa <handa@m17n.org>
parents:
92184
diff
changeset
|
278 font->average_width = (font->space_width + extents.xOff) / 95; |
90400 | 279 } |
90442
d6abf2344438
(xftfont_open): Make the font name fontconfig's
Kenichi Handa <handa@m17n.org>
parents:
90427
diff
changeset
|
280 UNBLOCK_INPUT; |
90400 | 281 |
90959
3f83c9d3f96c
(xftfont_open): If one of font's ASCII glyph has
Kenichi Handa <handa@m17n.org>
parents:
90714
diff
changeset
|
282 font->ascent = xftfont->ascent; |
3f83c9d3f96c
(xftfont_open): If one of font's ASCII glyph has
Kenichi Handa <handa@m17n.org>
parents:
90714
diff
changeset
|
283 if (font->ascent < extents.y) |
3f83c9d3f96c
(xftfont_open): If one of font's ASCII glyph has
Kenichi Handa <handa@m17n.org>
parents:
90714
diff
changeset
|
284 font->ascent = extents.y; |
3f83c9d3f96c
(xftfont_open): If one of font's ASCII glyph has
Kenichi Handa <handa@m17n.org>
parents:
90714
diff
changeset
|
285 font->descent = xftfont->descent; |
3f83c9d3f96c
(xftfont_open): If one of font's ASCII glyph has
Kenichi Handa <handa@m17n.org>
parents:
90714
diff
changeset
|
286 if (font->descent < extents.height - extents.y) |
3f83c9d3f96c
(xftfont_open): If one of font's ASCII glyph has
Kenichi Handa <handa@m17n.org>
parents:
90714
diff
changeset
|
287 font->descent = extents.height - extents.y; |
94941
8cbdb26068b4
(xftfont_list): Adjusted for the change of `list'
Kenichi Handa <handa@m17n.org>
parents:
92184
diff
changeset
|
288 font->height = font->ascent + font->descent; |
8cbdb26068b4
(xftfont_list): Adjusted for the change of `list'
Kenichi Handa <handa@m17n.org>
parents:
92184
diff
changeset
|
289 |
8cbdb26068b4
(xftfont_list): Adjusted for the change of `list'
Kenichi Handa <handa@m17n.org>
parents:
92184
diff
changeset
|
290 ft_face = XftLockFace (xftfont); |
8cbdb26068b4
(xftfont_list): Adjusted for the change of `list'
Kenichi Handa <handa@m17n.org>
parents:
92184
diff
changeset
|
291 if (XINT (AREF (entity, FONT_SIZE_INDEX)) == 0) |
8cbdb26068b4
(xftfont_list): Adjusted for the change of `list'
Kenichi Handa <handa@m17n.org>
parents:
92184
diff
changeset
|
292 { |
8cbdb26068b4
(xftfont_list): Adjusted for the change of `list'
Kenichi Handa <handa@m17n.org>
parents:
92184
diff
changeset
|
293 int upEM = ft_face->units_per_EM; |
8cbdb26068b4
(xftfont_list): Adjusted for the change of `list'
Kenichi Handa <handa@m17n.org>
parents:
92184
diff
changeset
|
294 |
8cbdb26068b4
(xftfont_list): Adjusted for the change of `list'
Kenichi Handa <handa@m17n.org>
parents:
92184
diff
changeset
|
295 font->underline_position = -ft_face->underline_position * size / upEM; |
8cbdb26068b4
(xftfont_list): Adjusted for the change of `list'
Kenichi Handa <handa@m17n.org>
parents:
92184
diff
changeset
|
296 font->underline_thickness = -ft_face->underline_thickness * size / upEM; |
8cbdb26068b4
(xftfont_list): Adjusted for the change of `list'
Kenichi Handa <handa@m17n.org>
parents:
92184
diff
changeset
|
297 } |
8cbdb26068b4
(xftfont_list): Adjusted for the change of `list'
Kenichi Handa <handa@m17n.org>
parents:
92184
diff
changeset
|
298 else |
8cbdb26068b4
(xftfont_list): Adjusted for the change of `list'
Kenichi Handa <handa@m17n.org>
parents:
92184
diff
changeset
|
299 { |
8cbdb26068b4
(xftfont_list): Adjusted for the change of `list'
Kenichi Handa <handa@m17n.org>
parents:
92184
diff
changeset
|
300 font->underline_position = -1; |
8cbdb26068b4
(xftfont_list): Adjusted for the change of `list'
Kenichi Handa <handa@m17n.org>
parents:
92184
diff
changeset
|
301 font->underline_thickness = 0; |
8cbdb26068b4
(xftfont_list): Adjusted for the change of `list'
Kenichi Handa <handa@m17n.org>
parents:
92184
diff
changeset
|
302 } |
8cbdb26068b4
(xftfont_list): Adjusted for the change of `list'
Kenichi Handa <handa@m17n.org>
parents:
92184
diff
changeset
|
303 #ifdef HAVE_LIBOTF |
8cbdb26068b4
(xftfont_list): Adjusted for the change of `list'
Kenichi Handa <handa@m17n.org>
parents:
92184
diff
changeset
|
304 xftfont_info->maybe_otf = ft_face->face_flags & FT_FACE_FLAG_SFNT; |
8cbdb26068b4
(xftfont_list): Adjusted for the change of `list'
Kenichi Handa <handa@m17n.org>
parents:
92184
diff
changeset
|
305 xftfont_info->otf = NULL; |
8cbdb26068b4
(xftfont_list): Adjusted for the change of `list'
Kenichi Handa <handa@m17n.org>
parents:
92184
diff
changeset
|
306 #endif /* HAVE_LIBOTF */ |
8cbdb26068b4
(xftfont_list): Adjusted for the change of `list'
Kenichi Handa <handa@m17n.org>
parents:
92184
diff
changeset
|
307 XftUnlockFace (xftfont); |
90959
3f83c9d3f96c
(xftfont_open): If one of font's ASCII glyph has
Kenichi Handa <handa@m17n.org>
parents:
90714
diff
changeset
|
308 |
90400 | 309 /* Unfortunately Xft doesn't provide a way to get minimum char |
310 width. So, we use space_width instead. */ | |
94941
8cbdb26068b4
(xftfont_list): Adjusted for the change of `list'
Kenichi Handa <handa@m17n.org>
parents:
92184
diff
changeset
|
311 font->min_width = font->space_width; |
90400 | 312 |
94941
8cbdb26068b4
(xftfont_list): Adjusted for the change of `list'
Kenichi Handa <handa@m17n.org>
parents:
92184
diff
changeset
|
313 font->baseline_offset = 0; |
8cbdb26068b4
(xftfont_list): Adjusted for the change of `list'
Kenichi Handa <handa@m17n.org>
parents:
92184
diff
changeset
|
314 font->relative_compose = 0; |
8cbdb26068b4
(xftfont_list): Adjusted for the change of `list'
Kenichi Handa <handa@m17n.org>
parents:
92184
diff
changeset
|
315 font->default_ascent = 0; |
8cbdb26068b4
(xftfont_list): Adjusted for the change of `list'
Kenichi Handa <handa@m17n.org>
parents:
92184
diff
changeset
|
316 font->vertical_centering = 0; |
90400 | 317 |
94941
8cbdb26068b4
(xftfont_list): Adjusted for the change of `list'
Kenichi Handa <handa@m17n.org>
parents:
92184
diff
changeset
|
318 return font_object; |
90400 | 319 } |
320 | |
321 static void | |
322 xftfont_close (f, font) | |
323 FRAME_PTR f; | |
324 struct font *font; | |
325 { | |
326 struct xftfont_info *xftfont_info = (struct xftfont_info *) font; | |
327 | |
91143 | 328 #ifdef HAVE_LIBOTF |
329 if (xftfont_info->otf) | |
330 OTF_close (xftfont_info->otf); | |
331 #endif | |
94941
8cbdb26068b4
(xftfont_list): Adjusted for the change of `list'
Kenichi Handa <handa@m17n.org>
parents:
92184
diff
changeset
|
332 BLOCK_INPUT; |
90400 | 333 XftFontClose (xftfont_info->display, xftfont_info->xftfont); |
94941
8cbdb26068b4
(xftfont_list): Adjusted for the change of `list'
Kenichi Handa <handa@m17n.org>
parents:
92184
diff
changeset
|
334 UNBLOCK_INPUT; |
90400 | 335 } |
336 | |
337 static int | |
338 xftfont_prepare_face (f, face) | |
339 FRAME_PTR f; | |
340 struct face *face; | |
341 { | |
90489
78a820ef12db
(xftfont_prepare_face): Make non-ascii face share
Kenichi Handa <handa@m17n.org>
parents:
90473
diff
changeset
|
342 struct xftface_info *xftface_info; |
90400 | 343 |
90499
32b8f672da38
(xftfont_prepare_face): Cancel previous change.
Kenichi Handa <handa@m17n.org>
parents:
90489
diff
changeset
|
344 #if 0 |
32b8f672da38
(xftfont_prepare_face): Cancel previous change.
Kenichi Handa <handa@m17n.org>
parents:
90489
diff
changeset
|
345 /* This doesn't work if face->ascii_face doesn't use an Xft font. */ |
90489
78a820ef12db
(xftfont_prepare_face): Make non-ascii face share
Kenichi Handa <handa@m17n.org>
parents:
90473
diff
changeset
|
346 if (face != face->ascii_face) |
78a820ef12db
(xftfont_prepare_face): Make non-ascii face share
Kenichi Handa <handa@m17n.org>
parents:
90473
diff
changeset
|
347 { |
78a820ef12db
(xftfont_prepare_face): Make non-ascii face share
Kenichi Handa <handa@m17n.org>
parents:
90473
diff
changeset
|
348 face->extra = face->ascii_face->extra; |
78a820ef12db
(xftfont_prepare_face): Make non-ascii face share
Kenichi Handa <handa@m17n.org>
parents:
90473
diff
changeset
|
349 return 0; |
78a820ef12db
(xftfont_prepare_face): Make non-ascii face share
Kenichi Handa <handa@m17n.org>
parents:
90473
diff
changeset
|
350 } |
90499
32b8f672da38
(xftfont_prepare_face): Cancel previous change.
Kenichi Handa <handa@m17n.org>
parents:
90489
diff
changeset
|
351 #endif |
90489
78a820ef12db
(xftfont_prepare_face): Make non-ascii face share
Kenichi Handa <handa@m17n.org>
parents:
90473
diff
changeset
|
352 |
78a820ef12db
(xftfont_prepare_face): Make non-ascii face share
Kenichi Handa <handa@m17n.org>
parents:
90473
diff
changeset
|
353 xftface_info = malloc (sizeof (struct xftface_info)); |
90400 | 354 if (! xftface_info) |
355 return -1; | |
356 xftfont_get_colors (f, face, face->gc, NULL, | |
357 &xftface_info->xft_fg, &xftface_info->xft_bg); | |
358 face->extra = xftface_info; | |
359 return 0; | |
360 } | |
361 | |
362 static void | |
363 xftfont_done_face (f, face) | |
364 FRAME_PTR f; | |
365 struct face *face; | |
366 { | |
90489
78a820ef12db
(xftfont_prepare_face): Make non-ascii face share
Kenichi Handa <handa@m17n.org>
parents:
90473
diff
changeset
|
367 struct xftface_info *xftface_info; |
78a820ef12db
(xftfont_prepare_face): Make non-ascii face share
Kenichi Handa <handa@m17n.org>
parents:
90473
diff
changeset
|
368 |
90499
32b8f672da38
(xftfont_prepare_face): Cancel previous change.
Kenichi Handa <handa@m17n.org>
parents:
90489
diff
changeset
|
369 #if 0 |
32b8f672da38
(xftfont_prepare_face): Cancel previous change.
Kenichi Handa <handa@m17n.org>
parents:
90489
diff
changeset
|
370 /* This doesn't work if face->ascii_face doesn't use an Xft font. */ |
90489
78a820ef12db
(xftfont_prepare_face): Make non-ascii face share
Kenichi Handa <handa@m17n.org>
parents:
90473
diff
changeset
|
371 if (face != face->ascii_face |
78a820ef12db
(xftfont_prepare_face): Make non-ascii face share
Kenichi Handa <handa@m17n.org>
parents:
90473
diff
changeset
|
372 || ! face->extra) |
78a820ef12db
(xftfont_prepare_face): Make non-ascii face share
Kenichi Handa <handa@m17n.org>
parents:
90473
diff
changeset
|
373 return; |
90499
32b8f672da38
(xftfont_prepare_face): Cancel previous change.
Kenichi Handa <handa@m17n.org>
parents:
90489
diff
changeset
|
374 #endif |
90400 | 375 |
90489
78a820ef12db
(xftfont_prepare_face): Make non-ascii face share
Kenichi Handa <handa@m17n.org>
parents:
90473
diff
changeset
|
376 xftface_info = (struct xftface_info *) face->extra; |
90527
63b888896eba
* xftfont.c (xftfont_done_face): Call XftDrawDestroy only if xftface_info
Jan Djärv <jan.h.d@swipnet.se>
parents:
90511
diff
changeset
|
377 if (xftface_info) |
63b888896eba
* xftfont.c (xftfont_done_face): Call XftDrawDestroy only if xftface_info
Jan Djärv <jan.h.d@swipnet.se>
parents:
90511
diff
changeset
|
378 { |
63b888896eba
* xftfont.c (xftfont_done_face): Call XftDrawDestroy only if xftface_info
Jan Djärv <jan.h.d@swipnet.se>
parents:
90511
diff
changeset
|
379 free (xftface_info); |
91110
82a42637237c
(struct xftface_info): Delete the member xft_draw.
Kenichi Handa <handa@m17n.org>
parents:
91027
diff
changeset
|
380 face->extra = NULL; |
90527
63b888896eba
* xftfont.c (xftfont_done_face): Call XftDrawDestroy only if xftface_info
Jan Djärv <jan.h.d@swipnet.se>
parents:
90511
diff
changeset
|
381 } |
90400 | 382 } |
383 | |
384 static unsigned | |
385 xftfont_encode_char (font, c) | |
386 struct font *font; | |
387 int c; | |
388 { | |
389 struct xftfont_info *xftfont_info = (struct xftfont_info *) font; | |
390 unsigned code = XftCharIndex (xftfont_info->display, xftfont_info->xftfont, | |
391 (FcChar32) c); | |
392 | |
91269
421d7c7d296a
(xftfont_encode_char): Use the macro FONT_INVALID_CODE.
Kenichi Handa <handa@m17n.org>
parents:
91243
diff
changeset
|
393 return (code ? code : FONT_INVALID_CODE); |
90400 | 394 } |
395 | |
396 static int | |
397 xftfont_text_extents (font, code, nglyphs, metrics) | |
398 struct font *font; | |
399 unsigned *code; | |
400 int nglyphs; | |
401 struct font_metrics *metrics; | |
402 { | |
403 struct xftfont_info *xftfont_info = (struct xftfont_info *) font; | |
404 XGlyphInfo extents; | |
405 | |
406 BLOCK_INPUT; | |
407 XftGlyphExtents (xftfont_info->display, xftfont_info->xftfont, code, nglyphs, | |
408 &extents); | |
409 UNBLOCK_INPUT; | |
410 if (metrics) | |
411 { | |
412 metrics->lbearing = - extents.x; | |
413 metrics->rbearing = - extents.x + extents.width; | |
414 metrics->width = extents.xOff; | |
415 metrics->ascent = extents.y; | |
90616
68d59ef20174
(xftfont_text_extents): Fix calculation of descent
Kenichi Handa <handa@m17n.org>
parents:
90589
diff
changeset
|
416 metrics->descent = extents.height - extents.y; |
90400 | 417 } |
418 return extents.xOff; | |
419 } | |
420 | |
91110
82a42637237c
(struct xftface_info): Delete the member xft_draw.
Kenichi Handa <handa@m17n.org>
parents:
91027
diff
changeset
|
421 static XftDraw * |
82a42637237c
(struct xftface_info): Delete the member xft_draw.
Kenichi Handa <handa@m17n.org>
parents:
91027
diff
changeset
|
422 xftfont_get_xft_draw (f) |
82a42637237c
(struct xftface_info): Delete the member xft_draw.
Kenichi Handa <handa@m17n.org>
parents:
91027
diff
changeset
|
423 FRAME_PTR f; |
82a42637237c
(struct xftface_info): Delete the member xft_draw.
Kenichi Handa <handa@m17n.org>
parents:
91027
diff
changeset
|
424 { |
82a42637237c
(struct xftface_info): Delete the member xft_draw.
Kenichi Handa <handa@m17n.org>
parents:
91027
diff
changeset
|
425 XftDraw *xft_draw = font_get_frame_data (f, &xftfont_driver);; |
82a42637237c
(struct xftface_info): Delete the member xft_draw.
Kenichi Handa <handa@m17n.org>
parents:
91027
diff
changeset
|
426 |
82a42637237c
(struct xftface_info): Delete the member xft_draw.
Kenichi Handa <handa@m17n.org>
parents:
91027
diff
changeset
|
427 if (! xft_draw) |
82a42637237c
(struct xftface_info): Delete the member xft_draw.
Kenichi Handa <handa@m17n.org>
parents:
91027
diff
changeset
|
428 { |
82a42637237c
(struct xftface_info): Delete the member xft_draw.
Kenichi Handa <handa@m17n.org>
parents:
91027
diff
changeset
|
429 BLOCK_INPUT; |
82a42637237c
(struct xftface_info): Delete the member xft_draw.
Kenichi Handa <handa@m17n.org>
parents:
91027
diff
changeset
|
430 xft_draw= XftDrawCreate (FRAME_X_DISPLAY (f), |
82a42637237c
(struct xftface_info): Delete the member xft_draw.
Kenichi Handa <handa@m17n.org>
parents:
91027
diff
changeset
|
431 FRAME_X_WINDOW (f), |
82a42637237c
(struct xftface_info): Delete the member xft_draw.
Kenichi Handa <handa@m17n.org>
parents:
91027
diff
changeset
|
432 FRAME_X_VISUAL (f), |
82a42637237c
(struct xftface_info): Delete the member xft_draw.
Kenichi Handa <handa@m17n.org>
parents:
91027
diff
changeset
|
433 FRAME_X_COLORMAP (f)); |
82a42637237c
(struct xftface_info): Delete the member xft_draw.
Kenichi Handa <handa@m17n.org>
parents:
91027
diff
changeset
|
434 UNBLOCK_INPUT; |
82a42637237c
(struct xftface_info): Delete the member xft_draw.
Kenichi Handa <handa@m17n.org>
parents:
91027
diff
changeset
|
435 if (! xft_draw) |
82a42637237c
(struct xftface_info): Delete the member xft_draw.
Kenichi Handa <handa@m17n.org>
parents:
91027
diff
changeset
|
436 abort (); |
82a42637237c
(struct xftface_info): Delete the member xft_draw.
Kenichi Handa <handa@m17n.org>
parents:
91027
diff
changeset
|
437 font_put_frame_data (f, &xftfont_driver, xft_draw); |
82a42637237c
(struct xftface_info): Delete the member xft_draw.
Kenichi Handa <handa@m17n.org>
parents:
91027
diff
changeset
|
438 } |
82a42637237c
(struct xftface_info): Delete the member xft_draw.
Kenichi Handa <handa@m17n.org>
parents:
91027
diff
changeset
|
439 return xft_draw; |
82a42637237c
(struct xftface_info): Delete the member xft_draw.
Kenichi Handa <handa@m17n.org>
parents:
91027
diff
changeset
|
440 } |
82a42637237c
(struct xftface_info): Delete the member xft_draw.
Kenichi Handa <handa@m17n.org>
parents:
91027
diff
changeset
|
441 |
90400 | 442 static int |
443 xftfont_draw (s, from, to, x, y, with_background) | |
444 struct glyph_string *s; | |
445 int from, to, x, y, with_background; | |
446 { | |
447 FRAME_PTR f = s->f; | |
448 struct face *face = s->face; | |
94941
8cbdb26068b4
(xftfont_list): Adjusted for the change of `list'
Kenichi Handa <handa@m17n.org>
parents:
92184
diff
changeset
|
449 struct xftfont_info *xftfont_info = (struct xftfont_info *) s->font; |
91011
7239c19e55e9
(xftfont_draw): If s->font_info != s->face->font_info,
Kenichi Handa <handa@m17n.org>
parents:
90959
diff
changeset
|
450 struct xftface_info *xftface_info = NULL; |
91110
82a42637237c
(struct xftface_info): Delete the member xft_draw.
Kenichi Handa <handa@m17n.org>
parents:
91027
diff
changeset
|
451 XftDraw *xft_draw = xftfont_get_xft_draw (f); |
90400 | 452 FT_UInt *code; |
453 XftColor fg, bg; | |
454 int len = to - from; | |
455 int i; | |
456 | |
94941
8cbdb26068b4
(xftfont_list): Adjusted for the change of `list'
Kenichi Handa <handa@m17n.org>
parents:
92184
diff
changeset
|
457 if (s->font == face->font) |
91110
82a42637237c
(struct xftface_info): Delete the member xft_draw.
Kenichi Handa <handa@m17n.org>
parents:
91027
diff
changeset
|
458 xftface_info = (struct xftface_info *) face->extra; |
90400 | 459 xftfont_get_colors (f, face, s->gc, xftface_info, |
90426
e9ed7d437c21
(xftfont_default_fid): Set fid_known to 1.
Kenichi Handa <handa@m17n.org>
parents:
90400
diff
changeset
|
460 &fg, with_background ? &bg : NULL); |
90400 | 461 BLOCK_INPUT; |
91027
04b81a720da9
(xftfont_draw): Adjusted for the change of struct
Kenichi Handa <handa@m17n.org>
parents:
91011
diff
changeset
|
462 if (s->num_clips > 0) |
04b81a720da9
(xftfont_draw): Adjusted for the change of struct
Kenichi Handa <handa@m17n.org>
parents:
91011
diff
changeset
|
463 XftDrawSetClipRectangles (xft_draw, 0, 0, s->clip, s->num_clips); |
04b81a720da9
(xftfont_draw): Adjusted for the change of struct
Kenichi Handa <handa@m17n.org>
parents:
91011
diff
changeset
|
464 else |
04b81a720da9
(xftfont_draw): Adjusted for the change of struct
Kenichi Handa <handa@m17n.org>
parents:
91011
diff
changeset
|
465 XftDrawSetClip (xft_draw, NULL); |
04b81a720da9
(xftfont_draw): Adjusted for the change of struct
Kenichi Handa <handa@m17n.org>
parents:
91011
diff
changeset
|
466 |
90400 | 467 if (with_background) |
94941
8cbdb26068b4
(xftfont_list): Adjusted for the change of `list'
Kenichi Handa <handa@m17n.org>
parents:
92184
diff
changeset
|
468 XftDrawRect (xft_draw, &bg, |
8cbdb26068b4
(xftfont_list): Adjusted for the change of `list'
Kenichi Handa <handa@m17n.org>
parents:
92184
diff
changeset
|
469 x, y - face->font->ascent, s->width, face->font->height); |
90400 | 470 code = alloca (sizeof (FT_UInt) * len); |
471 for (i = 0; i < len; i++) | |
472 code[i] = ((XCHAR2B_BYTE1 (s->char2b + from + i) << 8) | |
473 | XCHAR2B_BYTE2 (s->char2b + from + i)); | |
474 | |
92184
6218afb021ac
(xftfont_draw): Pay attention to s->padding_p.
Kenichi Handa <handa@m17n.org>
parents:
91907
diff
changeset
|
475 if (s->padding_p) |
6218afb021ac
(xftfont_draw): Pay attention to s->padding_p.
Kenichi Handa <handa@m17n.org>
parents:
91907
diff
changeset
|
476 for (i = 0; i < len; i++) |
6218afb021ac
(xftfont_draw): Pay attention to s->padding_p.
Kenichi Handa <handa@m17n.org>
parents:
91907
diff
changeset
|
477 XftDrawGlyphs (xft_draw, &fg, xftfont_info->xftfont, |
6218afb021ac
(xftfont_draw): Pay attention to s->padding_p.
Kenichi Handa <handa@m17n.org>
parents:
91907
diff
changeset
|
478 x + i, y, code + i, 1); |
6218afb021ac
(xftfont_draw): Pay attention to s->padding_p.
Kenichi Handa <handa@m17n.org>
parents:
91907
diff
changeset
|
479 else |
6218afb021ac
(xftfont_draw): Pay attention to s->padding_p.
Kenichi Handa <handa@m17n.org>
parents:
91907
diff
changeset
|
480 XftDrawGlyphs (xft_draw, &fg, xftfont_info->xftfont, |
6218afb021ac
(xftfont_draw): Pay attention to s->padding_p.
Kenichi Handa <handa@m17n.org>
parents:
91907
diff
changeset
|
481 x, y, code, len); |
90400 | 482 UNBLOCK_INPUT; |
483 | |
484 return len; | |
485 } | |
486 | |
487 static int | |
488 xftfont_anchor_point (font, code, index, x, y) | |
489 struct font *font; | |
490 unsigned code; | |
491 int index; | |
492 int *x, *y; | |
493 { | |
494 struct xftfont_info *xftfont_info = (struct xftfont_info *) font; | |
91226
040f2e332dc3
(struct xftfont_info): Delete the member ft_face.
Kenichi Handa <handa@m17n.org>
parents:
91163
diff
changeset
|
495 FT_Face ft_face = XftLockFace (xftfont_info->xftfont); |
040f2e332dc3
(struct xftfont_info): Delete the member ft_face.
Kenichi Handa <handa@m17n.org>
parents:
91163
diff
changeset
|
496 int result; |
90400 | 497 |
498 if (FT_Load_Glyph (ft_face, code, FT_LOAD_DEFAULT) != 0) | |
91226
040f2e332dc3
(struct xftfont_info): Delete the member ft_face.
Kenichi Handa <handa@m17n.org>
parents:
91163
diff
changeset
|
499 result = -1; |
040f2e332dc3
(struct xftfont_info): Delete the member ft_face.
Kenichi Handa <handa@m17n.org>
parents:
91163
diff
changeset
|
500 else if (ft_face->glyph->format != FT_GLYPH_FORMAT_OUTLINE) |
040f2e332dc3
(struct xftfont_info): Delete the member ft_face.
Kenichi Handa <handa@m17n.org>
parents:
91163
diff
changeset
|
501 result = -1; |
040f2e332dc3
(struct xftfont_info): Delete the member ft_face.
Kenichi Handa <handa@m17n.org>
parents:
91163
diff
changeset
|
502 else if (index >= ft_face->glyph->outline.n_points) |
040f2e332dc3
(struct xftfont_info): Delete the member ft_face.
Kenichi Handa <handa@m17n.org>
parents:
91163
diff
changeset
|
503 result = -1; |
040f2e332dc3
(struct xftfont_info): Delete the member ft_face.
Kenichi Handa <handa@m17n.org>
parents:
91163
diff
changeset
|
504 else |
040f2e332dc3
(struct xftfont_info): Delete the member ft_face.
Kenichi Handa <handa@m17n.org>
parents:
91163
diff
changeset
|
505 { |
040f2e332dc3
(struct xftfont_info): Delete the member ft_face.
Kenichi Handa <handa@m17n.org>
parents:
91163
diff
changeset
|
506 *x = ft_face->glyph->outline.points[index].x; |
040f2e332dc3
(struct xftfont_info): Delete the member ft_face.
Kenichi Handa <handa@m17n.org>
parents:
91163
diff
changeset
|
507 *y = ft_face->glyph->outline.points[index].y; |
040f2e332dc3
(struct xftfont_info): Delete the member ft_face.
Kenichi Handa <handa@m17n.org>
parents:
91163
diff
changeset
|
508 } |
040f2e332dc3
(struct xftfont_info): Delete the member ft_face.
Kenichi Handa <handa@m17n.org>
parents:
91163
diff
changeset
|
509 XftUnlockFace (xftfont_info->xftfont); |
040f2e332dc3
(struct xftfont_info): Delete the member ft_face.
Kenichi Handa <handa@m17n.org>
parents:
91163
diff
changeset
|
510 return result; |
90400 | 511 } |
512 | |
91110
82a42637237c
(struct xftface_info): Delete the member xft_draw.
Kenichi Handa <handa@m17n.org>
parents:
91027
diff
changeset
|
513 static int |
82a42637237c
(struct xftface_info): Delete the member xft_draw.
Kenichi Handa <handa@m17n.org>
parents:
91027
diff
changeset
|
514 xftfont_end_for_frame (f) |
82a42637237c
(struct xftface_info): Delete the member xft_draw.
Kenichi Handa <handa@m17n.org>
parents:
91027
diff
changeset
|
515 FRAME_PTR f; |
82a42637237c
(struct xftface_info): Delete the member xft_draw.
Kenichi Handa <handa@m17n.org>
parents:
91027
diff
changeset
|
516 { |
82a42637237c
(struct xftface_info): Delete the member xft_draw.
Kenichi Handa <handa@m17n.org>
parents:
91027
diff
changeset
|
517 XftDraw *xft_draw = font_get_frame_data (f, &xftfont_driver); |
82a42637237c
(struct xftface_info): Delete the member xft_draw.
Kenichi Handa <handa@m17n.org>
parents:
91027
diff
changeset
|
518 |
82a42637237c
(struct xftface_info): Delete the member xft_draw.
Kenichi Handa <handa@m17n.org>
parents:
91027
diff
changeset
|
519 if (xft_draw) |
82a42637237c
(struct xftface_info): Delete the member xft_draw.
Kenichi Handa <handa@m17n.org>
parents:
91027
diff
changeset
|
520 { |
82a42637237c
(struct xftface_info): Delete the member xft_draw.
Kenichi Handa <handa@m17n.org>
parents:
91027
diff
changeset
|
521 BLOCK_INPUT; |
82a42637237c
(struct xftface_info): Delete the member xft_draw.
Kenichi Handa <handa@m17n.org>
parents:
91027
diff
changeset
|
522 XftDrawDestroy (xft_draw); |
82a42637237c
(struct xftface_info): Delete the member xft_draw.
Kenichi Handa <handa@m17n.org>
parents:
91027
diff
changeset
|
523 UNBLOCK_INPUT; |
82a42637237c
(struct xftface_info): Delete the member xft_draw.
Kenichi Handa <handa@m17n.org>
parents:
91027
diff
changeset
|
524 font_put_frame_data (f, &xftfont_driver, NULL); |
82a42637237c
(struct xftface_info): Delete the member xft_draw.
Kenichi Handa <handa@m17n.org>
parents:
91027
diff
changeset
|
525 } |
82a42637237c
(struct xftface_info): Delete the member xft_draw.
Kenichi Handa <handa@m17n.org>
parents:
91027
diff
changeset
|
526 return 0; |
82a42637237c
(struct xftface_info): Delete the member xft_draw.
Kenichi Handa <handa@m17n.org>
parents:
91027
diff
changeset
|
527 } |
90400 | 528 |
91143 | 529 #ifdef HAVE_LIBOTF |
530 #ifdef HAVE_M17N_FLT | |
531 static Lisp_Object | |
532 xftfont_shape (lgstring) | |
533 Lisp_Object lgstring; | |
534 { | |
535 struct font *font; | |
536 struct xftfont_info *xftfont_info; | |
94941
8cbdb26068b4
(xftfont_list): Adjusted for the change of `list'
Kenichi Handa <handa@m17n.org>
parents:
92184
diff
changeset
|
537 Lisp_Object result; |
91226
040f2e332dc3
(struct xftfont_info): Delete the member ft_face.
Kenichi Handa <handa@m17n.org>
parents:
91163
diff
changeset
|
538 FT_Face ft_face; |
91143 | 539 |
540 CHECK_FONT_GET_OBJECT (LGSTRING_FONT (lgstring), font); | |
541 xftfont_info = (struct xftfont_info *) font; | |
542 if (! xftfont_info->maybe_otf) | |
543 return Qnil; | |
91226
040f2e332dc3
(struct xftfont_info): Delete the member ft_face.
Kenichi Handa <handa@m17n.org>
parents:
91163
diff
changeset
|
544 ft_face = XftLockFace (xftfont_info->xftfont); |
91143 | 545 if (! xftfont_info->otf) |
546 { | |
91226
040f2e332dc3
(struct xftfont_info): Delete the member ft_face.
Kenichi Handa <handa@m17n.org>
parents:
91163
diff
changeset
|
547 OTF *otf = OTF_open_ft_face (ft_face); |
91143 | 548 |
549 if (! otf || OTF_get_table (otf, "head") < 0) | |
550 { | |
551 if (otf) | |
552 OTF_close (otf); | |
553 xftfont_info->maybe_otf = 0; | |
91226
040f2e332dc3
(struct xftfont_info): Delete the member ft_face.
Kenichi Handa <handa@m17n.org>
parents:
91163
diff
changeset
|
554 XftUnlockFace (xftfont_info->xftfont); |
94941
8cbdb26068b4
(xftfont_list): Adjusted for the change of `list'
Kenichi Handa <handa@m17n.org>
parents:
92184
diff
changeset
|
555 return Qnil; |
91143 | 556 } |
557 xftfont_info->otf = otf; | |
558 } | |
559 | |
91226
040f2e332dc3
(struct xftfont_info): Delete the member ft_face.
Kenichi Handa <handa@m17n.org>
parents:
91163
diff
changeset
|
560 result = ftfont_shape_by_flt (lgstring, font, ft_face, xftfont_info->otf); |
040f2e332dc3
(struct xftfont_info): Delete the member ft_face.
Kenichi Handa <handa@m17n.org>
parents:
91163
diff
changeset
|
561 XftUnlockFace (xftfont_info->xftfont); |
040f2e332dc3
(struct xftfont_info): Delete the member ft_face.
Kenichi Handa <handa@m17n.org>
parents:
91163
diff
changeset
|
562 return result; |
91143 | 563 } |
564 #endif /* HAVE_M17N_FLT */ | |
565 #endif /* HAVE_LIBOTF */ | |
566 | |
90400 | 567 void |
568 syms_of_xftfont () | |
569 { | |
570 DEFSYM (Qxft, "xft"); | |
571 | |
572 xftfont_driver = ftfont_driver; | |
573 xftfont_driver.type = Qxft; | |
574 xftfont_driver.get_cache = xfont_driver.get_cache; | |
575 xftfont_driver.list = xftfont_list; | |
90559
fb5d3ac2d786
(xftfont_match): New function.
Kenichi Handa <handa@m17n.org>
parents:
90527
diff
changeset
|
576 xftfont_driver.match = xftfont_match; |
90400 | 577 xftfont_driver.open = xftfont_open; |
578 xftfont_driver.close = xftfont_close; | |
579 xftfont_driver.prepare_face = xftfont_prepare_face; | |
580 xftfont_driver.done_face = xftfont_done_face; | |
581 xftfont_driver.encode_char = xftfont_encode_char; | |
582 xftfont_driver.text_extents = xftfont_text_extents; | |
583 xftfont_driver.draw = xftfont_draw; | |
584 xftfont_driver.anchor_point = xftfont_anchor_point; | |
91110
82a42637237c
(struct xftface_info): Delete the member xft_draw.
Kenichi Handa <handa@m17n.org>
parents:
91027
diff
changeset
|
585 xftfont_driver.end_for_frame = xftfont_end_for_frame; |
91143 | 586 #ifdef HAVE_LIBOTF |
587 #ifdef HAVE_M17N_FLT | |
588 xftfont_driver.shape = xftfont_shape; | |
589 #endif /* HAVE_M17N_FLT */ | |
590 #endif /* HAVE_LIBOTF */ | |
90400 | 591 |
592 register_font_driver (&xftfont_driver, NULL); | |
593 } | |
90427 | 594 |
595 /* arch-tag: 64ec61bf-7c8e-4fe6-b953-c6a85d5e1605 | |
596 (do not change this comment) */ |