*** empty log message ***
[bpt/emacs.git] / src / xftfont.c
CommitLineData
c2f5bfd6 1/* xftfont.c -- XFT font driver.
76b6f707
GM
2 Copyright (C) 2006, 2007, 2008, 2009 Free Software Foundation, Inc.
3 Copyright (C) 2006, 2007, 2008, 2009
c2f5bfd6
KH
4 National Institute of Advanced Industrial Science and Technology (AIST)
5 Registration Number H13PRO009
6
7This file is part of GNU Emacs.
8
9ec0b715 9GNU Emacs is free software: you can redistribute it and/or modify
c2f5bfd6 10it under the terms of the GNU General Public License as published by
9ec0b715
GM
11the Free Software Foundation, either version 3 of the License, or
12(at your option) any later version.
c2f5bfd6
KH
13
14GNU Emacs is distributed in the hope that it will be useful,
15but WITHOUT ANY WARRANTY; without even the implied warranty of
16MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
17GNU General Public License for more details.
18
19You should have received a copy of the GNU General Public License
9ec0b715 20along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>. */
c2f5bfd6
KH
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"
4613015e 36#include "ftfont.h"
c2f5bfd6
KH
37
38/* Xft font driver. */
39
40static Lisp_Object Qxft;
81094fab 41static Lisp_Object QChinting , QCautohint, QChintstyle, QCrgba, QCembolden;
c2f5bfd6
KH
42
43/* The actual structure for Xft font that can be casted to struct
44 font. */
45
46struct xftfont_info
47{
48 struct font font;
b0c25608 49 /* The following four members must be here in this order to be
0fce2b40 50 compatible with struct ftfont_info (in ftfont.c). */
4613015e
KH
51#ifdef HAVE_LIBOTF
52 int maybe_otf; /* Flag to tell if this may be OTF or not. */
53 OTF *otf;
794eba0f 54#endif /* HAVE_LIBOTF */
0fce2b40 55 FT_Size ft_size;
b0c25608 56 int index;
0fce2b40
KH
57 Display *display;
58 int screen;
59 XftFont *xftfont;
c2f5bfd6
KH
60};
61
62/* Structure pointed by (struct face *)->extra */
10aca0f7 63
c2f5bfd6
KH
64struct xftface_info
65{
10aca0f7
KH
66 XftColor xft_fg; /* color for face->foreground */
67 XftColor xft_bg; /* color for face->background */
c2f5bfd6
KH
68};
69
70static void xftfont_get_colors P_ ((FRAME_PTR, struct face *, GC gc,
71 struct xftface_info *,
72 XftColor *fg, XftColor *bg));
c2f5bfd6
KH
73
74
10aca0f7
KH
75/* Setup foreground and background colors of GC into FG and BG. If
76 XFTFACE_INFO is not NULL, reuse the colors in it if possible. BG
77 may be NULL. */
78
c2f5bfd6
KH
79static void
80xftfont_get_colors (f, face, gc, xftface_info, fg, bg)
81 FRAME_PTR f;
82 struct face *face;
83 GC gc;
84 struct xftface_info *xftface_info;
85 XftColor *fg, *bg;
86{
87 if (xftface_info && face->gc == gc)
88 {
89 *fg = xftface_info->xft_fg;
90 if (bg)
91 *bg = xftface_info->xft_bg;
92 }
93 else
94 {
95 XGCValues xgcv;
96 int fg_done = 0, bg_done = 0;
97
98 BLOCK_INPUT;
99 XGetGCValues (FRAME_X_DISPLAY (f), gc,
100 GCForeground | GCBackground, &xgcv);
101 if (xftface_info)
102 {
103 if (xgcv.foreground == face->foreground)
104 *fg = xftface_info->xft_fg, fg_done = 1;
105 else if (xgcv.foreground == face->background)
106 *fg = xftface_info->xft_bg, fg_done = 1;
107 if (! bg)
108 bg_done = 1;
109 else if (xgcv.background == face->background)
110 *bg = xftface_info->xft_bg, bg_done = 1;
111 else if (xgcv.background == face->foreground)
112 *bg = xftface_info->xft_fg, bg_done = 1;
113 }
114
115 if (fg_done + bg_done < 2)
116 {
117 XColor colors[2];
118
119 colors[0].pixel = fg->pixel = xgcv.foreground;
120 if (bg)
121 colors[1].pixel = bg->pixel = xgcv.background;
122 XQueryColors (FRAME_X_DISPLAY (f), FRAME_X_COLORMAP (f), colors,
123 bg ? 2 : 1);
124 fg->color.alpha = 0xFFFF;
125 fg->color.red = colors[0].red;
126 fg->color.green = colors[0].green;
127 fg->color.blue = colors[0].blue;
128 if (bg)
129 {
130 bg->color.alpha = 0xFFFF;
131 bg->color.red = colors[1].red;
132 bg->color.green = colors[1].green;
133 bg->color.blue = colors[1].blue;
134 }
135 }
136 UNBLOCK_INPUT;
137 }
138}
139
c2f5bfd6
KH
140
141static Lisp_Object xftfont_list P_ ((Lisp_Object, Lisp_Object));
10aca0f7 142static Lisp_Object xftfont_match P_ ((Lisp_Object, Lisp_Object));
3528e709 143static Lisp_Object xftfont_open P_ ((FRAME_PTR, Lisp_Object, int));
c2f5bfd6
KH
144static void xftfont_close P_ ((FRAME_PTR, struct font *));
145static int xftfont_prepare_face P_ ((FRAME_PTR, struct face *));
146static void xftfont_done_face P_ ((FRAME_PTR, struct face *));
6570a1c4 147static int xftfont_has_char P_ ((Lisp_Object, int));
c2f5bfd6
KH
148static unsigned xftfont_encode_char P_ ((struct font *, int));
149static int xftfont_text_extents P_ ((struct font *, unsigned *, int,
150 struct font_metrics *));
151static int xftfont_draw P_ ((struct glyph_string *, int, int, int, int, int));
a92ee6bf 152static int xftfont_end_for_frame P_ ((FRAME_PTR f));
c2f5bfd6
KH
153
154struct font_driver xftfont_driver;
155
156static Lisp_Object
157xftfont_list (frame, spec)
158 Lisp_Object frame;
159 Lisp_Object spec;
160{
3528e709 161 Lisp_Object list = ftfont_driver.list (frame, spec), tail;
8510724d 162
3528e709
KH
163 for (tail = list; CONSP (tail); tail = XCDR (tail))
164 ASET (XCAR (tail), FONT_TYPE_INDEX, Qxft);
165 return list;
c2f5bfd6
KH
166}
167
10aca0f7
KH
168static Lisp_Object
169xftfont_match (frame, spec)
170 Lisp_Object frame;
171 Lisp_Object spec;
172{
173 Lisp_Object entity = ftfont_driver.match (frame, spec);
174
3528e709 175 if (! NILP (entity))
10aca0f7
KH
176 ASET (entity, FONT_TYPE_INDEX, Qxft);
177 return entity;
178}
179
1cf6763f 180extern Lisp_Object ftfont_font_format P_ ((FcPattern *, Lisp_Object));
0fce2b40 181extern FcCharSet *ftfont_get_fc_charset P_ ((Lisp_Object));
81094fab 182extern Lisp_Object QCantialias;
98d12656 183
c2f5bfd6
KH
184static FcChar8 ascii_printable[95];
185
3528e709 186static Lisp_Object
c2f5bfd6
KH
187xftfont_open (f, entity, pixel_size)
188 FRAME_PTR f;
189 Lisp_Object entity;
190 int pixel_size;
191{
81094fab 192 FcResult result;
c2f5bfd6 193 Display *display = FRAME_X_DISPLAY (f);
0fce2b40 194 Lisp_Object val, filename, index, tail, font_object;
81094fab 195 FcPattern *pat = NULL, *match;
2d93c6bd 196 struct xftfont_info *xftfont_info = NULL;
c2f5bfd6
KH
197 struct font *font;
198 double size = 0;
2d93c6bd 199 XftFont *xftfont = NULL;
c2f5bfd6 200 int spacing;
3528e709
KH
201 char name[256];
202 int len, i;
91c5bb27 203 XGlyphInfo extents;
365131ac 204 FT_Face ft_face;
c2f5bfd6 205
3528e709 206 val = assq_no_quit (QCfont_entity, AREF (entity, FONT_EXTRA_INDEX));
686ee703 207 if (! CONSP (val))
3528e709 208 return Qnil;
686ee703
KH
209 val = XCDR (val);
210 filename = XCAR (val);
0fce2b40 211 index = XCDR (val);
c2f5bfd6
KH
212 size = XINT (AREF (entity, FONT_SIZE_INDEX));
213 if (size == 0)
214 size = pixel_size;
215 pat = FcPatternCreate ();
81094fab
KH
216 FcPatternAddInteger (pat, FC_WEIGHT, FONT_WEIGHT_NUMERIC (entity));
217 i = FONT_SLANT_NUMERIC (entity) - 100;
218 if (i < 0) i = 0;
219 FcPatternAddInteger (pat, FC_SLANT, i);
220 FcPatternAddInteger (pat, FC_WIDTH, FONT_WIDTH_NUMERIC (entity));
c2f5bfd6 221 FcPatternAddDouble (pat, FC_PIXEL_SIZE, pixel_size);
3cc2aca0
KH
222 val = AREF (entity, FONT_FAMILY_INDEX);
223 if (! NILP (val))
224 FcPatternAddString (pat, FC_FAMILY, (FcChar8 *) SDATA (SYMBOL_NAME (val)));
dc2226d0
KH
225 val = AREF (entity, FONT_FOUNDRY_INDEX);
226 if (! NILP (val))
227 FcPatternAddString (pat, FC_FOUNDRY, (FcChar8 *) SDATA (SYMBOL_NAME (val)));
228 val = AREF (entity, FONT_SPACING_INDEX);
229 if (! NILP (val))
230 FcPatternAddInteger (pat, FC_SPACING, XINT (val));
231 val = AREF (entity, FONT_DPI_INDEX);
232 if (! NILP (val))
233 {
234 double dbl = XINT (val);
235
236 FcPatternAddDouble (pat, FC_DPI, dbl);
237 }
238 val = AREF (entity, FONT_AVGWIDTH_INDEX);
239 if (INTEGERP (val) && XINT (val) == 0)
240 FcPatternAddBool (pat, FC_SCALABLE, FcTrue);
0fce2b40
KH
241 /* This is necessary to identify the exact font (e.g. 10x20.pcf.gz
242 over 10x20-ISO8859-1.pcf.gz). */
243 FcPatternAddCharSet (pat, FC_CHARSET, ftfont_get_fc_charset (entity));
dc2226d0 244
81094fab
KH
245 for (tail = AREF (entity, FONT_EXTRA_INDEX); CONSP (tail); tail = XCDR (tail))
246 {
247 Lisp_Object key, val;
248
249 key = XCAR (XCAR (tail)), val = XCDR (XCAR (tail));
250 if (EQ (key, QCantialias))
251 FcPatternAddBool (pat, FC_ANTIALIAS, NILP (val) ? FcFalse : FcTrue);
252 else if (EQ (key, QChinting))
253 FcPatternAddBool (pat, FC_HINTING, NILP (val) ? FcFalse : FcTrue);
254 else if (EQ (key, QCautohint))
255 FcPatternAddBool (pat, FC_AUTOHINT, NILP (val) ? FcFalse : FcTrue);
256 else if (EQ (key, QChintstyle))
257 {
258 if (INTEGERP (val))
259 FcPatternAddInteger (pat, FC_RGBA, XINT (val));
260 }
261 else if (EQ (key, QCrgba))
262 {
263 if (INTEGERP (val))
264 FcPatternAddInteger (pat, FC_RGBA, XINT (val));
265 }
808dd567 266#ifdef FC_EMBOLDEN
81094fab
KH
267 else if (EQ (key, QCembolden))
268 FcPatternAddBool (pat, FC_EMBOLDEN, NILP (val) ? FcFalse : FcTrue);
808dd567 269#endif
81094fab 270 }
dcce3c58 271
0fce2b40
KH
272 FcPatternAddString (pat, FC_FILE, (FcChar8 *) SDATA (filename));
273 FcPatternAddInteger (pat, FC_INDEX, XINT (index));
8510724d 274
0fce2b40 275
dcce3c58 276 BLOCK_INPUT;
9cb363db
YM
277 /* Make sure that the Xrender extension is added before the Xft one.
278 Otherwise, the close-display hook set by Xft is called after the
279 one for Xrender, and the former tries to re-add the latter. This
280 results in inconsistency of internal states and leads to X
281 protocol error when one reconnects to the same X server.
282 (Bug#1696) */
283 {
284 int event_base, error_base;
285 XRenderQueryExtension (display, &event_base, &error_base);
286 }
81094fab
KH
287 match = XftFontMatch (display, FRAME_X_SCREEN_NUMBER (f), pat, &result);
288 FcPatternDestroy (pat);
289 xftfont = XftFontOpenPattern (display, match);
99061dfc 290 if (!xftfont)
5c629bf6 291 {
99061dfc 292 UNBLOCK_INPUT;
5c629bf6
CY
293 XftPatternDestroy (match);
294 return Qnil;
295 }
99061dfc
CY
296 ft_face = XftLockFace (xftfont);
297 UNBLOCK_INPUT;
298
c2f5bfd6
KH
299 /* We should not destroy PAT here because it is kept in XFTFONT and
300 destroyed automatically when XFTFONT is closed. */
0fce2b40 301 font_object = font_make_object (VECSIZE (struct xftfont_info), entity, size);
3528e709 302 ASET (font_object, FONT_TYPE_INDEX, Qxft);
3528e709
KH
303 len = font_unparse_xlfd (entity, size, name, 256);
304 if (len > 0)
2781b4e0 305 ASET (font_object, FONT_NAME_INDEX, make_string (name, len));
3528e709
KH
306 len = font_unparse_fcname (entity, size, name, 256);
307 if (len > 0)
2781b4e0 308 ASET (font_object, FONT_FULLNAME_INDEX, make_string (name, len));
3528e709
KH
309 else
310 ASET (font_object, FONT_FULLNAME_INDEX,
311 AREF (font_object, FONT_NAME_INDEX));
686ee703
KH
312 ASET (font_object, FONT_FILE_INDEX, filename);
313 ASET (font_object, FONT_FORMAT_INDEX,
1cf6763f 314 ftfont_font_format (xftfont->pattern, filename));
3528e709
KH
315 font = XFONT_OBJECT (font_object);
316 font->pixel_size = pixel_size;
317 font->driver = &xftfont_driver;
318 font->encoding_charset = font->repertory_charset = -1;
319
320 xftfont_info = (struct xftfont_info *) font;
c2f5bfd6
KH
321 xftfont_info->display = display;
322 xftfont_info->screen = FRAME_X_SCREEN_NUMBER (f);
323 xftfont_info->xftfont = xftfont;
c2f5bfd6
KH
324 font->pixel_size = size;
325 font->driver = &xftfont_driver;
686ee703
KH
326 if (INTEGERP (AREF (entity, FONT_SPACING_INDEX)))
327 spacing = XINT (AREF (entity, FONT_SPACING_INDEX));
328 else
c2f5bfd6 329 spacing = FC_PROPORTIONAL;
91c5bb27
KH
330 if (! ascii_printable[0])
331 {
332 int i;
333 for (i = 0; i < 95; i++)
334 ascii_printable[i] = ' ' + i;
335 }
3528e709 336 BLOCK_INPUT;
c2f5bfd6 337 if (spacing != FC_PROPORTIONAL)
91c5bb27 338 {
3528e709 339 font->min_width = font->average_width = font->space_width
91c5bb27
KH
340 = xftfont->max_advance_width;
341 XftTextExtents8 (display, xftfont, ascii_printable + 1, 94, &extents);
342 }
c2f5bfd6
KH
343 else
344 {
c2f5bfd6 345 XftTextExtents8 (display, xftfont, ascii_printable, 1, &extents);
3528e709
KH
346 font->space_width = extents.xOff;
347 if (font->space_width <= 0)
c2f5bfd6 348 /* dirty workaround */
8510724d 349 font->space_width = pixel_size;
c2f5bfd6 350 XftTextExtents8 (display, xftfont, ascii_printable + 1, 94, &extents);
3528e709 351 font->average_width = (font->space_width + extents.xOff) / 95;
c2f5bfd6 352 }
dcce3c58 353 UNBLOCK_INPUT;
c2f5bfd6 354
91c5bb27 355 font->ascent = xftfont->ascent;
91c5bb27 356 font->descent = xftfont->descent;
81094fab
KH
357 if (pixel_size >= 5)
358 {
359 /* The above condition is a dirty workaround because
360 XftTextExtents8 behaves strangely for some fonts
361 (e.g. "Dejavu Sans Mono") when pixel_size is less than 5. */
362 if (font->ascent < extents.y)
363 font->ascent = extents.y;
364 if (font->descent < extents.height - extents.y)
365 font->descent = extents.height - extents.y;
366 }
3528e709 367 font->height = font->ascent + font->descent;
91c5bb27 368
3528e709 369 if (XINT (AREF (entity, FONT_SIZE_INDEX)) == 0)
c2f5bfd6 370 {
3528e709
KH
371 int upEM = ft_face->units_per_EM;
372
373 font->underline_position = -ft_face->underline_position * size / upEM;
bc981e4e 374 font->underline_thickness = ft_face->underline_thickness * size / upEM;
951b8112
KH
375 if (font->underline_thickness > 2)
376 font->underline_position -= font->underline_thickness / 2;
c2f5bfd6
KH
377 }
378 else
379 {
3528e709
KH
380 font->underline_position = -1;
381 font->underline_thickness = 0;
c2f5bfd6 382 }
3528e709
KH
383#ifdef HAVE_LIBOTF
384 xftfont_info->maybe_otf = ft_face->face_flags & FT_FACE_FLAG_SFNT;
385 xftfont_info->otf = NULL;
386#endif /* HAVE_LIBOTF */
0fce2b40 387 xftfont_info->ft_size = ft_face->size;
c2f5bfd6 388
3528e709
KH
389 /* Unfortunately Xft doesn't provide a way to get minimum char
390 width. So, we use space_width instead. */
391 font->min_width = font->space_width;
2d93c6bd 392
3528e709
KH
393 font->baseline_offset = 0;
394 font->relative_compose = 0;
395 font->default_ascent = 0;
396 font->vertical_centering = 0;
0fce2b40
KH
397#ifdef FT_BDF_H
398 if (! (ft_face->face_flags & FT_FACE_FLAG_SFNT))
399 {
400 BDF_PropertyRec rec;
401
402 if (FT_Get_BDF_Property (ft_face, "_MULE_BASELINE_OFFSET", &rec) == 0
403 && rec.type == BDF_PROPERTY_TYPE_INTEGER)
404 font->baseline_offset = rec.u.integer;
405 if (FT_Get_BDF_Property (ft_face, "_MULE_RELATIVE_COMPOSE", &rec) == 0
406 && rec.type == BDF_PROPERTY_TYPE_INTEGER)
407 font->relative_compose = rec.u.integer;
408 if (FT_Get_BDF_Property (ft_face, "_MULE_DEFAULT_ASCENT", &rec) == 0
409 && rec.type == BDF_PROPERTY_TYPE_INTEGER)
410 font->default_ascent = rec.u.integer;
411 }
412#endif
3528e709
KH
413
414 return font_object;
c2f5bfd6
KH
415}
416
417static void
418xftfont_close (f, font)
419 FRAME_PTR f;
420 struct font *font;
421{
422 struct xftfont_info *xftfont_info = (struct xftfont_info *) font;
423
4613015e
KH
424#ifdef HAVE_LIBOTF
425 if (xftfont_info->otf)
426 OTF_close (xftfont_info->otf);
427#endif
3528e709 428 BLOCK_INPUT;
0fce2b40 429 XftUnlockFace (xftfont_info->xftfont);
c2f5bfd6 430 XftFontClose (xftfont_info->display, xftfont_info->xftfont);
3528e709 431 UNBLOCK_INPUT;
c2f5bfd6
KH
432}
433
c2f5bfd6
KH
434static int
435xftfont_prepare_face (f, face)
436 FRAME_PTR f;
437 struct face *face;
438{
e2d0c925 439 struct xftface_info *xftface_info;
c2f5bfd6 440
a703d27d
KH
441#if 0
442 /* This doesn't work if face->ascii_face doesn't use an Xft font. */
e2d0c925
KH
443 if (face != face->ascii_face)
444 {
445 face->extra = face->ascii_face->extra;
446 return 0;
447 }
a703d27d 448#endif
e2d0c925
KH
449
450 xftface_info = malloc (sizeof (struct xftface_info));
c2f5bfd6
KH
451 if (! xftface_info)
452 return -1;
c2f5bfd6
KH
453 xftfont_get_colors (f, face, face->gc, NULL,
454 &xftface_info->xft_fg, &xftface_info->xft_bg);
c2f5bfd6
KH
455 face->extra = xftface_info;
456 return 0;
457}
458
459static void
460xftfont_done_face (f, face)
461 FRAME_PTR f;
462 struct face *face;
463{
e2d0c925 464 struct xftface_info *xftface_info;
8510724d 465
a703d27d
KH
466#if 0
467 /* This doesn't work if face->ascii_face doesn't use an Xft font. */
e2d0c925
KH
468 if (face != face->ascii_face
469 || ! face->extra)
470 return;
a703d27d 471#endif
c2f5bfd6 472
e2d0c925 473 xftface_info = (struct xftface_info *) face->extra;
773039e8
JD
474 if (xftface_info)
475 {
773039e8 476 free (xftface_info);
a92ee6bf 477 face->extra = NULL;
773039e8 478 }
c2f5bfd6
KH
479}
480
b840b299
KH
481extern Lisp_Object Qja, Qko;
482
6570a1c4
KH
483static int
484xftfont_has_char (font, c)
485 Lisp_Object font;
486 int c;
487{
488 struct xftfont_info *xftfont_info;
b840b299 489 struct charset *cs = NULL;
6570a1c4
KH
490
491 if (FONT_ENTITY_P (font))
492 return ftfont_driver.has_char (font, c);
493
b840b299
KH
494 if (EQ (AREF (font, FONT_ADSTYLE_INDEX), Qja)
495 && charset_jisx0208 >= 0)
496 cs = CHARSET_FROM_ID (charset_jisx0208);
497 else if (EQ (AREF (font, FONT_ADSTYLE_INDEX), Qko)
498 && charset_ksc5601 >= 0)
499 cs = CHARSET_FROM_ID (charset_ksc5601);
500 if (cs)
501 return (ENCODE_CHAR (cs, c) != CHARSET_INVALID_CODE (cs));
502
6570a1c4
KH
503 xftfont_info = (struct xftfont_info *) XFONT_OBJECT (font);
504 return (XftCharExists (xftfont_info->display, xftfont_info->xftfont,
505 (FcChar32) c) == FcTrue);
506}
507
c2f5bfd6
KH
508static unsigned
509xftfont_encode_char (font, c)
510 struct font *font;
511 int c;
512{
513 struct xftfont_info *xftfont_info = (struct xftfont_info *) font;
514 unsigned code = XftCharIndex (xftfont_info->display, xftfont_info->xftfont,
515 (FcChar32) c);
8510724d 516
b5b2545a 517 return (code ? code : FONT_INVALID_CODE);
c2f5bfd6
KH
518}
519
520static int
521xftfont_text_extents (font, code, nglyphs, metrics)
522 struct font *font;
523 unsigned *code;
524 int nglyphs;
525 struct font_metrics *metrics;
526{
527 struct xftfont_info *xftfont_info = (struct xftfont_info *) font;
528 XGlyphInfo extents;
529
530 BLOCK_INPUT;
531 XftGlyphExtents (xftfont_info->display, xftfont_info->xftfont, code, nglyphs,
532 &extents);
533 UNBLOCK_INPUT;
534 if (metrics)
535 {
536 metrics->lbearing = - extents.x;
537 metrics->rbearing = - extents.x + extents.width;
538 metrics->width = extents.xOff;
539 metrics->ascent = extents.y;
4b848612 540 metrics->descent = extents.height - extents.y;
c2f5bfd6
KH
541 }
542 return extents.xOff;
543}
544
a92ee6bf
KH
545static XftDraw *
546xftfont_get_xft_draw (f)
547 FRAME_PTR f;
548{
8510724d 549 XftDraw *xft_draw = font_get_frame_data (f, &xftfont_driver);
a92ee6bf
KH
550
551 if (! xft_draw)
552 {
553 BLOCK_INPUT;
554 xft_draw= XftDrawCreate (FRAME_X_DISPLAY (f),
555 FRAME_X_WINDOW (f),
556 FRAME_X_VISUAL (f),
557 FRAME_X_COLORMAP (f));
558 UNBLOCK_INPUT;
559 if (! xft_draw)
560 abort ();
561 font_put_frame_data (f, &xftfont_driver, xft_draw);
562 }
563 return xft_draw;
564}
565
c2f5bfd6
KH
566static int
567xftfont_draw (s, from, to, x, y, with_background)
568 struct glyph_string *s;
569 int from, to, x, y, with_background;
570{
571 FRAME_PTR f = s->f;
572 struct face *face = s->face;
3528e709 573 struct xftfont_info *xftfont_info = (struct xftfont_info *) s->font;
c78c1659 574 struct xftface_info *xftface_info = NULL;
a92ee6bf 575 XftDraw *xft_draw = xftfont_get_xft_draw (f);
c2f5bfd6
KH
576 FT_UInt *code;
577 XftColor fg, bg;
c2f5bfd6
KH
578 int len = to - from;
579 int i;
580
3528e709 581 if (s->font == face->font)
a92ee6bf 582 xftface_info = (struct xftface_info *) face->extra;
c2f5bfd6 583 xftfont_get_colors (f, face, s->gc, xftface_info,
322f8671 584 &fg, with_background ? &bg : NULL);
c2f5bfd6 585 BLOCK_INPUT;
03d198e8
KH
586 if (s->num_clips > 0)
587 XftDrawSetClipRectangles (xft_draw, 0, 0, s->clip, s->num_clips);
588 else
589 XftDrawSetClip (xft_draw, NULL);
590
c2f5bfd6 591 if (with_background)
3528e709
KH
592 XftDrawRect (xft_draw, &bg,
593 x, y - face->font->ascent, s->width, face->font->height);
c2f5bfd6
KH
594 code = alloca (sizeof (FT_UInt) * len);
595 for (i = 0; i < len; i++)
596 code[i] = ((XCHAR2B_BYTE1 (s->char2b + from + i) << 8)
597 | XCHAR2B_BYTE2 (s->char2b + from + i));
598
785543da
KH
599 if (s->padding_p)
600 for (i = 0; i < len; i++)
601 XftDrawGlyphs (xft_draw, &fg, xftfont_info->xftfont,
602 x + i, y, code + i, 1);
603 else
604 XftDrawGlyphs (xft_draw, &fg, xftfont_info->xftfont,
605 x, y, code, len);
c2f5bfd6
KH
606 UNBLOCK_INPUT;
607
608 return len;
609}
610
a92ee6bf
KH
611static int
612xftfont_end_for_frame (f)
613 FRAME_PTR f;
614{
615 XftDraw *xft_draw = font_get_frame_data (f, &xftfont_driver);
616
617 if (xft_draw)
618 {
619 BLOCK_INPUT;
620 XftDrawDestroy (xft_draw);
621 UNBLOCK_INPUT;
622 font_put_frame_data (f, &xftfont_driver, NULL);
623 }
624 return 0;
625}
c2f5bfd6
KH
626
627void
628syms_of_xftfont ()
629{
630 DEFSYM (Qxft, "xft");
81094fab 631 DEFSYM (QChinting, ":hinting");
9743ac48 632 DEFSYM (QCautohint, ":autohint");
81094fab
KH
633 DEFSYM (QChintstyle, ":hintstyle");
634 DEFSYM (QCrgba, ":rgba");
635 DEFSYM (QCembolden, ":embolden");
c2f5bfd6
KH
636
637 xftfont_driver = ftfont_driver;
638 xftfont_driver.type = Qxft;
639 xftfont_driver.get_cache = xfont_driver.get_cache;
640 xftfont_driver.list = xftfont_list;
10aca0f7 641 xftfont_driver.match = xftfont_match;
c2f5bfd6
KH
642 xftfont_driver.open = xftfont_open;
643 xftfont_driver.close = xftfont_close;
644 xftfont_driver.prepare_face = xftfont_prepare_face;
645 xftfont_driver.done_face = xftfont_done_face;
6570a1c4 646 xftfont_driver.has_char = xftfont_has_char;
c2f5bfd6
KH
647 xftfont_driver.encode_char = xftfont_encode_char;
648 xftfont_driver.text_extents = xftfont_text_extents;
649 xftfont_driver.draw = xftfont_draw;
a92ee6bf 650 xftfont_driver.end_for_frame = xftfont_end_for_frame;
c2f5bfd6
KH
651
652 register_font_driver (&xftfont_driver, NULL);
653}
885b7d09
MB
654
655/* arch-tag: 64ec61bf-7c8e-4fe6-b953-c6a85d5e1605
656 (do not change this comment) */