2 * vim:ts=4:sw=4:expandtab
4 * i3 - an improved dynamic tiling window manager
5 * © 2009 Michael Stapelberg and contributors (see also: LICENSE)
15 #include <cairo/cairo-xcb.h>
17 #include <pango/pangocairo.h>
22 extern xcb_connection_t *conn;
23 extern xcb_screen_t *root_screen;
25 static const i3Font *savedFont = NULL;
28 static xcb_visualtype_t *root_visual_type;
29 static double pango_font_red;
30 static double pango_font_green;
31 static double pango_font_blue;
33 /* Necessary to track whether the dpi changes and trigger a LOG() message,
34 * which is more easily visible to users. */
35 static double logged_dpi = 0.0;
37 static PangoLayout *create_layout_with_dpi(cairo_t *cr) {
39 PangoContext *context;
41 context = pango_cairo_create_context(cr);
42 const double dpi = (double)root_screen->height_in_pixels * 25.4 /
43 (double)root_screen->height_in_millimeters;
44 if (logged_dpi != dpi) {
46 LOG("X11 root window dictates %f DPI\n", dpi);
48 DLOG("X11 root window dictates %f DPI\n", dpi);
50 pango_cairo_context_set_resolution(context, dpi);
51 layout = pango_layout_new(context);
52 g_object_unref(context);
58 * Loads a Pango font description into an i3Font structure. Returns true
59 * on success, false otherwise.
62 static bool load_pango_font(i3Font *font, const char *desc) {
63 /* Load the font description */
64 font->specific.pango_desc = pango_font_description_from_string(desc);
65 if (!font->specific.pango_desc) {
66 ELOG("Could not open font %s with Pango, fallback to X font.\n", desc);
70 LOG("Using Pango font %s, size %d\n",
71 pango_font_description_get_family(font->specific.pango_desc),
72 pango_font_description_get_size(font->specific.pango_desc) / PANGO_SCALE);
74 /* We cache root_visual_type here, since you must call
75 * load_pango_font before any other pango function
76 * that would need root_visual_type */
77 root_visual_type = get_visualtype(root_screen);
79 /* Create a dummy Pango layout to compute the font height */
80 cairo_surface_t *surface = cairo_xcb_surface_create(conn, root_screen->root, root_visual_type, 1, 1);
81 cairo_t *cr = cairo_create(surface);
82 PangoLayout *layout = create_layout_with_dpi(cr);
83 pango_layout_set_font_description(layout, font->specific.pango_desc);
85 /* Get the font height */
87 pango_layout_get_pixel_size(layout, NULL, &height);
88 font->height = height;
91 g_object_unref(layout);
93 cairo_surface_destroy(surface);
95 /* Set the font type and return successfully */
96 font->type = FONT_TYPE_PANGO;
101 * Draws text using Pango rendering.
104 static void draw_text_pango(const char *text, size_t text_len,
105 xcb_drawable_t drawable, xcb_visualtype_t *visual, int x, int y,
106 int max_width, bool is_markup) {
107 /* Create the Pango layout */
108 /* root_visual_type is cached in load_pango_font */
109 cairo_surface_t *surface = cairo_xcb_surface_create(conn, drawable,
110 visual, x + max_width, y + savedFont->height);
111 cairo_t *cr = cairo_create(surface);
112 PangoLayout *layout = create_layout_with_dpi(cr);
115 pango_layout_set_font_description(layout, savedFont->specific.pango_desc);
116 pango_layout_set_width(layout, max_width * PANGO_SCALE);
117 pango_layout_set_wrap(layout, PANGO_WRAP_CHAR);
118 pango_layout_set_ellipsize(layout, PANGO_ELLIPSIZE_END);
121 pango_layout_set_markup(layout, text, text_len);
123 pango_layout_set_text(layout, text, text_len);
126 cairo_set_operator(cr, CAIRO_OPERATOR_SOURCE);
127 cairo_set_source_rgb(cr, pango_font_red, pango_font_green, pango_font_blue);
128 pango_cairo_update_layout(cr, layout);
129 pango_layout_get_pixel_size(layout, NULL, &height);
130 /* Center the piece of text vertically if its height is smaller than the
131 * cached font height, and just let "high" symbols fall out otherwise. */
132 int yoffset = (height < savedFont->height ? 0.5 : 1) * (height - savedFont->height);
133 cairo_move_to(cr, x, y - yoffset);
134 pango_cairo_show_layout(cr, layout);
137 g_object_unref(layout);
139 cairo_surface_destroy(surface);
143 * Calculate the text width using Pango rendering.
146 static int predict_text_width_pango(const char *text, size_t text_len, bool is_markup) {
147 /* Create a dummy Pango layout */
148 /* root_visual_type is cached in load_pango_font */
149 cairo_surface_t *surface = cairo_xcb_surface_create(conn, root_screen->root, root_visual_type, 1, 1);
150 cairo_t *cr = cairo_create(surface);
151 PangoLayout *layout = create_layout_with_dpi(cr);
153 /* Get the font width */
155 pango_layout_set_font_description(layout, savedFont->specific.pango_desc);
158 pango_layout_set_markup(layout, text, text_len);
160 pango_layout_set_text(layout, text, text_len);
162 pango_cairo_update_layout(cr, layout);
163 pango_layout_get_pixel_size(layout, &width, NULL);
166 g_object_unref(layout);
168 cairo_surface_destroy(surface);
175 * Loads a font for usage, also getting its metrics. If fallback is true,
176 * the fonts 'fixed' or '-misc-*' will be loaded instead of exiting. If any
177 * font was previously loaded, it will be freed.
180 i3Font load_font(const char *pattern, const bool fallback) {
181 /* if any font was previously loaded, free it now */
185 font.type = FONT_TYPE_NONE;
187 /* No XCB connction, return early because we're just validating the
188 * configuration file. */
194 /* Try to load a pango font if specified */
195 if (strlen(pattern) > strlen("pango:") && !strncmp(pattern, "pango:", strlen("pango:"))) {
196 const char *font_pattern = pattern + strlen("pango:");
197 if (load_pango_font(&font, font_pattern)) {
198 font.pattern = sstrdup(pattern);
201 } else if (strlen(pattern) > strlen("xft:") && !strncmp(pattern, "xft:", strlen("xft:"))) {
202 const char *font_pattern = pattern + strlen("xft:");
203 if (load_pango_font(&font, font_pattern)) {
204 font.pattern = sstrdup(pattern);
210 /* Send all our requests first */
211 font.specific.xcb.id = xcb_generate_id(conn);
212 xcb_void_cookie_t font_cookie = xcb_open_font_checked(conn, font.specific.xcb.id,
213 strlen(pattern), pattern);
214 xcb_query_font_cookie_t info_cookie = xcb_query_font(conn, font.specific.xcb.id);
216 /* Check for errors. If errors, fall back to default font. */
217 xcb_generic_error_t *error;
218 error = xcb_request_check(conn, font_cookie);
220 /* If we fail to open font, fall back to 'fixed' */
221 if (fallback && error != NULL) {
222 ELOG("Could not open font %s (X error %d). Trying fallback to 'fixed'.\n",
223 pattern, error->error_code);
225 font_cookie = xcb_open_font_checked(conn, font.specific.xcb.id,
226 strlen(pattern), pattern);
227 info_cookie = xcb_query_font(conn, font.specific.xcb.id);
229 /* Check if we managed to open 'fixed' */
230 error = xcb_request_check(conn, font_cookie);
232 /* Fall back to '-misc-*' if opening 'fixed' fails. */
234 ELOG("Could not open fallback font 'fixed', trying with '-misc-*'.\n");
236 font_cookie = xcb_open_font_checked(conn, font.specific.xcb.id,
237 strlen(pattern), pattern);
238 info_cookie = xcb_query_font(conn, font.specific.xcb.id);
240 if ((error = xcb_request_check(conn, font_cookie)) != NULL)
241 errx(EXIT_FAILURE, "Could open neither requested font nor fallbacks "
242 "(fixed or -misc-*): X11 error %d",
247 font.pattern = sstrdup(pattern);
248 LOG("Using X font %s\n", pattern);
250 /* Get information (height/name) for this font */
251 if (!(font.specific.xcb.info = xcb_query_font_reply(conn, info_cookie, NULL)))
252 errx(EXIT_FAILURE, "Could not load font \"%s\"", pattern);
254 /* Get the font table, if possible */
255 if (xcb_query_font_char_infos_length(font.specific.xcb.info) == 0)
256 font.specific.xcb.table = NULL;
258 font.specific.xcb.table = xcb_query_font_char_infos(font.specific.xcb.info);
260 /* Calculate the font height */
261 font.height = font.specific.xcb.info->font_ascent + font.specific.xcb.info->font_descent;
263 /* Set the font type and return successfully */
264 font.type = FONT_TYPE_XCB;
269 * Defines the font to be used for the forthcoming calls.
272 void set_font(i3Font *font) {
277 * Frees the resources taken by the current font. If no font was previously
278 * loaded, it simply returns.
281 void free_font(void) {
282 /* if there is no saved font, simply return */
283 if (savedFont == NULL)
286 free(savedFont->pattern);
287 switch (savedFont->type) {
291 case FONT_TYPE_XCB: {
292 /* Close the font and free the info */
293 xcb_close_font(conn, savedFont->specific.xcb.id);
294 if (savedFont->specific.xcb.info)
295 free(savedFont->specific.xcb.info);
299 case FONT_TYPE_PANGO:
300 /* Free the font description */
301 pango_font_description_free(savedFont->specific.pango_desc);
313 * Defines the colors to be used for the forthcoming draw_text calls.
316 void set_font_colors(xcb_gcontext_t gc, uint32_t foreground, uint32_t background) {
317 assert(savedFont != NULL);
319 switch (savedFont->type) {
323 case FONT_TYPE_XCB: {
324 /* Change the font and colors in the GC */
325 uint32_t mask = XCB_GC_FOREGROUND | XCB_GC_BACKGROUND | XCB_GC_FONT;
326 uint32_t values[] = {foreground, background, savedFont->specific.xcb.id};
327 xcb_change_gc(conn, gc, mask, values);
331 case FONT_TYPE_PANGO:
332 /* Save the foreground font */
333 pango_font_red = ((foreground >> 16) & 0xff) / 255.0;
334 pango_font_green = ((foreground >> 8) & 0xff) / 255.0;
335 pango_font_blue = (foreground & 0xff) / 255.0;
345 * Returns true if and only if the current font is a pango font.
348 bool font_is_pango(void) {
350 return savedFont->type == FONT_TYPE_PANGO;
356 static int predict_text_width_xcb(const xcb_char2b_t *text, size_t text_len);
358 static void draw_text_xcb(const xcb_char2b_t *text, size_t text_len, xcb_drawable_t drawable,
359 xcb_gcontext_t gc, int x, int y, int max_width) {
360 /* X11 coordinates for fonts start at the baseline */
361 int pos_y = y + savedFont->specific.xcb.info->font_ascent;
363 /* The X11 protocol limits text drawing to 255 chars, so we may need
367 /* Calculate the size of this chunk */
368 int chunk_size = (text_len > 255 ? 255 : text_len);
369 const xcb_char2b_t *chunk = text + offset;
372 xcb_image_text_16(conn, chunk_size, drawable, gc, x, pos_y, chunk);
374 /* Advance the offset and length of the text to draw */
375 offset += chunk_size;
376 text_len -= chunk_size;
378 /* Check if we're done */
382 /* Advance pos_x based on the predicted text width */
383 x += predict_text_width_xcb(chunk, chunk_size);
388 * Draws text onto the specified X drawable (normally a pixmap) at the
389 * specified coordinates (from the top left corner of the leftmost, uppermost
390 * glyph) and using the provided gc.
392 * Text must be specified as an i3String.
395 void draw_text(i3String *text, xcb_drawable_t drawable, xcb_gcontext_t gc,
396 xcb_visualtype_t *visual, int x, int y, int max_width) {
397 assert(savedFont != NULL);
398 if (visual == NULL) {
399 visual = root_visual_type;
402 switch (savedFont->type) {
407 draw_text_xcb(i3string_as_ucs2(text), i3string_get_num_glyphs(text),
408 drawable, gc, x, y, max_width);
411 case FONT_TYPE_PANGO:
412 /* Render the text using Pango */
413 draw_text_pango(i3string_as_utf8(text), i3string_get_num_bytes(text),
414 drawable, visual, x, y, max_width, i3string_is_markup(text));
423 * ASCII version of draw_text to print static strings.
426 void draw_text_ascii(const char *text, xcb_drawable_t drawable,
427 xcb_gcontext_t gc, int x, int y, int max_width) {
428 assert(savedFont != NULL);
430 switch (savedFont->type) {
434 case FONT_TYPE_XCB: {
435 size_t text_len = strlen(text);
436 if (text_len > 255) {
437 /* The text is too long to draw it directly to X */
438 i3String *str = i3string_from_utf8(text);
439 draw_text(str, drawable, gc, NULL, x, y, max_width);
442 /* X11 coordinates for fonts start at the baseline */
443 int pos_y = y + savedFont->specific.xcb.info->font_ascent;
445 xcb_image_text_8(conn, text_len, drawable, gc, x, pos_y, text);
450 case FONT_TYPE_PANGO:
451 /* Render the text using Pango */
452 draw_text_pango(text, strlen(text),
453 drawable, root_visual_type, x, y, max_width, false);
461 static int xcb_query_text_width(const xcb_char2b_t *text, size_t text_len) {
462 /* Make the user know we’re using the slow path, but only once. */
463 static bool first_invocation = true;
464 if (first_invocation) {
465 fprintf(stderr, "Using slow code path for text extents\n");
466 first_invocation = false;
469 /* Query the text width */
470 xcb_generic_error_t *error;
471 xcb_query_text_extents_cookie_t cookie = xcb_query_text_extents(conn,
472 savedFont->specific.xcb.id, text_len, (xcb_char2b_t *)text);
473 xcb_query_text_extents_reply_t *reply = xcb_query_text_extents_reply(conn,
476 /* We return a safe estimate because a rendering error is better than
477 * a crash. Plus, the user will see the error in their log. */
478 fprintf(stderr, "Could not get text extents (X error code %d)\n",
480 return savedFont->specific.xcb.info->max_bounds.character_width * text_len;
483 int width = reply->overall_width;
488 static int predict_text_width_xcb(const xcb_char2b_t *input, size_t text_len) {
493 if (savedFont->specific.xcb.table == NULL) {
494 /* If we don't have a font table, fall back to querying the server */
495 width = xcb_query_text_width(input, text_len);
497 /* Save some pointers for convenience */
498 xcb_query_font_reply_t *font_info = savedFont->specific.xcb.info;
499 xcb_charinfo_t *font_table = savedFont->specific.xcb.table;
501 /* Calculate the width using the font table */
503 for (size_t i = 0; i < text_len; i++) {
504 xcb_charinfo_t *info;
505 int row = input[i].byte1;
506 int col = input[i].byte2;
508 if (row < font_info->min_byte1 ||
509 row > font_info->max_byte1 ||
510 col < font_info->min_char_or_byte2 ||
511 col > font_info->max_char_or_byte2)
514 /* Don't you ask me, how this one works… (Merovius) */
515 info = &font_table[((row - font_info->min_byte1) *
516 (font_info->max_char_or_byte2 - font_info->min_char_or_byte2 + 1)) +
517 (col - font_info->min_char_or_byte2)];
519 if (info->character_width != 0 ||
520 (info->right_side_bearing |
521 info->left_side_bearing |
523 info->descent) != 0) {
524 width += info->character_width;
533 * Predict the text width in pixels for the given text. Text must be
534 * specified as an i3String.
537 int predict_text_width(i3String *text) {
538 assert(savedFont != NULL);
540 switch (savedFont->type) {
545 return predict_text_width_xcb(i3string_as_ucs2(text), i3string_get_num_glyphs(text));
547 case FONT_TYPE_PANGO:
548 /* Calculate extents using Pango */
549 return predict_text_width_pango(i3string_as_utf8(text), i3string_get_num_bytes(text),
550 i3string_is_markup(text));