]> git.lizzy.rs Git - bspwm.git/blob - events.c
97a6bd09ce0bb65dc4a425921a819c695e5991eb
[bspwm.git] / events.c
1 #include <stdio.h>
2 #include <stdlib.h>
3 #include <string.h>
4 #include <xcb/xcb.h>
5 #include <xcb/xcb_event.h>
6 #include <xcb/xcb_icccm.h>
7 #include "types.h"
8 #include "bspwm.h"
9 #include "settings.h"
10 #include "helpers.h"
11 #include "window.h"
12 #include "events.h"
13 #include "tree.h"
14 #include "rules.h"
15 #include "ewmh.h"
16
17 void handle_event(xcb_generic_event_t *evt)
18 {
19     switch (XCB_EVENT_RESPONSE_TYPE(evt)) {
20         case XCB_MAP_REQUEST:
21             map_request(evt);
22             break;
23         case XCB_DESTROY_NOTIFY:
24             destroy_notify(evt);
25             break;
26         case XCB_UNMAP_NOTIFY:
27             unmap_notify(evt);
28             break;
29         case XCB_CLIENT_MESSAGE:
30             client_message(evt);
31             break;
32         case XCB_CONFIGURE_REQUEST:
33             configure_request(evt);
34             break;
35         case XCB_PROPERTY_NOTIFY:
36             property_notify(evt);
37             break;
38         case XCB_ENTER_NOTIFY:
39             enter_notify(evt);
40             break;
41         case XCB_MOTION_NOTIFY:
42             motion_notify();
43             break;
44         default:
45             break;
46     }
47 }
48
49 void map_request(xcb_generic_event_t *evt)
50 {
51     xcb_map_request_event_t *e = (xcb_map_request_event_t *) evt;
52
53     PRINTF("map request %X\n", e->window);
54
55     manage_window(mon, mon->desk, e->window);
56 }
57
58 void configure_request(xcb_generic_event_t *evt)
59 {
60     xcb_configure_request_event_t *e = (xcb_configure_request_event_t *) evt;
61
62     PRINTF("configure request %X\n", e->window);
63
64     window_location_t loc;
65     bool is_managed = locate_window(e->window, &loc);
66
67     if (!is_managed || is_floating(loc.node->client)) {
68         uint16_t mask = 0;
69         uint32_t values[7];
70         unsigned short i = 0;
71
72         if (e->value_mask & XCB_CONFIG_WINDOW_X) {
73             mask |= XCB_CONFIG_WINDOW_X;
74             values[i++] = e->x;
75             if (is_managed)
76                 loc.node->client->floating_rectangle.x = e->x;
77         }
78
79         if (e->value_mask & XCB_CONFIG_WINDOW_Y) {
80             mask |= XCB_CONFIG_WINDOW_Y;
81             values[i++] = e->y;
82             if (is_managed)
83                 loc.node->client->floating_rectangle.y = e->y;
84         }
85
86         if (e->value_mask & XCB_CONFIG_WINDOW_WIDTH) {
87             mask |= XCB_CONFIG_WINDOW_WIDTH;
88             values[i++] = e->width;
89             if (is_managed)
90                 loc.node->client->floating_rectangle.width = e->width;
91         }
92
93         if (e->value_mask & XCB_CONFIG_WINDOW_HEIGHT) {
94             mask |= XCB_CONFIG_WINDOW_HEIGHT;
95             values[i++] = e->height;
96             if (is_managed)
97                 loc.node->client->floating_rectangle.height = e->height;
98         }
99
100         if (!is_managed && e->value_mask & XCB_CONFIG_WINDOW_BORDER_WIDTH) {
101             mask |= XCB_CONFIG_WINDOW_BORDER_WIDTH;
102             values[i++] = e->border_width;
103         }
104
105         if (e->value_mask & XCB_CONFIG_WINDOW_SIBLING) {
106             mask |= XCB_CONFIG_WINDOW_SIBLING;
107             values[i++] = e->sibling;
108         }
109
110         if (e->value_mask & XCB_CONFIG_WINDOW_STACK_MODE) {
111             mask |= XCB_CONFIG_WINDOW_STACK_MODE;
112             values[i++] = e->stack_mode;
113         }
114
115         xcb_configure_window(dpy, e->window, mask, values);
116         if (is_managed)
117             window_draw_border(loc.node, loc.node == loc.desktop->focus, loc.monitor == mon);
118     } else {
119         xcb_configure_notify_event_t evt;
120         xcb_rectangle_t rect;
121         unsigned int bw;
122         xcb_window_t win = loc.node->client->window;
123
124         if (is_tiled(loc.node->client)) {
125             rect = loc.node->client->tiled_rectangle;
126             bw = border_width;
127         } else {
128             rect = loc.monitor->rectangle;
129             bw = 0;
130         }
131
132         evt.response_type = XCB_CONFIGURE_NOTIFY;
133         evt.event = win;
134         evt.window = win;
135         evt.above_sibling = XCB_NONE;
136         evt.x = rect.x;
137         evt.y = rect.y;
138         evt.width = rect.width;
139         evt.height = rect.height;
140         evt.border_width = bw;
141         evt.override_redirect = false;
142
143         xcb_send_event(dpy, false, win, XCB_EVENT_MASK_STRUCTURE_NOTIFY, (const char *) &evt);
144     }
145 }
146
147 void destroy_notify(xcb_generic_event_t *evt)
148 {
149     xcb_destroy_notify_event_t *e = (xcb_destroy_notify_event_t *) evt;
150
151     PRINTF("destroy notify %X\n", e->window);
152
153     window_location_t loc;
154     if (locate_window(e->window, &loc)) {
155         remove_node(loc.desktop, loc.node);
156         arrange(loc.monitor, loc.desktop);
157     }
158 }
159
160 void unmap_notify(xcb_generic_event_t *evt)
161 {
162     xcb_unmap_notify_event_t *e = (xcb_unmap_notify_event_t *) evt;
163
164     PRINTF("unmap notify %X\n", e->window);
165
166     window_location_t loc;
167     if (locate_window(e->window, &loc)) {
168         remove_node(loc.desktop, loc.node);
169         arrange(loc.monitor, loc.desktop);
170     }
171 }
172
173 void property_notify(xcb_generic_event_t *evt)
174 {
175     xcb_property_notify_event_t *e = (xcb_property_notify_event_t *) evt;
176     xcb_icccm_wm_hints_t hints;
177
178     /* PRINTF("property notify %X\n", e->window); */
179
180     if (e->atom != XCB_ATOM_WM_HINTS)
181         return;
182
183     window_location_t loc;
184     if (locate_window(e->window, &loc)) {
185         if (xcb_icccm_get_wm_hints_reply(dpy, xcb_icccm_get_wm_hints(dpy, e->window), &hints, NULL) == 1) {
186             uint32_t urgent = xcb_icccm_wm_hints_get_urgency(&hints);
187             if (urgent != 0 && loc.node != mon->desk->focus) {
188                 loc.node->client->urgent = urgent;
189                 put_status();
190                 if (loc.monitor->desk == loc.desktop)
191                     arrange(loc.monitor, loc.desktop);
192             }
193         }
194     }
195 }
196
197 void client_message(xcb_generic_event_t *evt)
198 {
199     xcb_client_message_event_t *e = (xcb_client_message_event_t *) evt;
200
201     PRINTF("client message %X %u\n", e->window, e->type);
202
203     if (e->type == ewmh->_NET_CURRENT_DESKTOP) {
204         desktop_location_t loc;
205         if (ewmh_locate_desktop(e->data.data32[0], &loc)) {
206             select_monitor(loc.monitor);
207             select_desktop(loc.desktop);
208         }
209         return;
210     }
211
212     window_location_t loc;
213     if (!locate_window(e->window, &loc))
214         return;
215
216     if (e->type == ewmh->_NET_WM_STATE) {
217         handle_state(loc.monitor, loc.desktop, loc.node, e->data.data32[1], e->data.data32[0]);
218         handle_state(loc.monitor, loc.desktop, loc.node, e->data.data32[2], e->data.data32[0]);
219     } else if (e->type == ewmh->_NET_ACTIVE_WINDOW) {
220         if (loc.desktop->focus->client->fullscreen && loc.desktop->focus != loc.node)
221             toggle_fullscreen(loc.monitor, loc.desktop->focus->client);
222         select_monitor(loc.monitor);
223         select_desktop(loc.desktop);
224         focus_node(loc.monitor, loc.desktop, loc.node, true);
225         arrange(loc.monitor, loc.desktop);
226     }
227 }
228
229 void enter_notify(xcb_generic_event_t *evt)
230 {
231     xcb_enter_notify_event_t *e = (xcb_enter_notify_event_t *) evt;
232     xcb_window_t win = e->event;
233
234     PRINTF("enter notify %X %d %d\n", win, e->mode, e->detail);
235
236     if (e->mode != XCB_NOTIFY_MODE_NORMAL
237             || (mon->desk->focus != NULL && mon->desk->focus->client->window == win))
238         return;
239
240     enable_motion_recorder();
241 }
242
243 void motion_notify(void)
244 {
245     PUTS("motion notify");
246
247     disable_motion_recorder();
248
249     xcb_window_t win = XCB_NONE;
250     query_pointer(&win, NULL);
251     if (win != XCB_NONE)
252         window_focus(win);
253 }
254
255 void handle_state(monitor_t *m, desktop_t *d, node_t *n, xcb_atom_t state, unsigned int action)
256 {
257     if (state == ewmh->_NET_WM_STATE_FULLSCREEN) {
258         bool fs = n->client->fullscreen;
259         if (action == XCB_EWMH_WM_STATE_TOGGLE
260                 || (fs && action == XCB_EWMH_WM_STATE_REMOVE)
261                 || (!fs && action == XCB_EWMH_WM_STATE_ADD)) {
262             toggle_fullscreen(m, n->client);
263             arrange(m, d);
264         }
265     }
266 }
267
268 void grab_pointer(pointer_action_t pac)
269 {
270     PRINTF("grab pointer %u\n", pac);
271
272     xcb_window_t win = XCB_NONE;
273     xcb_point_t pos;
274
275     query_pointer(&win, &pos);
276
277     if (win == XCB_NONE)
278         return;
279
280     window_location_t loc;
281     if (locate_window(win, &loc)) {
282         client_t *c = NULL;
283         frozen_pointer->position = pos;
284         frozen_pointer->action = pac;
285         c = loc.node->client;
286         frozen_pointer->monitor = loc.monitor;
287         frozen_pointer->desktop = loc.desktop;
288         frozen_pointer->node = loc.node;
289         frozen_pointer->client = c;
290         frozen_pointer->window = c->window;
291         frozen_pointer->horizontal_fence = NULL;
292         frozen_pointer->vertical_fence = NULL;
293
294         switch (pac)  {
295             case ACTION_FOCUS:
296                 focus_node(loc.monitor, loc.desktop, loc.node, true);
297                 break;
298             case ACTION_MOVE:
299             case ACTION_RESIZE_SIDE:
300             case ACTION_RESIZE_CORNER:
301                 if (is_tiled(c)) {
302                     frozen_pointer->rectangle = c->tiled_rectangle;
303                     frozen_pointer->is_tiled = true;
304                 } else if (is_floating(c)) {
305                     frozen_pointer->rectangle = c->floating_rectangle;
306                     frozen_pointer->is_tiled = false;
307                 } else {
308                     frozen_pointer->action = ACTION_NONE;
309                     return;
310                 }
311                 if (pac == ACTION_RESIZE_SIDE) {
312                     float W = frozen_pointer->rectangle.width;
313                     float H = frozen_pointer->rectangle.height;
314                     float ratio = W / H;
315                     float x = pos.x - frozen_pointer->rectangle.x;
316                     float y = pos.y - frozen_pointer->rectangle.y;
317                     float diag_a = ratio * y;
318                     float diag_b = W - diag_a;
319                     if (x < diag_a) {
320                         if (x < diag_b)
321                             frozen_pointer->side = SIDE_LEFT;
322                         else
323                             frozen_pointer->side = SIDE_BOTTOM;
324                     } else {
325                         if (x < diag_b)
326                             frozen_pointer->side = SIDE_TOP;
327                         else
328                             frozen_pointer->side = SIDE_RIGHT;
329                     }
330                 } else if (pac == ACTION_RESIZE_CORNER) {
331                     int16_t mid_x = frozen_pointer->rectangle.x + (frozen_pointer->rectangle.width / 2);
332                     int16_t mid_y = frozen_pointer->rectangle.y + (frozen_pointer->rectangle.height / 2);
333                     if (pos.x > mid_x) {
334                         if (pos.y > mid_y)
335                             frozen_pointer->corner = CORNER_BOTTOM_RIGHT;
336                         else
337                             frozen_pointer->corner = CORNER_TOP_RIGHT;
338                     } else {
339                         if (pos.y > mid_y)
340                             frozen_pointer->corner = CORNER_BOTTOM_LEFT;
341                         else
342                             frozen_pointer->corner = CORNER_TOP_LEFT;
343                     }
344                 }
345                 if (frozen_pointer->is_tiled) {
346                     if (pac == ACTION_RESIZE_SIDE) {
347                         switch (frozen_pointer->side) {
348                             case SIDE_TOP:
349                                 frozen_pointer->horizontal_fence = find_fence(loc.node, DIR_UP);
350                                 break;
351                             case SIDE_RIGHT:
352                                 frozen_pointer->vertical_fence = find_fence(loc.node, DIR_RIGHT);
353                                 break;
354                             case SIDE_BOTTOM:
355                                 frozen_pointer->horizontal_fence = find_fence(loc.node, DIR_DOWN);
356                                 break;
357                             case SIDE_LEFT:
358                                 frozen_pointer->vertical_fence = find_fence(loc.node, DIR_LEFT);
359                                 break;
360                         }
361                     } else if (pac == ACTION_RESIZE_CORNER) {
362                         switch (frozen_pointer->corner) {
363                             case CORNER_TOP_LEFT:
364                                 frozen_pointer->horizontal_fence = find_fence(loc.node, DIR_UP);
365                                 frozen_pointer->vertical_fence = find_fence(loc.node, DIR_LEFT);
366                                 break;
367                             case CORNER_TOP_RIGHT:
368                                 frozen_pointer->horizontal_fence = find_fence(loc.node, DIR_UP);
369                                 frozen_pointer->vertical_fence = find_fence(loc.node, DIR_RIGHT);
370                                 break;
371                             case CORNER_BOTTOM_RIGHT:
372                                 frozen_pointer->horizontal_fence = find_fence(loc.node, DIR_DOWN);
373                                 frozen_pointer->vertical_fence = find_fence(loc.node, DIR_RIGHT);
374                                 break;
375                             case CORNER_BOTTOM_LEFT:
376                                 frozen_pointer->horizontal_fence = find_fence(loc.node, DIR_DOWN);
377                                 frozen_pointer->vertical_fence = find_fence(loc.node, DIR_LEFT);
378                                 break;
379                         }
380                     }
381                     if (frozen_pointer->horizontal_fence != NULL)
382                         frozen_pointer->horizontal_ratio = frozen_pointer->horizontal_fence->split_ratio;
383                     if (frozen_pointer->vertical_fence != NULL)
384                         frozen_pointer->vertical_ratio = frozen_pointer->vertical_fence->split_ratio;
385                 }
386                 break;
387             case ACTION_NONE:
388                 break;
389         }
390     } else {
391         frozen_pointer->action = ACTION_NONE;
392     }
393 }
394
395 void track_pointer(int root_x, int root_y)
396 {
397     if (frozen_pointer->action == ACTION_NONE)
398         return;
399
400     int16_t delta_x, delta_y, x, y, w, h;
401     uint16_t width, height;
402
403     pointer_action_t pac = frozen_pointer->action;
404     monitor_t *m = frozen_pointer->monitor;
405     desktop_t *d = frozen_pointer->desktop;
406     node_t *n = frozen_pointer->node;
407     client_t *c = frozen_pointer->client;
408     xcb_window_t win = frozen_pointer->window;
409     xcb_rectangle_t rect = frozen_pointer->rectangle;
410     node_t *vertical_fence = frozen_pointer->vertical_fence;
411     node_t *horizontal_fence = frozen_pointer->horizontal_fence;
412
413     x = y = 0;
414     w = h = 1;
415
416     delta_x = root_x - frozen_pointer->position.x;
417     delta_y = root_y - frozen_pointer->position.y;
418
419     switch (pac) {
420         case ACTION_MOVE:
421             if (frozen_pointer->is_tiled) {
422                 xcb_window_t pwin = XCB_NONE;
423                 query_pointer(&pwin, NULL);
424                 if (pwin != XCB_NONE) {
425                     window_location_t loc;
426                     if (locate_window(pwin, &loc) && is_tiled(loc.node->client)) {
427                         swap_nodes(d, n, loc.desktop, loc.node);
428                         arrange(m, d);
429                         if (m != loc.monitor) {
430                             arrange(loc.monitor, loc.desktop);
431                             frozen_pointer->monitor = loc.monitor;
432                             frozen_pointer->desktop = loc.desktop;
433                         }
434                     }
435                 }
436             } else {
437                 x = rect.x + delta_x;
438                 y = rect.y + delta_y;
439                 window_move(win, x, y);
440             }
441             break;
442         case ACTION_RESIZE_SIDE:
443         case ACTION_RESIZE_CORNER:
444             if (frozen_pointer->is_tiled) {
445                 if (vertical_fence != NULL) {
446                     double sr = frozen_pointer->vertical_ratio + (double) delta_x / vertical_fence->rectangle.width;
447                     sr = MAX(0, sr);
448                     sr = MIN(1, sr);
449                     vertical_fence->split_ratio = sr;
450                 }
451                 if (horizontal_fence != NULL) {
452                     double sr = frozen_pointer->horizontal_ratio + (double) delta_y / horizontal_fence->rectangle.height;
453                     sr = MAX(0, sr);
454                     sr = MIN(1, sr);
455                     horizontal_fence->split_ratio = sr;
456                 }
457                 arrange(mon, mon->desk);
458             } else {
459                 if (pac == ACTION_RESIZE_SIDE) {
460                     switch (frozen_pointer->side) {
461                         case SIDE_TOP:
462                             x = rect.x;
463                             y = rect.y + delta_y;
464                             w = rect.width;
465                             h = rect.height - delta_y;
466                             break;
467                         case SIDE_RIGHT:
468                             x = rect.x;
469                             y = rect.y;
470                             w = rect.width + delta_x;
471                             h = rect.height;
472                             break;
473                         case SIDE_BOTTOM:
474                             x = rect.x;
475                             y = rect.y;
476                             w = rect.width;
477                             h = rect.height + delta_y;
478                             break;
479                         case SIDE_LEFT:
480                             x = rect.x + delta_x;
481                             y = rect.y;
482                             w = rect.width - delta_x;
483                             h = rect.height;
484                             break;
485                     }
486                     width = MAX(1, w);
487                     height = MAX(1, h);
488                     window_move_resize(win, x, y, width, height);
489                     c->floating_rectangle = (xcb_rectangle_t) {x, y, width, height};
490                     window_draw_border(n, d->focus == n, mon == m);
491                 } else if (pac == ACTION_RESIZE_CORNER) {
492                     switch (frozen_pointer->corner) {
493                         case CORNER_TOP_LEFT:
494                             x = rect.x + delta_x;
495                             y = rect.y + delta_y;
496                             w = rect.width - delta_x;
497                             h = rect.height - delta_y;
498                             break;
499                         case CORNER_TOP_RIGHT:
500                             x = rect.x;
501                             y = rect.y + delta_y;
502                             w = rect.width + delta_x;
503                             h = rect.height - delta_y;
504                             break;
505                         case CORNER_BOTTOM_LEFT:
506                             x = rect.x + delta_x;
507                             y = rect.y;
508                             w = rect.width - delta_x;
509                             h = rect.height + delta_y;
510                             break;
511                         case CORNER_BOTTOM_RIGHT:
512                             x = rect.x;
513                             y = rect.y;
514                             w = rect.width + delta_x;
515                             h = rect.height + delta_y;
516                             break;
517                     }
518                     width = MAX(1, w);
519                     height = MAX(1, h);
520                     window_move_resize(win, x, y, width, height);
521                     c->floating_rectangle = (xcb_rectangle_t) {x, y, width, height};
522                     window_draw_border(n, d->focus == n, mon == m);
523                 }
524             }
525             break;
526         case ACTION_FOCUS:
527         case ACTION_NONE:
528             break;
529     }
530 }
531
532 void ungrab_pointer(void)
533 {
534     PUTS("ungrab pointer");
535
536     if (frozen_pointer->action == ACTION_NONE)
537         return;
538
539     if (is_floating(frozen_pointer->client))
540         update_floating_rectangle(frozen_pointer->client);
541     monitor_t *m = underlying_monitor(frozen_pointer->client);
542     if (m != NULL && m != frozen_pointer->monitor) {
543         transfer_node(frozen_pointer->monitor, frozen_pointer->desktop, m, m->desk, frozen_pointer->node);
544         select_monitor(m);
545     }
546 }