]> git.sur5r.net Git - i3/i3/blob - i3bar/src/xcb.c
Fix moving windows to a marked workspace by mark.
[i3/i3] / i3bar / src / xcb.c
1 /*
2  * vim:ts=4:sw=4:expandtab
3  *
4  * i3bar - an xcb-based status- and ws-bar for i3
5  * © 2010 Axel Wagner and contributors (see also: LICENSE)
6  *
7  * xcb.c: Communicating with X
8  *
9  */
10 #include <xcb/xcb.h>
11 #include <xcb/xkb.h>
12 #include <xcb/xproto.h>
13 #include <xcb/xcb_aux.h>
14
15 #ifdef XCB_COMPAT
16 #include "xcb_compat.h"
17 #endif
18
19 #include <stdio.h>
20 #include <stdlib.h>
21 #include <unistd.h>
22 #include <fcntl.h>
23 #include <string.h>
24 #include <i3/ipc.h>
25 #include <ev.h>
26 #include <errno.h>
27 #include <limits.h>
28 #include <err.h>
29
30 #include <X11/Xlib.h>
31 #include <X11/XKBlib.h>
32 #include <X11/extensions/XKB.h>
33 #include <cairo/cairo-xcb.h>
34
35 #include "common.h"
36 #include "libi3.h"
37
38 /* We save the atoms in an easy to access array, indexed by an enum */
39 enum {
40 #define ATOM_DO(name) name,
41 #include "xcb_atoms.def"
42     NUM_ATOMS
43 };
44
45 xcb_intern_atom_cookie_t atom_cookies[NUM_ATOMS];
46 xcb_atom_t atoms[NUM_ATOMS];
47
48 /* Variables, that are the same for all functions at all times */
49 xcb_connection_t *xcb_connection;
50 int screen;
51 xcb_screen_t *root_screen;
52 xcb_window_t xcb_root;
53
54 /* selection window for tray support */
55 static xcb_window_t selwin = XCB_NONE;
56 static xcb_intern_atom_reply_t *tray_reply = NULL;
57
58 /* This is needed for integration with libi3 */
59 xcb_connection_t *conn;
60
61 /* The font we'll use */
62 static i3Font font;
63
64 /* Icon size (based on font size) */
65 int icon_size;
66
67 xcb_visualtype_t *visual_type;
68 uint8_t depth;
69 xcb_colormap_t colormap;
70
71 /* Overall height of the bar (based on font size) */
72 int bar_height;
73
74 /* These are only relevant for XKB, which we only need for grabbing modifiers */
75 int xkb_base;
76 int mod_pressed = 0;
77
78 /* Because the statusline is the same on all outputs, we have
79  * global buffer to render it on */
80 surface_t statusline_surface;
81 uint32_t statusline_width;
82
83 /* Event watchers, to interact with the user */
84 ev_prepare *xcb_prep;
85 ev_check *xcb_chk;
86 ev_io *xcb_io;
87 ev_io *xkb_io;
88
89 /* The name of current binding mode */
90 static mode binding;
91
92 /* Indicates whether a new binding mode was recently activated */
93 bool activated_mode = false;
94
95 /* The parsed colors */
96 struct xcb_colors_t {
97     color_t bar_fg;
98     color_t bar_bg;
99     color_t sep_fg;
100     color_t active_ws_fg;
101     color_t active_ws_bg;
102     color_t active_ws_border;
103     color_t inactive_ws_fg;
104     color_t inactive_ws_bg;
105     color_t inactive_ws_border;
106     color_t urgent_ws_bg;
107     color_t urgent_ws_fg;
108     color_t urgent_ws_border;
109     color_t focus_ws_bg;
110     color_t focus_ws_fg;
111     color_t focus_ws_border;
112     color_t binding_mode_bg;
113     color_t binding_mode_fg;
114     color_t binding_mode_border;
115 };
116 struct xcb_colors_t colors;
117
118 /* Horizontal offset between a workspace label and button borders */
119 static const int ws_hoff_px = 4;
120
121 /* Vertical offset between a workspace label and button borders */
122 static const int ws_voff_px = 3;
123
124 /* Offset between two workspace buttons */
125 static const int ws_spacing_px = 1;
126
127 /* Offset between the statusline and 1) workspace buttons on the left
128  *                                   2) the tray or screen edge on the right */
129 static const int sb_hoff_px = 4;
130
131 /* Additional offset between the tray and the statusline, if the tray is not empty */
132 static const int tray_loff_px = 2;
133
134 /* Vertical offset between the bar and a separator */
135 static const int sep_voff_px = 4;
136
137 int _xcb_request_failed(xcb_void_cookie_t cookie, char *err_msg, int line) {
138     xcb_generic_error_t *err;
139     if ((err = xcb_request_check(xcb_connection, cookie)) != NULL) {
140         fprintf(stderr, "[%s:%d] ERROR: %s. X Error Code: %d\n", __FILE__, line, err_msg, err->error_code);
141         return err->error_code;
142     }
143     return 0;
144 }
145
146 uint32_t get_sep_offset(struct status_block *block) {
147     if (!block->no_separator && block->sep_block_width > 0)
148         return block->sep_block_width / 2 + block->sep_block_width % 2;
149     return 0;
150 }
151
152 int get_tray_width(struct tc_head *trayclients) {
153     trayclient *trayclient;
154     int tray_width = 0;
155     TAILQ_FOREACH_REVERSE(trayclient, trayclients, tc_head, tailq) {
156         if (!trayclient->mapped)
157             continue;
158         tray_width += icon_size + logical_px(config.tray_padding);
159     }
160     if (tray_width > 0)
161         tray_width += logical_px(tray_loff_px);
162     return tray_width;
163 }
164
165 /*
166  * Draws a separator for the given block if necessary.
167  *
168  */
169 static void draw_separator(uint32_t x, struct status_block *block) {
170     uint32_t sep_offset = get_sep_offset(block);
171     if (TAILQ_NEXT(block, blocks) == NULL || sep_offset == 0)
172         return;
173
174     uint32_t center_x = x - sep_offset;
175     if (config.separator_symbol == NULL) {
176         /* Draw a classic one pixel, vertical separator. */
177         cairo_draw_rectangle(&statusline_surface, colors.sep_fg,
178                              center_x,
179                              logical_px(sep_voff_px),
180                              logical_px(1),
181                              bar_height - 2 * logical_px(sep_voff_px));
182     } else {
183         /* Draw a custom separator. */
184         uint32_t separator_x = MAX(x - block->sep_block_width, center_x - separator_symbol_width / 2);
185         cairo_draw_text(config.separator_symbol, &statusline_surface, colors.sep_fg, colors.bar_bg,
186                         separator_x, logical_px(ws_voff_px), x - separator_x);
187     }
188 }
189
190 /*
191  * Redraws the statusline to the buffer
192  *
193  */
194 void refresh_statusline(bool use_short_text) {
195     struct status_block *block;
196
197     uint32_t old_statusline_width = statusline_width;
198     statusline_width = 0;
199
200     /* Predict the text width of all blocks (in pixels). */
201     TAILQ_FOREACH(block, &statusline_head, blocks) {
202         /* Try to use the shorter text if necessary and possible. */
203         if (use_short_text && block->short_text != NULL) {
204             I3STRING_FREE(block->full_text);
205             block->full_text = i3string_copy(block->short_text);
206         }
207
208         if (i3string_get_num_bytes(block->full_text) == 0)
209             continue;
210
211         block->width = predict_text_width(block->full_text);
212
213         /* Compute offset and append for text aligment in min_width. */
214         if (block->min_width <= block->width) {
215             block->x_offset = 0;
216             block->x_append = 0;
217         } else {
218             uint32_t padding_width = block->min_width - block->width;
219             switch (block->align) {
220                 case ALIGN_LEFT:
221                     block->x_append = padding_width;
222                     break;
223                 case ALIGN_RIGHT:
224                     block->x_offset = padding_width;
225                     break;
226                 case ALIGN_CENTER:
227                     block->x_offset = padding_width / 2;
228                     block->x_append = padding_width / 2 + padding_width % 2;
229                     break;
230             }
231         }
232
233         /* If this is not the last block, add some pixels for a separator. */
234         if (TAILQ_NEXT(block, blocks) != NULL)
235             statusline_width += block->sep_block_width;
236
237         statusline_width += block->width + block->x_offset + block->x_append;
238     }
239
240     /* If the statusline is bigger than our screen we need to make sure that
241      * the pixmap provides enough space, so re-allocate if the width grew */
242     if (statusline_width > root_screen->width_in_pixels &&
243         statusline_width > old_statusline_width)
244         realloc_sl_buffer();
245
246     /* Clear the statusline pixmap. */
247     cairo_save(statusline_surface.cr);
248     cairo_set_source_color(&statusline_surface, colors.bar_bg);
249     cairo_set_operator(statusline_surface.cr, CAIRO_OPERATOR_SOURCE);
250     cairo_paint(statusline_surface.cr);
251     cairo_surface_flush(statusline_surface.surface);
252     cairo_restore(statusline_surface.cr);
253
254     /* Draw the text of each block. */
255     uint32_t x = 0;
256     TAILQ_FOREACH(block, &statusline_head, blocks) {
257         if (i3string_get_num_bytes(block->full_text) == 0)
258             continue;
259         color_t fg_color;
260
261         /* If this block is urgent, draw it with the defined color and border. */
262         if (block->urgent) {
263             fg_color = colors.urgent_ws_fg;
264
265             /* Draw the background */
266             cairo_draw_rectangle(&statusline_surface, colors.urgent_ws_bg,
267                                  x - logical_px(2),
268                                  logical_px(1),
269                                  block->width + logical_px(4),
270                                  bar_height - logical_px(2));
271         } else {
272             fg_color = (block->color ? cairo_hex_to_color(block->color) : colors.bar_fg);
273         }
274
275         cairo_draw_text(block->full_text, &statusline_surface, fg_color, colors.bar_bg,
276                         x + block->x_offset, logical_px(ws_voff_px), block->width);
277         x += block->width + block->sep_block_width + block->x_offset + block->x_append;
278
279         /* If this is not the last block, draw a separator. */
280         draw_separator(x, block);
281     }
282 }
283
284 /*
285  * Hides all bars (unmaps them)
286  *
287  */
288 void hide_bars(void) {
289     if ((config.hide_on_modifier == M_DOCK) || (config.hidden_state == S_SHOW && config.hide_on_modifier == M_HIDE)) {
290         return;
291     }
292
293     i3_output *walk;
294     SLIST_FOREACH(walk, outputs, slist) {
295         if (!walk->active) {
296             continue;
297         }
298         xcb_unmap_window(xcb_connection, walk->bar.id);
299     }
300     stop_child();
301 }
302
303 /*
304  * Unhides all bars (maps them)
305  *
306  */
307 void unhide_bars(void) {
308     if (config.hide_on_modifier != M_HIDE) {
309         return;
310     }
311
312     i3_output *walk;
313     xcb_void_cookie_t cookie;
314     uint32_t mask;
315     uint32_t values[5];
316
317     cont_child();
318
319     SLIST_FOREACH(walk, outputs, slist) {
320         if (walk->bar.id == XCB_NONE) {
321             continue;
322         }
323         mask = XCB_CONFIG_WINDOW_X |
324                XCB_CONFIG_WINDOW_Y |
325                XCB_CONFIG_WINDOW_WIDTH |
326                XCB_CONFIG_WINDOW_HEIGHT |
327                XCB_CONFIG_WINDOW_STACK_MODE;
328         values[0] = walk->rect.x;
329         if (config.position == POS_TOP)
330             values[1] = walk->rect.y;
331         else
332             values[1] = walk->rect.y + walk->rect.h - bar_height;
333         values[2] = walk->rect.w;
334         values[3] = bar_height;
335         values[4] = XCB_STACK_MODE_ABOVE;
336         DLOG("Reconfiguring window for output %s to %d,%d\n", walk->name, values[0], values[1]);
337         cookie = xcb_configure_window_checked(xcb_connection,
338                                               walk->bar.id,
339                                               mask,
340                                               values);
341
342         if (xcb_request_failed(cookie, "Could not reconfigure window")) {
343             exit(EXIT_FAILURE);
344         }
345         xcb_map_window(xcb_connection, walk->bar.id);
346     }
347 }
348
349 /*
350  * Parse the colors into a format that we can use
351  *
352  */
353 void init_colors(const struct xcb_color_strings_t *new_colors) {
354 #define PARSE_COLOR(name, def)                                                       \
355     do {                                                                             \
356         colors.name = cairo_hex_to_color(new_colors->name ? new_colors->name : def); \
357     } while (0)
358     PARSE_COLOR(bar_fg, "#FFFFFF");
359     PARSE_COLOR(bar_bg, "#000000");
360     PARSE_COLOR(sep_fg, "#666666");
361     PARSE_COLOR(active_ws_fg, "#FFFFFF");
362     PARSE_COLOR(active_ws_bg, "#333333");
363     PARSE_COLOR(active_ws_border, "#333333");
364     PARSE_COLOR(inactive_ws_fg, "#888888");
365     PARSE_COLOR(inactive_ws_bg, "#222222");
366     PARSE_COLOR(inactive_ws_border, "#333333");
367     PARSE_COLOR(urgent_ws_fg, "#FFFFFF");
368     PARSE_COLOR(urgent_ws_bg, "#900000");
369     PARSE_COLOR(urgent_ws_border, "#2f343a");
370     PARSE_COLOR(focus_ws_fg, "#FFFFFF");
371     PARSE_COLOR(focus_ws_bg, "#285577");
372     PARSE_COLOR(focus_ws_border, "#4c7899");
373 #undef PARSE_COLOR
374
375 #define PARSE_COLOR_FALLBACK(name, fallback)                                                     \
376     do {                                                                                         \
377         colors.name = new_colors->name ? cairo_hex_to_color(new_colors->name) : colors.fallback; \
378     } while (0)
379
380     /* For the binding mode indicator colors, we don't hardcode a default.
381      * Instead, we fall back to urgent_ws_* colors. */
382     PARSE_COLOR_FALLBACK(binding_mode_fg, urgent_ws_fg);
383     PARSE_COLOR_FALLBACK(binding_mode_bg, urgent_ws_bg);
384     PARSE_COLOR_FALLBACK(binding_mode_border, urgent_ws_border);
385 #undef PARSE_COLOR_FALLBACK
386
387     init_tray_colors();
388     xcb_flush(xcb_connection);
389 }
390
391 /*
392  * Handle a button press event (i.e. a mouse click on one of our bars).
393  * We determine, whether the click occured on a workspace button or if the scroll-
394  * wheel was used and change the workspace appropriately
395  *
396  */
397 void handle_button(xcb_button_press_event_t *event) {
398     /* Determine, which bar was clicked */
399     i3_output *walk;
400     xcb_window_t bar = event->event;
401     SLIST_FOREACH(walk, outputs, slist) {
402         if (walk->bar.id == bar) {
403             break;
404         }
405     }
406
407     if (walk == NULL) {
408         DLOG("Unknown bar clicked!\n");
409         return;
410     }
411
412     int32_t x = event->event_x >= 0 ? event->event_x : 0;
413     int32_t original_x = x;
414
415     DLOG("Got button %d\n", event->detail);
416
417     int workspace_width = 0;
418     i3_ws *cur_ws = NULL, *clicked_ws = NULL, *ws_walk;
419
420     TAILQ_FOREACH(ws_walk, walk->workspaces, tailq) {
421         int w = 2 * logical_px(ws_hoff_px) + 2 * logical_px(1) + ws_walk->name_width;
422         if (x >= workspace_width && x <= workspace_width + w)
423             clicked_ws = ws_walk;
424         if (ws_walk->visible)
425             cur_ws = ws_walk;
426         workspace_width += w;
427         if (TAILQ_NEXT(ws_walk, tailq) != NULL)
428             workspace_width += logical_px(ws_spacing_px);
429     }
430
431     if (x > workspace_width && child_want_click_events()) {
432         /* If the child asked for click events,
433          * check if a status block has been clicked. */
434         int tray_width = get_tray_width(walk->trayclients);
435         int block_x = 0, last_block_x;
436         int offset = walk->rect.w - statusline_width - tray_width - logical_px(sb_hoff_px);
437
438         x = original_x - offset;
439         if (x >= 0 && (size_t)x < statusline_width) {
440             struct status_block *block;
441             int sep_offset_remainder = 0;
442
443             TAILQ_FOREACH(block, &statusline_head, blocks) {
444                 if (i3string_get_num_bytes(block->full_text) == 0)
445                     continue;
446
447                 last_block_x = block_x;
448                 block_x += block->width + block->x_offset + block->x_append + get_sep_offset(block) + sep_offset_remainder;
449
450                 if (x <= block_x && x >= last_block_x) {
451                     send_block_clicked(event->detail, block->name, block->instance, event->root_x, event->root_y);
452                     return;
453                 }
454
455                 sep_offset_remainder = block->sep_block_width - get_sep_offset(block);
456             }
457         }
458         x = original_x;
459     }
460
461     /* If a custom command was specified for this mouse button, it overrides
462      * the default behavior. */
463     binding_t *binding;
464     TAILQ_FOREACH(binding, &(config.bindings), bindings) {
465         if (binding->input_code != event->detail)
466             continue;
467
468         i3_send_msg(I3_IPC_MESSAGE_TYPE_COMMAND, binding->command);
469         return;
470     }
471
472     if (cur_ws == NULL) {
473         DLOG("No workspace active?\n");
474         return;
475     }
476     switch (event->detail) {
477         case 4:
478             /* Mouse wheel up. We select the previous ws, if any.
479              * If there is no more workspace, don’t even send the workspace
480              * command, otherwise (with workspace auto_back_and_forth) we’d end
481              * up on the wrong workspace. */
482             if (cur_ws == TAILQ_FIRST(walk->workspaces))
483                 return;
484
485             cur_ws = TAILQ_PREV(cur_ws, ws_head, tailq);
486             break;
487         case 5:
488             /* Mouse wheel down. We select the next ws, if any.
489              * If there is no more workspace, don’t even send the workspace
490              * command, otherwise (with workspace auto_back_and_forth) we’d end
491              * up on the wrong workspace. */
492             if (cur_ws == TAILQ_LAST(walk->workspaces, ws_head))
493                 return;
494
495             cur_ws = TAILQ_NEXT(cur_ws, tailq);
496             break;
497         case 1:
498             cur_ws = clicked_ws;
499
500             /* if no workspace was clicked, focus our currently visible
501              * workspace if it is not already focused */
502             if (cur_ws == NULL) {
503                 TAILQ_FOREACH(cur_ws, walk->workspaces, tailq) {
504                     if (cur_ws->visible && !cur_ws->focused)
505                         break;
506                 }
507             }
508
509             /* if there is nothing to focus, we are done */
510             if (cur_ws == NULL)
511                 return;
512
513             break;
514         default:
515             return;
516     }
517
518     /* To properly handle workspace names with double quotes in them, we need
519      * to escape the double quotes. Unfortunately, that’s rather ugly in C: We
520      * first count the number of double quotes, then we allocate a large enough
521      * buffer, then we copy character by character. */
522     int num_quotes = 0;
523     size_t namelen = 0;
524     const char *utf8_name = cur_ws->canonical_name;
525     for (const char *walk = utf8_name; *walk != '\0'; walk++) {
526         if (*walk == '"' || *walk == '\\')
527             num_quotes++;
528         /* While we’re looping through the name anyway, we can save one
529          * strlen(). */
530         namelen++;
531     }
532
533     const size_t len = namelen + strlen("workspace \"\"") + 1;
534     char *buffer = scalloc(len + num_quotes, 1);
535     strncpy(buffer, "workspace \"", strlen("workspace \""));
536     size_t inpos, outpos;
537     for (inpos = 0, outpos = strlen("workspace \"");
538          inpos < namelen;
539          inpos++, outpos++) {
540         if (utf8_name[inpos] == '"' || utf8_name[inpos] == '\\') {
541             buffer[outpos] = '\\';
542             outpos++;
543         }
544         buffer[outpos] = utf8_name[inpos];
545     }
546     buffer[outpos] = '"';
547     i3_send_msg(I3_IPC_MESSAGE_TYPE_COMMAND, buffer);
548     free(buffer);
549 }
550
551 /*
552  * Handle visibility notifications: when none of the bars are visible, e.g.
553  * if windows are in fullscreen on each output, suspend the child process.
554  *
555  */
556 static void handle_visibility_notify(xcb_visibility_notify_event_t *event) {
557     bool visible = (event->state != XCB_VISIBILITY_FULLY_OBSCURED);
558     int num_visible = 0;
559     i3_output *output;
560
561     SLIST_FOREACH(output, outputs, slist) {
562         if (!output->active) {
563             continue;
564         }
565         if (output->bar.id == event->window) {
566             if (output->visible == visible) {
567                 return;
568             }
569             output->visible = visible;
570         }
571         num_visible += output->visible;
572     }
573
574     if (num_visible == 0) {
575         stop_child();
576     } else if (num_visible == visible) {
577         /* Wake the child only when transitioning from 0 to 1 visible bar.
578          * We cannot transition from 0 to 2 or more visible bars at once since
579          * visibility events are delivered to each window separately */
580         cont_child();
581     }
582 }
583
584 /*
585  * Adjusts the size of the tray window and alignment of the tray clients by
586  * configuring their respective x coordinates. To be called when mapping or
587  * unmapping a tray client window.
588  *
589  */
590 static void configure_trayclients(void) {
591     trayclient *trayclient;
592     i3_output *output;
593     SLIST_FOREACH(output, outputs, slist) {
594         if (!output->active)
595             continue;
596
597         int clients = 0;
598         TAILQ_FOREACH_REVERSE(trayclient, output->trayclients, tc_head, tailq) {
599             if (!trayclient->mapped)
600                 continue;
601             clients++;
602
603             DLOG("Configuring tray window %08x to x=%d\n",
604                  trayclient->win, output->rect.w - (clients * (icon_size + logical_px(config.tray_padding))));
605             uint32_t x = output->rect.w - (clients * (icon_size + logical_px(config.tray_padding)));
606             xcb_configure_window(xcb_connection,
607                                  trayclient->win,
608                                  XCB_CONFIG_WINDOW_X,
609                                  &x);
610         }
611     }
612 }
613
614 /*
615  * Handles ClientMessages (messages sent from another client directly to us).
616  *
617  * At the moment, only the tray window will receive client messages. All
618  * supported client messages currently are _NET_SYSTEM_TRAY_OPCODE.
619  *
620  */
621 static void handle_client_message(xcb_client_message_event_t *event) {
622     if (event->type == atoms[_NET_SYSTEM_TRAY_OPCODE] &&
623         event->format == 32) {
624         DLOG("_NET_SYSTEM_TRAY_OPCODE received\n");
625         /* event->data.data32[0] is the timestamp */
626         uint32_t op = event->data.data32[1];
627         uint32_t mask;
628         uint32_t values[2];
629         if (op == SYSTEM_TRAY_REQUEST_DOCK) {
630             xcb_window_t client = event->data.data32[2];
631
632             /* Listen for PropertyNotify events to get the most recent value of
633              * the XEMBED_MAPPED atom, also listen for UnmapNotify events */
634             mask = XCB_CW_EVENT_MASK;
635             values[0] = XCB_EVENT_MASK_PROPERTY_CHANGE |
636                         XCB_EVENT_MASK_STRUCTURE_NOTIFY;
637             xcb_change_window_attributes(xcb_connection,
638                                          client,
639                                          mask,
640                                          values);
641
642             /* Request the _XEMBED_INFO property. The XEMBED specification
643              * (which is referred by the tray specification) says this *has* to
644              * be set, but VLC does not set it… */
645             bool map_it = true;
646             int xe_version = 1;
647             xcb_get_property_cookie_t xembedc;
648             xcb_generic_error_t *error;
649             xembedc = xcb_get_property(xcb_connection,
650                                        0,
651                                        client,
652                                        atoms[_XEMBED_INFO],
653                                        XCB_GET_PROPERTY_TYPE_ANY,
654                                        0,
655                                        2 * 32);
656
657             xcb_get_property_reply_t *xembedr = xcb_get_property_reply(xcb_connection,
658                                                                        xembedc,
659                                                                        &error);
660             if (error != NULL) {
661                 ELOG("Error getting _XEMBED_INFO property: error_code %d\n",
662                      error->error_code);
663                 free(error);
664                 return;
665             }
666             if (xembedr != NULL && xembedr->length != 0) {
667                 DLOG("xembed format = %d, len = %d\n", xembedr->format, xembedr->length);
668                 uint32_t *xembed = xcb_get_property_value(xembedr);
669                 DLOG("xembed version = %d\n", xembed[0]);
670                 DLOG("xembed flags = %d\n", xembed[1]);
671                 map_it = ((xembed[1] & XEMBED_MAPPED) == XEMBED_MAPPED);
672                 xe_version = xembed[0];
673                 if (xe_version > 1)
674                     xe_version = 1;
675                 free(xembedr);
676             } else {
677                 ELOG("Window %08x violates the XEMBED protocol, _XEMBED_INFO not set\n", client);
678             }
679
680             DLOG("X window %08x requested docking\n", client);
681             i3_output *walk, *output = NULL;
682             SLIST_FOREACH(walk, outputs, slist) {
683                 if (!walk->active)
684                     continue;
685                 if (config.tray_output) {
686                     if ((strcasecmp(walk->name, config.tray_output) != 0) &&
687                         (!walk->primary || strcasecmp("primary", config.tray_output) != 0))
688                         continue;
689                 }
690
691                 DLOG("using output %s\n", walk->name);
692                 output = walk;
693                 break;
694             }
695             /* In case of tray_output == primary and there is no primary output
696              * configured, we fall back to the first available output. */
697             if (output == NULL &&
698                 config.tray_output &&
699                 strcasecmp("primary", config.tray_output) == 0) {
700                 SLIST_FOREACH(walk, outputs, slist) {
701                     if (!walk->active)
702                         continue;
703                     DLOG("Falling back to output %s because no primary output is configured\n", walk->name);
704                     output = walk;
705                     break;
706                 }
707             }
708             if (output == NULL) {
709                 ELOG("No output found\n");
710                 return;
711             }
712
713             xcb_void_cookie_t rcookie = xcb_reparent_window(xcb_connection,
714                                                             client,
715                                                             output->bar.id,
716                                                             output->rect.w - icon_size - logical_px(config.tray_padding),
717                                                             logical_px(config.tray_padding));
718             if (xcb_request_failed(rcookie, "Could not reparent window. Maybe it is using an incorrect depth/visual?"))
719                 return;
720
721             /* We reconfigure the window to use a reasonable size. The systray
722              * specification explicitly says:
723              *   Tray icons may be assigned any size by the system tray, and
724              *   should do their best to cope with any size effectively
725              */
726             mask = XCB_CONFIG_WINDOW_WIDTH | XCB_CONFIG_WINDOW_HEIGHT;
727             values[0] = icon_size;
728             values[1] = icon_size;
729             xcb_configure_window(xcb_connection,
730                                  client,
731                                  mask,
732                                  values);
733
734             /* send the XEMBED_EMBEDDED_NOTIFY message */
735             void *event = scalloc(32, 1);
736             xcb_client_message_event_t *ev = event;
737             ev->response_type = XCB_CLIENT_MESSAGE;
738             ev->window = client;
739             ev->type = atoms[_XEMBED];
740             ev->format = 32;
741             ev->data.data32[0] = XCB_CURRENT_TIME;
742             ev->data.data32[1] = atoms[XEMBED_EMBEDDED_NOTIFY];
743             ev->data.data32[2] = output->bar.id;
744             ev->data.data32[3] = xe_version;
745             xcb_send_event(xcb_connection,
746                            0,
747                            client,
748                            XCB_EVENT_MASK_NO_EVENT,
749                            (char *)ev);
750             free(event);
751
752             /* Put the client inside the save set. Upon termination (whether
753              * killed or normal exit does not matter) of i3bar, these clients
754              * will be correctly reparented to their most closest living
755              * ancestor. Without this, tray icons might die when i3bar
756              * exits/crashes. */
757             xcb_change_save_set(xcb_connection, XCB_SET_MODE_INSERT, client);
758
759             trayclient *tc = smalloc(sizeof(trayclient));
760             tc->win = client;
761             tc->xe_version = xe_version;
762             tc->mapped = false;
763             TAILQ_INSERT_TAIL(output->trayclients, tc, tailq);
764
765             if (map_it) {
766                 DLOG("Mapping dock client\n");
767                 xcb_map_window(xcb_connection, client);
768             } else {
769                 DLOG("Not mapping dock client yet\n");
770             }
771             /* Trigger an update to copy the statusline text to the appropriate
772              * position */
773             configure_trayclients();
774             draw_bars(false);
775         }
776     }
777 }
778
779 /*
780  * Handles DestroyNotify events by removing the tray client from the data
781  * structure. According to the XEmbed protocol, this is one way for a tray
782  * client to finish the protocol. After this event is received, there is no
783  * further interaction with the tray client.
784  *
785  * See: http://standards.freedesktop.org/xembed-spec/xembed-spec-latest.html
786  *
787  */
788 static void handle_destroy_notify(xcb_destroy_notify_event_t *event) {
789     DLOG("DestroyNotify for window = %08x, event = %08x\n", event->window, event->event);
790
791     i3_output *walk;
792     SLIST_FOREACH(walk, outputs, slist) {
793         if (!walk->active)
794             continue;
795         DLOG("checking output %s\n", walk->name);
796         trayclient *trayclient;
797         TAILQ_FOREACH(trayclient, walk->trayclients, tailq) {
798             if (trayclient->win != event->window)
799                 continue;
800
801             DLOG("Removing tray client with window ID %08x\n", event->window);
802             TAILQ_REMOVE(walk->trayclients, trayclient, tailq);
803
804             /* Trigger an update, we now have more space for the statusline */
805             configure_trayclients();
806             draw_bars(false);
807             return;
808         }
809     }
810 }
811
812 /*
813  * Handles MapNotify events. These events happen when a tray client shows its
814  * window. We respond by realigning the tray clients.
815  *
816  */
817 static void handle_map_notify(xcb_map_notify_event_t *event) {
818     DLOG("MapNotify for window = %08x, event = %08x\n", event->window, event->event);
819
820     i3_output *walk;
821     SLIST_FOREACH(walk, outputs, slist) {
822         if (!walk->active)
823             continue;
824         DLOG("checking output %s\n", walk->name);
825         trayclient *trayclient;
826         TAILQ_FOREACH(trayclient, walk->trayclients, tailq) {
827             if (trayclient->win != event->window)
828                 continue;
829
830             DLOG("Tray client mapped (window ID %08x). Adjusting tray.\n", event->window);
831             trayclient->mapped = true;
832
833             /* Trigger an update, we now have more space for the statusline */
834             configure_trayclients();
835             draw_bars(false);
836             return;
837         }
838     }
839 }
840 /*
841  * Handles UnmapNotify events. These events happen when a tray client hides its
842  * window. We respond by realigning the tray clients.
843  *
844  */
845 static void handle_unmap_notify(xcb_unmap_notify_event_t *event) {
846     DLOG("UnmapNotify for window = %08x, event = %08x\n", event->window, event->event);
847
848     i3_output *walk;
849     SLIST_FOREACH(walk, outputs, slist) {
850         if (!walk->active)
851             continue;
852         DLOG("checking output %s\n", walk->name);
853         trayclient *trayclient;
854         TAILQ_FOREACH(trayclient, walk->trayclients, tailq) {
855             if (trayclient->win != event->window)
856                 continue;
857
858             DLOG("Tray client unmapped (window ID %08x). Adjusting tray.\n", event->window);
859             trayclient->mapped = false;
860
861             /* Trigger an update, we now have more space for the statusline */
862             configure_trayclients();
863             draw_bars(false);
864             return;
865         }
866     }
867 }
868
869 /*
870  * Handle PropertyNotify messages. Currently only the _XEMBED_INFO property is
871  * handled, which tells us whether a dock client should be mapped or unmapped.
872  *
873  */
874 static void handle_property_notify(xcb_property_notify_event_t *event) {
875     DLOG("PropertyNotify\n");
876     if (event->atom == atoms[_XEMBED_INFO] &&
877         event->state == XCB_PROPERTY_NEW_VALUE) {
878         DLOG("xembed_info updated\n");
879         trayclient *trayclient = NULL, *walk;
880         i3_output *o_walk;
881         SLIST_FOREACH(o_walk, outputs, slist) {
882             if (!o_walk->active)
883                 continue;
884
885             TAILQ_FOREACH(walk, o_walk->trayclients, tailq) {
886                 if (walk->win != event->window)
887                     continue;
888                 trayclient = walk;
889                 break;
890             }
891
892             if (trayclient)
893                 break;
894         }
895         if (!trayclient) {
896             ELOG("PropertyNotify received for unknown window %08x\n",
897                  event->window);
898             return;
899         }
900         xcb_get_property_cookie_t xembedc;
901         xembedc = xcb_get_property_unchecked(xcb_connection,
902                                              0,
903                                              trayclient->win,
904                                              atoms[_XEMBED_INFO],
905                                              XCB_GET_PROPERTY_TYPE_ANY,
906                                              0,
907                                              2 * 32);
908
909         xcb_get_property_reply_t *xembedr = xcb_get_property_reply(xcb_connection,
910                                                                    xembedc,
911                                                                    NULL);
912         if (xembedr == NULL || xembedr->length == 0) {
913             DLOG("xembed_info unset\n");
914             return;
915         }
916
917         DLOG("xembed format = %d, len = %d\n", xembedr->format, xembedr->length);
918         uint32_t *xembed = xcb_get_property_value(xembedr);
919         DLOG("xembed version = %d\n", xembed[0]);
920         DLOG("xembed flags = %d\n", xembed[1]);
921         bool map_it = ((xembed[1] & XEMBED_MAPPED) == XEMBED_MAPPED);
922         DLOG("map state now %d\n", map_it);
923         if (trayclient->mapped && !map_it) {
924             /* need to unmap the window */
925             xcb_unmap_window(xcb_connection, trayclient->win);
926         } else if (!trayclient->mapped && map_it) {
927             /* need to map the window */
928             xcb_map_window(xcb_connection, trayclient->win);
929         }
930         free(xembedr);
931     }
932 }
933
934 /*
935  * Handle ConfigureRequests by denying them and sending the client a
936  * ConfigureNotify with its actual size.
937  *
938  */
939 static void handle_configure_request(xcb_configure_request_event_t *event) {
940     DLOG("ConfigureRequest for window = %08x\n", event->window);
941
942     trayclient *trayclient;
943     i3_output *output;
944     SLIST_FOREACH(output, outputs, slist) {
945         if (!output->active)
946             continue;
947
948         int clients = 0;
949         TAILQ_FOREACH_REVERSE(trayclient, output->trayclients, tc_head, tailq) {
950             if (!trayclient->mapped)
951                 continue;
952             clients++;
953
954             if (trayclient->win != event->window)
955                 continue;
956
957             xcb_rectangle_t rect;
958             rect.x = output->rect.w - (clients * (icon_size + logical_px(config.tray_padding)));
959             rect.y = logical_px(config.tray_padding);
960             rect.width = icon_size;
961             rect.height = icon_size;
962
963             DLOG("This is a tray window. x = %d\n", rect.x);
964             fake_configure_notify(xcb_connection, rect, event->window, 0);
965             return;
966         }
967     }
968
969     DLOG("WARNING: Could not find corresponding tray window.\n");
970 }
971
972 /*
973  * This function is called immediately before the main loop locks. We flush xcb
974  * then (and only then)
975  *
976  */
977 void xcb_prep_cb(struct ev_loop *loop, ev_prepare *watcher, int revents) {
978     xcb_flush(xcb_connection);
979 }
980
981 /*
982  * This function is called immediately after the main loop locks, so when one
983  * of the watchers registered an event.
984  * We check whether an X-Event arrived and handle it.
985  *
986  */
987 void xcb_chk_cb(struct ev_loop *loop, ev_check *watcher, int revents) {
988     xcb_generic_event_t *event;
989
990     if (xcb_connection_has_error(xcb_connection)) {
991         ELOG("X11 connection was closed unexpectedly - maybe your X server terminated / crashed?\n");
992         exit(1);
993     }
994
995     while ((event = xcb_poll_for_event(xcb_connection)) != NULL) {
996         int type = (event->response_type & ~0x80);
997
998         if (type == xkb_base && xkb_base > -1) {
999             DLOG("received an xkb event\n");
1000
1001             xcb_xkb_state_notify_event_t *state = (xcb_xkb_state_notify_event_t *)event;
1002             if (state->xkbType == XCB_XKB_STATE_NOTIFY) {
1003                 int modstate = state->mods & config.modifier;
1004
1005 #define DLOGMOD(modmask, status)                        \
1006     do {                                                \
1007         switch (modmask) {                              \
1008             case ShiftMask:                             \
1009                 DLOG("ShiftMask got " #status "!\n");   \
1010                 break;                                  \
1011             case ControlMask:                           \
1012                 DLOG("ControlMask got " #status "!\n"); \
1013                 break;                                  \
1014             case Mod1Mask:                              \
1015                 DLOG("Mod1Mask got " #status "!\n");    \
1016                 break;                                  \
1017             case Mod2Mask:                              \
1018                 DLOG("Mod2Mask got " #status "!\n");    \
1019                 break;                                  \
1020             case Mod3Mask:                              \
1021                 DLOG("Mod3Mask got " #status "!\n");    \
1022                 break;                                  \
1023             case Mod4Mask:                              \
1024                 DLOG("Mod4Mask got " #status "!\n");    \
1025                 break;                                  \
1026             case Mod5Mask:                              \
1027                 DLOG("Mod5Mask got " #status "!\n");    \
1028                 break;                                  \
1029         }                                               \
1030     } while (0)
1031
1032                 if (modstate != mod_pressed) {
1033                     if (modstate == 0) {
1034                         DLOGMOD(config.modifier, released);
1035                         if (!activated_mode)
1036                             hide_bars();
1037                     } else {
1038                         DLOGMOD(config.modifier, pressed);
1039                         activated_mode = false;
1040                         unhide_bars();
1041                     }
1042                     mod_pressed = modstate;
1043                 }
1044 #undef DLOGMOD
1045             }
1046
1047             free(event);
1048             continue;
1049         }
1050
1051         switch (type) {
1052             case XCB_VISIBILITY_NOTIFY:
1053                 /* Visibility change: a bar is [un]obscured by other window */
1054                 handle_visibility_notify((xcb_visibility_notify_event_t *)event);
1055                 break;
1056             case XCB_EXPOSE:
1057                 /* Expose-events happen, when the window needs to be redrawn */
1058                 redraw_bars();
1059                 break;
1060             case XCB_BUTTON_PRESS:
1061                 /* Button press events are mouse buttons clicked on one of our bars */
1062                 handle_button((xcb_button_press_event_t *)event);
1063                 break;
1064             case XCB_CLIENT_MESSAGE:
1065                 /* Client messages are used for client-to-client communication, for
1066                  * example system tray widgets talk to us directly via client messages. */
1067                 handle_client_message((xcb_client_message_event_t *)event);
1068                 break;
1069             case XCB_DESTROY_NOTIFY:
1070                 /* DestroyNotify signifies the end of the XEmbed protocol */
1071                 handle_destroy_notify((xcb_destroy_notify_event_t *)event);
1072                 break;
1073             case XCB_UNMAP_NOTIFY:
1074                 /* UnmapNotify is received when a tray client hides its window. */
1075                 handle_unmap_notify((xcb_unmap_notify_event_t *)event);
1076                 break;
1077             case XCB_MAP_NOTIFY:
1078                 handle_map_notify((xcb_map_notify_event_t *)event);
1079                 break;
1080             case XCB_PROPERTY_NOTIFY:
1081                 /* PropertyNotify */
1082                 handle_property_notify((xcb_property_notify_event_t *)event);
1083                 break;
1084             case XCB_CONFIGURE_REQUEST:
1085                 /* ConfigureRequest, sent by a tray child */
1086                 handle_configure_request((xcb_configure_request_event_t *)event);
1087                 break;
1088         }
1089         free(event);
1090     }
1091 }
1092
1093 /*
1094  * Dummy callback. We only need this, so that the prepare and check watchers
1095  * are triggered
1096  *
1097  */
1098 void xcb_io_cb(struct ev_loop *loop, ev_io *watcher, int revents) {
1099 }
1100
1101 /*
1102  * Early initialization of the connection to X11: Everything which does not
1103  * depend on 'config'.
1104  *
1105  */
1106 char *init_xcb_early() {
1107     /* FIXME: xcb_connect leaks memory */
1108     xcb_connection = xcb_connect(NULL, &screen);
1109     if (xcb_connection_has_error(xcb_connection)) {
1110         ELOG("Cannot open display\n");
1111         exit(EXIT_FAILURE);
1112     }
1113     conn = xcb_connection;
1114     DLOG("Connected to xcb\n");
1115
1116 /* We have to request the atoms we need */
1117 #define ATOM_DO(name) atom_cookies[name] = xcb_intern_atom(xcb_connection, 0, strlen(#name), #name);
1118 #include "xcb_atoms.def"
1119
1120     root_screen = xcb_aux_get_screen(xcb_connection, screen);
1121     xcb_root = root_screen->root;
1122
1123     depth = root_screen->root_depth;
1124     colormap = root_screen->default_colormap;
1125     visual_type = get_visualtype(root_screen);
1126
1127     /* We draw the statusline to a seperate pixmap, because it looks the same on all bars and
1128      * this way, we can choose to crop it */
1129     xcb_pixmap_t statusline_id = xcb_generate_id(xcb_connection);
1130     xcb_void_cookie_t sl_pm_cookie = xcb_create_pixmap_checked(xcb_connection,
1131                                                                depth,
1132                                                                statusline_id,
1133                                                                xcb_root,
1134                                                                root_screen->width_in_pixels,
1135                                                                root_screen->height_in_pixels);
1136     cairo_surface_init(&statusline_surface, statusline_id, root_screen->width_in_pixels, root_screen->height_in_pixels);
1137
1138     /* The various watchers to communicate with xcb */
1139     xcb_io = smalloc(sizeof(ev_io));
1140     xcb_prep = smalloc(sizeof(ev_prepare));
1141     xcb_chk = smalloc(sizeof(ev_check));
1142
1143     ev_io_init(xcb_io, &xcb_io_cb, xcb_get_file_descriptor(xcb_connection), EV_READ);
1144     ev_prepare_init(xcb_prep, &xcb_prep_cb);
1145     ev_check_init(xcb_chk, &xcb_chk_cb);
1146
1147     ev_io_start(main_loop, xcb_io);
1148     ev_prepare_start(main_loop, xcb_prep);
1149     ev_check_start(main_loop, xcb_chk);
1150
1151     /* Now we get the atoms and save them in a nice data structure */
1152     get_atoms();
1153
1154     char *path = root_atom_contents("I3_SOCKET_PATH", xcb_connection, screen);
1155
1156     if (xcb_request_failed(sl_pm_cookie, "Could not allocate statusline buffer"))
1157         exit(EXIT_FAILURE);
1158
1159     return path;
1160 }
1161
1162 /*
1163  * Register for xkb keyevents. To grab modifiers without blocking other applications from receiving key events
1164  * involving that modifier, we sadly have to use xkb which is not yet fully supported
1165  * in xcb.
1166  *
1167  */
1168 void register_xkb_keyevents() {
1169     const xcb_query_extension_reply_t *extreply;
1170     extreply = xcb_get_extension_data(conn, &xcb_xkb_id);
1171     if (!extreply->present) {
1172         ELOG("xkb is not present on this server\n");
1173         exit(EXIT_FAILURE);
1174     }
1175     DLOG("initializing xcb-xkb\n");
1176     xcb_xkb_use_extension(conn, XCB_XKB_MAJOR_VERSION, XCB_XKB_MINOR_VERSION);
1177     xcb_xkb_select_events(conn,
1178                           XCB_XKB_ID_USE_CORE_KBD,
1179                           XCB_XKB_EVENT_TYPE_STATE_NOTIFY,
1180                           0,
1181                           XCB_XKB_EVENT_TYPE_STATE_NOTIFY,
1182                           0xff,
1183                           0xff,
1184                           NULL);
1185     xkb_base = extreply->first_event;
1186 }
1187
1188 /*
1189  * Deregister from xkb keyevents.
1190  *
1191  */
1192 void deregister_xkb_keyevents() {
1193     xcb_xkb_select_events(conn,
1194                           XCB_XKB_ID_USE_CORE_KBD,
1195                           0,
1196                           0,
1197                           0,
1198                           0xff,
1199                           0xff,
1200                           NULL);
1201 }
1202
1203 /*
1204  * Initialization which depends on 'config' being usable. Called after the
1205  * configuration has arrived.
1206  *
1207  */
1208 void init_xcb_late(char *fontname) {
1209     if (fontname == NULL)
1210         fontname = "-misc-fixed-medium-r-normal--13-120-75-75-C-70-iso10646-1";
1211
1212     /* Load the font */
1213     font = load_font(fontname, true);
1214     set_font(&font);
1215     DLOG("Calculated font height: %d\n", font.height);
1216     bar_height = font.height + 2 * logical_px(ws_voff_px);
1217     icon_size = bar_height - 2 * logical_px(config.tray_padding);
1218
1219     if (config.separator_symbol)
1220         separator_symbol_width = predict_text_width(config.separator_symbol);
1221
1222     xcb_flush(xcb_connection);
1223
1224     if (config.hide_on_modifier == M_HIDE)
1225         register_xkb_keyevents();
1226 }
1227
1228 /*
1229  * Inform clients waiting for a new _NET_SYSTEM_TRAY that we took the
1230  * selection.
1231  *
1232  */
1233 static void send_tray_clientmessage(void) {
1234     uint8_t buffer[32] = {0};
1235     xcb_client_message_event_t *ev = (xcb_client_message_event_t *)buffer;
1236
1237     ev->response_type = XCB_CLIENT_MESSAGE;
1238     ev->window = xcb_root;
1239     ev->type = atoms[MANAGER];
1240     ev->format = 32;
1241     ev->data.data32[0] = XCB_CURRENT_TIME;
1242     ev->data.data32[1] = tray_reply->atom;
1243     ev->data.data32[2] = selwin;
1244
1245     xcb_send_event(xcb_connection,
1246                    0,
1247                    xcb_root,
1248                    0xFFFFFF,
1249                    (char *)buffer);
1250 }
1251
1252 /*
1253  * Initializes tray support by requesting the appropriate _NET_SYSTEM_TRAY atom
1254  * for the X11 display we are running on, then acquiring the selection for this
1255  * atom. Afterwards, tray clients will send ClientMessages to our window.
1256  *
1257  */
1258 void init_tray(void) {
1259     DLOG("Initializing system tray functionality\n");
1260     /* request the tray manager atom for the X11 display we are running on */
1261     char atomname[strlen("_NET_SYSTEM_TRAY_S") + 11];
1262     snprintf(atomname, strlen("_NET_SYSTEM_TRAY_S") + 11, "_NET_SYSTEM_TRAY_S%d", screen);
1263     xcb_intern_atom_cookie_t tray_cookie;
1264     if (tray_reply == NULL)
1265         tray_cookie = xcb_intern_atom(xcb_connection, 0, strlen(atomname), atomname);
1266
1267     /* tray support: we need a window to own the selection */
1268     selwin = xcb_generate_id(xcb_connection);
1269     uint32_t selmask = XCB_CW_BACK_PIXEL | XCB_CW_BORDER_PIXEL | XCB_CW_OVERRIDE_REDIRECT | XCB_CW_COLORMAP;
1270     uint32_t selval[] = {root_screen->black_pixel, root_screen->black_pixel, 1, colormap};
1271     xcb_create_window(xcb_connection,
1272                       depth,
1273                       selwin,
1274                       xcb_root,
1275                       -1, -1,
1276                       1, 1,
1277                       0,
1278                       XCB_WINDOW_CLASS_INPUT_OUTPUT,
1279                       visual_type->visual_id,
1280                       selmask,
1281                       selval);
1282
1283     uint32_t orientation = _NET_SYSTEM_TRAY_ORIENTATION_HORZ;
1284     /* set the atoms */
1285     xcb_change_property(xcb_connection,
1286                         XCB_PROP_MODE_REPLACE,
1287                         selwin,
1288                         atoms[_NET_SYSTEM_TRAY_ORIENTATION],
1289                         XCB_ATOM_CARDINAL,
1290                         32,
1291                         1,
1292                         &orientation);
1293     xcb_change_property(xcb_connection,
1294                         XCB_PROP_MODE_REPLACE,
1295                         selwin,
1296                         atoms[_NET_SYSTEM_TRAY_VISUAL],
1297                         XCB_ATOM_VISUALID,
1298                         32,
1299                         1,
1300                         &visual_type->visual_id);
1301
1302     init_tray_colors();
1303
1304     if (tray_reply == NULL) {
1305         if (!(tray_reply = xcb_intern_atom_reply(xcb_connection, tray_cookie, NULL))) {
1306             ELOG("Could not get atom %s\n", atomname);
1307             exit(EXIT_FAILURE);
1308         }
1309     }
1310
1311     xcb_set_selection_owner(xcb_connection,
1312                             selwin,
1313                             tray_reply->atom,
1314                             XCB_CURRENT_TIME);
1315
1316     /* Verify that we have the selection */
1317     xcb_get_selection_owner_cookie_t selcookie;
1318     xcb_get_selection_owner_reply_t *selreply;
1319
1320     selcookie = xcb_get_selection_owner(xcb_connection, tray_reply->atom);
1321     if (!(selreply = xcb_get_selection_owner_reply(xcb_connection, selcookie, NULL))) {
1322         ELOG("Could not get selection owner for %s\n", atomname);
1323         exit(EXIT_FAILURE);
1324     }
1325
1326     if (selreply->owner != selwin) {
1327         ELOG("Could not set the %s selection. "
1328              "Maybe another tray is already running?\n",
1329              atomname);
1330         /* NOTE that this error is not fatal. We just can’t provide tray
1331          * functionality */
1332         free(selreply);
1333         return;
1334     }
1335
1336     send_tray_clientmessage();
1337 }
1338
1339 /*
1340  * We need to set the _NET_SYSTEM_TRAY_COLORS atom on the tray selection window
1341  * to make GTK+ 3 applets with symbolic icons visible. If the colors are unset,
1342  * they assume a light background.
1343  * See also https://bugzilla.gnome.org/show_bug.cgi?id=679591
1344  *
1345  */
1346 void init_tray_colors(void) {
1347     /* Convert colors.bar_fg (#rrggbb) to 16-bit RGB */
1348     const char *bar_fg = (config.colors.bar_fg ? config.colors.bar_fg : "#FFFFFF");
1349
1350     DLOG("Setting bar_fg = %s as _NET_SYSTEM_TRAY_COLORS\n", bar_fg);
1351
1352     char strgroups[3][3] = {{bar_fg[1], bar_fg[2], '\0'},
1353                             {bar_fg[3], bar_fg[4], '\0'},
1354                             {bar_fg[5], bar_fg[6], '\0'}};
1355     const uint8_t r = strtol(strgroups[0], NULL, 16);
1356     const uint8_t g = strtol(strgroups[1], NULL, 16);
1357     const uint8_t b = strtol(strgroups[2], NULL, 16);
1358
1359     const uint16_t r16 = ((uint16_t)r << 8) | r;
1360     const uint16_t g16 = ((uint16_t)g << 8) | g;
1361     const uint16_t b16 = ((uint16_t)b << 8) | b;
1362
1363     const uint32_t tray_colors[12] = {
1364         r16, g16, b16, /* foreground color */
1365         r16, g16, b16, /* error color */
1366         r16, g16, b16, /* warning color */
1367         r16, g16, b16, /* success color */
1368     };
1369
1370     xcb_change_property(xcb_connection,
1371                         XCB_PROP_MODE_REPLACE,
1372                         selwin,
1373                         atoms[_NET_SYSTEM_TRAY_COLORS],
1374                         XCB_ATOM_CARDINAL,
1375                         32,
1376                         12,
1377                         tray_colors);
1378 }
1379
1380 /*
1381  * Cleanup the xcb stuff.
1382  * Called once, before the program terminates.
1383  *
1384  */
1385 void clean_xcb(void) {
1386     i3_output *o_walk;
1387     free_workspaces();
1388     SLIST_FOREACH(o_walk, outputs, slist) {
1389         destroy_window(o_walk);
1390         FREE(o_walk->trayclients);
1391         FREE(o_walk->workspaces);
1392         FREE(o_walk->name);
1393     }
1394     FREE_SLIST(outputs, i3_output);
1395     FREE(outputs);
1396
1397     xcb_flush(xcb_connection);
1398     xcb_aux_sync(xcb_connection);
1399     xcb_disconnect(xcb_connection);
1400
1401     ev_check_stop(main_loop, xcb_chk);
1402     ev_prepare_stop(main_loop, xcb_prep);
1403     ev_io_stop(main_loop, xcb_io);
1404
1405     FREE(xcb_chk);
1406     FREE(xcb_prep);
1407     FREE(xcb_io);
1408 }
1409
1410 /*
1411  * Get the earlier requested atoms and save them in the prepared data structure
1412  *
1413  */
1414 void get_atoms(void) {
1415     xcb_intern_atom_reply_t *reply;
1416 #define ATOM_DO(name)                                                        \
1417     reply = xcb_intern_atom_reply(xcb_connection, atom_cookies[name], NULL); \
1418     if (reply == NULL) {                                                     \
1419         ELOG("Could not get atom %s\n", #name);                              \
1420         exit(EXIT_FAILURE);                                                  \
1421     }                                                                        \
1422     atoms[name] = reply->atom;                                               \
1423     free(reply);
1424
1425 #include "xcb_atoms.def"
1426     DLOG("Got atoms\n");
1427 }
1428
1429 /*
1430  * Reparents all tray clients of the specified output to the root window. This
1431  * is either used when shutting down, when an output appears (xrandr --output
1432  * VGA1 --off) or when the primary output changes.
1433  *
1434  * Applications using the tray will start the protocol from the beginning again
1435  * afterwards.
1436  *
1437  */
1438 void kick_tray_clients(i3_output *output) {
1439     if (TAILQ_EMPTY(output->trayclients))
1440         return;
1441
1442     trayclient *trayclient;
1443     while (!TAILQ_EMPTY(output->trayclients)) {
1444         trayclient = TAILQ_FIRST(output->trayclients);
1445         /* Unmap, then reparent (to root) the tray client windows */
1446         xcb_unmap_window(xcb_connection, trayclient->win);
1447         xcb_reparent_window(xcb_connection,
1448                             trayclient->win,
1449                             xcb_root,
1450                             0,
1451                             0);
1452
1453         /* We remove the trayclient right here. We might receive an UnmapNotify
1454          * event afterwards, but better safe than sorry. */
1455         TAILQ_REMOVE(output->trayclients, trayclient, tailq);
1456     }
1457
1458     /* Fake a DestroyNotify so that Qt re-adds tray icons.
1459      * We cannot actually destroy the window because then Qt will not restore
1460      * its event mask on the new window. */
1461     uint8_t buffer[32] = {0};
1462     xcb_destroy_notify_event_t *event = (xcb_destroy_notify_event_t *)buffer;
1463
1464     event->response_type = XCB_DESTROY_NOTIFY;
1465     event->event = selwin;
1466     event->window = selwin;
1467
1468     xcb_send_event(conn, false, selwin, XCB_EVENT_MASK_STRUCTURE_NOTIFY, (char *)event);
1469
1470     send_tray_clientmessage();
1471 }
1472
1473 /*
1474  * Destroy the bar of the specified output
1475  *
1476  */
1477 void destroy_window(i3_output *output) {
1478     if (output == NULL) {
1479         return;
1480     }
1481     if (output->bar.id == XCB_NONE) {
1482         return;
1483     }
1484
1485     kick_tray_clients(output);
1486     xcb_destroy_window(xcb_connection, output->bar.id);
1487     output->bar.id = XCB_NONE;
1488 }
1489
1490 /*
1491  * Reallocate the statusline buffer
1492  *
1493  */
1494 void realloc_sl_buffer(void) {
1495     DLOG("Re-allocating statusline buffer, statusline_width = %d, root_screen->width_in_pixels = %d\n",
1496          statusline_width, root_screen->width_in_pixels);
1497     xcb_free_pixmap(xcb_connection, statusline_surface.id);
1498     cairo_surface_free(&statusline_surface);
1499
1500     xcb_pixmap_t statusline_id = xcb_generate_id(xcb_connection);
1501     xcb_void_cookie_t sl_pm_cookie = xcb_create_pixmap_checked(xcb_connection,
1502                                                                depth,
1503                                                                statusline_id,
1504                                                                xcb_root,
1505                                                                MAX(root_screen->width_in_pixels, statusline_width),
1506                                                                bar_height);
1507     cairo_surface_init(&statusline_surface, statusline_id, root_screen->width_in_pixels, root_screen->height_in_pixels);
1508
1509     if (xcb_request_failed(sl_pm_cookie, "Could not allocate statusline buffer"))
1510         exit(EXIT_FAILURE);
1511 }
1512
1513 /* Strut partial tells i3 where to reserve space for i3bar. This is determined
1514  * by the `position` bar config directive. */
1515 xcb_void_cookie_t config_strut_partial(i3_output *output) {
1516     /* A local struct to save the strut_partial property */
1517     struct {
1518         uint32_t left;
1519         uint32_t right;
1520         uint32_t top;
1521         uint32_t bottom;
1522         uint32_t left_start_y;
1523         uint32_t left_end_y;
1524         uint32_t right_start_y;
1525         uint32_t right_end_y;
1526         uint32_t top_start_x;
1527         uint32_t top_end_x;
1528         uint32_t bottom_start_x;
1529         uint32_t bottom_end_x;
1530     } __attribute__((__packed__)) strut_partial;
1531     memset(&strut_partial, 0, sizeof(strut_partial));
1532
1533     switch (config.position) {
1534         case POS_NONE:
1535             break;
1536         case POS_TOP:
1537             strut_partial.top = bar_height;
1538             strut_partial.top_start_x = output->rect.x;
1539             strut_partial.top_end_x = output->rect.x + output->rect.w;
1540             break;
1541         case POS_BOT:
1542             strut_partial.bottom = bar_height;
1543             strut_partial.bottom_start_x = output->rect.x;
1544             strut_partial.bottom_end_x = output->rect.x + output->rect.w;
1545             break;
1546     }
1547     return xcb_change_property(xcb_connection,
1548                                XCB_PROP_MODE_REPLACE,
1549                                output->bar.id,
1550                                atoms[_NET_WM_STRUT_PARTIAL],
1551                                XCB_ATOM_CARDINAL,
1552                                32,
1553                                12,
1554                                &strut_partial);
1555 }
1556
1557 /*
1558  * Reconfigure all bars and create new bars for recently activated outputs
1559  *
1560  */
1561 void reconfig_windows(bool redraw_bars) {
1562     uint32_t mask;
1563     uint32_t values[5];
1564     static bool tray_configured = false;
1565
1566     i3_output *walk;
1567     SLIST_FOREACH(walk, outputs, slist) {
1568         if (!walk->active) {
1569             /* If an output is not active, we destroy its bar */
1570             /* FIXME: Maybe we rather want to unmap? */
1571             DLOG("Destroying window for output %s\n", walk->name);
1572             destroy_window(walk);
1573             continue;
1574         }
1575         if (walk->bar.id == XCB_NONE) {
1576             DLOG("Creating window for output %s\n", walk->name);
1577
1578             xcb_window_t bar_id = xcb_generate_id(xcb_connection);
1579             xcb_pixmap_t buffer_id = xcb_generate_id(xcb_connection);
1580             mask = XCB_CW_BACK_PIXEL | XCB_CW_BORDER_PIXEL | XCB_CW_OVERRIDE_REDIRECT | XCB_CW_EVENT_MASK | XCB_CW_COLORMAP;
1581
1582             values[0] = colors.bar_bg.colorpixel;
1583             values[1] = root_screen->black_pixel;
1584             /* If hide_on_modifier is set to hide or invisible mode, i3 is not supposed to manage our bar windows */
1585             values[2] = (config.hide_on_modifier == M_DOCK ? 0 : 1);
1586             /* We enable the following EventMask fields:
1587              * EXPOSURE, to get expose events (we have to re-draw then)
1588              * SUBSTRUCTURE_REDIRECT, to get ConfigureRequests when the tray
1589              *                        child windows use ConfigureWindow
1590              * BUTTON_PRESS, to handle clicks on the workspace buttons
1591              * */
1592             values[3] = XCB_EVENT_MASK_EXPOSURE |
1593                         XCB_EVENT_MASK_SUBSTRUCTURE_REDIRECT |
1594                         XCB_EVENT_MASK_BUTTON_PRESS;
1595             if (config.hide_on_modifier == M_DOCK) {
1596                 /* If the bar is normally visible, catch visibility change events to suspend
1597                  * the status process when the bar is obscured by full-screened windows.  */
1598                 values[3] |= XCB_EVENT_MASK_VISIBILITY_CHANGE;
1599                 walk->visible = true;
1600             }
1601             values[4] = colormap;
1602
1603             xcb_void_cookie_t win_cookie = xcb_create_window_checked(xcb_connection,
1604                                                                      depth,
1605                                                                      bar_id,
1606                                                                      xcb_root,
1607                                                                      walk->rect.x, walk->rect.y + walk->rect.h - bar_height,
1608                                                                      walk->rect.w, bar_height,
1609                                                                      0,
1610                                                                      XCB_WINDOW_CLASS_INPUT_OUTPUT,
1611                                                                      visual_type->visual_id,
1612                                                                      mask,
1613                                                                      values);
1614
1615             /* The double-buffer we use to render stuff off-screen */
1616             xcb_void_cookie_t pm_cookie = xcb_create_pixmap_checked(xcb_connection,
1617                                                                     depth,
1618                                                                     buffer_id,
1619                                                                     bar_id,
1620                                                                     walk->rect.w,
1621                                                                     bar_height);
1622
1623             /* Set the WM_CLASS and WM_NAME (we don't need UTF-8) atoms */
1624             xcb_void_cookie_t class_cookie;
1625             class_cookie = xcb_change_property(xcb_connection,
1626                                                XCB_PROP_MODE_REPLACE,
1627                                                bar_id,
1628                                                XCB_ATOM_WM_CLASS,
1629                                                XCB_ATOM_STRING,
1630                                                8,
1631                                                (strlen("i3bar") + 1) * 2,
1632                                                "i3bar\0i3bar\0");
1633
1634             char *name;
1635             sasprintf(&name, "i3bar for output %s", walk->name);
1636             xcb_void_cookie_t name_cookie;
1637             name_cookie = xcb_change_property(xcb_connection,
1638                                               XCB_PROP_MODE_REPLACE,
1639                                               bar_id,
1640                                               XCB_ATOM_WM_NAME,
1641                                               XCB_ATOM_STRING,
1642                                               8,
1643                                               strlen(name),
1644                                               name);
1645             free(name);
1646
1647             /* We want dock windows (for now). When override_redirect is set, i3 is ignoring
1648              * this one */
1649             xcb_void_cookie_t dock_cookie = xcb_change_property(xcb_connection,
1650                                                                 XCB_PROP_MODE_REPLACE,
1651                                                                 bar_id,
1652                                                                 atoms[_NET_WM_WINDOW_TYPE],
1653                                                                 XCB_ATOM_ATOM,
1654                                                                 32,
1655                                                                 1,
1656                                                                 (unsigned char *)&atoms[_NET_WM_WINDOW_TYPE_DOCK]);
1657
1658             cairo_surface_init(&walk->bar, bar_id, walk->rect.w, bar_height);
1659             cairo_surface_init(&walk->buffer, buffer_id, walk->rect.w, bar_height);
1660
1661             xcb_void_cookie_t strut_cookie = config_strut_partial(walk);
1662
1663             /* We finally map the bar (display it on screen), unless the modifier-switch is on */
1664             xcb_void_cookie_t map_cookie;
1665             if (config.hide_on_modifier == M_DOCK) {
1666                 map_cookie = xcb_map_window_checked(xcb_connection, bar_id);
1667             }
1668
1669             if (xcb_request_failed(win_cookie, "Could not create window") ||
1670                 xcb_request_failed(pm_cookie, "Could not create pixmap") ||
1671                 xcb_request_failed(dock_cookie, "Could not set dock mode") ||
1672                 xcb_request_failed(class_cookie, "Could not set WM_CLASS") ||
1673                 xcb_request_failed(name_cookie, "Could not set WM_NAME") ||
1674                 xcb_request_failed(strut_cookie, "Could not set strut") ||
1675                 ((config.hide_on_modifier == M_DOCK) && xcb_request_failed(map_cookie, "Could not map window"))) {
1676                 exit(EXIT_FAILURE);
1677             }
1678
1679             const char *tray_output = (config.tray_output ? config.tray_output : SLIST_FIRST(outputs)->name);
1680             if (!tray_configured && strcasecmp(tray_output, "none") != 0) {
1681                 /* Configuration sanity check: ensure this i3bar instance handles the output on
1682                  * which the tray should appear (e.g. don’t initialize a tray if tray_output ==
1683                  * VGA-1 but output == [HDMI-1]).
1684                  */
1685                 i3_output *output;
1686                 SLIST_FOREACH(output, outputs, slist) {
1687                     if (strcasecmp(output->name, tray_output) == 0 ||
1688                         (strcasecmp(tray_output, "primary") == 0 && output->primary)) {
1689                         init_tray();
1690                         break;
1691                     }
1692                 }
1693                 tray_configured = true;
1694             }
1695         } else {
1696             /* We already have a bar, so we just reconfigure it */
1697             mask = XCB_CONFIG_WINDOW_X |
1698                    XCB_CONFIG_WINDOW_Y |
1699                    XCB_CONFIG_WINDOW_WIDTH |
1700                    XCB_CONFIG_WINDOW_HEIGHT |
1701                    XCB_CONFIG_WINDOW_STACK_MODE;
1702             values[0] = walk->rect.x;
1703             if (config.position == POS_TOP)
1704                 values[1] = walk->rect.y;
1705             else
1706                 values[1] = walk->rect.y + walk->rect.h - bar_height;
1707             values[2] = walk->rect.w;
1708             values[3] = bar_height;
1709             values[4] = XCB_STACK_MODE_ABOVE;
1710
1711             DLOG("Reconfiguring strut partial property for output %s\n", walk->name);
1712             xcb_void_cookie_t strut_cookie = config_strut_partial(walk);
1713
1714             DLOG("Destroying buffer for output %s\n", walk->name);
1715             xcb_free_pixmap(xcb_connection, walk->buffer.id);
1716
1717             DLOG("Reconfiguring window for output %s to %d,%d\n", walk->name, values[0], values[1]);
1718             xcb_void_cookie_t cfg_cookie = xcb_configure_window_checked(xcb_connection,
1719                                                                         walk->bar.id,
1720                                                                         mask,
1721                                                                         values);
1722
1723             mask = XCB_CW_OVERRIDE_REDIRECT;
1724             values[0] = (config.hide_on_modifier == M_DOCK ? 0 : 1);
1725             DLOG("Changing window attribute override_redirect for output %s to %d\n", walk->name, values[0]);
1726             xcb_void_cookie_t chg_cookie = xcb_change_window_attributes(xcb_connection,
1727                                                                         walk->bar.id,
1728                                                                         mask,
1729                                                                         values);
1730
1731             DLOG("Recreating buffer for output %s\n", walk->name);
1732             xcb_void_cookie_t pm_cookie = xcb_create_pixmap_checked(xcb_connection,
1733                                                                     depth,
1734                                                                     walk->buffer.id,
1735                                                                     walk->bar.id,
1736                                                                     walk->rect.w,
1737                                                                     bar_height);
1738
1739             cairo_surface_free(&(walk->bar));
1740             cairo_surface_free(&(walk->buffer));
1741             cairo_surface_init(&(walk->bar), walk->bar.id, walk->rect.w, bar_height);
1742             cairo_surface_init(&(walk->buffer), walk->buffer.id, walk->rect.w, bar_height);
1743
1744             xcb_void_cookie_t map_cookie, umap_cookie;
1745             if (redraw_bars) {
1746                 /* Unmap the window, and draw it again when in dock mode */
1747                 umap_cookie = xcb_unmap_window_checked(xcb_connection, walk->bar.id);
1748                 if (config.hide_on_modifier == M_DOCK) {
1749                     cont_child();
1750                     map_cookie = xcb_map_window_checked(xcb_connection, walk->bar.id);
1751                 } else {
1752                     stop_child();
1753                 }
1754
1755                 if (config.hide_on_modifier == M_HIDE) {
1756                     /* Switching to hide mode, register for keyevents */
1757                     register_xkb_keyevents();
1758                 } else {
1759                     /* Switching to dock/invisible mode, deregister from keyevents */
1760                     deregister_xkb_keyevents();
1761                 }
1762             }
1763
1764             if (xcb_request_failed(cfg_cookie, "Could not reconfigure window") ||
1765                 xcb_request_failed(chg_cookie, "Could not change window") ||
1766                 xcb_request_failed(pm_cookie, "Could not create pixmap") ||
1767                 xcb_request_failed(strut_cookie, "Could not set strut") ||
1768                 (redraw_bars && (xcb_request_failed(umap_cookie, "Could not unmap window") ||
1769                                  (config.hide_on_modifier == M_DOCK && xcb_request_failed(map_cookie, "Could not map window"))))) {
1770                 exit(EXIT_FAILURE);
1771             }
1772         }
1773     }
1774 }
1775
1776 /*
1777  * Render the bars, with buttons and statusline
1778  *
1779  */
1780 void draw_bars(bool unhide) {
1781     DLOG("Drawing bars...\n");
1782     int workspace_width = 0;
1783     /* Is the currently-rendered statusline using short_text items? */
1784     bool rendered_statusline_is_short = false;
1785
1786     refresh_statusline(false);
1787
1788     i3_output *outputs_walk;
1789     SLIST_FOREACH(outputs_walk, outputs, slist) {
1790         if (!outputs_walk->active) {
1791             DLOG("Output %s inactive, skipping...\n", outputs_walk->name);
1792             continue;
1793         }
1794         if (outputs_walk->bar.id == XCB_NONE) {
1795             /* Oh shit, an active output without an own bar. Create it now! */
1796             reconfig_windows(false);
1797         }
1798
1799         /* First things first: clear the backbuffer */
1800         cairo_save(outputs_walk->buffer.cr);
1801         cairo_set_source_color(&(outputs_walk->buffer), colors.bar_bg);
1802         cairo_set_operator(outputs_walk->buffer.cr, CAIRO_OPERATOR_SOURCE);
1803         cairo_paint(outputs_walk->buffer.cr);
1804         cairo_surface_flush(outputs_walk->buffer.surface);
1805         cairo_restore(outputs_walk->buffer.cr);
1806
1807         if (!config.disable_ws) {
1808             i3_ws *ws_walk;
1809             TAILQ_FOREACH(ws_walk, outputs_walk->workspaces, tailq) {
1810                 DLOG("Drawing button for WS %s at x = %d, len = %d\n",
1811                      i3string_as_utf8(ws_walk->name), workspace_width, ws_walk->name_width);
1812                 color_t fg_color = colors.inactive_ws_fg;
1813                 color_t bg_color = colors.inactive_ws_bg;
1814                 color_t border_color = colors.inactive_ws_border;
1815                 if (ws_walk->visible) {
1816                     if (!ws_walk->focused) {
1817                         fg_color = colors.active_ws_fg;
1818                         bg_color = colors.active_ws_bg;
1819                         border_color = colors.active_ws_border;
1820                     } else {
1821                         fg_color = colors.focus_ws_fg;
1822                         bg_color = colors.focus_ws_bg;
1823                         border_color = colors.focus_ws_border;
1824                     }
1825                 }
1826                 if (ws_walk->urgent) {
1827                     DLOG("WS %s is urgent!\n", i3string_as_utf8(ws_walk->name));
1828                     fg_color = colors.urgent_ws_fg;
1829                     bg_color = colors.urgent_ws_bg;
1830                     border_color = colors.urgent_ws_border;
1831                     unhide = true;
1832                 }
1833
1834                 /* Draw the border of the button. */
1835                 cairo_draw_rectangle(&(outputs_walk->buffer), border_color,
1836                                      workspace_width,
1837                                      logical_px(1),
1838                                      ws_walk->name_width + 2 * logical_px(ws_hoff_px) + 2 * logical_px(1),
1839                                      font.height + 2 * logical_px(ws_voff_px) - 2 * logical_px(1));
1840
1841                 /* Draw the inside of the button. */
1842                 cairo_draw_rectangle(&(outputs_walk->buffer), bg_color,
1843                                      workspace_width + logical_px(1),
1844                                      2 * logical_px(1),
1845                                      ws_walk->name_width + 2 * logical_px(ws_hoff_px),
1846                                      font.height + 2 * logical_px(ws_voff_px) - 4 * logical_px(1));
1847
1848                 cairo_draw_text(ws_walk->name, &(outputs_walk->buffer), fg_color, bg_color,
1849                                 workspace_width + logical_px(ws_hoff_px) + logical_px(1),
1850                                 logical_px(ws_voff_px),
1851                                 ws_walk->name_width);
1852
1853                 workspace_width += 2 * logical_px(ws_hoff_px) + 2 * logical_px(1) + ws_walk->name_width;
1854                 if (TAILQ_NEXT(ws_walk, tailq) != NULL)
1855                     workspace_width += logical_px(ws_spacing_px);
1856             }
1857         }
1858
1859         if (binding.name && !config.disable_binding_mode_indicator) {
1860             workspace_width += logical_px(ws_spacing_px);
1861
1862             color_t fg_color = colors.binding_mode_fg;
1863             color_t bg_color = colors.binding_mode_bg;
1864
1865             cairo_draw_rectangle(&(outputs_walk->buffer), colors.binding_mode_border,
1866                                  workspace_width,
1867                                  logical_px(1),
1868                                  binding.width + 2 * logical_px(ws_hoff_px) + 2 * logical_px(1),
1869                                  font.height + 2 * logical_px(ws_voff_px) - 2 * logical_px(1));
1870
1871             cairo_draw_rectangle(&(outputs_walk->buffer), bg_color,
1872                                  workspace_width + logical_px(1),
1873                                  2 * logical_px(1),
1874                                  binding.width + 2 * logical_px(ws_hoff_px),
1875                                  font.height + 2 * logical_px(ws_voff_px) - 4 * logical_px(1));
1876
1877             cairo_draw_text(binding.name, &(outputs_walk->buffer), fg_color, bg_color,
1878                             workspace_width + logical_px(ws_hoff_px) + logical_px(1),
1879                             logical_px(ws_voff_px),
1880                             binding.width);
1881
1882             unhide = true;
1883             workspace_width += 2 * logical_px(ws_hoff_px) + 2 * logical_px(1) + binding.width;
1884         }
1885
1886         if (!TAILQ_EMPTY(&statusline_head)) {
1887             DLOG("Printing statusline!\n");
1888
1889             int tray_width = get_tray_width(outputs_walk->trayclients);
1890             uint32_t max_statusline_width = outputs_walk->rect.w - workspace_width - tray_width - 2 * logical_px(sb_hoff_px);
1891
1892             /* If the statusline is too long, try to use short texts. */
1893             if (statusline_width > max_statusline_width) {
1894                 /* If the currently rendered statusline is long, render a short status line */
1895                 refresh_statusline(true);
1896                 rendered_statusline_is_short = true;
1897             } else if (rendered_statusline_is_short) {
1898                 /* If the currently rendered statusline is short, render a long status line */
1899                 refresh_statusline(false);
1900                 rendered_statusline_is_short = false;
1901             }
1902
1903             /* Luckily we already prepared a seperate pixmap containing the rendered
1904              * statusline, we just have to copy the relevant parts to the relevant
1905              * position */
1906             int visible_statusline_width = MIN(statusline_width, max_statusline_width);
1907             int x_src = (int16_t)(statusline_width - visible_statusline_width);
1908             int x_dest = (int16_t)(outputs_walk->rect.w - tray_width - logical_px(sb_hoff_px) - visible_statusline_width);
1909
1910             cairo_copy_surface(&statusline_surface, &(outputs_walk->buffer), x_dest - x_src, 0,
1911                                x_dest, 0, (int16_t)visible_statusline_width, (int16_t)bar_height);
1912         }
1913
1914         workspace_width = 0;
1915     }
1916
1917     /* Assure the bar is hidden/unhidden according to the specified hidden_state and mode */
1918     if (mod_pressed ||
1919         config.hidden_state == S_SHOW ||
1920         unhide) {
1921         unhide_bars();
1922     } else if (config.hide_on_modifier == M_HIDE) {
1923         hide_bars();
1924     }
1925
1926     redraw_bars();
1927 }
1928
1929 /*
1930  * Redraw the bars, i.e. simply copy the buffer to the barwindow
1931  *
1932  */
1933 void redraw_bars(void) {
1934     i3_output *outputs_walk;
1935     SLIST_FOREACH(outputs_walk, outputs, slist) {
1936         if (!outputs_walk->active) {
1937             continue;
1938         }
1939
1940         cairo_copy_surface(&(outputs_walk->buffer), &(outputs_walk->bar), 0, 0,
1941                            0, 0, outputs_walk->rect.w, outputs_walk->rect.h);
1942         xcb_flush(xcb_connection);
1943     }
1944 }
1945
1946 /*
1947  * Set the current binding mode
1948  *
1949  */
1950 void set_current_mode(struct mode *current) {
1951     I3STRING_FREE(binding.name);
1952     binding = *current;
1953     activated_mode = binding.name != NULL;
1954     return;
1955 }