2 * vim:ts=4:sw=4:expandtab
4 * i3bar - an xcb-based status- and ws-bar for i3
5 * © 2010-2011 Axel Wagner and contributors (see also: LICENSE)
7 * xcb.c: Communicating with X
11 #include <xcb/xproto.h>
12 #include <xcb/xcb_atom.h>
13 #include <xcb/xcb_aux.h>
16 #include "xcb_compat.h"
31 #include <X11/XKBlib.h>
32 #include <X11/extensions/XKB.h>
37 /* We save the Atoms in an easy to access array, indexed by an enum */
39 #define ATOM_DO(name) name,
40 #include "xcb_atoms.def"
44 xcb_intern_atom_cookie_t atom_cookies[NUM_ATOMS];
45 xcb_atom_t atoms[NUM_ATOMS];
47 /* Variables, that are the same for all functions at all times */
48 xcb_connection_t *xcb_connection;
50 xcb_screen_t *xcb_screen;
51 xcb_window_t xcb_root;
53 /* This is needed for integration with libi3 */
54 xcb_connection_t *conn;
56 /* The font we'll use */
59 /* These are only relevant for XKB, which we only need for grabbing modifiers */
64 /* Because the statusline is the same on all outputs, we have
65 * global buffer to render it on */
66 xcb_gcontext_t statusline_ctx;
67 xcb_gcontext_t statusline_clear;
68 xcb_pixmap_t statusline_pm;
69 uint32_t statusline_width;
71 /* Event-Watchers, to interact with the user */
77 /* The parsed colors */
81 uint32_t active_ws_fg;
82 uint32_t active_ws_bg;
83 uint32_t active_ws_border;
84 uint32_t inactive_ws_fg;
85 uint32_t inactive_ws_bg;
86 uint32_t inactive_ws_border;
87 uint32_t urgent_ws_bg;
88 uint32_t urgent_ws_fg;
89 uint32_t urgent_ws_border;
92 uint32_t focus_ws_border;
94 struct xcb_colors_t colors;
96 /* We define xcb_request_failed as a macro to include the relevant line-number */
97 #define xcb_request_failed(cookie, err_msg) _xcb_request_failed(cookie, err_msg, __LINE__)
98 int _xcb_request_failed(xcb_void_cookie_t cookie, char *err_msg, int line) {
99 xcb_generic_error_t *err;
100 if ((err = xcb_request_check(xcb_connection, cookie)) != NULL) {
101 fprintf(stderr, "[%s:%d] ERROR: %s. X Error Code: %d\n", __FILE__, line, err_msg, err->error_code);
102 return err->error_code;
108 * Redraws the statusline to the buffer
111 void refresh_statusline() {
112 struct status_block *block;
114 uint32_t old_statusline_width = statusline_width;
115 statusline_width = 0;
117 /* Convert all blocks from UTF-8 to UCS-2 and predict the text width (in
119 TAILQ_FOREACH(block, &statusline_head, blocks) {
120 block->ucs2_full_text = (xcb_char2b_t*)convert_utf8_to_ucs2(block->full_text, &(block->glyph_count_full_text));
121 block->width = predict_text_width((char*)block->ucs2_full_text, block->glyph_count_full_text, true);
122 /* If this is not the last block, add some pixels for a separator. */
123 if (TAILQ_NEXT(block, blocks) != NULL)
125 statusline_width += block->width;
128 /* If the statusline is bigger than our screen we need to make sure that
129 * the pixmap provides enough space, so re-allocate if the width grew */
130 if (statusline_width > xcb_screen->width_in_pixels &&
131 statusline_width > old_statusline_width)
134 /* Clear the statusline pixmap. */
135 xcb_rectangle_t rect = { 0, 0, xcb_screen->width_in_pixels, font.height };
136 xcb_poly_fill_rectangle(xcb_connection, statusline_pm, statusline_clear, 1, &rect);
138 /* Draw the text of each block. */
140 TAILQ_FOREACH(block, &statusline_head, blocks) {
141 uint32_t colorpixel = (block->color ? get_colorpixel(block->color) : colors.bar_fg);
142 set_font_colors(statusline_ctx, colorpixel, colors.bar_bg);
143 draw_text((char*)block->ucs2_full_text, block->glyph_count_full_text,
144 true, statusline_pm, statusline_ctx, x, 0, block->width);
147 if (TAILQ_NEXT(block, blocks) != NULL) {
148 /* This is not the last block, draw a separator. */
149 set_font_colors(statusline_ctx, get_colorpixel("#666666"), colors.bar_bg);
150 xcb_poly_line(xcb_connection, XCB_COORD_MODE_ORIGIN, statusline_pm,
152 (xcb_point_t[]){ { x - 5, 2 }, { x - 5, font.height - 2 } });
155 FREE(block->ucs2_full_text);
160 * Hides all bars (unmaps them)
164 if (!config.hide_on_modifier) {
169 SLIST_FOREACH(walk, outputs, slist) {
173 xcb_unmap_window(xcb_connection, walk->bar);
179 * Unhides all bars (maps them)
183 if (!config.hide_on_modifier) {
188 xcb_void_cookie_t cookie;
194 SLIST_FOREACH(walk, outputs, slist) {
195 if (walk->bar == XCB_NONE) {
198 mask = XCB_CONFIG_WINDOW_X |
199 XCB_CONFIG_WINDOW_Y |
200 XCB_CONFIG_WINDOW_WIDTH |
201 XCB_CONFIG_WINDOW_HEIGHT |
202 XCB_CONFIG_WINDOW_STACK_MODE;
203 values[0] = walk->rect.x;
204 if (config.position == POS_TOP)
205 values[1] = walk->rect.y;
206 else values[1] = walk->rect.y + walk->rect.h - font.height - 6;
207 values[2] = walk->rect.w;
208 values[3] = font.height + 6;
209 values[4] = XCB_STACK_MODE_ABOVE;
210 DLOG("Reconfiguring Window for output %s to %d,%d\n", walk->name, values[0], values[1]);
211 cookie = xcb_configure_window_checked(xcb_connection,
216 if (xcb_request_failed(cookie, "Could not reconfigure window")) {
219 xcb_map_window(xcb_connection, walk->bar);
224 * Parse the colors into a format that we can use
227 void init_colors(const struct xcb_color_strings_t *new_colors) {
228 #define PARSE_COLOR(name, def) \
230 colors.name = get_colorpixel(new_colors->name ? new_colors->name : def); \
232 PARSE_COLOR(bar_fg, "#FFFFFF");
233 PARSE_COLOR(bar_bg, "#000000");
234 PARSE_COLOR(active_ws_fg, "#FFFFFF");
235 PARSE_COLOR(active_ws_bg, "#333333");
236 PARSE_COLOR(active_ws_border, "#333333");
237 PARSE_COLOR(inactive_ws_fg, "#888888");
238 PARSE_COLOR(inactive_ws_bg, "#222222");
239 PARSE_COLOR(inactive_ws_border, "#333333");
240 PARSE_COLOR(urgent_ws_fg, "#FFFFFF");
241 PARSE_COLOR(urgent_ws_bg, "#900000");
242 PARSE_COLOR(urgent_ws_border, "#2f343a");
243 PARSE_COLOR(focus_ws_fg, "#FFFFFF");
244 PARSE_COLOR(focus_ws_bg, "#285577");
245 PARSE_COLOR(focus_ws_border, "#4c7899");
250 * Handle a button-press-event (i.e. a mouse click on one of our bars).
251 * We determine, whether the click occured on a ws-button or if the scroll-
252 * wheel was used and change the workspace appropriately
255 void handle_button(xcb_button_press_event_t *event) {
258 /* Determine, which bar was clicked */
260 xcb_window_t bar = event->event;
261 SLIST_FOREACH(walk, outputs, slist) {
262 if (walk->bar == bar) {
268 DLOG("Unknown Bar klicked!\n");
272 /* TODO: Move this to extern get_ws_for_output() */
273 TAILQ_FOREACH(cur_ws, walk->workspaces, tailq) {
274 if (cur_ws->visible) {
279 if (cur_ws == NULL) {
280 DLOG("No Workspace active?\n");
284 int32_t x = event->event_x >= 0 ? event->event_x : 0;
286 DLOG("Got Button %d\n", event->detail);
288 switch (event->detail) {
290 /* Left Mousbutton. We determine, which button was clicked
291 * and set cur_ws accordingly */
292 TAILQ_FOREACH(cur_ws, walk->workspaces, tailq) {
294 if (x >= 0 && x < cur_ws->name_width + 10) {
297 x -= cur_ws->name_width + 11;
299 if (cur_ws == NULL) {
304 /* Mouse wheel down. We select the next ws */
305 if (cur_ws != TAILQ_FIRST(walk->workspaces)) {
306 cur_ws = TAILQ_PREV(cur_ws, ws_head, tailq);
310 /* Mouse wheel up. We select the previos ws */
311 if (cur_ws != TAILQ_LAST(walk->workspaces, ws_head)) {
312 cur_ws = TAILQ_NEXT(cur_ws, tailq);
317 /* To properly handle workspace names with double quotes in them, we need
318 * to escape the double quotes. Unfortunately, that’s rather ugly in C: We
319 * first count the number of double quotes, then we allocate a large enough
320 * buffer, then we copy character by character. */
323 for (char *walk = cur_ws->name; *walk != '\0'; walk++) {
326 /* While we’re looping through the name anyway, we can save one
331 const size_t len = namelen + strlen("workspace \"\"") + 1;
332 char *buffer = scalloc(len+num_quotes);
333 strncpy(buffer, "workspace \"", strlen("workspace \""));
335 for (inpos = 0, outpos = strlen("workspace \"");
338 if (cur_ws->name[inpos] == '"') {
339 buffer[outpos] = '\\';
342 buffer[outpos] = cur_ws->name[inpos];
344 buffer[outpos] = '"';
345 i3_send_msg(I3_IPC_MESSAGE_TYPE_COMMAND, buffer);
350 * Configures the x coordinate of all trayclients. To be called after adding a
351 * new tray client or removing an old one.
354 static void configure_trayclients() {
355 trayclient *trayclient;
357 SLIST_FOREACH(output, outputs, slist) {
362 TAILQ_FOREACH_REVERSE(trayclient, output->trayclients, tc_head, tailq) {
363 if (!trayclient->mapped)
367 DLOG("Configuring tray window %08x to x=%d\n",
368 trayclient->win, output->rect.w - (clients * (font.height + 2)));
369 uint32_t x = output->rect.w - (clients * (font.height + 2));
370 xcb_configure_window(xcb_connection,
379 * Handles ClientMessages (messages sent from another client directly to us).
381 * At the moment, only the tray window will receive client messages. All
382 * supported client messages currently are _NET_SYSTEM_TRAY_OPCODE.
385 static void handle_client_message(xcb_client_message_event_t* event) {
386 if (event->type == atoms[_NET_SYSTEM_TRAY_OPCODE] &&
387 event->format == 32) {
388 DLOG("_NET_SYSTEM_TRAY_OPCODE received\n");
389 /* event->data.data32[0] is the timestamp */
390 uint32_t op = event->data.data32[1];
393 if (op == SYSTEM_TRAY_REQUEST_DOCK) {
394 xcb_window_t client = event->data.data32[2];
396 /* Listen for PropertyNotify events to get the most recent value of
397 * the XEMBED_MAPPED atom, also listen for UnmapNotify events */
398 mask = XCB_CW_EVENT_MASK;
399 values[0] = XCB_EVENT_MASK_PROPERTY_CHANGE |
400 XCB_EVENT_MASK_STRUCTURE_NOTIFY;
401 xcb_change_window_attributes(xcb_connection,
406 /* Request the _XEMBED_INFO property. The XEMBED specification
407 * (which is referred by the tray specification) says this *has* to
408 * be set, but VLC does not set it… */
411 xcb_get_property_cookie_t xembedc;
412 xcb_generic_error_t *error;
413 xembedc = xcb_get_property(xcb_connection,
417 XCB_GET_PROPERTY_TYPE_ANY,
421 xcb_get_property_reply_t *xembedr = xcb_get_property_reply(xcb_connection,
425 ELOG("Error getting _XEMBED_INFO property: error_code %d\n",
430 if (xembedr != NULL && xembedr->length != 0) {
431 DLOG("xembed format = %d, len = %d\n", xembedr->format, xembedr->length);
432 uint32_t *xembed = xcb_get_property_value(xembedr);
433 DLOG("xembed version = %d\n", xembed[0]);
434 DLOG("xembed flags = %d\n", xembed[1]);
435 map_it = ((xembed[1] & XEMBED_MAPPED) == XEMBED_MAPPED);
436 xe_version = xembed[0];
441 ELOG("Window %08x violates the XEMBED protocol, _XEMBED_INFO not set\n", client);
444 DLOG("X window %08x requested docking\n", client);
445 i3_output *walk, *output = NULL;
446 SLIST_FOREACH(walk, outputs, slist) {
449 if (config.tray_output) {
450 if ((strcasecmp(walk->name, config.tray_output) != 0) &&
451 (!walk->primary || strcasecmp("primary", config.tray_output) != 0))
455 DLOG("using output %s\n", walk->name);
459 /* In case of tray_output == primary and there is no primary output
460 * configured, we fall back to the first available output. */
461 if (output == NULL && strcasecmp("primary", config.tray_output) == 0) {
462 SLIST_FOREACH(walk, outputs, slist) {
465 DLOG("Falling back to output %s because no primary output is configured\n", walk->name);
470 if (output == NULL) {
471 ELOG("No output found\n");
474 xcb_reparent_window(xcb_connection,
477 output->rect.w - font.height - 2,
479 /* We reconfigure the window to use a reasonable size. The systray
480 * specification explicitly says:
481 * Tray icons may be assigned any size by the system tray, and
482 * should do their best to cope with any size effectively
484 mask = XCB_CONFIG_WINDOW_WIDTH | XCB_CONFIG_WINDOW_HEIGHT;
485 values[0] = font.height;
486 values[1] = font.height;
487 xcb_configure_window(xcb_connection,
492 /* send the XEMBED_EMBEDDED_NOTIFY message */
493 void *event = scalloc(32);
494 xcb_client_message_event_t *ev = event;
495 ev->response_type = XCB_CLIENT_MESSAGE;
497 ev->type = atoms[_XEMBED];
499 ev->data.data32[0] = XCB_CURRENT_TIME;
500 ev->data.data32[1] = atoms[XEMBED_EMBEDDED_NOTIFY];
501 ev->data.data32[2] = output->bar;
502 ev->data.data32[3] = xe_version;
503 xcb_send_event(xcb_connection,
506 XCB_EVENT_MASK_NO_EVENT,
510 /* Put the client inside the save set. Upon termination (whether
511 * killed or normal exit does not matter) of i3bar, these clients
512 * will be correctly reparented to their most closest living
513 * ancestor. Without this, tray icons might die when i3bar
515 xcb_change_save_set(xcb_connection, XCB_SET_MODE_INSERT, client);
518 DLOG("Mapping dock client\n");
519 xcb_map_window(xcb_connection, client);
521 DLOG("Not mapping dock client yet\n");
523 trayclient *tc = smalloc(sizeof(trayclient));
526 tc->xe_version = xe_version;
527 TAILQ_INSERT_TAIL(output->trayclients, tc, tailq);
529 /* Trigger an update to copy the statusline text to the appropriate
531 configure_trayclients();
538 * Handles UnmapNotify events. These events happen when a tray window unmaps
539 * itself. We then update our data structure
542 static void handle_unmap_notify(xcb_unmap_notify_event_t* event) {
543 DLOG("UnmapNotify for window = %08x, event = %08x\n", event->window, event->event);
546 SLIST_FOREACH(walk, outputs, slist) {
549 DLOG("checking output %s\n", walk->name);
550 trayclient *trayclient;
551 TAILQ_FOREACH(trayclient, walk->trayclients, tailq) {
552 if (trayclient->win != event->window)
555 DLOG("Removing tray client with window ID %08x\n", event->window);
556 TAILQ_REMOVE(walk->trayclients, trayclient, tailq);
558 /* Trigger an update, we now have more space for the statusline */
559 configure_trayclients();
567 * Handle PropertyNotify messages. Currently only the _XEMBED_INFO property is
568 * handled, which tells us whether a dock client should be mapped or unmapped.
571 static void handle_property_notify(xcb_property_notify_event_t *event) {
572 DLOG("PropertyNotify\n");
573 if (event->atom == atoms[_XEMBED_INFO] &&
574 event->state == XCB_PROPERTY_NEW_VALUE) {
575 DLOG("xembed_info updated\n");
576 trayclient *trayclient = NULL, *walk;
578 SLIST_FOREACH(o_walk, outputs, slist) {
582 TAILQ_FOREACH(walk, o_walk->trayclients, tailq) {
583 if (walk->win != event->window)
593 ELOG("PropertyNotify received for unknown window %08x\n",
597 xcb_get_property_cookie_t xembedc;
598 xembedc = xcb_get_property_unchecked(xcb_connection,
602 XCB_GET_PROPERTY_TYPE_ANY,
606 xcb_get_property_reply_t *xembedr = xcb_get_property_reply(xcb_connection,
609 if (xembedr == NULL || xembedr->length == 0) {
610 DLOG("xembed_info unset\n");
614 DLOG("xembed format = %d, len = %d\n", xembedr->format, xembedr->length);
615 uint32_t *xembed = xcb_get_property_value(xembedr);
616 DLOG("xembed version = %d\n", xembed[0]);
617 DLOG("xembed flags = %d\n", xembed[1]);
618 bool map_it = ((xembed[1] & XEMBED_MAPPED) == XEMBED_MAPPED);
619 DLOG("map-state now %d\n", map_it);
620 if (trayclient->mapped && !map_it) {
621 /* need to unmap the window */
622 xcb_unmap_window(xcb_connection, trayclient->win);
623 trayclient->mapped = map_it;
624 configure_trayclients();
626 } else if (!trayclient->mapped && map_it) {
627 /* need to map the window */
628 xcb_map_window(xcb_connection, trayclient->win);
629 trayclient->mapped = map_it;
630 configure_trayclients();
638 * Handle ConfigureRequests by denying them and sending the client a
639 * ConfigureNotify with its actual size.
642 static void handle_configure_request(xcb_configure_request_event_t *event) {
643 DLOG("ConfigureRequest for window = %08x\n", event->window);
645 trayclient *trayclient;
647 SLIST_FOREACH(output, outputs, slist) {
652 TAILQ_FOREACH_REVERSE(trayclient, output->trayclients, tc_head, tailq) {
653 if (!trayclient->mapped)
657 if (trayclient->win != event->window)
660 xcb_rectangle_t rect;
661 rect.x = output->rect.w - (clients * (font.height + 2));
663 rect.width = font.height;
664 rect.height = font.height;
666 DLOG("This is a tray window. x = %d\n", rect.x);
667 fake_configure_notify(xcb_connection, rect, event->window, 0);
672 DLOG("WARNING: Could not find corresponding tray window.\n");
676 * This function is called immediately before the main loop locks. We flush xcb
677 * then (and only then)
680 void xcb_prep_cb(struct ev_loop *loop, ev_prepare *watcher, int revents) {
681 xcb_flush(xcb_connection);
685 * This function is called immediately after the main loop locks, so when one
686 * of the watchers registered an event.
687 * We check whether an X-Event arrived and handle it.
690 void xcb_chk_cb(struct ev_loop *loop, ev_check *watcher, int revents) {
691 xcb_generic_event_t *event;
693 if (xcb_connection_has_error(xcb_connection)) {
694 ELOG("X11 connection was closed unexpectedly - maybe your X server terminated / crashed?\n");
698 while ((event = xcb_poll_for_event(xcb_connection)) != NULL) {
699 switch (event->response_type & ~0x80) {
701 /* Expose-events happen, when the window needs to be redrawn */
704 case XCB_BUTTON_PRESS:
705 /* Button-press-events are mouse-buttons clicked on one of our bars */
706 handle_button((xcb_button_press_event_t*) event);
708 case XCB_CLIENT_MESSAGE:
709 /* Client messages are used for client-to-client communication, for
710 * example system tray widgets talk to us directly via client messages. */
711 handle_client_message((xcb_client_message_event_t*) event);
713 case XCB_UNMAP_NOTIFY:
714 case XCB_DESTROY_NOTIFY:
715 /* UnmapNotifies are received when a tray window unmaps itself */
716 handle_unmap_notify((xcb_unmap_notify_event_t*) event);
718 case XCB_PROPERTY_NOTIFY:
720 handle_property_notify((xcb_property_notify_event_t*) event);
722 case XCB_CONFIGURE_REQUEST:
723 /* ConfigureRequest, sent by a tray child */
724 handle_configure_request((xcb_configure_request_event_t*) event);
732 * Dummy Callback. We only need this, so that the Prepare- and Check-Watchers
736 void xcb_io_cb(struct ev_loop *loop, ev_io *watcher, int revents) {
740 * We need to bind to the modifier per XKB. Sadly, XCB does not implement this
743 void xkb_io_cb(struct ev_loop *loop, ev_io *watcher, int revents) {
747 DLOG("Got XKB-Event!\n");
749 while (XPending(xkb_dpy)) {
750 XNextEvent(xkb_dpy, (XEvent*)&ev);
752 if (ev.type != xkb_event_base) {
753 ELOG("No Xkb-Event!\n");
757 if (ev.any.xkb_type != XkbStateNotify) {
758 ELOG("No State Notify!\n");
762 unsigned int mods = ev.state.mods;
763 modstate = mods & config.modifier;
766 #define DLOGMOD(modmask, status, barfunc) \
770 DLOG("ShiftMask got " #status "!\n"); \
773 DLOG("ControlMask got " #status "!\n"); \
776 DLOG("Mod1Mask got " #status "!\n"); \
779 DLOG("Mod2Mask got " #status "!\n"); \
782 DLOG("Mod3Mask got " #status "!\n"); \
785 DLOG("Mod4Mask got " #status "!\n"); \
788 DLOG("Mod5Mask got " #status "!\n"); \
794 if (modstate != mod_pressed) {
796 DLOGMOD(config.modifier, released, hide_bars);
798 DLOGMOD(config.modifier, pressed, unhide_bars);
800 mod_pressed = modstate;
807 * Early initialization of the connection to X11: Everything which does not
808 * depend on 'config'.
811 char *init_xcb_early() {
812 /* FIXME: xcb_connect leaks Memory */
813 xcb_connection = xcb_connect(NULL, &screen);
814 if (xcb_connection_has_error(xcb_connection)) {
815 ELOG("Cannot open display\n");
818 conn = xcb_connection;
819 DLOG("Connected to xcb\n");
821 /* We have to request the atoms we need */
822 #define ATOM_DO(name) atom_cookies[name] = xcb_intern_atom(xcb_connection, 0, strlen(#name), #name);
823 #include "xcb_atoms.def"
825 xcb_screen = xcb_aux_get_screen(xcb_connection, screen);
826 xcb_root = xcb_screen->root;
828 /* We draw the statusline to a seperate pixmap, because it looks the same on all bars and
829 * this way, we can choose to crop it */
830 uint32_t mask = XCB_GC_FOREGROUND;
831 uint32_t vals[] = { colors.bar_bg, colors.bar_bg };
833 statusline_clear = xcb_generate_id(xcb_connection);
834 xcb_void_cookie_t clear_ctx_cookie = xcb_create_gc_checked(xcb_connection,
840 statusline_ctx = xcb_generate_id(xcb_connection);
841 xcb_void_cookie_t sl_ctx_cookie = xcb_create_gc_checked(xcb_connection,
847 statusline_pm = xcb_generate_id(xcb_connection);
848 xcb_void_cookie_t sl_pm_cookie = xcb_create_pixmap_checked(xcb_connection,
849 xcb_screen->root_depth,
852 xcb_screen->width_in_pixels,
853 xcb_screen->height_in_pixels);
856 /* The various Watchers to communicate with xcb */
857 xcb_io = smalloc(sizeof(ev_io));
858 xcb_prep = smalloc(sizeof(ev_prepare));
859 xcb_chk = smalloc(sizeof(ev_check));
861 ev_io_init(xcb_io, &xcb_io_cb, xcb_get_file_descriptor(xcb_connection), EV_READ);
862 ev_prepare_init(xcb_prep, &xcb_prep_cb);
863 ev_check_init(xcb_chk, &xcb_chk_cb);
865 ev_io_start(main_loop, xcb_io);
866 ev_prepare_start(main_loop, xcb_prep);
867 ev_check_start(main_loop, xcb_chk);
869 /* Now we get the atoms and save them in a nice data structure */
872 xcb_get_property_cookie_t path_cookie;
873 path_cookie = xcb_get_property_unchecked(xcb_connection,
876 atoms[I3_SOCKET_PATH],
877 XCB_GET_PROPERTY_TYPE_ANY,
880 /* We check, if i3 set its socket-path */
881 xcb_get_property_reply_t *path_reply = xcb_get_property_reply(xcb_connection,
886 int len = xcb_get_property_value_length(path_reply);
888 path = strndup(xcb_get_property_value(path_reply), len);
893 if (xcb_request_failed(sl_pm_cookie, "Could not allocate statusline-buffer") ||
894 xcb_request_failed(clear_ctx_cookie, "Could not allocate statusline-buffer-clearcontext") ||
895 xcb_request_failed(sl_ctx_cookie, "Could not allocate statusline-buffer-context")) {
903 * Initialization which depends on 'config' being usable. Called after the
904 * configuration has arrived.
907 void init_xcb_late(char *fontname) {
908 if (fontname == NULL)
909 fontname = "-misc-fixed-medium-r-normal--13-120-75-75-C-70-iso10646-1";
912 font = load_font(fontname, true);
914 DLOG("Calculated Font-height: %d\n", font.height);
916 xcb_flush(xcb_connection);
918 /* To grab modifiers without blocking other applications from receiving key-events
919 * involving that modifier, we sadly have to use xkb which is not yet fully supported
921 if (config.hide_on_modifier) {
922 int xkb_major, xkb_minor, xkb_errbase, xkb_err;
923 xkb_major = XkbMajorVersion;
924 xkb_minor = XkbMinorVersion;
926 xkb_dpy = XkbOpenDisplay(NULL,
933 if (xkb_dpy == NULL) {
938 if (fcntl(ConnectionNumber(xkb_dpy), F_SETFD, FD_CLOEXEC) == -1) {
939 ELOG("Could not set FD_CLOEXEC on xkbdpy: %s\n", strerror(errno));
944 if (!XkbQueryExtension(xkb_dpy, &i1, &xkb_event_base, &xkb_errbase, &xkb_major, &xkb_minor)) {
945 ELOG("XKB not supported by X-server!\n");
949 if (!XkbSelectEvents(xkb_dpy, XkbUseCoreKbd, XkbStateNotifyMask, XkbStateNotifyMask)) {
950 ELOG("Could not grab Key!\n");
954 xkb_io = smalloc(sizeof(ev_io));
955 ev_io_init(xkb_io, &xkb_io_cb, ConnectionNumber(xkb_dpy), EV_READ);
956 ev_io_start(main_loop, xkb_io);
962 * Initializes tray support by requesting the appropriate _NET_SYSTEM_TRAY atom
963 * for the X11 display we are running on, then acquiring the selection for this
964 * atom. Afterwards, tray clients will send ClientMessages to our window.
968 DLOG("Initializing system tray functionality\n");
969 /* request the tray manager atom for the X11 display we are running on */
970 char atomname[strlen("_NET_SYSTEM_TRAY_S") + 11];
971 snprintf(atomname, strlen("_NET_SYSTEM_TRAY_S") + 11, "_NET_SYSTEM_TRAY_S%d", screen);
972 xcb_intern_atom_cookie_t tray_cookie;
973 xcb_intern_atom_reply_t *tray_reply;
974 tray_cookie = xcb_intern_atom(xcb_connection, 0, strlen(atomname), atomname);
976 /* tray support: we need a window to own the selection */
977 xcb_window_t selwin = xcb_generate_id(xcb_connection);
978 uint32_t selmask = XCB_CW_OVERRIDE_REDIRECT;
979 uint32_t selval[] = { 1 };
980 xcb_create_window(xcb_connection,
981 xcb_screen->root_depth,
987 XCB_WINDOW_CLASS_INPUT_OUTPUT,
988 xcb_screen->root_visual,
992 uint32_t orientation = _NET_SYSTEM_TRAY_ORIENTATION_HORZ;
994 xcb_change_property(xcb_connection,
995 XCB_PROP_MODE_REPLACE,
997 atoms[_NET_SYSTEM_TRAY_ORIENTATION],
1003 if (!(tray_reply = xcb_intern_atom_reply(xcb_connection, tray_cookie, NULL))) {
1004 ELOG("Could not get atom %s\n", atomname);
1008 xcb_set_selection_owner(xcb_connection,
1013 /* Verify that we have the selection */
1014 xcb_get_selection_owner_cookie_t selcookie;
1015 xcb_get_selection_owner_reply_t *selreply;
1017 selcookie = xcb_get_selection_owner(xcb_connection, tray_reply->atom);
1018 if (!(selreply = xcb_get_selection_owner_reply(xcb_connection, selcookie, NULL))) {
1019 ELOG("Could not get selection owner for %s\n", atomname);
1023 if (selreply->owner != selwin) {
1024 ELOG("Could not set the %s selection. " \
1025 "Maybe another tray is already running?\n", atomname);
1026 /* NOTE that this error is not fatal. We just can’t provide tray
1032 /* Inform clients waiting for a new _NET_SYSTEM_TRAY that we are here */
1033 void *event = scalloc(32);
1034 xcb_client_message_event_t *ev = event;
1035 ev->response_type = XCB_CLIENT_MESSAGE;
1036 ev->window = xcb_root;
1037 ev->type = atoms[MANAGER];
1039 ev->data.data32[0] = XCB_CURRENT_TIME;
1040 ev->data.data32[1] = tray_reply->atom;
1041 ev->data.data32[2] = selwin;
1042 xcb_send_event(xcb_connection,
1052 * Cleanup the xcb-stuff.
1053 * Called once, before the program terminates.
1059 SLIST_FOREACH(o_walk, outputs, slist) {
1060 destroy_window(o_walk);
1061 FREE(o_walk->trayclients);
1062 FREE(o_walk->workspaces);
1065 FREE_SLIST(outputs, i3_output);
1068 xcb_flush(xcb_connection);
1069 xcb_disconnect(xcb_connection);
1071 ev_check_stop(main_loop, xcb_chk);
1072 ev_prepare_stop(main_loop, xcb_prep);
1073 ev_io_stop(main_loop, xcb_io);
1081 * Get the earlier requested atoms and save them in the prepared data structure
1085 xcb_intern_atom_reply_t *reply;
1086 #define ATOM_DO(name) reply = xcb_intern_atom_reply(xcb_connection, atom_cookies[name], NULL); \
1087 if (reply == NULL) { \
1088 ELOG("Could not get atom %s\n", #name); \
1089 exit(EXIT_FAILURE); \
1091 atoms[name] = reply->atom; \
1094 #include "xcb_atoms.def"
1095 DLOG("Got Atoms\n");
1099 * Reparents all tray clients of the specified output to the root window. This
1100 * is either used when shutting down, when an output appears (xrandr --output
1101 * VGA1 --off) or when the primary output changes.
1103 * Applications using the tray will start the protocol from the beginning again
1107 void kick_tray_clients(i3_output *output) {
1108 trayclient *trayclient;
1109 while (!TAILQ_EMPTY(output->trayclients)) {
1110 trayclient = TAILQ_FIRST(output->trayclients);
1111 /* Unmap, then reparent (to root) the tray client windows */
1112 xcb_unmap_window(xcb_connection, trayclient->win);
1113 xcb_reparent_window(xcb_connection,
1119 /* We remove the trayclient right here. We might receive an UnmapNotify
1120 * event afterwards, but better safe than sorry. */
1121 TAILQ_REMOVE(output->trayclients, trayclient, tailq);
1126 * Destroy the bar of the specified output
1129 void destroy_window(i3_output *output) {
1130 if (output == NULL) {
1133 if (output->bar == XCB_NONE) {
1137 kick_tray_clients(output);
1138 xcb_destroy_window(xcb_connection, output->bar);
1139 output->bar = XCB_NONE;
1143 * Reallocate the statusline-buffer
1146 void realloc_sl_buffer() {
1147 DLOG("Re-allocating statusline-buffer, statusline_width = %d, xcb_screen->width_in_pixels = %d\n",
1148 statusline_width, xcb_screen->width_in_pixels);
1149 xcb_free_pixmap(xcb_connection, statusline_pm);
1150 statusline_pm = xcb_generate_id(xcb_connection);
1151 xcb_void_cookie_t sl_pm_cookie = xcb_create_pixmap_checked(xcb_connection,
1152 xcb_screen->root_depth,
1155 MAX(xcb_screen->width_in_pixels, statusline_width),
1156 xcb_screen->height_in_pixels);
1158 uint32_t mask = XCB_GC_FOREGROUND;
1159 uint32_t vals[2] = { colors.bar_bg, colors.bar_bg };
1160 xcb_free_gc(xcb_connection, statusline_clear);
1161 statusline_clear = xcb_generate_id(xcb_connection);
1162 xcb_void_cookie_t clear_ctx_cookie = xcb_create_gc_checked(xcb_connection,
1168 mask |= XCB_GC_BACKGROUND;
1169 vals[0] = colors.bar_fg;
1170 statusline_ctx = xcb_generate_id(xcb_connection);
1171 xcb_free_gc(xcb_connection, statusline_ctx);
1172 xcb_void_cookie_t sl_ctx_cookie = xcb_create_gc_checked(xcb_connection,
1178 if (xcb_request_failed(sl_pm_cookie, "Could not allocate statusline-buffer") ||
1179 xcb_request_failed(clear_ctx_cookie, "Could not allocate statusline-buffer-clearcontext") ||
1180 xcb_request_failed(sl_ctx_cookie, "Could not allocate statusline-buffer-context")) {
1187 * Reconfigure all bars and create new bars for recently activated outputs
1190 void reconfig_windows() {
1193 static bool tray_configured = false;
1196 SLIST_FOREACH(walk, outputs, slist) {
1197 if (!walk->active) {
1198 /* If an output is not active, we destroy its bar */
1199 /* FIXME: Maybe we rather want to unmap? */
1200 DLOG("Destroying window for output %s\n", walk->name);
1201 destroy_window(walk);
1204 if (walk->bar == XCB_NONE) {
1205 DLOG("Creating Window for output %s\n", walk->name);
1207 walk->bar = xcb_generate_id(xcb_connection);
1208 walk->buffer = xcb_generate_id(xcb_connection);
1209 mask = XCB_CW_BACK_PIXEL | XCB_CW_OVERRIDE_REDIRECT | XCB_CW_EVENT_MASK;
1210 /* Black background */
1211 values[0] = colors.bar_bg;
1212 /* If hide_on_modifier is set, i3 is not supposed to manage our bar-windows */
1213 values[1] = config.hide_on_modifier;
1214 /* We enable the following EventMask fields:
1215 * EXPOSURE, to get expose events (we have to re-draw then)
1216 * SUBSTRUCTURE_REDIRECT, to get ConfigureRequests when the tray
1217 * child windows use ConfigureWindow
1218 * BUTTON_PRESS, to handle clicks on the workspace buttons
1220 values[2] = XCB_EVENT_MASK_EXPOSURE |
1221 XCB_EVENT_MASK_SUBSTRUCTURE_REDIRECT;
1222 if (!config.disable_ws) {
1223 values[2] |= XCB_EVENT_MASK_BUTTON_PRESS;
1225 xcb_void_cookie_t win_cookie = xcb_create_window_checked(xcb_connection,
1226 xcb_screen->root_depth,
1229 walk->rect.x, walk->rect.y + walk->rect.h - font.height - 6,
1230 walk->rect.w, font.height + 6,
1232 XCB_WINDOW_CLASS_INPUT_OUTPUT,
1233 xcb_screen->root_visual,
1237 /* The double-buffer we use to render stuff off-screen */
1238 xcb_void_cookie_t pm_cookie = xcb_create_pixmap_checked(xcb_connection,
1239 xcb_screen->root_depth,
1245 /* Set the WM_CLASS and WM_NAME (we don't need UTF-8) atoms */
1246 xcb_void_cookie_t class_cookie;
1247 class_cookie = xcb_change_property(xcb_connection,
1248 XCB_PROP_MODE_REPLACE,
1253 (strlen("i3bar") + 1) * 2,
1257 if (asprintf(&name, "i3bar for output %s", walk->name) == -1)
1258 err(EXIT_FAILURE, "asprintf()");
1259 xcb_void_cookie_t name_cookie;
1260 name_cookie = xcb_change_property(xcb_connection,
1261 XCB_PROP_MODE_REPLACE,
1270 /* We want dock-windows (for now). When override_redirect is set, i3 is ignoring
1272 xcb_void_cookie_t dock_cookie = xcb_change_property(xcb_connection,
1273 XCB_PROP_MODE_REPLACE,
1275 atoms[_NET_WM_WINDOW_TYPE],
1279 (unsigned char*) &atoms[_NET_WM_WINDOW_TYPE_DOCK]);
1281 /* We need to tell i3, where to reserve space for i3bar */
1282 /* left, right, top, bottom, left_start_y, left_end_y,
1283 * right_start_y, right_end_y, top_start_x, top_end_x, bottom_start_x,
1285 /* A local struct to save the strut_partial property */
1291 uint32_t left_start_y;
1292 uint32_t left_end_y;
1293 uint32_t right_start_y;
1294 uint32_t right_end_y;
1295 uint32_t top_start_x;
1297 uint32_t bottom_start_x;
1298 uint32_t bottom_end_x;
1299 } __attribute__((__packed__)) strut_partial = {0,};
1300 switch (config.position) {
1304 strut_partial.top = font.height + 6;
1305 strut_partial.top_start_x = walk->rect.x;
1306 strut_partial.top_end_x = walk->rect.x + walk->rect.w;
1309 strut_partial.bottom = font.height + 6;
1310 strut_partial.bottom_start_x = walk->rect.x;
1311 strut_partial.bottom_end_x = walk->rect.x + walk->rect.w;
1314 xcb_void_cookie_t strut_cookie = xcb_change_property(xcb_connection,
1315 XCB_PROP_MODE_REPLACE,
1317 atoms[_NET_WM_STRUT_PARTIAL],
1323 /* We also want a graphics-context for the bars (it defines the properties
1324 * with which we draw to them) */
1325 walk->bargc = xcb_generate_id(xcb_connection);
1326 xcb_void_cookie_t gc_cookie = xcb_create_gc_checked(xcb_connection,
1332 /* We finally map the bar (display it on screen), unless the modifier-switch is on */
1333 xcb_void_cookie_t map_cookie;
1334 if (!config.hide_on_modifier) {
1335 map_cookie = xcb_map_window_checked(xcb_connection, walk->bar);
1338 if (xcb_request_failed(win_cookie, "Could not create window") ||
1339 xcb_request_failed(pm_cookie, "Could not create pixmap") ||
1340 xcb_request_failed(dock_cookie, "Could not set dock mode") ||
1341 xcb_request_failed(class_cookie, "Could not set WM_CLASS") ||
1342 xcb_request_failed(name_cookie, "Could not set WM_NAME") ||
1343 xcb_request_failed(strut_cookie, "Could not set strut") ||
1344 xcb_request_failed(gc_cookie, "Could not create graphical context") ||
1345 (!config.hide_on_modifier && xcb_request_failed(map_cookie, "Could not map window"))) {
1349 if (!tray_configured &&
1350 (!config.tray_output ||
1351 strcasecmp("none", config.tray_output) != 0)) {
1353 tray_configured = true;
1356 /* We already have a bar, so we just reconfigure it */
1357 mask = XCB_CONFIG_WINDOW_X |
1358 XCB_CONFIG_WINDOW_Y |
1359 XCB_CONFIG_WINDOW_WIDTH |
1360 XCB_CONFIG_WINDOW_HEIGHT |
1361 XCB_CONFIG_WINDOW_STACK_MODE;
1362 values[0] = walk->rect.x;
1363 values[1] = walk->rect.y + walk->rect.h - font.height - 6;
1364 values[2] = walk->rect.w;
1365 values[3] = font.height + 6;
1366 values[4] = XCB_STACK_MODE_ABOVE;
1368 DLOG("Destroying buffer for output %s", walk->name);
1369 xcb_free_pixmap(xcb_connection, walk->buffer);
1371 DLOG("Reconfiguring Window for output %s to %d,%d\n", walk->name, values[0], values[1]);
1372 xcb_void_cookie_t cfg_cookie = xcb_configure_window_checked(xcb_connection,
1377 DLOG("Recreating buffer for output %s", walk->name);
1378 xcb_void_cookie_t pm_cookie = xcb_create_pixmap_checked(xcb_connection,
1379 xcb_screen->root_depth,
1385 if (xcb_request_failed(cfg_cookie, "Could not reconfigure window")) {
1388 if (xcb_request_failed(pm_cookie, "Could not create pixmap")) {
1396 * Render the bars, with buttons and statusline
1400 DLOG("Drawing Bars...\n");
1403 refresh_statusline();
1405 i3_output *outputs_walk;
1406 SLIST_FOREACH(outputs_walk, outputs, slist) {
1407 if (!outputs_walk->active) {
1408 DLOG("Output %s inactive, skipping...\n", outputs_walk->name);
1411 if (outputs_walk->bar == XCB_NONE) {
1412 /* Oh shit, an active output without an own bar. Create it now! */
1415 /* First things first: clear the backbuffer */
1416 uint32_t color = colors.bar_bg;
1417 xcb_change_gc(xcb_connection,
1418 outputs_walk->bargc,
1421 xcb_rectangle_t rect = { 0, 0, outputs_walk->rect.w, font.height + 6 };
1422 xcb_poly_fill_rectangle(xcb_connection,
1423 outputs_walk->buffer,
1424 outputs_walk->bargc,
1428 if (!TAILQ_EMPTY(&statusline_head)) {
1429 DLOG("Printing statusline!\n");
1431 /* Luckily we already prepared a seperate pixmap containing the rendered
1432 * statusline, we just have to copy the relevant parts to the relevant
1434 trayclient *trayclient;
1436 TAILQ_FOREACH(trayclient, outputs_walk->trayclients, tailq) {
1437 if (!trayclient->mapped)
1439 /* We assume the tray icons are quadratic (we use the font
1440 * *height* as *width* of the icons) because we configured them
1442 traypx += font.height + 2;
1444 /* Add 2px of padding if there are any tray icons */
1447 xcb_copy_area(xcb_connection,
1449 outputs_walk->buffer,
1450 outputs_walk->bargc,
1451 MAX(0, (int16_t)(statusline_width - outputs_walk->rect.w + 4)), 0,
1452 MAX(0, (int16_t)(outputs_walk->rect.w - statusline_width - traypx - 4)), 3,
1453 MIN(outputs_walk->rect.w - traypx - 4, statusline_width), font.height);
1456 if (config.disable_ws) {
1461 TAILQ_FOREACH(ws_walk, outputs_walk->workspaces, tailq) {
1462 DLOG("Drawing Button for WS %s at x = %d, len = %d\n", ws_walk->name, i, ws_walk->name_width);
1463 uint32_t fg_color = colors.inactive_ws_fg;
1464 uint32_t bg_color = colors.inactive_ws_bg;
1465 uint32_t border_color = colors.inactive_ws_border;
1466 if (ws_walk->visible) {
1467 if (!ws_walk->focused) {
1468 fg_color = colors.active_ws_fg;
1469 bg_color = colors.active_ws_bg;
1470 border_color = colors.active_ws_border;
1472 fg_color = colors.focus_ws_fg;
1473 bg_color = colors.focus_ws_bg;
1474 border_color = colors.focus_ws_border;
1477 if (ws_walk->urgent) {
1478 DLOG("WS %s is urgent!\n", ws_walk->name);
1479 fg_color = colors.urgent_ws_fg;
1480 bg_color = colors.urgent_ws_bg;
1481 border_color = colors.urgent_ws_border;
1482 /* The urgent-hint should get noticed, so we unhide the bars shortly */
1485 uint32_t mask = XCB_GC_FOREGROUND | XCB_GC_BACKGROUND;
1486 uint32_t vals_border[] = { border_color, border_color };
1487 xcb_change_gc(xcb_connection,
1488 outputs_walk->bargc,
1491 xcb_rectangle_t rect_border = { i, 0, ws_walk->name_width + 10, font.height + 4 };
1492 xcb_poly_fill_rectangle(xcb_connection,
1493 outputs_walk->buffer,
1494 outputs_walk->bargc,
1497 uint32_t vals[] = { bg_color, bg_color };
1498 xcb_change_gc(xcb_connection,
1499 outputs_walk->bargc,
1502 xcb_rectangle_t rect = { i + 1, 1, ws_walk->name_width + 8, font.height + 2 };
1503 xcb_poly_fill_rectangle(xcb_connection,
1504 outputs_walk->buffer,
1505 outputs_walk->bargc,
1508 set_font_colors(outputs_walk->bargc, fg_color, bg_color);
1509 draw_text((char*)ws_walk->ucs2_name, ws_walk->name_glyphs, true,
1510 outputs_walk->buffer, outputs_walk->bargc, i + 5, 2, ws_walk->name_width);
1511 i += 10 + ws_walk->name_width + 1;
1521 * Redraw the bars, i.e. simply copy the buffer to the barwindow
1524 void redraw_bars() {
1525 i3_output *outputs_walk;
1526 SLIST_FOREACH(outputs_walk, outputs, slist) {
1527 if (!outputs_walk->active) {
1530 xcb_copy_area(xcb_connection,
1531 outputs_walk->buffer,
1533 outputs_walk->bargc,
1536 outputs_walk->rect.w,
1537 outputs_walk->rect.h);
1538 xcb_flush(xcb_connection);