]> git.sur5r.net Git - i3/i3/blob - src/handlers.c
push X11 changes after a window is mapped
[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     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     /* we need to ignore EnterNotify events which will be generated because a
455      * different window is visible now */
456     add_ignore_event(event->sequence);
457
458     DLOG("UnmapNotify for 0x%08x (received from 0x%08x), serial %d\n", event->window, event->event, event->sequence);
459     Con *con = con_by_window_id(event->window);
460     if (con == NULL) {
461         LOG("Not a managed window, ignoring\n");
462         return 1;
463     }
464
465     tree_close(con);
466     tree_render();
467     x_push_changes(croot);
468     return 1;
469
470 #if 0
471         if (client == NULL) {
472                 DLOG("not a managed window. Ignoring.\n");
473
474                 /* This was most likely the destroyed frame of a client which is
475                  * currently being unmapped, so we add this sequence (again!) to
476                  * the ignore list (enter_notify events will get sent for both,
477                  * the child and its frame). */
478                 add_ignore_event(event->sequence);
479
480                 return 0;
481         }
482 #endif
483
484
485 #if 0
486         /* Let’s see how many clients there are left on the workspace to delete it if it’s empty */
487         bool workspace_empty = SLIST_EMPTY(&(client->workspace->focus_stack));
488         bool workspace_focused = (c_ws == client->workspace);
489         Client *to_focus = (!workspace_empty ? SLIST_FIRST(&(client->workspace->focus_stack)) : NULL);
490
491         /* If this workspace is currently visible, we don’t delete it */
492         if (workspace_is_visible(client->workspace))
493                 workspace_empty = false;
494
495         if (workspace_empty) {
496                 client->workspace->output = NULL;
497                 ipc_send_event("workspace", I3_IPC_EVENT_WORKSPACE, "{\"change\":\"empty\"}");
498         }
499
500         /* Remove the urgency flag if set */
501         client->urgent = false;
502         workspace_update_urgent_flag(client->workspace);
503
504         render_layout(conn);
505 #endif
506
507         return 1;
508 }
509
510 #if 0
511 /*
512  * A destroy notify event is sent when the window is not unmapped, but
513  * immediately destroyed (for example when starting a window and immediately
514  * killing the program which started it).
515  *
516  * We just pass on the event to the unmap notify handler (by copying the
517  * important fields in the event data structure).
518  *
519  */
520 int handle_destroy_notify_event(void *data, xcb_connection_t *conn, xcb_destroy_notify_event_t *event) {
521         DLOG("destroy notify for 0x%08x, 0x%08x\n", event->event, event->window);
522
523         xcb_unmap_notify_event_t unmap;
524         unmap.sequence = event->sequence;
525         unmap.event = event->event;
526         unmap.window = event->window;
527
528         return handle_unmap_notify_event(NULL, conn, &unmap);
529 }
530 #endif
531 /*
532  * Called when a window changes its title
533  *
534  */
535 int handle_windowname_change(void *data, xcb_connection_t *conn, uint8_t state,
536                                 xcb_window_t window, xcb_atom_t atom, xcb_get_property_reply_t *prop) {
537     Con *con;
538     if ((con = con_by_window_id(window)) == NULL || con->window == NULL)
539         return 1;
540
541     window_update_name(con->window, prop);
542
543     x_push_changes(croot);
544
545     return 1;
546 }
547
548 /*
549  * Handles legacy window name updates (WM_NAME), see also src/window.c,
550  * window_update_name_legacy().
551  *
552  */
553 int handle_windowname_change_legacy(void *data, xcb_connection_t *conn, uint8_t state,
554                                 xcb_window_t window, xcb_atom_t atom, xcb_get_property_reply_t *prop) {
555     Con *con;
556     if ((con = con_by_window_id(window)) == NULL || con->window == NULL)
557         return 1;
558
559     window_update_name_legacy(con->window, prop);
560
561     x_push_changes(croot);
562
563     return 1;
564 }
565
566 /*
567  * Updates the client’s WM_CLASS property
568  *
569  */
570 int handle_windowclass_change(void *data, xcb_connection_t *conn, uint8_t state,
571                              xcb_window_t window, xcb_atom_t atom, xcb_get_property_reply_t *prop) {
572     Con *con;
573     if ((con = con_by_window_id(window)) == NULL || con->window == NULL)
574         return 1;
575
576     window_update_class(con->window, prop);
577
578     return 0;
579 }
580
581 /*
582  * Expose event means we should redraw our windows (= title bar)
583  *
584  */
585 int handle_expose_event(void *data, xcb_connection_t *conn, xcb_expose_event_t *event) {
586     Con *parent, *con;
587
588     /* event->count is the number of minimum remaining expose events for this
589      * window, so we skip all events but the last one */
590     if (event->count != 0)
591         return 1;
592
593     DLOG("window = %08x\n", event->window);
594
595     if ((parent = con_by_frame_id(event->window)) == NULL) {
596         LOG("expose event for unknown window, ignoring\n");
597         return 1;
598     }
599
600     TAILQ_FOREACH(con, &(parent->nodes_head), nodes) {
601         LOG("expose for con %p / %s\n", con, con->name);
602         if (con->window)
603             x_draw_decoration(con);
604     }
605     xcb_flush(conn);
606
607     return 1;
608
609 #if 0
610     else {
611             uint32_t background_color;
612             if (client->urgent)
613                     background_color = config.client.urgent.background;
614             /* Distinguish if the window is currently focused… */
615             else if (CUR_CELL != NULL && CUR_CELL->currently_focused == client)
616                     background_color = config.client.focused.background;
617             /* …or if it is the focused window in a not focused container */
618             else background_color = config.client.focused_inactive.background;
619
620             /* Set foreground color to current focused color, line width to 2 */
621             uint32_t values[] = {background_color, 2};
622             xcb_change_gc(conn, client->titlegc, XCB_GC_FOREGROUND | XCB_GC_LINE_WIDTH, values);
623
624             /* Draw the border, the ±1 is for line width = 2 */
625             xcb_point_t points[] = {{1, 0},                                           /* left upper edge */
626                                     {1, client->rect.height-1},                       /* left bottom edge */
627                                     {client->rect.width-1, client->rect.height-1},    /* right bottom edge */
628                                     {client->rect.width-1, 0}};                       /* right upper edge */
629             xcb_poly_line(conn, XCB_COORD_MODE_ORIGIN, client->frame, client->titlegc, 4, points);
630
631             /* Draw a black background */
632             xcb_change_gc_single(conn, client->titlegc, XCB_GC_FOREGROUND, get_colorpixel(conn, "#000000"));
633             if (client->titlebar_position == TITLEBAR_OFF && !client->borderless) {
634                     xcb_rectangle_t crect = {1, 0, client->rect.width - (1 + 1), client->rect.height - 1};
635                     xcb_poly_fill_rectangle(conn, client->frame, client->titlegc, 1, &crect);
636             } else {
637                     xcb_rectangle_t crect = {2, 0, client->rect.width - (2 + 2), client->rect.height - 2};
638                     xcb_poly_fill_rectangle(conn, client->frame, client->titlegc, 1, &crect);
639             }
640     }
641     xcb_flush(conn);
642     return 1;
643 #endif
644 }
645
646 /*
647  * Handle client messages (EWMH)
648  *
649  */
650 int handle_client_message(void *data, xcb_connection_t *conn, xcb_client_message_event_t *event) {
651     LOG("ClientMessage for window 0x%08x\n", event->window);
652     if (event->type == atoms[_NET_WM_STATE]) {
653         if (event->format != 32 || event->data.data32[1] != atoms[_NET_WM_STATE_FULLSCREEN])
654             return 0;
655
656         Con *con = con_by_window_id(event->window);
657         if (con == NULL)
658             return 0;
659
660         /* Check if the fullscreen state should be toggled */
661         if ((con->fullscreen_mode != CF_NONE &&
662              (event->data.data32[0] == _NET_WM_STATE_REMOVE ||
663               event->data.data32[0] == _NET_WM_STATE_TOGGLE)) ||
664             (con->fullscreen_mode == CF_NONE &&
665              (event->data.data32[0] == _NET_WM_STATE_ADD ||
666               event->data.data32[0] == _NET_WM_STATE_TOGGLE)))
667                 con_toggle_fullscreen(con);
668
669         tree_render();
670         x_push_changes(croot);
671     } else {
672         ELOG("unhandled clientmessage\n");
673         return 0;
674     }
675
676     return 1;
677 }
678
679 #if 0
680 int handle_window_type(void *data, xcb_connection_t *conn, uint8_t state, xcb_window_t window,
681                         xcb_atom_t atom, xcb_get_property_reply_t *property) {
682         /* TODO: Implement this one. To do this, implement a little test program which sleep(1)s
683          before changing this property. */
684         ELOG("_NET_WM_WINDOW_TYPE changed, this is not yet implemented.\n");
685         return 0;
686 }
687
688 /*
689  * Handles the size hints set by a window, but currently only the part necessary for displaying
690  * clients proportionally inside their frames (mplayer for example)
691  *
692  * See ICCCM 4.1.2.3 for more details
693  *
694  */
695 int handle_normal_hints(void *data, xcb_connection_t *conn, uint8_t state, xcb_window_t window,
696                         xcb_atom_t name, xcb_get_property_reply_t *reply) {
697         Client *client = table_get(&by_child, window);
698         if (client == NULL) {
699                 DLOG("Received WM_SIZE_HINTS for unknown client\n");
700                 return 1;
701         }
702         xcb_size_hints_t size_hints;
703
704         CLIENT_LOG(client);
705
706         /* If the hints were already in this event, use them, if not, request them */
707         if (reply != NULL)
708                 xcb_get_wm_size_hints_from_reply(&size_hints, reply);
709         else
710                 xcb_get_wm_normal_hints_reply(conn, xcb_get_wm_normal_hints_unchecked(conn, client->child), &size_hints, NULL);
711
712         if ((size_hints.flags & XCB_SIZE_HINT_P_MIN_SIZE)) {
713                 // TODO: Minimum size is not yet implemented
714                 DLOG("Minimum size: %d (width) x %d (height)\n", size_hints.min_width, size_hints.min_height);
715         }
716
717         bool changed = false;
718         if ((size_hints.flags & XCB_SIZE_HINT_P_RESIZE_INC)) {
719                 if (size_hints.width_inc > 0 && size_hints.width_inc < 0xFFFF)
720                         if (client->width_increment != size_hints.width_inc) {
721                                 client->width_increment = size_hints.width_inc;
722                                 changed = true;
723                         }
724                 if (size_hints.height_inc > 0 && size_hints.height_inc < 0xFFFF)
725                         if (client->height_increment != size_hints.height_inc) {
726                                 client->height_increment = size_hints.height_inc;
727                                 changed = true;
728                         }
729
730                 if (changed)
731                         DLOG("resize increments changed\n");
732         }
733
734         int base_width = 0, base_height = 0;
735
736         /* base_width/height are the desired size of the window.
737            We check if either the program-specified size or the program-specified
738            min-size is available */
739         if (size_hints.flags & XCB_SIZE_HINT_BASE_SIZE) {
740                 base_width = size_hints.base_width;
741                 base_height = size_hints.base_height;
742         } else if (size_hints.flags & XCB_SIZE_HINT_P_MIN_SIZE) {
743                 /* TODO: is this right? icccm says not */
744                 base_width = size_hints.min_width;
745                 base_height = size_hints.min_height;
746         }
747
748         if (base_width != client->base_width ||
749             base_height != client->base_height) {
750                 client->base_width = base_width;
751                 client->base_height = base_height;
752                 DLOG("client's base_height changed to %d\n", base_height);
753                 DLOG("client's base_width changed to %d\n", base_width);
754                 changed = true;
755         }
756
757         if (changed) {
758                 if (client->fullscreen)
759                         DLOG("Not resizing client, it is in fullscreen mode\n");
760                 else {
761                         resize_client(conn, client);
762                         xcb_flush(conn);
763                 }
764         }
765
766         /* If no aspect ratio was set or if it was invalid, we ignore the hints */
767         if (!(size_hints.flags & XCB_SIZE_HINT_P_ASPECT) ||
768             (size_hints.min_aspect_num <= 0) ||
769             (size_hints.min_aspect_den <= 0)) {
770                 return 1;
771         }
772
773         double width = client->rect.width - base_width;
774         double height = client->rect.height - base_height;
775         /* Convert numerator/denominator to a double */
776         double min_aspect = (double)size_hints.min_aspect_num / size_hints.min_aspect_den;
777         double max_aspect = (double)size_hints.max_aspect_num / size_hints.min_aspect_den;
778
779         DLOG("Aspect ratio set: minimum %f, maximum %f\n", min_aspect, max_aspect);
780         DLOG("width = %f, height = %f\n", width, height);
781
782         /* Sanity checks, this is user-input, in a way */
783         if (max_aspect <= 0 || min_aspect <= 0 || height == 0 || (width / height) <= 0)
784                 return 1;
785
786         /* Check if we need to set proportional_* variables using the correct ratio */
787         if ((width / height) < min_aspect) {
788                 client->proportional_width = width;
789                 client->proportional_height = width / min_aspect;
790         } else if ((width / height) > max_aspect) {
791                 client->proportional_width = width;
792                 client->proportional_height = width / max_aspect;
793         } else return 1;
794
795         client->force_reconfigure = true;
796
797         if (client->container != NULL) {
798                 render_container(conn, client->container);
799                 xcb_flush(conn);
800         }
801
802         return 1;
803 }
804
805 /*
806  * Handles the WM_HINTS property for extracting the urgency state of the window.
807  *
808  */
809 int handle_hints(void *data, xcb_connection_t *conn, uint8_t state, xcb_window_t window,
810                   xcb_atom_t name, xcb_get_property_reply_t *reply) {
811         Client *client = table_get(&by_child, window);
812         if (client == NULL) {
813                 DLOG("Received WM_HINTS for unknown client\n");
814                 return 1;
815         }
816         xcb_wm_hints_t hints;
817
818         if (reply != NULL) {
819                 if (!xcb_get_wm_hints_from_reply(&hints, reply))
820                         return 1;
821         } else {
822                 if (!xcb_get_wm_hints_reply(conn, xcb_get_wm_hints_unchecked(conn, client->child), &hints, NULL))
823                         return 1;
824         }
825
826         Client *last_focused = SLIST_FIRST(&(c_ws->focus_stack));
827         if (!client->urgent && client == last_focused) {
828                 DLOG("Ignoring urgency flag for current client\n");
829                 return 1;
830         }
831
832         /* Update the flag on the client directly */
833         client->urgent = (xcb_wm_hints_get_urgency(&hints) != 0);
834         CLIENT_LOG(client);
835         LOG("Urgency flag changed to %d\n", client->urgent);
836
837         workspace_update_urgent_flag(client->workspace);
838         redecorate_window(conn, client);
839
840         /* If the workspace this client is on is not visible, we need to redraw
841          * the workspace bar */
842         if (!workspace_is_visible(client->workspace)) {
843                 Output *output = client->workspace->output;
844                 render_workspace(conn, output, output->current_workspace);
845                 xcb_flush(conn);
846         }
847
848         return 1;
849 }
850
851 /*
852  * Handles the transient for hints set by a window, signalizing that this window is a popup window
853  * for some other window.
854  *
855  * See ICCCM 4.1.2.6 for more details
856  *
857  */
858 int handle_transient_for(void *data, xcb_connection_t *conn, uint8_t state, xcb_window_t window,
859                          xcb_atom_t name, xcb_get_property_reply_t *reply) {
860         Client *client = table_get(&by_child, window);
861         if (client == NULL) {
862                 DLOG("No such client\n");
863                 return 1;
864         }
865
866         xcb_window_t transient_for;
867
868         if (reply != NULL) {
869                 if (!xcb_get_wm_transient_for_from_reply(&transient_for, reply))
870                         return 1;
871         } else {
872                 if (!xcb_get_wm_transient_for_reply(conn, xcb_get_wm_transient_for_unchecked(conn, window),
873                                                     &transient_for, NULL))
874                         return 1;
875         }
876
877         if (client->floating == FLOATING_AUTO_OFF) {
878                 DLOG("This is a popup window, putting into floating\n");
879                 toggle_floating_mode(conn, client, true);
880         }
881
882         return 1;
883 }
884
885 /*
886  * Handles changes of the WM_CLIENT_LEADER atom which specifies if this is a
887  * toolwindow (or similar) and to which window it belongs (logical parent).
888  *
889  */
890 int handle_clientleader_change(void *data, xcb_connection_t *conn, uint8_t state, xcb_window_t window,
891                         xcb_atom_t name, xcb_get_property_reply_t *prop) {
892         if (prop == NULL) {
893                 prop = xcb_get_property_reply(conn, xcb_get_property_unchecked(conn,
894                                         false, window, WM_CLIENT_LEADER, WINDOW, 0, 32), NULL);
895                 if (prop == NULL)
896                         return 1;
897         }
898
899         Client *client = table_get(&by_child, window);
900         if (client == NULL)
901                 return 1;
902
903         xcb_window_t *leader = xcb_get_property_value(prop);
904         if (leader == NULL)
905                 return 1;
906
907         DLOG("Client leader changed to %08x\n", *leader);
908
909         client->leader = *leader;
910
911         return 1;
912 }
913 #endif