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