]> git.sur5r.net Git - i3/i3/blob - src/handlers.c
handle client messages (fullscreen window state)
[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_command(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     return 1;
274 }
275 #if 0
276 /*
277  * Configure requests are received when the application wants to resize windows on their own.
278  *
279  * We generate a synthethic configure notify event to signalize the client its "new" position.
280  *
281  */
282 int handle_configure_request(void *prophs, xcb_connection_t *conn, xcb_configure_request_event_t *event) {
283         DLOG("window 0x%08x wants to be at %dx%d with %dx%d\n",
284             event->window, event->x, event->y, event->width, event->height);
285
286         Client *client = table_get(&by_child, event->window);
287         if (client == NULL) {
288                 uint32_t mask = 0;
289                 uint32_t values[7];
290                 int c = 0;
291 #define COPY_MASK_MEMBER(mask_member, event_member) do { \
292                 if (event->value_mask & mask_member) { \
293                         mask |= mask_member; \
294                         values[c++] = event->event_member; \
295                 } \
296 } while (0)
297
298                 COPY_MASK_MEMBER(XCB_CONFIG_WINDOW_X, x);
299                 COPY_MASK_MEMBER(XCB_CONFIG_WINDOW_Y, y);
300                 COPY_MASK_MEMBER(XCB_CONFIG_WINDOW_WIDTH, width);
301                 COPY_MASK_MEMBER(XCB_CONFIG_WINDOW_HEIGHT, height);
302                 COPY_MASK_MEMBER(XCB_CONFIG_WINDOW_BORDER_WIDTH, border_width);
303                 COPY_MASK_MEMBER(XCB_CONFIG_WINDOW_SIBLING, sibling);
304                 COPY_MASK_MEMBER(XCB_CONFIG_WINDOW_STACK_MODE, stack_mode);
305
306                 xcb_configure_window(conn, event->window, mask, values);
307                 xcb_flush(conn);
308
309                 return 1;
310         }
311
312         if (client->fullscreen) {
313                 DLOG("Client is in fullscreen mode\n");
314
315                 Rect child_rect = client->workspace->rect;
316                 child_rect.x = child_rect.y = 0;
317                 fake_configure_notify(conn, child_rect, client->child);
318
319                 return 1;
320         }
321
322         /* Floating clients can be reconfigured */
323         if (client_is_floating(client)) {
324                 i3Font *font = load_font(conn, config.font);
325                 int mode = (client->container != NULL ? client->container->mode : MODE_DEFAULT);
326                 /* TODO: refactor this code. we need a function to translate
327                  * coordinates of child_rect/rect. */
328
329                 if (event->value_mask & XCB_CONFIG_WINDOW_X) {
330                         if (mode == MODE_STACK || mode == MODE_TABBED) {
331                                 client->rect.x = event->x - 2;
332                         } else {
333                                 if (client->titlebar_position == TITLEBAR_OFF && client->borderless)
334                                         client->rect.x = event->x;
335                                 else if (client->titlebar_position == TITLEBAR_OFF && !client->borderless)
336                                         client->rect.x = event->x - 1;
337                                 else client->rect.x = event->x - 2;
338                         }
339                 }
340                 if (event->value_mask & XCB_CONFIG_WINDOW_Y) {
341                         if (mode == MODE_STACK || mode == MODE_TABBED) {
342                                 client->rect.y = event->y - 2;
343                         } else {
344                                 if (client->titlebar_position == TITLEBAR_OFF && client->borderless)
345                                         client->rect.y = event->y;
346                                 else if (client->titlebar_position == TITLEBAR_OFF && !client->borderless)
347                                         client->rect.y = event->y - 1;
348                                 else client->rect.y = event->y - font->height - 2 - 2;
349                         }
350                 }
351                 if (event->value_mask & XCB_CONFIG_WINDOW_WIDTH) {
352                         if (mode == MODE_STACK || mode == MODE_TABBED) {
353                                 client->rect.width = event->width + 2 + 2;
354                         } else {
355                                 if (client->titlebar_position == TITLEBAR_OFF && client->borderless)
356                                         client->rect.width = event->width;
357                                 else if (client->titlebar_position == TITLEBAR_OFF && !client->borderless)
358                                         client->rect.width = event->width + (1 + 1);
359                                 else client->rect.width = event->width + (2 + 2);
360                         }
361                 }
362                 if (event->value_mask & XCB_CONFIG_WINDOW_HEIGHT) {
363                         if (mode == MODE_STACK || mode == MODE_TABBED) {
364                                 client->rect.height = event->height + 2;
365                         } else {
366                                 if (client->titlebar_position == TITLEBAR_OFF && client->borderless)
367                                         client->rect.height = event->height;
368                                 else if (client->titlebar_position == TITLEBAR_OFF && !client->borderless)
369                                         client->rect.height = event->height + (1 + 1);
370                                 else client->rect.height = event->height + (font->height + 2 + 2) + 2;
371                         }
372                 }
373
374                 DLOG("Accepted new position/size for floating client: (%d, %d) size %d x %d\n",
375                     client->rect.x, client->rect.y, client->rect.width, client->rect.height);
376
377                 /* Push the new position/size to X11 */
378                 reposition_client(conn, client);
379                 resize_client(conn, client);
380                 xcb_flush(conn);
381
382                 return 1;
383         }
384
385         /* Dock clients can be reconfigured in their height */
386         if (client->dock) {
387                 DLOG("Reconfiguring height of this dock client\n");
388
389                 if (!(event->value_mask & XCB_CONFIG_WINDOW_HEIGHT)) {
390                         DLOG("Ignoring configure request, no height given\n");
391                         return 1;
392                 }
393
394                 client->desired_height = event->height;
395                 render_workspace(conn, c_ws->output, c_ws);
396                 xcb_flush(conn);
397
398                 return 1;
399         }
400
401         if (client->fullscreen) {
402                 DLOG("Client is in fullscreen mode\n");
403
404                 Rect child_rect = client->container->workspace->rect;
405                 child_rect.x = child_rect.y = 0;
406                 fake_configure_notify(conn, child_rect, client->child);
407
408                 return 1;
409         }
410
411         fake_absolute_configure_notify(conn, client);
412
413         return 1;
414 }
415
416 /*
417  * Configuration notifies are only handled because we need to set up ignore for
418  * the following enter notify events.
419  *
420  */
421 int handle_configure_event(void *prophs, xcb_connection_t *conn, xcb_configure_notify_event_t *event) {
422         /* We ignore this sequence twice because events for child and frame should be ignored */
423         add_ignore_event(event->sequence);
424         add_ignore_event(event->sequence);
425
426         return 1;
427 }
428
429 /*
430  * Gets triggered upon a RandR screen change event, that is when the user
431  * changes the screen configuration in any way (mode, position, …)
432  *
433  */
434 int handle_screen_change(void *prophs, xcb_connection_t *conn,
435                          xcb_generic_event_t *e) {
436         DLOG("RandR screen change\n");
437
438         randr_query_outputs(conn);
439
440         ipc_send_event("output", I3_IPC_EVENT_OUTPUT, "{\"change\":\"unspecified\"}");
441
442         return 1;
443 }
444 #endif
445
446 /*
447  * Our window decorations were unmapped. That means, the window will be killed
448  * now, so we better clean up before.
449  *
450  */
451 int handle_unmap_notify_event(void *data, xcb_connection_t *conn, xcb_unmap_notify_event_t *event) {
452
453     /* we need to ignore EnterNotify events which will be generated because a
454      * different window is visible now */
455     add_ignore_event(event->sequence);
456
457     DLOG("UnmapNotify for 0x%08x (received from 0x%08x), serial %d\n", event->window, event->event, event->sequence);
458     Con *con = con_by_window_id(event->window);
459     if (con == NULL) {
460         LOG("Not a managed window, ignoring\n");
461         return 1;
462     }
463
464     tree_close(con);
465     tree_render();
466     x_push_changes(croot);
467     return 1;
468
469 #if 0
470         if (client == NULL) {
471                 DLOG("not a managed window. Ignoring.\n");
472
473                 /* This was most likely the destroyed frame of a client which is
474                  * currently being unmapped, so we add this sequence (again!) to
475                  * the ignore list (enter_notify events will get sent for both,
476                  * the child and its frame). */
477                 add_ignore_event(event->sequence);
478
479                 return 0;
480         }
481 #endif
482
483
484 #if 0
485         /* Let’s see how many clients there are left on the workspace to delete it if it’s empty */
486         bool workspace_empty = SLIST_EMPTY(&(client->workspace->focus_stack));
487         bool workspace_focused = (c_ws == client->workspace);
488         Client *to_focus = (!workspace_empty ? SLIST_FIRST(&(client->workspace->focus_stack)) : NULL);
489
490         /* If this workspace is currently visible, we don’t delete it */
491         if (workspace_is_visible(client->workspace))
492                 workspace_empty = false;
493
494         if (workspace_empty) {
495                 client->workspace->output = NULL;
496                 ipc_send_event("workspace", I3_IPC_EVENT_WORKSPACE, "{\"change\":\"empty\"}");
497         }
498
499         /* Remove the urgency flag if set */
500         client->urgent = false;
501         workspace_update_urgent_flag(client->workspace);
502
503         render_layout(conn);
504 #endif
505
506         return 1;
507 }
508
509 #if 0
510 /*
511  * A destroy notify event is sent when the window is not unmapped, but
512  * immediately destroyed (for example when starting a window and immediately
513  * killing the program which started it).
514  *
515  * We just pass on the event to the unmap notify handler (by copying the
516  * important fields in the event data structure).
517  *
518  */
519 int handle_destroy_notify_event(void *data, xcb_connection_t *conn, xcb_destroy_notify_event_t *event) {
520         DLOG("destroy notify for 0x%08x, 0x%08x\n", event->event, event->window);
521
522         xcb_unmap_notify_event_t unmap;
523         unmap.sequence = event->sequence;
524         unmap.event = event->event;
525         unmap.window = event->window;
526
527         return handle_unmap_notify_event(NULL, conn, &unmap);
528 }
529 #endif
530 /*
531  * Called when a window changes its title
532  *
533  */
534 int handle_windowname_change(void *data, xcb_connection_t *conn, uint8_t state,
535                                 xcb_window_t window, xcb_atom_t atom, xcb_get_property_reply_t *prop) {
536     Con *con;
537     if ((con = con_by_window_id(window)) == NULL || con->window == NULL)
538         return 1;
539
540     window_update_name(con->window, prop);
541
542     x_push_changes(croot);
543
544     return 1;
545 }
546
547 /*
548  * Handles legacy window name updates (WM_NAME), see also src/window.c,
549  * window_update_name_legacy().
550  *
551  */
552 int handle_windowname_change_legacy(void *data, xcb_connection_t *conn, uint8_t state,
553                                 xcb_window_t window, xcb_atom_t atom, xcb_get_property_reply_t *prop) {
554     Con *con;
555     if ((con = con_by_window_id(window)) == NULL || con->window == NULL)
556         return 1;
557
558     window_update_name_legacy(con->window, prop);
559
560     x_push_changes(croot);
561
562     return 1;
563 }
564
565 /*
566  * Updates the client’s WM_CLASS property
567  *
568  */
569 int handle_windowclass_change(void *data, xcb_connection_t *conn, uint8_t state,
570                              xcb_window_t window, xcb_atom_t atom, xcb_get_property_reply_t *prop) {
571     Con *con;
572     if ((con = con_by_window_id(window)) == NULL || con->window == NULL)
573         return 1;
574
575     window_update_class(con->window, prop);
576
577     return 0;
578 }
579
580 /*
581  * Expose event means we should redraw our windows (= title bar)
582  *
583  */
584 int handle_expose_event(void *data, xcb_connection_t *conn, xcb_expose_event_t *event) {
585     Con *parent, *con;
586
587     /* event->count is the number of minimum remaining expose events for this
588      * window, so we skip all events but the last one */
589     if (event->count != 0)
590         return 1;
591
592     DLOG("window = %08x\n", event->window);
593
594     if ((parent = con_by_frame_id(event->window)) == NULL) {
595         LOG("expose event for unknown window, ignoring\n");
596         return 1;
597     }
598
599     TAILQ_FOREACH(con, &(parent->nodes_head), nodes) {
600         LOG("expose for con %p / %s\n", con, con->name);
601         if (con->window)
602             x_draw_decoration(con);
603     }
604     xcb_flush(conn);
605
606     return 1;
607
608 #if 0
609     else {
610             uint32_t background_color;
611             if (client->urgent)
612                     background_color = config.client.urgent.background;
613             /* Distinguish if the window is currently focused… */
614             else if (CUR_CELL != NULL && CUR_CELL->currently_focused == client)
615                     background_color = config.client.focused.background;
616             /* …or if it is the focused window in a not focused container */
617             else background_color = config.client.focused_inactive.background;
618
619             /* Set foreground color to current focused color, line width to 2 */
620             uint32_t values[] = {background_color, 2};
621             xcb_change_gc(conn, client->titlegc, XCB_GC_FOREGROUND | XCB_GC_LINE_WIDTH, values);
622
623             /* Draw the border, the ±1 is for line width = 2 */
624             xcb_point_t points[] = {{1, 0},                                           /* left upper edge */
625                                     {1, client->rect.height-1},                       /* left bottom edge */
626                                     {client->rect.width-1, client->rect.height-1},    /* right bottom edge */
627                                     {client->rect.width-1, 0}};                       /* right upper edge */
628             xcb_poly_line(conn, XCB_COORD_MODE_ORIGIN, client->frame, client->titlegc, 4, points);
629
630             /* Draw a black background */
631             xcb_change_gc_single(conn, client->titlegc, XCB_GC_FOREGROUND, get_colorpixel(conn, "#000000"));
632             if (client->titlebar_position == TITLEBAR_OFF && !client->borderless) {
633                     xcb_rectangle_t crect = {1, 0, client->rect.width - (1 + 1), client->rect.height - 1};
634                     xcb_poly_fill_rectangle(conn, client->frame, client->titlegc, 1, &crect);
635             } else {
636                     xcb_rectangle_t crect = {2, 0, client->rect.width - (2 + 2), client->rect.height - 2};
637                     xcb_poly_fill_rectangle(conn, client->frame, client->titlegc, 1, &crect);
638             }
639     }
640     xcb_flush(conn);
641     return 1;
642 #endif
643 }
644
645 /*
646  * Handle client messages (EWMH)
647  *
648  */
649 int handle_client_message(void *data, xcb_connection_t *conn, xcb_client_message_event_t *event) {
650     LOG("ClientMessage for window 0x%08x\n", event->window);
651     if (event->type == atoms[_NET_WM_STATE]) {
652         if (event->format != 32 || event->data.data32[1] != atoms[_NET_WM_STATE_FULLSCREEN])
653             return 0;
654
655         Con *con = con_by_window_id(event->window);
656         if (con == NULL)
657             return 0;
658
659         /* Check if the fullscreen state should be toggled */
660         if ((con->fullscreen_mode != CF_NONE &&
661              (event->data.data32[0] == _NET_WM_STATE_REMOVE ||
662               event->data.data32[0] == _NET_WM_STATE_TOGGLE)) ||
663             (con->fullscreen_mode == CF_NONE &&
664              (event->data.data32[0] == _NET_WM_STATE_ADD ||
665               event->data.data32[0] == _NET_WM_STATE_TOGGLE)))
666                 con_toggle_fullscreen(con);
667
668         tree_render();
669         x_push_changes(croot);
670     } else {
671         ELOG("unhandled clientmessage\n");
672         return 0;
673     }
674
675     return 1;
676 }
677
678 #if 0
679 int handle_window_type(void *data, xcb_connection_t *conn, uint8_t state, xcb_window_t window,
680                         xcb_atom_t atom, xcb_get_property_reply_t *property) {
681         /* TODO: Implement this one. To do this, implement a little test program which sleep(1)s
682          before changing this property. */
683         ELOG("_NET_WM_WINDOW_TYPE changed, this is not yet implemented.\n");
684         return 0;
685 }
686
687 /*
688  * Handles the size hints set by a window, but currently only the part necessary for displaying
689  * clients proportionally inside their frames (mplayer for example)
690  *
691  * See ICCCM 4.1.2.3 for more details
692  *
693  */
694 int handle_normal_hints(void *data, xcb_connection_t *conn, uint8_t state, xcb_window_t window,
695                         xcb_atom_t name, xcb_get_property_reply_t *reply) {
696         Client *client = table_get(&by_child, window);
697         if (client == NULL) {
698                 DLOG("Received WM_SIZE_HINTS for unknown client\n");
699                 return 1;
700         }
701         xcb_size_hints_t size_hints;
702
703         CLIENT_LOG(client);
704
705         /* If the hints were already in this event, use them, if not, request them */
706         if (reply != NULL)
707                 xcb_get_wm_size_hints_from_reply(&size_hints, reply);
708         else
709                 xcb_get_wm_normal_hints_reply(conn, xcb_get_wm_normal_hints_unchecked(conn, client->child), &size_hints, NULL);
710
711         if ((size_hints.flags & XCB_SIZE_HINT_P_MIN_SIZE)) {
712                 // TODO: Minimum size is not yet implemented
713                 DLOG("Minimum size: %d (width) x %d (height)\n", size_hints.min_width, size_hints.min_height);
714         }
715
716         bool changed = false;
717         if ((size_hints.flags & XCB_SIZE_HINT_P_RESIZE_INC)) {
718                 if (size_hints.width_inc > 0 && size_hints.width_inc < 0xFFFF)
719                         if (client->width_increment != size_hints.width_inc) {
720                                 client->width_increment = size_hints.width_inc;
721                                 changed = true;
722                         }
723                 if (size_hints.height_inc > 0 && size_hints.height_inc < 0xFFFF)
724                         if (client->height_increment != size_hints.height_inc) {
725                                 client->height_increment = size_hints.height_inc;
726                                 changed = true;
727                         }
728
729                 if (changed)
730                         DLOG("resize increments changed\n");
731         }
732
733         int base_width = 0, base_height = 0;
734
735         /* base_width/height are the desired size of the window.
736            We check if either the program-specified size or the program-specified
737            min-size is available */
738         if (size_hints.flags & XCB_SIZE_HINT_BASE_SIZE) {
739                 base_width = size_hints.base_width;
740                 base_height = size_hints.base_height;
741         } else if (size_hints.flags & XCB_SIZE_HINT_P_MIN_SIZE) {
742                 /* TODO: is this right? icccm says not */
743                 base_width = size_hints.min_width;
744                 base_height = size_hints.min_height;
745         }
746
747         if (base_width != client->base_width ||
748             base_height != client->base_height) {
749                 client->base_width = base_width;
750                 client->base_height = base_height;
751                 DLOG("client's base_height changed to %d\n", base_height);
752                 DLOG("client's base_width changed to %d\n", base_width);
753                 changed = true;
754         }
755
756         if (changed) {
757                 if (client->fullscreen)
758                         DLOG("Not resizing client, it is in fullscreen mode\n");
759                 else {
760                         resize_client(conn, client);
761                         xcb_flush(conn);
762                 }
763         }
764
765         /* If no aspect ratio was set or if it was invalid, we ignore the hints */
766         if (!(size_hints.flags & XCB_SIZE_HINT_P_ASPECT) ||
767             (size_hints.min_aspect_num <= 0) ||
768             (size_hints.min_aspect_den <= 0)) {
769                 return 1;
770         }
771
772         double width = client->rect.width - base_width;
773         double height = client->rect.height - base_height;
774         /* Convert numerator/denominator to a double */
775         double min_aspect = (double)size_hints.min_aspect_num / size_hints.min_aspect_den;
776         double max_aspect = (double)size_hints.max_aspect_num / size_hints.min_aspect_den;
777
778         DLOG("Aspect ratio set: minimum %f, maximum %f\n", min_aspect, max_aspect);
779         DLOG("width = %f, height = %f\n", width, height);
780
781         /* Sanity checks, this is user-input, in a way */
782         if (max_aspect <= 0 || min_aspect <= 0 || height == 0 || (width / height) <= 0)
783                 return 1;
784
785         /* Check if we need to set proportional_* variables using the correct ratio */
786         if ((width / height) < min_aspect) {
787                 client->proportional_width = width;
788                 client->proportional_height = width / min_aspect;
789         } else if ((width / height) > max_aspect) {
790                 client->proportional_width = width;
791                 client->proportional_height = width / max_aspect;
792         } else return 1;
793
794         client->force_reconfigure = true;
795
796         if (client->container != NULL) {
797                 render_container(conn, client->container);
798                 xcb_flush(conn);
799         }
800
801         return 1;
802 }
803
804 /*
805  * Handles the WM_HINTS property for extracting the urgency state of the window.
806  *
807  */
808 int handle_hints(void *data, xcb_connection_t *conn, uint8_t state, xcb_window_t window,
809                   xcb_atom_t name, xcb_get_property_reply_t *reply) {
810         Client *client = table_get(&by_child, window);
811         if (client == NULL) {
812                 DLOG("Received WM_HINTS for unknown client\n");
813                 return 1;
814         }
815         xcb_wm_hints_t hints;
816
817         if (reply != NULL) {
818                 if (!xcb_get_wm_hints_from_reply(&hints, reply))
819                         return 1;
820         } else {
821                 if (!xcb_get_wm_hints_reply(conn, xcb_get_wm_hints_unchecked(conn, client->child), &hints, NULL))
822                         return 1;
823         }
824
825         Client *last_focused = SLIST_FIRST(&(c_ws->focus_stack));
826         if (!client->urgent && client == last_focused) {
827                 DLOG("Ignoring urgency flag for current client\n");
828                 return 1;
829         }
830
831         /* Update the flag on the client directly */
832         client->urgent = (xcb_wm_hints_get_urgency(&hints) != 0);
833         CLIENT_LOG(client);
834         LOG("Urgency flag changed to %d\n", client->urgent);
835
836         workspace_update_urgent_flag(client->workspace);
837         redecorate_window(conn, client);
838
839         /* If the workspace this client is on is not visible, we need to redraw
840          * the workspace bar */
841         if (!workspace_is_visible(client->workspace)) {
842                 Output *output = client->workspace->output;
843                 render_workspace(conn, output, output->current_workspace);
844                 xcb_flush(conn);
845         }
846
847         return 1;
848 }
849
850 /*
851  * Handles the transient for hints set by a window, signalizing that this window is a popup window
852  * for some other window.
853  *
854  * See ICCCM 4.1.2.6 for more details
855  *
856  */
857 int handle_transient_for(void *data, xcb_connection_t *conn, uint8_t state, xcb_window_t window,
858                          xcb_atom_t name, xcb_get_property_reply_t *reply) {
859         Client *client = table_get(&by_child, window);
860         if (client == NULL) {
861                 DLOG("No such client\n");
862                 return 1;
863         }
864
865         xcb_window_t transient_for;
866
867         if (reply != NULL) {
868                 if (!xcb_get_wm_transient_for_from_reply(&transient_for, reply))
869                         return 1;
870         } else {
871                 if (!xcb_get_wm_transient_for_reply(conn, xcb_get_wm_transient_for_unchecked(conn, window),
872                                                     &transient_for, NULL))
873                         return 1;
874         }
875
876         if (client->floating == FLOATING_AUTO_OFF) {
877                 DLOG("This is a popup window, putting into floating\n");
878                 toggle_floating_mode(conn, client, true);
879         }
880
881         return 1;
882 }
883
884 /*
885  * Handles changes of the WM_CLIENT_LEADER atom which specifies if this is a
886  * toolwindow (or similar) and to which window it belongs (logical parent).
887  *
888  */
889 int handle_clientleader_change(void *data, xcb_connection_t *conn, uint8_t state, xcb_window_t window,
890                         xcb_atom_t name, xcb_get_property_reply_t *prop) {
891         if (prop == NULL) {
892                 prop = xcb_get_property_reply(conn, xcb_get_property_unchecked(conn,
893                                         false, window, WM_CLIENT_LEADER, WINDOW, 0, 32), NULL);
894                 if (prop == NULL)
895                         return 1;
896         }
897
898         Client *client = table_get(&by_child, window);
899         if (client == NULL)
900                 return 1;
901
902         xcb_window_t *leader = xcb_get_property_value(prop);
903         if (leader == NULL)
904                 return 1;
905
906         DLOG("Client leader changed to %08x\n", *leader);
907
908         client->leader = *leader;
909
910         return 1;
911 }
912 #endif