1 /* ftcrfont.c -- FreeType font driver on cairo.
2 Copyright (C) 2015 Free Software Foundation, Inc.
4 This file is part of GNU Emacs.
6 GNU Emacs is free software: you can redistribute it and/or modify
7 it under the terms of the GNU General Public License as published by
8 the Free Software Foundation, either version 3 of the License, or
9 (at your option) any later version.
11 GNU Emacs is distributed in the hope that it will be useful,
12 but WITHOUT ANY WARRANTY; without even the implied warranty of
13 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 GNU General Public License for more details.
16 You should have received a copy of the GNU General Public License
17 along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>. */
25 #include "dispextern.h"
28 #include "blockinput.h"
29 #include "character.h"
35 /* FTCR font driver. */
37 /* The actual structure for FTCR font. A pointer to this structure
38 can be cast to struct font *. */
43 /* The following six members must be here in this order to be
44 compatible with struct ftfont_info (in ftfont.c). */
46 bool maybe_otf
; /* Flag to tell if this may be OTF or not. */
48 #endif /* HAVE_LIBOTF */
53 cairo_font_face_t
*cr_font_face
;
54 /* To prevent cairo from cluttering the activated FT_Size maintained
55 in ftfont.c, we activate this special FT_Size before drawing. */
57 /* Font metrics cache. */
58 struct font_metrics
**metrics
;
62 #define METRICS_NCOLS_PER_ROW (128)
66 METRICS_INVALID
= -1, /* metrics entry is invalid */
69 #define METRICS_STATUS(metrics) ((metrics)->ascent + (metrics)->descent)
70 #define METRICS_SET_STATUS(metrics, status) \
71 ((metrics)->ascent = 0, (metrics)->descent = (status))
73 struct font_driver ftcrfont_driver
;
76 ftcrfont_glyph_extents (struct font
*font
,
78 struct font_metrics
*metrics
)
80 struct ftcrfont_info
*ftcrfont_info
= (struct ftcrfont_info
*) font
;
82 struct font_metrics
*cache
;
84 row
= glyph
/ METRICS_NCOLS_PER_ROW
;
85 col
= glyph
% METRICS_NCOLS_PER_ROW
;
86 if (row
>= ftcrfont_info
->metrics_nrows
)
88 ftcrfont_info
->metrics
=
89 xrealloc (ftcrfont_info
->metrics
,
90 sizeof (struct font_metrics
*) * (row
+ 1));
91 bzero (ftcrfont_info
->metrics
+ ftcrfont_info
->metrics_nrows
,
92 (sizeof (struct font_metrics
*)
93 * (row
+ 1 - ftcrfont_info
->metrics_nrows
)));
94 ftcrfont_info
->metrics_nrows
= row
+ 1;
96 if (ftcrfont_info
->metrics
[row
] == NULL
)
98 struct font_metrics
*new;
101 new = xmalloc (sizeof (struct font_metrics
) * METRICS_NCOLS_PER_ROW
);
102 for (i
= 0; i
< METRICS_NCOLS_PER_ROW
; i
++)
103 METRICS_SET_STATUS (new + i
, METRICS_INVALID
);
104 ftcrfont_info
->metrics
[row
] = new;
106 cache
= ftcrfont_info
->metrics
[row
] + col
;
108 if (METRICS_STATUS (cache
) == METRICS_INVALID
)
109 ftfont_driver
.text_extents (font
, &glyph
, 1, cache
);
118 ftcrfont_list (struct frame
*f
, Lisp_Object spec
)
120 Lisp_Object list
= ftfont_driver
.list (f
, spec
), tail
;
122 for (tail
= list
; CONSP (tail
); tail
= XCDR (tail
))
123 ASET (XCAR (tail
), FONT_TYPE_INDEX
, Qftcr
);
128 ftcrfont_match (struct frame
*f
, Lisp_Object spec
)
130 Lisp_Object entity
= ftfont_driver
.match (f
, spec
);
132 if (VECTORP (entity
))
133 ASET (entity
, FONT_TYPE_INDEX
, Qftcr
);
137 extern FT_Face
ftfont_get_ft_face (Lisp_Object
);
140 ftcrfont_open (struct frame
*f
, Lisp_Object entity
, int pixel_size
)
142 Lisp_Object font_object
;
144 struct ftcrfont_info
*ftcrfont_info
;
149 size
= XINT (AREF (entity
, FONT_SIZE_INDEX
));
152 font_object
= font_build_object (VECSIZE (struct ftcrfont_info
),
153 Qftcr
, entity
, size
);
154 font_object
= ftfont_open2 (f
, entity
, pixel_size
, font_object
);
155 if (NILP (font_object
)) return Qnil
;
157 font
= XFONT_OBJECT (font_object
);
158 font
->driver
= &ftcrfont_driver
;
159 ftcrfont_info
= (struct ftcrfont_info
*) font
;
160 ft_face
= ftcrfont_info
->ft_size
->face
;
161 FT_New_Size (ft_face
, &ftcrfont_info
->ft_size_draw
);
162 FT_Activate_Size (ftcrfont_info
->ft_size_draw
);
163 FT_Set_Pixel_Sizes (ft_face
, 0, font
->pixel_size
);
164 ftcrfont_info
->cr_font_face
=
165 cairo_ft_font_face_create_for_ft_face (ft_face
, 0);
166 ftcrfont_info
->metrics
= NULL
;
167 ftcrfont_info
->metrics_nrows
= 0;
174 ftcrfont_close (struct font
*font
)
176 struct ftcrfont_info
*ftcrfont_info
= (struct ftcrfont_info
*) font
;
180 for (i
= 0; i
< ftcrfont_info
->metrics_nrows
; i
++)
181 if (ftcrfont_info
->metrics
[i
])
182 xfree (ftcrfont_info
->metrics
[i
]);
183 if (ftcrfont_info
->metrics
)
184 xfree (ftcrfont_info
->metrics
);
185 FT_Done_Size (ftcrfont_info
->ft_size_draw
);
186 cairo_font_face_destroy (ftcrfont_info
->cr_font_face
);
189 ftfont_driver
.close (font
);
193 ftcrfont_text_extents (struct font
*font
,
196 struct font_metrics
*metrics
)
201 width
= ftcrfont_glyph_extents (font
, code
[0], metrics
);
202 for (i
= 1; i
< nglyphs
; i
++)
204 struct font_metrics m
;
205 int w
= ftcrfont_glyph_extents (font
, code
[i
], metrics
? &m
: NULL
);
209 if (width
+ m
.lbearing
< metrics
->lbearing
)
210 metrics
->lbearing
= width
+ m
.lbearing
;
211 if (width
+ m
.rbearing
> metrics
->rbearing
)
212 metrics
->rbearing
= width
+ m
.rbearing
;
213 if (m
.ascent
> metrics
->ascent
)
214 metrics
->ascent
= m
.ascent
;
215 if (m
.descent
> metrics
->descent
)
216 metrics
->descent
= m
.descent
;
223 metrics
->width
= width
;
227 ftcrfont_draw (struct glyph_string
*s
,
228 int from
, int to
, int x
, int y
, bool with_background
)
230 struct frame
*f
= s
->f
;
231 struct face
*face
= s
->face
;
232 struct ftcrfont_info
*ftcrfont_info
= (struct ftcrfont_info
*) s
->font
;
234 cairo_glyph_t
*glyphs
;
235 cairo_surface_t
*surface
;
236 cairo_surface_type_t surface_type
;
242 cr
= x_begin_cr_clip (f
, s
->gc
);
246 x_set_cr_source_with_gc_background (f
, s
->gc
);
247 cairo_rectangle (cr
, x
, y
- FONT_BASE (face
->font
),
248 s
->width
, FONT_HEIGHT (face
->font
));
252 glyphs
= alloca (sizeof (cairo_glyph_t
) * len
);
253 for (i
= 0; i
< len
; i
++)
255 unsigned code
= ((XCHAR2B_BYTE1 (s
->char2b
+ from
+ i
) << 8)
256 | XCHAR2B_BYTE2 (s
->char2b
+ from
+ i
));
258 glyphs
[i
].index
= code
;
261 x
+= (s
->padding_p
? 1 : ftcrfont_glyph_extents (s
->font
, code
, NULL
));
264 x_set_cr_source_with_gc_foreground (f
, s
->gc
);
265 cairo_set_font_face (cr
, ftcrfont_info
->cr_font_face
);
266 cairo_set_font_size (cr
, s
->font
->pixel_size
);
267 /* cairo_set_font_matrix */
268 /* cairo_set_font_options */
270 FT_Activate_Size (ftcrfont_info
->ft_size_draw
);
271 cairo_show_glyphs (cr
, glyphs
, len
);
272 surface
= cairo_get_target (cr
);
273 /* XXX: It used to be necessary to flush when exporting. It might
274 be the case that this is no longer necessary. */
275 surface_type
= cairo_surface_get_type (surface
);
276 if (surface_type
!= CAIRO_SURFACE_TYPE_XLIB
277 && (surface_type
!= CAIRO_SURFACE_TYPE_IMAGE
278 || cairo_image_surface_get_format (surface
) != CAIRO_FORMAT_ARGB32
))
279 cairo_surface_flush (surface
);
291 syms_of_ftcrfont (void)
293 if (ftfont_info_size
!= offsetof (struct ftcrfont_info
, cr_font_face
))
296 DEFSYM (Qftcr
, "ftcr");
298 ftcrfont_driver
= ftfont_driver
;
299 ftcrfont_driver
.type
= Qftcr
;
300 ftcrfont_driver
.list
= ftcrfont_list
;
301 ftcrfont_driver
.match
= ftcrfont_match
;
302 ftcrfont_driver
.open
= ftcrfont_open
;
303 ftcrfont_driver
.close
= ftcrfont_close
;
304 ftcrfont_driver
.text_extents
= ftcrfont_text_extents
;
305 ftcrfont_driver
.draw
= ftcrfont_draw
;
306 register_font_driver (&ftcrfont_driver
, NULL
);