]> git.sur5r.net Git - i3/i3/blob - src/handlers.c
ecaba2197908f385c38cf8aaccb6bb63404f1e0c
[i3/i3] / src / handlers.c
1 /*
2  * vim:ts=4:sw=4:expandtab
3  *
4  * i3 - an improved dynamic tiling window manager
5  * © 2009-2010 Michael Stapelberg and contributors (see also: LICENSE)
6  *
7  */
8 #include <time.h>
9
10 #include <xcb/xcb_atom.h>
11 #include <xcb/randr.h>
12
13 #include <X11/XKBlib.h>
14
15 #include "all.h"
16
17 /* After mapping/unmapping windows, a notify event is generated. However, we don’t want it,
18    since it’d trigger an infinite loop of switching between the different windows when
19    changing workspaces */
20 static SLIST_HEAD(ignore_head, Ignore_Event) ignore_events;
21
22 void add_ignore_event(const int sequence) {
23     struct Ignore_Event *event = smalloc(sizeof(struct Ignore_Event));
24
25     event->sequence = sequence;
26     event->added = time(NULL);
27
28     SLIST_INSERT_HEAD(&ignore_events, event, ignore_events);
29 }
30
31 /*
32  * Checks if the given sequence is ignored and returns true if so.
33  *
34  */
35 static bool event_is_ignored(const int sequence) {
36     struct Ignore_Event *event;
37     time_t now = time(NULL);
38     for (event = SLIST_FIRST(&ignore_events); event != SLIST_END(&ignore_events);) {
39         if ((now - event->added) > 5) {
40             struct Ignore_Event *save = event;
41             event = SLIST_NEXT(event, ignore_events);
42             SLIST_REMOVE(&ignore_events, save, Ignore_Event, ignore_events);
43             free(save);
44         } else event = SLIST_NEXT(event, ignore_events);
45     }
46
47     SLIST_FOREACH(event, &ignore_events, ignore_events) {
48         if (event->sequence != sequence)
49             continue;
50
51         /* instead of removing a sequence number we better wait until it gets
52          * garbage collected. it may generate multiple events (there are multiple
53          * enter_notifies for one configure_request, for example). */
54         //SLIST_REMOVE(&ignore_events, event, Ignore_Event, ignore_events);
55         //free(event);
56         return true;
57     }
58
59     return false;
60 }
61
62 /*
63  * There was a key press. We compare this key code with our bindings table and pass
64  * the bound action to parse_command().
65  *
66  */
67 int handle_key_press(void *ignored, xcb_connection_t *conn, xcb_key_press_event_t *event) {
68     DLOG("Keypress %d, state raw = %d\n", event->detail, event->state);
69
70     /* Remove the numlock bit, all other bits are modifiers we can bind to */
71     uint16_t state_filtered = event->state & ~(xcb_numlock_mask | XCB_MOD_MASK_LOCK);
72     DLOG("(removed numlock, state = %d)\n", state_filtered);
73     /* Only use the lower 8 bits of the state (modifier masks) so that mouse
74      * button masks are filtered out */
75     state_filtered &= 0xFF;
76     DLOG("(removed upper 8 bits, state = %d)\n", state_filtered);
77
78     if (xkb_current_group == XkbGroup2Index)
79         state_filtered |= BIND_MODE_SWITCH;
80
81     DLOG("(checked mode_switch, state %d)\n", state_filtered);
82
83     /* Find the binding */
84     Binding *bind = get_binding(state_filtered, event->detail);
85
86     /* No match? Then the user has Mode_switch enabled but does not have a
87      * specific keybinding. Fall back to the default keybindings (without
88      * Mode_switch). Makes it much more convenient for users of a hybrid
89      * layout (like us, ru). */
90     if (bind == NULL) {
91         state_filtered &= ~(BIND_MODE_SWITCH);
92         DLOG("no match, new state_filtered = %d\n", state_filtered);
93         if ((bind = get_binding(state_filtered, event->detail)) == NULL) {
94             ELOG("Could not lookup key binding (modifiers %d, keycode %d)\n",
95                  state_filtered, event->detail);
96             return 1;
97         }
98     }
99
100     parse_cmd(bind->command);
101     return 1;
102 }
103
104 #if 0
105
106 /*
107  * Called with coordinates of an enter_notify event or motion_notify event
108  * to check if the user crossed virtual screen boundaries and adjust the
109  * current workspace, if so.
110  *
111  */
112 static void check_crossing_screen_boundary(uint32_t x, uint32_t y) {
113         Output *output;
114
115         if ((output = get_output_containing(x, y)) == NULL) {
116                 ELOG("ERROR: No such screen\n");
117                 return;
118         }
119         if (output == c_ws->output)
120                 return;
121
122         c_ws->current_row = current_row;
123         c_ws->current_col = current_col;
124         c_ws = output->current_workspace;
125         current_row = c_ws->current_row;
126         current_col = c_ws->current_col;
127         DLOG("We're now on output %p\n", output);
128
129         /* While usually this function is only called when the user switches
130          * to a different output using his mouse (and thus the output is
131          * empty), it may be that the following race condition occurs:
132          * 1) the user actives a new output (say VGA1).
133          * 2) the cursor is sent to the first pixel of the new VGA1, thus
134          *    generating an enter_notify for the screen (the enter_notify
135          *    is not yet received by i3).
136          * 3) i3 requeries screen configuration and maps a workspace onto the
137          *    new output.
138          * 4) the enter_notify event arrives and c_ws is set to the new
139          *    workspace but the existing windows on the new workspace are not
140          *    focused.
141          *
142          * Therefore, we re-set the focus here to be sure it’s correct. */
143         Client *first_client = SLIST_FIRST(&(c_ws->focus_stack));
144         if (first_client != NULL)
145                 set_focus(global_conn, first_client, true);
146 }
147 #endif
148
149 /*
150  * When the user moves the mouse pointer onto a window, this callback gets called.
151  *
152  */
153 int handle_enter_notify(void *ignored, xcb_connection_t *conn,
154                         xcb_enter_notify_event_t *event) {
155     Con *con;
156
157     DLOG("enter_notify for %08x, mode = %d, detail %d, serial %d\n",
158          event->event, event->mode, event->detail, event->sequence);
159     DLOG("coordinates %x, %x\n", event->event_x, event->event_y);
160     if (event->mode != XCB_NOTIFY_MODE_NORMAL) {
161         DLOG("This was not a normal notify, ignoring\n");
162         return 1;
163     }
164     /* Some events are not interesting, because they were not generated
165      * actively by the user, but by reconfiguration of windows */
166     if (event_is_ignored(event->sequence))
167         return 1;
168
169     /* Get container by frame or by child window */
170     if ((con = con_by_frame_id(event->event)) == NULL)
171         con = con_by_window_id(event->event);
172
173     /* If not, then the user moved his cursor to the root window. In that case, we adjust c_ws */
174     if (con == NULL) {
175         DLOG("Getting screen at %d x %d\n", event->root_x, event->root_y);
176         //check_crossing_screen_boundary(event->root_x, event->root_y);
177         return 1;
178     }
179
180     /* see if the user entered the window on a certain window decoration */
181     int layout = con->layout;
182     Con *child;
183     TAILQ_FOREACH(child, &(con->nodes_head), nodes)
184         if (rect_contains(child->deco_rect, event->event_x, event->event_y)) {
185             LOG("using child %p / %s instead!\n", child, child->name);
186             con = child;
187             break;
188         }
189
190     /* for stacked/tabbed layout we do not want to change focus when the user
191      * enters the window at the decoration of any child window. */
192     if (layout == L_STACKED || layout == L_TABBED) {
193         con = TAILQ_FIRST(&(con->parent->focus_head));
194         LOG("using focused %p / %s instead\n", con, con->name);
195     }
196
197 #if 0
198     if (client->workspace != c_ws && client->workspace->output == c_ws->output) {
199             /* This can happen when a client gets assigned to a different workspace than
200              * the current one (see src/mainx.c:reparent_window). Shortly after it was created,
201              * an enter_notify will follow. */
202             DLOG("enter_notify for a client on a different workspace but the same screen, ignoring\n");
203             return 1;
204     }
205 #endif
206
207     if (config.disable_focus_follows_mouse)
208         return 1;
209     Con *next = con;
210     while (!TAILQ_EMPTY(&(next->focus_head)))
211         next = TAILQ_FIRST(&(next->focus_head));
212
213     con_focus(next);
214     x_push_changes(croot);
215
216     return 1;
217 }
218 #if 0
219
220 /*
221  * When the user moves the mouse but does not change the active window
222  * (e.g. when having no windows opened but moving mouse on the root screen
223  * and crossing virtual screen boundaries), this callback gets called.
224  *
225  */
226 int handle_motion_notify(void *ignored, xcb_connection_t *conn, xcb_motion_notify_event_t *event) {
227         /* Skip events where the pointer was over a child window, we are only
228          * interested in events on the root window. */
229         if (event->child != 0)
230                 return 1;
231
232         check_crossing_screen_boundary(event->root_x, event->root_y);
233
234         return 1;
235 }
236
237 /*
238  * Called when the keyboard mapping changes (for example by using Xmodmap),
239  * we need to update our key bindings then (re-translate symbols).
240  *
241  */
242 int handle_mapping_notify(void *ignored, xcb_connection_t *conn, xcb_mapping_notify_event_t *event) {
243         if (event->request != XCB_MAPPING_KEYBOARD &&
244             event->request != XCB_MAPPING_MODIFIER)
245                 return 0;
246
247         DLOG("Received mapping_notify for keyboard or modifier mapping, re-grabbing keys\n");
248         xcb_refresh_keyboard_mapping(keysyms, event);
249
250         xcb_get_numlock_mask(conn);
251
252         ungrab_all_keys(conn);
253         translate_keysyms();
254         grab_all_keys(conn, false);
255
256         return 0;
257 }
258
259 #endif
260 /*
261  * A new window appeared on the screen (=was mapped), so let’s manage it.
262  *
263  */
264 int handle_map_request(void *prophs, xcb_connection_t *conn, xcb_map_request_event_t *event) {
265     xcb_get_window_attributes_cookie_t cookie;
266
267     cookie = xcb_get_window_attributes_unchecked(conn, event->window);
268
269     DLOG("window = 0x%08x, serial is %d.\n", event->window, event->sequence);
270     add_ignore_event(event->sequence);
271
272     manage_window(event->window, cookie, false);
273     x_push_changes(croot);
274     return 1;
275 }
276 #if 0
277 /*
278  * Configure requests are received when the application wants to resize windows on their own.
279  *
280  * We generate a synthethic configure notify event to signalize the client its "new" position.
281  *
282  */
283 int handle_configure_request(void *prophs, xcb_connection_t *conn, xcb_configure_request_event_t *event) {
284         DLOG("window 0x%08x wants to be at %dx%d with %dx%d\n",
285             event->window, event->x, event->y, event->width, event->height);
286
287         Client *client = table_get(&by_child, event->window);
288         if (client == NULL) {
289                 uint32_t mask = 0;
290                 uint32_t values[7];
291                 int c = 0;
292 #define COPY_MASK_MEMBER(mask_member, event_member) do { \
293                 if (event->value_mask & mask_member) { \
294                         mask |= mask_member; \
295                         values[c++] = event->event_member; \
296                 } \
297 } while (0)
298
299                 COPY_MASK_MEMBER(XCB_CONFIG_WINDOW_X, x);
300                 COPY_MASK_MEMBER(XCB_CONFIG_WINDOW_Y, y);
301                 COPY_MASK_MEMBER(XCB_CONFIG_WINDOW_WIDTH, width);
302                 COPY_MASK_MEMBER(XCB_CONFIG_WINDOW_HEIGHT, height);
303                 COPY_MASK_MEMBER(XCB_CONFIG_WINDOW_BORDER_WIDTH, border_width);
304                 COPY_MASK_MEMBER(XCB_CONFIG_WINDOW_SIBLING, sibling);
305                 COPY_MASK_MEMBER(XCB_CONFIG_WINDOW_STACK_MODE, stack_mode);
306
307                 xcb_configure_window(conn, event->window, mask, values);
308                 xcb_flush(conn);
309
310                 return 1;
311         }
312
313         if (client->fullscreen) {
314                 DLOG("Client is in fullscreen mode\n");
315
316                 Rect child_rect = client->workspace->rect;
317                 child_rect.x = child_rect.y = 0;
318                 fake_configure_notify(conn, child_rect, client->child);
319
320                 return 1;
321         }
322
323         /* Floating clients can be reconfigured */
324         if (client_is_floating(client)) {
325                 i3Font *font = load_font(conn, config.font);
326                 int mode = (client->container != NULL ? client->container->mode : MODE_DEFAULT);
327                 /* TODO: refactor this code. we need a function to translate
328                  * coordinates of child_rect/rect. */
329
330                 if (event->value_mask & XCB_CONFIG_WINDOW_X) {
331                         if (mode == MODE_STACK || mode == MODE_TABBED) {
332                                 client->rect.x = event->x - 2;
333                         } else {
334                                 if (client->titlebar_position == TITLEBAR_OFF && client->borderless)
335                                         client->rect.x = event->x;
336                                 else if (client->titlebar_position == TITLEBAR_OFF && !client->borderless)
337                                         client->rect.x = event->x - 1;
338                                 else client->rect.x = event->x - 2;
339                         }
340                 }
341                 if (event->value_mask & XCB_CONFIG_WINDOW_Y) {
342                         if (mode == MODE_STACK || mode == MODE_TABBED) {
343                                 client->rect.y = event->y - 2;
344                         } else {
345                                 if (client->titlebar_position == TITLEBAR_OFF && client->borderless)
346                                         client->rect.y = event->y;
347                                 else if (client->titlebar_position == TITLEBAR_OFF && !client->borderless)
348                                         client->rect.y = event->y - 1;
349                                 else client->rect.y = event->y - font->height - 2 - 2;
350                         }
351                 }
352                 if (event->value_mask & XCB_CONFIG_WINDOW_WIDTH) {
353                         if (mode == MODE_STACK || mode == MODE_TABBED) {
354                                 client->rect.width = event->width + 2 + 2;
355                         } else {
356                                 if (client->titlebar_position == TITLEBAR_OFF && client->borderless)
357                                         client->rect.width = event->width;
358                                 else if (client->titlebar_position == TITLEBAR_OFF && !client->borderless)
359                                         client->rect.width = event->width + (1 + 1);
360                                 else client->rect.width = event->width + (2 + 2);
361                         }
362                 }
363                 if (event->value_mask & XCB_CONFIG_WINDOW_HEIGHT) {
364                         if (mode == MODE_STACK || mode == MODE_TABBED) {
365                                 client->rect.height = event->height + 2;
366                         } else {
367                                 if (client->titlebar_position == TITLEBAR_OFF && client->borderless)
368                                         client->rect.height = event->height;
369                                 else if (client->titlebar_position == TITLEBAR_OFF && !client->borderless)
370                                         client->rect.height = event->height + (1 + 1);
371                                 else client->rect.height = event->height + (font->height + 2 + 2) + 2;
372                         }
373                 }
374
375                 DLOG("Accepted new position/size for floating client: (%d, %d) size %d x %d\n",
376                     client->rect.x, client->rect.y, client->rect.width, client->rect.height);
377
378                 /* Push the new position/size to X11 */
379                 reposition_client(conn, client);
380                 resize_client(conn, client);
381                 xcb_flush(conn);
382
383                 return 1;
384         }
385
386         /* Dock clients can be reconfigured in their height */
387         if (client->dock) {
388                 DLOG("Reconfiguring height of this dock client\n");
389
390                 if (!(event->value_mask & XCB_CONFIG_WINDOW_HEIGHT)) {
391                         DLOG("Ignoring configure request, no height given\n");
392                         return 1;
393                 }
394
395                 client->desired_height = event->height;
396                 render_workspace(conn, c_ws->output, c_ws);
397                 xcb_flush(conn);
398
399                 return 1;
400         }
401
402         if (client->fullscreen) {
403                 DLOG("Client is in fullscreen mode\n");
404
405                 Rect child_rect = client->container->workspace->rect;
406                 child_rect.x = child_rect.y = 0;
407                 fake_configure_notify(conn, child_rect, client->child);
408
409                 return 1;
410         }
411
412         fake_absolute_configure_notify(conn, client);
413
414         return 1;
415 }
416
417 /*
418  * Configuration notifies are only handled because we need to set up ignore for
419  * the following enter notify events.
420  *
421  */
422 int handle_configure_event(void *prophs, xcb_connection_t *conn, xcb_configure_notify_event_t *event) {
423         /* We ignore this sequence twice because events for child and frame should be ignored */
424         add_ignore_event(event->sequence);
425         add_ignore_event(event->sequence);
426
427         return 1;
428 }
429
430 /*
431  * Gets triggered upon a RandR screen change event, that is when the user
432  * changes the screen configuration in any way (mode, position, …)
433  *
434  */
435 int handle_screen_change(void *prophs, xcb_connection_t *conn,
436                          xcb_generic_event_t *e) {
437         DLOG("RandR screen change\n");
438
439         randr_query_outputs(conn);
440
441         ipc_send_event("output", I3_IPC_EVENT_OUTPUT, "{\"change\":\"unspecified\"}");
442
443         return 1;
444 }
445 #endif
446
447 /*
448  * Our window decorations were unmapped. That means, the window will be killed
449  * now, so we better clean up before.
450  *
451  */
452 int handle_unmap_notify_event(void *data, xcb_connection_t *conn, xcb_unmap_notify_event_t *event) {
453
454     bool ignored = event_is_ignored(event->sequence);
455
456     /* we need to ignore EnterNotify events which will be generated because a
457      * different window is visible now */
458     add_ignore_event(event->sequence);
459
460     DLOG("UnmapNotify for 0x%08x (received from 0x%08x), serial %d\n", event->window, event->event, event->sequence);
461     if (ignored) {
462         DLOG("Ignoring UnmapNotify (generated by reparenting)\n");
463         return 1;
464     }
465     Con *con = con_by_window_id(event->window);
466     if (con == NULL) {
467         LOG("Not a managed window, ignoring\n");
468         return 1;
469     }
470
471     tree_close(con);
472     tree_render();
473     x_push_changes(croot);
474     return 1;
475
476 #if 0
477         if (client == NULL) {
478                 DLOG("not a managed window. Ignoring.\n");
479
480                 /* This was most likely the destroyed frame of a client which is
481                  * currently being unmapped, so we add this sequence (again!) to
482                  * the ignore list (enter_notify events will get sent for both,
483                  * the child and its frame). */
484                 add_ignore_event(event->sequence);
485
486                 return 0;
487         }
488 #endif
489
490
491 #if 0
492         /* Let’s see how many clients there are left on the workspace to delete it if it’s empty */
493         bool workspace_empty = SLIST_EMPTY(&(client->workspace->focus_stack));
494         bool workspace_focused = (c_ws == client->workspace);
495         Client *to_focus = (!workspace_empty ? SLIST_FIRST(&(client->workspace->focus_stack)) : NULL);
496
497         /* If this workspace is currently visible, we don’t delete it */
498         if (workspace_is_visible(client->workspace))
499                 workspace_empty = false;
500
501         if (workspace_empty) {
502                 client->workspace->output = NULL;
503                 ipc_send_event("workspace", I3_IPC_EVENT_WORKSPACE, "{\"change\":\"empty\"}");
504         }
505
506         /* Remove the urgency flag if set */
507         client->urgent = false;
508         workspace_update_urgent_flag(client->workspace);
509
510         render_layout(conn);
511 #endif
512
513         return 1;
514 }
515
516 /*
517  * A destroy notify event is sent when the window is not unmapped, but
518  * immediately destroyed (for example when starting a window and immediately
519  * killing the program which started it).
520  *
521  * We just pass on the event to the unmap notify handler (by copying the
522  * important fields in the event data structure).
523  *
524  */
525 int handle_destroy_notify_event(void *data, xcb_connection_t *conn, xcb_destroy_notify_event_t *event) {
526     DLOG("destroy notify for 0x%08x, 0x%08x\n", event->event, event->window);
527
528     xcb_unmap_notify_event_t unmap;
529     unmap.sequence = event->sequence;
530     unmap.event = event->event;
531     unmap.window = event->window;
532
533     return handle_unmap_notify_event(NULL, conn, &unmap);
534 }
535
536 /*
537  * Called when a window changes its title
538  *
539  */
540 int handle_windowname_change(void *data, xcb_connection_t *conn, uint8_t state,
541                                 xcb_window_t window, xcb_atom_t atom, xcb_get_property_reply_t *prop) {
542     Con *con;
543     if ((con = con_by_window_id(window)) == NULL || con->window == NULL)
544         return 1;
545
546     window_update_name(con->window, prop);
547
548     x_push_changes(croot);
549
550     return 1;
551 }
552
553 /*
554  * Handles legacy window name updates (WM_NAME), see also src/window.c,
555  * window_update_name_legacy().
556  *
557  */
558 int handle_windowname_change_legacy(void *data, xcb_connection_t *conn, uint8_t state,
559                                 xcb_window_t window, xcb_atom_t atom, xcb_get_property_reply_t *prop) {
560     Con *con;
561     if ((con = con_by_window_id(window)) == NULL || con->window == NULL)
562         return 1;
563
564     window_update_name_legacy(con->window, prop);
565
566     x_push_changes(croot);
567
568     return 1;
569 }
570
571 /*
572  * Updates the client’s WM_CLASS property
573  *
574  */
575 int handle_windowclass_change(void *data, xcb_connection_t *conn, uint8_t state,
576                              xcb_window_t window, xcb_atom_t atom, xcb_get_property_reply_t *prop) {
577     Con *con;
578     if ((con = con_by_window_id(window)) == NULL || con->window == NULL)
579         return 1;
580
581     window_update_class(con->window, prop);
582
583     return 0;
584 }
585
586 /*
587  * Expose event means we should redraw our windows (= title bar)
588  *
589  */
590 int handle_expose_event(void *data, xcb_connection_t *conn, xcb_expose_event_t *event) {
591     Con *parent, *con;
592
593     /* event->count is the number of minimum remaining expose events for this
594      * window, so we skip all events but the last one */
595     if (event->count != 0)
596         return 1;
597
598     DLOG("window = %08x\n", event->window);
599
600     if ((parent = con_by_frame_id(event->window)) == NULL) {
601         LOG("expose event for unknown window, ignoring\n");
602         return 1;
603     }
604
605     TAILQ_FOREACH(con, &(parent->nodes_head), nodes) {
606         LOG("expose for con %p / %s\n", con, con->name);
607         if (con->window)
608             x_draw_decoration(con);
609     }
610     xcb_flush(conn);
611
612     return 1;
613
614 #if 0
615     else {
616             uint32_t background_color;
617             if (client->urgent)
618                     background_color = config.client.urgent.background;
619             /* Distinguish if the window is currently focused… */
620             else if (CUR_CELL != NULL && CUR_CELL->currently_focused == client)
621                     background_color = config.client.focused.background;
622             /* …or if it is the focused window in a not focused container */
623             else background_color = config.client.focused_inactive.background;
624
625             /* Set foreground color to current focused color, line width to 2 */
626             uint32_t values[] = {background_color, 2};
627             xcb_change_gc(conn, client->titlegc, XCB_GC_FOREGROUND | XCB_GC_LINE_WIDTH, values);
628
629             /* Draw the border, the ±1 is for line width = 2 */
630             xcb_point_t points[] = {{1, 0},                                           /* left upper edge */
631                                     {1, client->rect.height-1},                       /* left bottom edge */
632                                     {client->rect.width-1, client->rect.height-1},    /* right bottom edge */
633                                     {client->rect.width-1, 0}};                       /* right upper edge */
634             xcb_poly_line(conn, XCB_COORD_MODE_ORIGIN, client->frame, client->titlegc, 4, points);
635
636             /* Draw a black background */
637             xcb_change_gc_single(conn, client->titlegc, XCB_GC_FOREGROUND, get_colorpixel(conn, "#000000"));
638             if (client->titlebar_position == TITLEBAR_OFF && !client->borderless) {
639                     xcb_rectangle_t crect = {1, 0, client->rect.width - (1 + 1), client->rect.height - 1};
640                     xcb_poly_fill_rectangle(conn, client->frame, client->titlegc, 1, &crect);
641             } else {
642                     xcb_rectangle_t crect = {2, 0, client->rect.width - (2 + 2), client->rect.height - 2};
643                     xcb_poly_fill_rectangle(conn, client->frame, client->titlegc, 1, &crect);
644             }
645     }
646     xcb_flush(conn);
647     return 1;
648 #endif
649 }
650
651 /*
652  * Handle client messages (EWMH)
653  *
654  */
655 int handle_client_message(void *data, xcb_connection_t *conn, xcb_client_message_event_t *event) {
656     LOG("ClientMessage for window 0x%08x\n", event->window);
657     if (event->type == atoms[_NET_WM_STATE]) {
658         if (event->format != 32 || event->data.data32[1] != atoms[_NET_WM_STATE_FULLSCREEN])
659             return 0;
660
661         Con *con = con_by_window_id(event->window);
662         if (con == NULL)
663             return 0;
664
665         /* Check if the fullscreen state should be toggled */
666         if ((con->fullscreen_mode != CF_NONE &&
667              (event->data.data32[0] == _NET_WM_STATE_REMOVE ||
668               event->data.data32[0] == _NET_WM_STATE_TOGGLE)) ||
669             (con->fullscreen_mode == CF_NONE &&
670              (event->data.data32[0] == _NET_WM_STATE_ADD ||
671               event->data.data32[0] == _NET_WM_STATE_TOGGLE)))
672                 con_toggle_fullscreen(con);
673
674         tree_render();
675         x_push_changes(croot);
676     } else {
677         ELOG("unhandled clientmessage\n");
678         return 0;
679     }
680
681     return 1;
682 }
683
684 #if 0
685 int handle_window_type(void *data, xcb_connection_t *conn, uint8_t state, xcb_window_t window,
686                         xcb_atom_t atom, xcb_get_property_reply_t *property) {
687         /* TODO: Implement this one. To do this, implement a little test program which sleep(1)s
688          before changing this property. */
689         ELOG("_NET_WM_WINDOW_TYPE changed, this is not yet implemented.\n");
690         return 0;
691 }
692
693 /*
694  * Handles the size hints set by a window, but currently only the part necessary for displaying
695  * clients proportionally inside their frames (mplayer for example)
696  *
697  * See ICCCM 4.1.2.3 for more details
698  *
699  */
700 int handle_normal_hints(void *data, xcb_connection_t *conn, uint8_t state, xcb_window_t window,
701                         xcb_atom_t name, xcb_get_property_reply_t *reply) {
702         Client *client = table_get(&by_child, window);
703         if (client == NULL) {
704                 DLOG("Received WM_SIZE_HINTS for unknown client\n");
705                 return 1;
706         }
707         xcb_size_hints_t size_hints;
708
709         CLIENT_LOG(client);
710
711         /* If the hints were already in this event, use them, if not, request them */
712         if (reply != NULL)
713                 xcb_get_wm_size_hints_from_reply(&size_hints, reply);
714         else
715                 xcb_get_wm_normal_hints_reply(conn, xcb_get_wm_normal_hints_unchecked(conn, client->child), &size_hints, NULL);
716
717         if ((size_hints.flags & XCB_SIZE_HINT_P_MIN_SIZE)) {
718                 // TODO: Minimum size is not yet implemented
719                 DLOG("Minimum size: %d (width) x %d (height)\n", size_hints.min_width, size_hints.min_height);
720         }
721
722         bool changed = false;
723         if ((size_hints.flags & XCB_SIZE_HINT_P_RESIZE_INC)) {
724                 if (size_hints.width_inc > 0 && size_hints.width_inc < 0xFFFF)
725                         if (client->width_increment != size_hints.width_inc) {
726                                 client->width_increment = size_hints.width_inc;
727                                 changed = true;
728                         }
729                 if (size_hints.height_inc > 0 && size_hints.height_inc < 0xFFFF)
730                         if (client->height_increment != size_hints.height_inc) {
731                                 client->height_increment = size_hints.height_inc;
732                                 changed = true;
733                         }
734
735                 if (changed)
736                         DLOG("resize increments changed\n");
737         }
738
739         int base_width = 0, base_height = 0;
740
741         /* base_width/height are the desired size of the window.
742            We check if either the program-specified size or the program-specified
743            min-size is available */
744         if (size_hints.flags & XCB_SIZE_HINT_BASE_SIZE) {
745                 base_width = size_hints.base_width;
746                 base_height = size_hints.base_height;
747         } else if (size_hints.flags & XCB_SIZE_HINT_P_MIN_SIZE) {
748                 /* TODO: is this right? icccm says not */
749                 base_width = size_hints.min_width;
750                 base_height = size_hints.min_height;
751         }
752
753         if (base_width != client->base_width ||
754             base_height != client->base_height) {
755                 client->base_width = base_width;
756                 client->base_height = base_height;
757                 DLOG("client's base_height changed to %d\n", base_height);
758                 DLOG("client's base_width changed to %d\n", base_width);
759                 changed = true;
760         }
761
762         if (changed) {
763                 if (client->fullscreen)
764                         DLOG("Not resizing client, it is in fullscreen mode\n");
765                 else {
766                         resize_client(conn, client);
767                         xcb_flush(conn);
768                 }
769         }
770
771         /* If no aspect ratio was set or if it was invalid, we ignore the hints */
772         if (!(size_hints.flags & XCB_SIZE_HINT_P_ASPECT) ||
773             (size_hints.min_aspect_num <= 0) ||
774             (size_hints.min_aspect_den <= 0)) {
775                 return 1;
776         }
777
778         double width = client->rect.width - base_width;
779         double height = client->rect.height - base_height;
780         /* Convert numerator/denominator to a double */
781         double min_aspect = (double)size_hints.min_aspect_num / size_hints.min_aspect_den;
782         double max_aspect = (double)size_hints.max_aspect_num / size_hints.min_aspect_den;
783
784         DLOG("Aspect ratio set: minimum %f, maximum %f\n", min_aspect, max_aspect);
785         DLOG("width = %f, height = %f\n", width, height);
786
787         /* Sanity checks, this is user-input, in a way */
788         if (max_aspect <= 0 || min_aspect <= 0 || height == 0 || (width / height) <= 0)
789                 return 1;
790
791         /* Check if we need to set proportional_* variables using the correct ratio */
792         if ((width / height) < min_aspect) {
793                 client->proportional_width = width;
794                 client->proportional_height = width / min_aspect;
795         } else if ((width / height) > max_aspect) {
796                 client->proportional_width = width;
797                 client->proportional_height = width / max_aspect;
798         } else return 1;
799
800         client->force_reconfigure = true;
801
802         if (client->container != NULL) {
803                 render_container(conn, client->container);
804                 xcb_flush(conn);
805         }
806
807         return 1;
808 }
809
810 /*
811  * Handles the WM_HINTS property for extracting the urgency state of the window.
812  *
813  */
814 int handle_hints(void *data, xcb_connection_t *conn, uint8_t state, xcb_window_t window,
815                   xcb_atom_t name, xcb_get_property_reply_t *reply) {
816         Client *client = table_get(&by_child, window);
817         if (client == NULL) {
818                 DLOG("Received WM_HINTS for unknown client\n");
819                 return 1;
820         }
821         xcb_wm_hints_t hints;
822
823         if (reply != NULL) {
824                 if (!xcb_get_wm_hints_from_reply(&hints, reply))
825                         return 1;
826         } else {
827                 if (!xcb_get_wm_hints_reply(conn, xcb_get_wm_hints_unchecked(conn, client->child), &hints, NULL))
828                         return 1;
829         }
830
831         Client *last_focused = SLIST_FIRST(&(c_ws->focus_stack));
832         if (!client->urgent && client == last_focused) {
833                 DLOG("Ignoring urgency flag for current client\n");
834                 return 1;
835         }
836
837         /* Update the flag on the client directly */
838         client->urgent = (xcb_wm_hints_get_urgency(&hints) != 0);
839         CLIENT_LOG(client);
840         LOG("Urgency flag changed to %d\n", client->urgent);
841
842         workspace_update_urgent_flag(client->workspace);
843         redecorate_window(conn, client);
844
845         /* If the workspace this client is on is not visible, we need to redraw
846          * the workspace bar */
847         if (!workspace_is_visible(client->workspace)) {
848                 Output *output = client->workspace->output;
849                 render_workspace(conn, output, output->current_workspace);
850                 xcb_flush(conn);
851         }
852
853         return 1;
854 }
855
856 /*
857  * Handles the transient for hints set by a window, signalizing that this window is a popup window
858  * for some other window.
859  *
860  * See ICCCM 4.1.2.6 for more details
861  *
862  */
863 int handle_transient_for(void *data, xcb_connection_t *conn, uint8_t state, xcb_window_t window,
864                          xcb_atom_t name, xcb_get_property_reply_t *reply) {
865         Client *client = table_get(&by_child, window);
866         if (client == NULL) {
867                 DLOG("No such client\n");
868                 return 1;
869         }
870
871         xcb_window_t transient_for;
872
873         if (reply != NULL) {
874                 if (!xcb_get_wm_transient_for_from_reply(&transient_for, reply))
875                         return 1;
876         } else {
877                 if (!xcb_get_wm_transient_for_reply(conn, xcb_get_wm_transient_for_unchecked(conn, window),
878                                                     &transient_for, NULL))
879                         return 1;
880         }
881
882         if (client->floating == FLOATING_AUTO_OFF) {
883                 DLOG("This is a popup window, putting into floating\n");
884                 toggle_floating_mode(conn, client, true);
885         }
886
887         return 1;
888 }
889
890 /*
891  * Handles changes of the WM_CLIENT_LEADER atom which specifies if this is a
892  * toolwindow (or similar) and to which window it belongs (logical parent).
893  *
894  */
895 int handle_clientleader_change(void *data, xcb_connection_t *conn, uint8_t state, xcb_window_t window,
896                         xcb_atom_t name, xcb_get_property_reply_t *prop) {
897         if (prop == NULL) {
898                 prop = xcb_get_property_reply(conn, xcb_get_property_unchecked(conn,
899                                         false, window, WM_CLIENT_LEADER, WINDOW, 0, 32), NULL);
900                 if (prop == NULL)
901                         return 1;
902         }
903
904         Client *client = table_get(&by_child, window);
905         if (client == NULL)
906                 return 1;
907
908         xcb_window_t *leader = xcb_get_property_value(prop);
909         if (leader == NULL)
910                 return 1;
911
912         DLOG("Client leader changed to %08x\n", *leader);
913
914         client->leader = *leader;
915
916         return 1;
917 }
918 #endif