]> Dogcows Code - chaz/openbox/blob - openbox/event.c
Merge branch 'backport' into work
[chaz/openbox] / openbox / event.c
1 /* -*- indent-tabs-mode: nil; tab-width: 4; c-basic-offset: 4; -*-
2
3 event.c for the Openbox window manager
4 Copyright (c) 2006 Mikael Magnusson
5 Copyright (c) 2003-2007 Dana Jansens
6
7 This program is free software; you can redistribute it and/or modify
8 it under the terms of the GNU General Public License as published by
9 the Free Software Foundation; either version 2 of the License, or
10 (at your option) any later version.
11
12 This program is distributed in the hope that it will be useful,
13 but WITHOUT ANY WARRANTY; without even the implied warranty of
14 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 GNU General Public License for more details.
16
17 See the COPYING file for a copy of the GNU General Public License.
18 */
19
20 #include "event.h"
21 #include "debug.h"
22 #include "window.h"
23 #include "openbox.h"
24 #include "dock.h"
25 #include "actions.h"
26 #include "client.h"
27 #include "config.h"
28 #include "screen.h"
29 #include "frame.h"
30 #include "grab.h"
31 #include "menu.h"
32 #include "prompt.h"
33 #include "menuframe.h"
34 #include "keyboard.h"
35 #include "mouse.h"
36 #include "hooks.h"
37 #include "focus.h"
38 #include "focus_cycle.h"
39 #include "moveresize.h"
40 #include "group.h"
41 #include "stacking.h"
42 #include "ping.h"
43 #include "obt/display.h"
44 #include "obt/prop.h"
45 #include "obt/keyboard.h"
46
47 #include <X11/Xlib.h>
48 #include <X11/Xatom.h>
49 #include <glib.h>
50
51 #ifdef HAVE_SYS_SELECT_H
52 # include <sys/select.h>
53 #endif
54 #ifdef HAVE_SIGNAL_H
55 # include <signal.h>
56 #endif
57 #ifdef HAVE_UNISTD_H
58 # include <unistd.h> /* for usleep() */
59 #endif
60 #ifdef XKB
61 # include <X11/XKBlib.h>
62 #endif
63
64 #ifdef USE_SM
65 #include <X11/ICE/ICElib.h>
66 #endif
67
68 typedef struct
69 {
70 gboolean ignored;
71 } ObEventData;
72
73 typedef struct
74 {
75 ObClient *client;
76 Time time;
77 gulong serial;
78 } ObFocusDelayData;
79
80 typedef struct
81 {
82 gulong start; /* inclusive */
83 gulong end; /* inclusive */
84 } ObSerialRange;
85
86 static void event_process(const XEvent *e, gpointer data);
87 static void event_handle_root(XEvent *e);
88 static gboolean event_handle_menu_input(XEvent *e);
89 static void event_handle_menu(ObMenuFrame *frame, XEvent *e);
90 static gboolean event_handle_prompt(ObPrompt *p, XEvent *e);
91 static void event_handle_dock(ObDock *s, XEvent *e);
92 static void event_handle_dockapp(ObDockApp *app, XEvent *e);
93 static void event_handle_client(ObClient *c, XEvent *e);
94 static void event_handle_user_input(ObClient *client, XEvent *e);
95 static gboolean is_enter_focus_event_ignored(gulong serial);
96 static void event_ignore_enter_range(gulong start, gulong end);
97
98 static void focus_delay_dest(gpointer data);
99 static gboolean focus_delay_cmp(gconstpointer d1, gconstpointer d2);
100 static gboolean focus_delay_func(gpointer data);
101 static void focus_delay_client_dest(ObClient *client, gpointer data);
102
103 Time event_curtime = CurrentTime;
104 Time event_last_user_time = CurrentTime;
105 /*! The serial of the current X event */
106
107 static gulong event_curserial;
108 static gboolean focus_left_screen = FALSE;
109 /*! A list of ObSerialRanges which are to be ignored for mouse enter events */
110 static GSList *ignore_serials = NULL;
111
112 #ifdef USE_SM
113 static void ice_handler(gint fd, gpointer conn)
114 {
115 Bool b;
116 IceProcessMessages(conn, NULL, &b);
117 }
118
119 static void ice_watch(IceConn conn, IcePointer data, Bool opening,
120 IcePointer *watch_data)
121 {
122 static gint fd = -1;
123
124 if (opening) {
125 fd = IceConnectionNumber(conn);
126 obt_main_loop_fd_add(ob_main_loop, fd, ice_handler, conn, NULL);
127 } else {
128 obt_main_loop_fd_remove(ob_main_loop, fd);
129 fd = -1;
130 }
131 }
132 #endif
133
134 void event_startup(gboolean reconfig)
135 {
136 if (reconfig) return;
137
138 obt_main_loop_x_add(ob_main_loop, event_process, NULL, NULL);
139
140 #ifdef USE_SM
141 IceAddConnectionWatch(ice_watch, NULL);
142 #endif
143
144 client_add_destroy_notify(focus_delay_client_dest, NULL);
145 }
146
147 void event_shutdown(gboolean reconfig)
148 {
149 if (reconfig) return;
150
151 #ifdef USE_SM
152 IceRemoveConnectionWatch(ice_watch, NULL);
153 #endif
154
155 client_remove_destroy_notify(focus_delay_client_dest);
156 }
157
158 static Window event_get_window(XEvent *e)
159 {
160 Window window;
161
162 /* pick a window */
163 switch (e->type) {
164 case SelectionClear:
165 window = obt_root(ob_screen);
166 break;
167 case CreateNotify:
168 window = e->xcreatewindow.window;
169 break;
170 case MapRequest:
171 window = e->xmaprequest.window;
172 break;
173 case MapNotify:
174 window = e->xmap.window;
175 break;
176 case UnmapNotify:
177 window = e->xunmap.window;
178 break;
179 case DestroyNotify:
180 window = e->xdestroywindow.window;
181 break;
182 case ConfigureRequest:
183 window = e->xconfigurerequest.window;
184 break;
185 case ConfigureNotify:
186 window = e->xconfigure.window;
187 break;
188 default:
189 #ifdef XKB
190 if (obt_display_extension_xkb &&
191 e->type == obt_display_extension_xkb_basep)
192 {
193 switch (((XkbAnyEvent*)e)->xkb_type) {
194 case XkbBellNotify:
195 window = ((XkbBellNotifyEvent*)e)->window;
196 default:
197 window = None;
198 }
199 } else
200 #endif
201 #ifdef SYNC
202 if (obt_display_extension_sync &&
203 e->type == obt_display_extension_sync_basep + XSyncAlarmNotify)
204 {
205 window = None;
206 } else
207 #endif
208 window = e->xany.window;
209 }
210 return window;
211 }
212
213 static void event_set_curtime(XEvent *e)
214 {
215 Time t = CurrentTime;
216
217 /* grab the lasttime and hack up the state */
218 switch (e->type) {
219 case ButtonPress:
220 case ButtonRelease:
221 t = e->xbutton.time;
222 break;
223 case KeyPress:
224 t = e->xkey.time;
225 break;
226 case KeyRelease:
227 t = e->xkey.time;
228 break;
229 case MotionNotify:
230 t = e->xmotion.time;
231 break;
232 case PropertyNotify:
233 t = e->xproperty.time;
234 break;
235 case EnterNotify:
236 case LeaveNotify:
237 t = e->xcrossing.time;
238 break;
239 default:
240 #ifdef SYNC
241 if (obt_display_extension_sync &&
242 e->type == obt_display_extension_sync_basep + XSyncAlarmNotify)
243 {
244 t = ((XSyncAlarmNotifyEvent*)e)->time;
245 }
246 #endif
247 /* if more event types are anticipated, get their timestamp
248 explicitly */
249 break;
250 }
251
252 /* watch that if we get an event earlier than the last specified user_time,
253 which can happen if the clock goes backwards, we erase the last
254 specified user_time */
255 if (t && event_last_user_time && event_time_after(event_last_user_time, t))
256 event_last_user_time = CurrentTime;
257
258 event_curtime = t;
259 }
260
261 static void event_hack_mods(XEvent *e)
262 {
263 #ifdef XKB
264 XkbStateRec xkb_state;
265 #endif
266
267 switch (e->type) {
268 case ButtonPress:
269 case ButtonRelease:
270 e->xbutton.state = obt_keyboard_only_modmasks(e->xbutton.state);
271 break;
272 case KeyPress:
273 e->xkey.state = obt_keyboard_only_modmasks(e->xkey.state);
274 break;
275 case KeyRelease:
276 #ifdef XKB
277 /* If XKB is present, then the modifiers are all strange from its
278 magic. Our X core protocol stuff won't work, so we use this to
279 find what the modifier state is instead. */
280 if (XkbGetState(obt_display, XkbUseCoreKbd, &xkb_state) == Success)
281 e->xkey.state =
282 obt_keyboard_only_modmasks(xkb_state.compat_state);
283 else
284 #endif
285 {
286 e->xkey.state = obt_keyboard_only_modmasks(e->xkey.state);
287 /* remove from the state the mask of the modifier key being
288 released, if it is a modifier key being released that is */
289 e->xkey.state &= ~obt_keyboard_keycode_to_modmask(e->xkey.keycode);
290 }
291 break;
292 case MotionNotify:
293 e->xmotion.state = obt_keyboard_only_modmasks(e->xmotion.state);
294 /* compress events */
295 {
296 XEvent ce;
297 while (XCheckTypedWindowEvent(obt_display, e->xmotion.window,
298 e->type, &ce)) {
299 e->xmotion.x = ce.xmotion.x;
300 e->xmotion.y = ce.xmotion.y;
301 e->xmotion.x_root = ce.xmotion.x_root;
302 e->xmotion.y_root = ce.xmotion.y_root;
303 }
304 }
305 break;
306 }
307 }
308
309 static gboolean wanted_focusevent(XEvent *e, gboolean in_client_only)
310 {
311 gint mode = e->xfocus.mode;
312 gint detail = e->xfocus.detail;
313 Window win = e->xany.window;
314
315 if (e->type == FocusIn) {
316 /* These are ones we never want.. */
317
318 /* This means focus was given by a keyboard/mouse grab. */
319 if (mode == NotifyGrab)
320 return FALSE;
321 /* This means focus was given back from a keyboard/mouse grab. */
322 if (mode == NotifyUngrab)
323 return FALSE;
324
325 /* These are the ones we want.. */
326
327 if (win == obt_root(ob_screen)) {
328 /* If looking for a focus in on a client, then always return
329 FALSE for focus in's to the root window */
330 if (in_client_only)
331 return FALSE;
332 /* This means focus reverted off of a client */
333 else if (detail == NotifyPointerRoot ||
334 detail == NotifyDetailNone ||
335 detail == NotifyInferior ||
336 /* This means focus got here from another screen */
337 detail == NotifyNonlinear)
338 return TRUE;
339 else
340 return FALSE;
341 }
342
343 /* It was on a client, was it a valid one?
344 It's possible to get a FocusIn event for a client that was managed
345 but has disappeared.
346 */
347 if (in_client_only) {
348 ObWindow *w = window_find(e->xfocus.window);
349 if (!w || !WINDOW_IS_CLIENT(w))
350 return FALSE;
351 }
352 else {
353 /* This means focus reverted to parent from the client (this
354 happens often during iconify animation) */
355 if (detail == NotifyInferior)
356 return TRUE;
357 }
358
359 /* This means focus moved from the root window to a client */
360 if (detail == NotifyVirtual)
361 return TRUE;
362 /* This means focus moved from one client to another */
363 if (detail == NotifyNonlinearVirtual)
364 return TRUE;
365
366 /* Otherwise.. */
367 return FALSE;
368 } else {
369 g_assert(e->type == FocusOut);
370
371 /* These are ones we never want.. */
372
373 /* This means focus was taken by a keyboard/mouse grab. */
374 if (mode == NotifyGrab)
375 return FALSE;
376 /* This means focus was grabbed on a window and it was released. */
377 if (mode == NotifyUngrab)
378 return FALSE;
379
380 /* Focus left the root window revertedto state */
381 if (win == obt_root(ob_screen))
382 return FALSE;
383
384 /* These are the ones we want.. */
385
386 /* This means focus moved from a client to the root window */
387 if (detail == NotifyVirtual)
388 return TRUE;
389 /* This means focus moved from one client to another */
390 if (detail == NotifyNonlinearVirtual)
391 return TRUE;
392
393 /* Otherwise.. */
394 return FALSE;
395 }
396 }
397
398 static Bool event_look_for_focusin(Display *d, XEvent *e, XPointer arg)
399 {
400 return e->type == FocusIn && wanted_focusevent(e, FALSE);
401 }
402
403 static Bool event_look_for_focusin_client(Display *d, XEvent *e, XPointer arg)
404 {
405 return e->type == FocusIn && wanted_focusevent(e, TRUE);
406 }
407
408 static void print_focusevent(XEvent *e)
409 {
410 gint mode = e->xfocus.mode;
411 gint detail = e->xfocus.detail;
412 Window win = e->xany.window;
413 const gchar *modestr, *detailstr;
414
415 switch (mode) {
416 case NotifyNormal: modestr="NotifyNormal"; break;
417 case NotifyGrab: modestr="NotifyGrab"; break;
418 case NotifyUngrab: modestr="NotifyUngrab"; break;
419 case NotifyWhileGrabbed: modestr="NotifyWhileGrabbed"; break;
420 }
421 switch (detail) {
422 case NotifyAncestor: detailstr="NotifyAncestor"; break;
423 case NotifyVirtual: detailstr="NotifyVirtual"; break;
424 case NotifyInferior: detailstr="NotifyInferior"; break;
425 case NotifyNonlinear: detailstr="NotifyNonlinear"; break;
426 case NotifyNonlinearVirtual: detailstr="NotifyNonlinearVirtual"; break;
427 case NotifyPointer: detailstr="NotifyPointer"; break;
428 case NotifyPointerRoot: detailstr="NotifyPointerRoot"; break;
429 case NotifyDetailNone: detailstr="NotifyDetailNone"; break;
430 }
431
432 if (mode == NotifyGrab || mode == NotifyUngrab)
433 return;
434
435 g_assert(modestr);
436 g_assert(detailstr);
437 ob_debug_type(OB_DEBUG_FOCUS, "Focus%s 0x%x mode=%s detail=%s",
438 (e->xfocus.type == FocusIn ? "In" : "Out"),
439 win,
440 modestr, detailstr);
441
442 }
443
444 static gboolean event_ignore(XEvent *e, ObClient *client)
445 {
446 switch(e->type) {
447 case FocusIn:
448 print_focusevent(e);
449 if (!wanted_focusevent(e, FALSE))
450 return TRUE;
451 break;
452 case FocusOut:
453 print_focusevent(e);
454 if (!wanted_focusevent(e, FALSE))
455 return TRUE;
456 break;
457 }
458 return FALSE;
459 }
460
461 static void event_process(const XEvent *ec, gpointer data)
462 {
463 XEvent ee, *e;
464 ObEventData *ed = data;
465
466 Window window;
467 ObClient *client = NULL;
468 ObDock *dock = NULL;
469 ObDockApp *dockapp = NULL;
470 ObWindow *obwin = NULL;
471 ObMenuFrame *menu = NULL;
472 ObPrompt *prompt = NULL;
473
474 /* make a copy we can mangle */
475 ee = *ec;
476 e = &ee;
477
478 window = event_get_window(e);
479 if (window == obt_root(ob_screen))
480 /* don't do any lookups, waste of cpu */;
481 else if ((obwin = window_find(window))) {
482 switch (obwin->type) {
483 case OB_WINDOW_CLASS_DOCK:
484 dock = WINDOW_AS_DOCK(obwin);
485 break;
486 case OB_WINDOW_CLASS_CLIENT:
487 client = WINDOW_AS_CLIENT(obwin);
488 /* events on clients can be events on prompt windows too */
489 prompt = client->prompt;
490 break;
491 case OB_WINDOW_CLASS_MENUFRAME:
492 menu = WINDOW_AS_MENUFRAME(obwin);
493 break;
494 case OB_WINDOW_CLASS_INTERNAL:
495 /* we don't do anything with events directly on these windows */
496 break;
497 case OB_WINDOW_CLASS_PROMPT:
498 prompt = WINDOW_AS_PROMPT(obwin);
499 break;
500 }
501 }
502 else
503 dockapp = dock_find_dockapp(window);
504
505 event_set_curtime(e);
506 event_curserial = e->xany.serial;
507 event_hack_mods(e);
508 if (event_ignore(e, client)) {
509 if (ed)
510 ed->ignored = TRUE;
511 return;
512 } else if (ed)
513 ed->ignored = FALSE;
514
515 /* deal with it in the kernel */
516
517 if (e->type == FocusIn) {
518 if (client &&
519 e->xfocus.detail == NotifyInferior)
520 {
521 ob_debug_type(OB_DEBUG_FOCUS,
522 "Focus went to the frame window");
523
524 focus_left_screen = FALSE;
525
526 focus_fallback(FALSE, config_focus_under_mouse, TRUE, TRUE);
527
528 /* We don't get a FocusOut for this case, because it's just moving
529 from our Inferior up to us. This happens when iconifying a
530 window with RevertToParent focus */
531 frame_adjust_focus(client->frame, FALSE);
532 /* focus_set_client(NULL) has already been called */
533 }
534 else if (e->xfocus.detail == NotifyPointerRoot ||
535 e->xfocus.detail == NotifyDetailNone ||
536 e->xfocus.detail == NotifyInferior ||
537 e->xfocus.detail == NotifyNonlinear)
538 {
539 XEvent ce;
540
541 ob_debug_type(OB_DEBUG_FOCUS,
542 "Focus went to root or pointer root/none");
543
544 if (e->xfocus.detail == NotifyInferior ||
545 e->xfocus.detail == NotifyNonlinear)
546 {
547 focus_left_screen = FALSE;
548 }
549
550 /* If another FocusIn is in the queue then don't fallback yet. This
551 fixes the fun case of:
552 window map -> send focusin
553 window unmap -> get focusout
554 window map -> send focusin
555 get first focus out -> fall back to something (new window
556 hasn't received focus yet, so something else) -> send focusin
557 which means the "something else" is the last thing to get a
558 focusin sent to it, so the new window doesn't end up with focus.
559
560 But if the other focus in is something like PointerRoot then we
561 still want to fall back.
562 */
563 if (XCheckIfEvent(obt_display, &ce, event_look_for_focusin_client,
564 NULL))
565 {
566 XPutBackEvent(obt_display, &ce);
567 ob_debug_type(OB_DEBUG_FOCUS,
568 " but another FocusIn is coming");
569 } else {
570 /* Focus has been reverted.
571
572 FocusOut events come after UnmapNotify, so we don't need to
573 worry about focusing an invalid window
574 */
575
576 if (!focus_left_screen)
577 focus_fallback(FALSE, config_focus_under_mouse,
578 TRUE, TRUE);
579 }
580 }
581 else if (!client)
582 {
583 ob_debug_type(OB_DEBUG_FOCUS,
584 "Focus went to a window that is already gone");
585
586 /* If you send focus to a window and then it disappears, you can
587 get the FocusIn for it, after it is unmanaged.
588 Just wait for the next FocusOut/FocusIn pair, but make note that
589 the window that was focused no longer is. */
590 focus_set_client(NULL);
591 }
592 else if (client != focus_client) {
593 focus_left_screen = FALSE;
594 frame_adjust_focus(client->frame, TRUE);
595 focus_set_client(client);
596 client_calc_layer(client);
597 client_bring_helper_windows(client);
598 }
599 } else if (e->type == FocusOut) {
600 XEvent ce;
601
602 /* Look for the followup FocusIn */
603 if (!XCheckIfEvent(obt_display, &ce, event_look_for_focusin, NULL)) {
604 /* There is no FocusIn, this means focus went to a window that
605 is not being managed, or a window on another screen. */
606 Window win, root;
607 gint i;
608 guint u;
609 obt_display_ignore_errors(TRUE);
610 if (XGetInputFocus(obt_display, &win, &i) &&
611 XGetGeometry(obt_display, win, &root, &i,&i,&u,&u,&u,&u) &&
612 root != obt_root(ob_screen))
613 {
614 ob_debug_type(OB_DEBUG_FOCUS,
615 "Focus went to another screen !");
616 focus_left_screen = TRUE;
617 }
618 else
619 ob_debug_type(OB_DEBUG_FOCUS,
620 "Focus went to a black hole !");
621 obt_display_ignore_errors(FALSE);
622 /* nothing is focused */
623 focus_set_client(NULL);
624 } else {
625 /* Focus moved, so process the FocusIn event */
626 ObEventData ed = { .ignored = FALSE };
627 event_process(&ce, &ed);
628 if (ed.ignored) {
629 /* The FocusIn was ignored, this means it was on a window
630 that isn't a client. */
631 ob_debug_type(OB_DEBUG_FOCUS,
632 "Focus went to an unmanaged window 0x%x !",
633 ce.xfocus.window);
634 focus_fallback(TRUE, config_focus_under_mouse, TRUE, TRUE);
635 }
636 }
637
638 if (client && client != focus_client) {
639 frame_adjust_focus(client->frame, FALSE);
640 /* focus_set_client(NULL) has already been called in this
641 section or by focus_fallback */
642 }
643 }
644 else if (client)
645 event_handle_client(client, e);
646 else if (dockapp)
647 event_handle_dockapp(dockapp, e);
648 else if (dock)
649 event_handle_dock(dock, e);
650 else if (menu)
651 event_handle_menu(menu, e);
652 else if (window == obt_root(ob_screen))
653 event_handle_root(e);
654 else if (e->type == MapRequest)
655 window_manage(window);
656 else if (e->type == MappingNotify) {
657 /* keyboard layout changes for modifier mapping changes. reload the
658 modifier map, and rebind all the key bindings as appropriate */
659 ob_debug("Kepboard map changed. Reloading keyboard bindings.");
660 ob_set_state(OB_STATE_RECONFIGURING);
661 obt_keyboard_reload();
662 keyboard_rebind();
663 ob_set_state(OB_STATE_RUNNING);
664 }
665 else if (e->type == ClientMessage) {
666 /* This is for _NET_WM_REQUEST_FRAME_EXTENTS messages. They come for
667 windows that are not managed yet. */
668 if (e->xclient.message_type ==
669 OBT_PROP_ATOM(NET_REQUEST_FRAME_EXTENTS))
670 {
671 /* Pretend to manage the client, getting information used to
672 determine its decorations */
673 ObClient *c = client_fake_manage(e->xclient.window);
674 gulong vals[4];
675
676 /* set the frame extents on the window */
677 vals[0] = c->frame->size.left;
678 vals[1] = c->frame->size.right;
679 vals[2] = c->frame->size.top;
680 vals[3] = c->frame->size.bottom;
681 OBT_PROP_SETA32(e->xclient.window, NET_FRAME_EXTENTS,
682 CARDINAL, vals, 4);
683
684 /* Free the pretend client */
685 client_fake_unmanage(c);
686 }
687 }
688 else if (e->type == ConfigureRequest) {
689 /* unhandled configure requests must be used to configure the
690 window directly */
691 XWindowChanges xwc;
692
693 xwc.x = e->xconfigurerequest.x;
694 xwc.y = e->xconfigurerequest.y;
695 xwc.width = e->xconfigurerequest.width;
696 xwc.height = e->xconfigurerequest.height;
697 xwc.border_width = e->xconfigurerequest.border_width;
698 xwc.sibling = e->xconfigurerequest.above;
699 xwc.stack_mode = e->xconfigurerequest.detail;
700
701 /* we are not to be held responsible if someone sends us an
702 invalid request! */
703 obt_display_ignore_errors(TRUE);
704 XConfigureWindow(obt_display, window,
705 e->xconfigurerequest.value_mask, &xwc);
706 obt_display_ignore_errors(FALSE);
707 }
708 #ifdef SYNC
709 else if (obt_display_extension_sync &&
710 e->type == obt_display_extension_sync_basep + XSyncAlarmNotify)
711 {
712 XSyncAlarmNotifyEvent *se = (XSyncAlarmNotifyEvent*)e;
713 if (se->alarm == moveresize_alarm && moveresize_in_progress)
714 moveresize_event(e);
715 }
716 #endif
717
718 if (prompt && event_handle_prompt(prompt, e))
719 ;
720 else if (e->type == ButtonPress || e->type == ButtonRelease) {
721 /* If the button press was on some non-root window, or was physically
722 on the root window, then process it */
723 if (window != obt_root(ob_screen) ||
724 e->xbutton.subwindow == None)
725 {
726 event_handle_user_input(client, e);
727 }
728 /* Otherwise only process it if it was physically on an openbox
729 internal window */
730 else {
731 ObWindow *w;
732
733 if ((w = window_find(e->xbutton.subwindow)) &&
734 WINDOW_IS_INTERNAL(w))
735 {
736 event_handle_user_input(client, e);
737 }
738 }
739 }
740 else if (e->type == KeyPress || e->type == KeyRelease ||
741 e->type == MotionNotify)
742 event_handle_user_input(client, e);
743
744 XFlush(obt_display);
745
746 /* run all the hooks at once */
747 hooks_run_queue();
748
749 /* if something happens and it's not from an XEvent, then we don't know
750 the time */
751 event_curtime = CurrentTime;
752 event_curserial = 0;
753 }
754
755 static void event_handle_root(XEvent *e)
756 {
757 Atom msgtype;
758
759 switch(e->type) {
760 case SelectionClear:
761 ob_debug("Another WM has requested to replace us. Exiting.");
762 ob_exit_replace();
763 break;
764
765 case ClientMessage:
766 if (e->xclient.format != 32) break;
767
768 msgtype = e->xclient.message_type;
769 if (msgtype == OBT_PROP_ATOM(NET_CURRENT_DESKTOP)) {
770 guint d = e->xclient.data.l[0];
771 if (d < screen_num_desktops) {
772 event_curtime = e->xclient.data.l[1];
773 if (event_curtime == 0)
774 ob_debug_type(OB_DEBUG_APP_BUGS,
775 "_NET_CURRENT_DESKTOP message is missing "
776 "a timestamp");
777 screen_set_desktop(d, TRUE);
778 }
779 } else if (msgtype == OBT_PROP_ATOM(NET_NUMBER_OF_DESKTOPS)) {
780 guint d = e->xclient.data.l[0];
781 if (d > 0 && d <= 1000)
782 screen_set_num_desktops(d);
783 } else if (msgtype == OBT_PROP_ATOM(NET_SHOWING_DESKTOP)) {
784 screen_show_desktop(e->xclient.data.l[0] != 0, NULL);
785 } else if (msgtype == OBT_PROP_ATOM(OB_CONTROL)) {
786 ob_debug("OB_CONTROL: %d", e->xclient.data.l[0]);
787 if (e->xclient.data.l[0] == 1)
788 ob_reconfigure();
789 else if (e->xclient.data.l[0] == 2)
790 ob_restart();
791 else if (e->xclient.data.l[0] == 3)
792 ob_exit(0);
793 } else if (msgtype == OBT_PROP_ATOM(WM_PROTOCOLS)) {
794 if ((Atom)e->xclient.data.l[0] == OBT_PROP_ATOM(NET_WM_PING))
795 ping_got_pong(e->xclient.data.l[1]);
796 }
797 break;
798 case PropertyNotify:
799 if (e->xproperty.atom == OBT_PROP_ATOM(NET_DESKTOP_NAMES)) {
800 ob_debug("UPDATE DESKTOP NAMES");
801 screen_update_desktop_names();
802 }
803 else if (e->xproperty.atom == OBT_PROP_ATOM(NET_DESKTOP_LAYOUT))
804 screen_update_layout();
805 break;
806 case ConfigureNotify:
807 #ifdef XRANDR
808 XRRUpdateConfiguration(e);
809 #endif
810 screen_resize();
811 break;
812 default:
813 ;
814 }
815 }
816
817 void event_enter_client(ObClient *client)
818 {
819 g_assert(config_focus_follow);
820
821 if (is_enter_focus_event_ignored(event_curserial)) {
822 ob_debug_type(OB_DEBUG_FOCUS, "Ignoring enter event with serial %lu\n"
823 "on client 0x%x", event_curserial, client->window);
824 return;
825 }
826
827 if (client_enter_focusable(client) && client_can_focus(client)) {
828 if (config_focus_delay) {
829 ObFocusDelayData *data;
830
831 obt_main_loop_timeout_remove(ob_main_loop, focus_delay_func);
832
833 data = g_new(ObFocusDelayData, 1);
834 data->client = client;
835 data->time = event_curtime;
836 data->serial = event_curserial;
837
838 obt_main_loop_timeout_add(ob_main_loop,
839 config_focus_delay * 1000,
840 focus_delay_func,
841 data, focus_delay_cmp, focus_delay_dest);
842 } else {
843 ObFocusDelayData data;
844 data.client = client;
845 data.time = event_curtime;
846 data.serial = event_curserial;
847 focus_delay_func(&data);
848 }
849 }
850 }
851
852 static gboolean *context_to_button(ObFrame *f, ObFrameContext con, gboolean press)
853 {
854 if (press) {
855 switch (con) {
856 case OB_FRAME_CONTEXT_MAXIMIZE:
857 return &f->max_press;
858 case OB_FRAME_CONTEXT_CLOSE:
859 return &f->close_press;
860 case OB_FRAME_CONTEXT_ICONIFY:
861 return &f->iconify_press;
862 case OB_FRAME_CONTEXT_ALLDESKTOPS:
863 return &f->desk_press;
864 case OB_FRAME_CONTEXT_SHADE:
865 return &f->shade_press;
866 default:
867 return NULL;
868 }
869 } else {
870 switch (con) {
871 case OB_FRAME_CONTEXT_MAXIMIZE:
872 return &f->max_hover;
873 case OB_FRAME_CONTEXT_CLOSE:
874 return &f->close_hover;
875 case OB_FRAME_CONTEXT_ICONIFY:
876 return &f->iconify_hover;
877 case OB_FRAME_CONTEXT_ALLDESKTOPS:
878 return &f->desk_hover;
879 case OB_FRAME_CONTEXT_SHADE:
880 return &f->shade_hover;
881 default:
882 return NULL;
883 }
884 }
885 }
886
887 static void compress_client_message_event(XEvent *e, XEvent *ce, Window window,
888 Atom msgtype)
889 {
890 /* compress changes into a single change */
891 while (XCheckTypedWindowEvent(obt_display, window, e->type, ce)) {
892 /* XXX: it would be nice to compress ALL messages of a
893 type, not just messages in a row without other
894 message types between. */
895 if (ce->xclient.message_type != msgtype) {
896 XPutBackEvent(obt_display, ce);
897 break;
898 }
899 e->xclient = ce->xclient;
900 }
901 }
902
903 static void event_handle_client(ObClient *client, XEvent *e)
904 {
905 XEvent ce;
906 Atom msgtype;
907 ObFrameContext con;
908 gboolean *but;
909 static gint px = -1, py = -1;
910 static guint pb = 0;
911 static ObFrameContext pcon = OB_FRAME_CONTEXT_NONE;
912
913 switch (e->type) {
914 case ButtonPress:
915 /* save where the press occured for the first button pressed */
916 if (!pb) {
917 pb = e->xbutton.button;
918 px = e->xbutton.x;
919 py = e->xbutton.y;
920
921 pcon = frame_context(client, e->xbutton.window, px, py);
922 pcon = mouse_button_frame_context(pcon, e->xbutton.button,
923 e->xbutton.state);
924 }
925 case ButtonRelease:
926 /* Wheel buttons don't draw because they are an instant click, so it
927 is a waste of resources to go drawing it.
928 if the user is doing an interactive thing, or has a menu open then
929 the mouse is grabbed (possibly) and if we get these events we don't
930 want to deal with them
931 */
932 if (!(e->xbutton.button == 4 || e->xbutton.button == 5) &&
933 !grab_on_keyboard())
934 {
935 /* use where the press occured */
936 con = frame_context(client, e->xbutton.window, px, py);
937 con = mouse_button_frame_context(con, e->xbutton.button,
938 e->xbutton.state);
939
940 /* button presses on CLIENT_CONTEXTs are not accompanied by a
941 release because they are Replayed to the client */
942 if ((e->type == ButtonRelease || CLIENT_CONTEXT(con, client)) &&
943 e->xbutton.button == pb)
944 pb = 0, px = py = -1, pcon = OB_FRAME_CONTEXT_NONE;
945
946 but = context_to_button(client->frame, con, TRUE);
947 if (but) {
948 *but = (e->type == ButtonPress);
949 frame_adjust_state(client->frame);
950 }
951 }
952 break;
953 case MotionNotify:
954 /* when there is a grab on the pointer, we won't get enter/leave
955 notifies, but we still get motion events */
956 if (grab_on_pointer()) break;
957
958 con = frame_context(client, e->xmotion.window,
959 e->xmotion.x, e->xmotion.y);
960 switch (con) {
961 case OB_FRAME_CONTEXT_TITLEBAR:
962 case OB_FRAME_CONTEXT_TLCORNER:
963 case OB_FRAME_CONTEXT_TRCORNER:
964 /* we've left the button area inside the titlebar */
965 if (client->frame->max_hover || client->frame->desk_hover ||
966 client->frame->shade_hover || client->frame->iconify_hover ||
967 client->frame->close_hover)
968 {
969 client->frame->max_hover =
970 client->frame->desk_hover =
971 client->frame->shade_hover =
972 client->frame->iconify_hover =
973 client->frame->close_hover = FALSE;
974 frame_adjust_state(client->frame);
975 }
976 break;
977 default:
978 but = context_to_button(client->frame, con, FALSE);
979 if (but && !*but && !pb) {
980 *but = TRUE;
981 frame_adjust_state(client->frame);
982 }
983 break;
984 }
985 break;
986 case LeaveNotify:
987 con = frame_context(client, e->xcrossing.window,
988 e->xcrossing.x, e->xcrossing.y);
989 switch (con) {
990 case OB_FRAME_CONTEXT_TITLEBAR:
991 case OB_FRAME_CONTEXT_TLCORNER:
992 case OB_FRAME_CONTEXT_TRCORNER:
993 /* we've left the button area inside the titlebar */
994 client->frame->max_hover =
995 client->frame->desk_hover =
996 client->frame->shade_hover =
997 client->frame->iconify_hover =
998 client->frame->close_hover = FALSE;
999 if (e->xcrossing.mode == NotifyGrab) {
1000 client->frame->max_press =
1001 client->frame->desk_press =
1002 client->frame->shade_press =
1003 client->frame->iconify_press =
1004 client->frame->close_press = FALSE;
1005 }
1006 break;
1007 case OB_FRAME_CONTEXT_FRAME:
1008 /* When the mouse leaves an animating window, don't use the
1009 corresponding enter events. Pretend like the animating window
1010 doesn't even exist..! */
1011 if (frame_iconify_animating(client->frame))
1012 event_end_ignore_all_enters(event_start_ignore_all_enters());
1013
1014 ob_debug_type(OB_DEBUG_FOCUS,
1015 "%sNotify mode %d detail %d on %lx",
1016 (e->type == EnterNotify ? "Enter" : "Leave"),
1017 e->xcrossing.mode,
1018 e->xcrossing.detail, (client?client->window:0));
1019 if (grab_on_keyboard())
1020 break;
1021 if (config_focus_follow && config_focus_delay &&
1022 /* leave inferior events can happen when the mouse goes onto
1023 the window's border and then into the window before the
1024 delay is up */
1025 e->xcrossing.detail != NotifyInferior)
1026 {
1027 obt_main_loop_timeout_remove_data(ob_main_loop,
1028 focus_delay_func,
1029 client, FALSE);
1030 }
1031 break;
1032 default:
1033 but = context_to_button(client->frame, con, FALSE);
1034 if (but) {
1035 *but = FALSE;
1036 if (e->xcrossing.mode == NotifyGrab) {
1037 but = context_to_button(client->frame, con, TRUE);
1038 *but = FALSE;
1039 }
1040 frame_adjust_state(client->frame);
1041 }
1042 break;
1043 }
1044 break;
1045 case EnterNotify:
1046 {
1047 con = frame_context(client, e->xcrossing.window,
1048 e->xcrossing.x, e->xcrossing.y);
1049 switch (con) {
1050 case OB_FRAME_CONTEXT_FRAME:
1051 if (grab_on_keyboard())
1052 break;
1053 if (e->xcrossing.mode == NotifyGrab ||
1054 e->xcrossing.mode == NotifyUngrab ||
1055 /*ignore enters when we're already in the window */
1056 e->xcrossing.detail == NotifyInferior)
1057 {
1058 ob_debug_type(OB_DEBUG_FOCUS,
1059 "%sNotify mode %d detail %d serial %lu on %lx "
1060 "IGNORED",
1061 (e->type == EnterNotify ? "Enter" : "Leave"),
1062 e->xcrossing.mode,
1063 e->xcrossing.detail,
1064 e->xcrossing.serial,
1065 client?client->window:0);
1066 }
1067 else {
1068 ob_debug_type(OB_DEBUG_FOCUS,
1069 "%sNotify mode %d detail %d serial %lu on %lx, "
1070 "focusing window",
1071 (e->type == EnterNotify ? "Enter" : "Leave"),
1072 e->xcrossing.mode,
1073 e->xcrossing.detail,
1074 e->xcrossing.serial,
1075 (client?client->window:0));
1076 if (config_focus_follow)
1077 event_enter_client(client);
1078 }
1079 break;
1080 default:
1081 but = context_to_button(client->frame, con, FALSE);
1082 if (but) {
1083 *but = TRUE;
1084 if (e->xcrossing.mode == NotifyUngrab) {
1085 but = context_to_button(client->frame, con, TRUE);
1086 *but = (con == pcon);
1087 }
1088 frame_adjust_state(client->frame);
1089 }
1090 break;
1091 }
1092 break;
1093 }
1094 case ConfigureRequest:
1095 {
1096 /* dont compress these unless you're going to watch for property
1097 notifies in between (these can change what the configure would
1098 do to the window).
1099 also you can't compress stacking events
1100 */
1101
1102 gint x, y, w, h;
1103 gboolean move = FALSE;
1104 gboolean resize = FALSE;
1105
1106 /* get the current area */
1107 RECT_TO_DIMS(client->area, x, y, w, h);
1108
1109 ob_debug("ConfigureRequest for \"%s\" desktop %d wmstate %d "
1110 "visible %d",
1111 client->title,
1112 screen_desktop, client->wmstate, client->frame->visible);
1113 ob_debug(" x %d y %d w %d h %d b %d",
1114 x, y, w, h, client->border_width);
1115
1116 if (e->xconfigurerequest.value_mask & CWBorderWidth)
1117 if (client->border_width != e->xconfigurerequest.border_width) {
1118 client->border_width = e->xconfigurerequest.border_width;
1119
1120 /* if the border width is changing then that is the same
1121 as requesting a resize, but we don't actually change
1122 the client's border, so it will change their root
1123 coordinates (since they include the border width) and
1124 we need to a notify then */
1125 move = TRUE;
1126 }
1127
1128
1129 if (e->xconfigurerequest.value_mask & CWStackMode) {
1130 ObClient *sibling = NULL;
1131 gulong ignore_start;
1132 gboolean ok = TRUE;
1133
1134 /* get the sibling */
1135 if (e->xconfigurerequest.value_mask & CWSibling) {
1136 ObWindow *win;
1137 win = window_find(e->xconfigurerequest.above);
1138 if (win && WINDOW_IS_CLIENT(win) &&
1139 WINDOW_AS_CLIENT(win) != client)
1140 {
1141 sibling = WINDOW_AS_CLIENT(win);
1142 }
1143 else
1144 /* an invalid sibling was specified so don't restack at
1145 all, it won't make sense no matter what we do */
1146 ok = FALSE;
1147 }
1148
1149 if (ok) {
1150 if (!config_focus_under_mouse)
1151 ignore_start = event_start_ignore_all_enters();
1152 stacking_restack_request(client, sibling,
1153 e->xconfigurerequest.detail);
1154 if (!config_focus_under_mouse)
1155 event_end_ignore_all_enters(ignore_start);
1156 }
1157
1158 /* a stacking change moves the window without resizing */
1159 move = TRUE;
1160 }
1161
1162 if ((e->xconfigurerequest.value_mask & CWX) ||
1163 (e->xconfigurerequest.value_mask & CWY) ||
1164 (e->xconfigurerequest.value_mask & CWWidth) ||
1165 (e->xconfigurerequest.value_mask & CWHeight))
1166 {
1167 /* don't allow clients to move shaded windows (fvwm does this)
1168 */
1169 if (e->xconfigurerequest.value_mask & CWX) {
1170 if (!client->shaded)
1171 x = e->xconfigurerequest.x;
1172 move = TRUE;
1173 }
1174 if (e->xconfigurerequest.value_mask & CWY) {
1175 if (!client->shaded)
1176 y = e->xconfigurerequest.y;
1177 move = TRUE;
1178 }
1179
1180 if (e->xconfigurerequest.value_mask & CWWidth) {
1181 w = e->xconfigurerequest.width;
1182 resize = TRUE;
1183 }
1184 if (e->xconfigurerequest.value_mask & CWHeight) {
1185 h = e->xconfigurerequest.height;
1186 resize = TRUE;
1187 }
1188 }
1189
1190 ob_debug("ConfigureRequest x(%d) %d y(%d) %d w(%d) %d h(%d) %d "
1191 "move %d resize %d",
1192 e->xconfigurerequest.value_mask & CWX, x,
1193 e->xconfigurerequest.value_mask & CWY, y,
1194 e->xconfigurerequest.value_mask & CWWidth, w,
1195 e->xconfigurerequest.value_mask & CWHeight, h,
1196 move, resize);
1197
1198 /* check for broken apps moving to their root position
1199
1200 XXX remove this some day...that would be nice. right now all
1201 kde apps do this when they try activate themselves on another
1202 desktop. eg. open amarok window on desktop 1, switch to desktop
1203 2, click amarok tray icon. it will move by its decoration size.
1204 */
1205 if (x != client->area.x &&
1206 x == (client->frame->area.x + client->frame->size.left -
1207 (gint)client->border_width) &&
1208 y != client->area.y &&
1209 y == (client->frame->area.y + client->frame->size.top -
1210 (gint)client->border_width) &&
1211 w == client->area.width &&
1212 h == client->area.height)
1213 {
1214 ob_debug_type(OB_DEBUG_APP_BUGS,
1215 "Application %s is trying to move via "
1216 "ConfigureRequest to it's root window position "
1217 "but it is not using StaticGravity",
1218 client->title);
1219 /* don't move it */
1220 x = client->area.x;
1221 y = client->area.y;
1222
1223 /* they still requested a move, so don't change whether a
1224 notify is sent or not */
1225 }
1226
1227 {
1228 gint lw, lh;
1229
1230 client_try_configure(client, &x, &y, &w, &h, &lw, &lh, FALSE);
1231
1232 /* if x was not given, then use gravity to figure out the new
1233 x. the reference point should not be moved */
1234 if ((e->xconfigurerequest.value_mask & CWWidth &&
1235 !(e->xconfigurerequest.value_mask & CWX)))
1236 client_gravity_resize_w(client, &x, client->area.width, w);
1237 /* same for y */
1238 if ((e->xconfigurerequest.value_mask & CWHeight &&
1239 !(e->xconfigurerequest.value_mask & CWY)))
1240 client_gravity_resize_h(client, &y, client->area.height,h);
1241
1242 client_find_onscreen(client, &x, &y, w, h, FALSE);
1243
1244 ob_debug("Granting ConfigureRequest x %d y %d w %d h %d",
1245 x, y, w, h);
1246 client_configure(client, x, y, w, h, FALSE, TRUE, TRUE);
1247 }
1248 break;
1249 }
1250 case UnmapNotify:
1251 ob_debug("UnmapNotify for window 0x%x eventwin 0x%x sendevent %d "
1252 "ignores left %d",
1253 client->window, e->xunmap.event, e->xunmap.from_configure,
1254 client->ignore_unmaps);
1255 if (client->ignore_unmaps) {
1256 client->ignore_unmaps--;
1257 break;
1258 }
1259 client_unmanage(client);
1260 break;
1261 case DestroyNotify:
1262 ob_debug("DestroyNotify for window 0x%x", client->window);
1263 client_unmanage(client);
1264 break;
1265 case ReparentNotify:
1266 /* this is when the client is first taken captive in the frame */
1267 if (e->xreparent.parent == client->frame->window) break;
1268
1269 /*
1270 This event is quite rare and is usually handled in unmapHandler.
1271 However, if the window is unmapped when the reparent event occurs,
1272 the window manager never sees it because an unmap event is not sent
1273 to an already unmapped window.
1274 */
1275
1276 /* we don't want the reparent event, put it back on the stack for the
1277 X server to deal with after we unmanage the window */
1278 XPutBackEvent(obt_display, e);
1279
1280 ob_debug("ReparentNotify for window 0x%x", client->window);
1281 client_unmanage(client);
1282 break;
1283 case MapRequest:
1284 ob_debug("MapRequest for 0x%lx", client->window);
1285 if (!client->iconic) break; /* this normally doesn't happen, but if it
1286 does, we don't want it!
1287 it can happen now when the window is on
1288 another desktop, but we still don't
1289 want it! */
1290 client_activate(client, FALSE, TRUE, TRUE, TRUE);
1291 break;
1292 case ClientMessage:
1293 /* validate cuz we query stuff off the client here */
1294 if (!client_validate(client)) break;
1295
1296 if (e->xclient.format != 32) return;
1297
1298 msgtype = e->xclient.message_type;
1299 if (msgtype == OBT_PROP_ATOM(WM_CHANGE_STATE)) {
1300 compress_client_message_event(e, &ce, client->window, msgtype);
1301 client_set_wm_state(client, e->xclient.data.l[0]);
1302 } else if (msgtype == OBT_PROP_ATOM(NET_WM_DESKTOP)) {
1303 compress_client_message_event(e, &ce, client->window, msgtype);
1304 if ((unsigned)e->xclient.data.l[0] < screen_num_desktops ||
1305 (unsigned)e->xclient.data.l[0] == DESKTOP_ALL)
1306 client_set_desktop(client, (unsigned)e->xclient.data.l[0],
1307 FALSE, FALSE);
1308 } else if (msgtype == OBT_PROP_ATOM(NET_WM_STATE)) {
1309 gulong ignore_start;
1310
1311 /* can't compress these */
1312 ob_debug("net_wm_state %s %ld %ld for 0x%lx",
1313 (e->xclient.data.l[0] == 0 ? "Remove" :
1314 e->xclient.data.l[0] == 1 ? "Add" :
1315 e->xclient.data.l[0] == 2 ? "Toggle" : "INVALID"),
1316 e->xclient.data.l[1], e->xclient.data.l[2],
1317 client->window);
1318
1319 /* ignore enter events caused by these like ob actions do */
1320 if (!config_focus_under_mouse)
1321 ignore_start = event_start_ignore_all_enters();
1322 client_set_state(client, e->xclient.data.l[0],
1323 e->xclient.data.l[1], e->xclient.data.l[2]);
1324 if (!config_focus_under_mouse)
1325 event_end_ignore_all_enters(ignore_start);
1326 } else if (msgtype == OBT_PROP_ATOM(NET_CLOSE_WINDOW)) {
1327 ob_debug("net_close_window for 0x%lx", client->window);
1328 client_close(client);
1329 } else if (msgtype == OBT_PROP_ATOM(NET_ACTIVE_WINDOW)) {
1330 ob_debug("net_active_window for 0x%lx source=%s",
1331 client->window,
1332 (e->xclient.data.l[0] == 0 ? "unknown" :
1333 (e->xclient.data.l[0] == 1 ? "application" :
1334 (e->xclient.data.l[0] == 2 ? "user" : "INVALID"))));
1335 /* XXX make use of data.l[2] !? */
1336 if (e->xclient.data.l[0] == 1 || e->xclient.data.l[0] == 2) {
1337 /* don't use the user's timestamp for client_focus, cuz if it's
1338 an old broken timestamp (happens all the time) then focus
1339 won't move even though we're trying to move it
1340 event_curtime = e->xclient.data.l[1];*/
1341 if (e->xclient.data.l[1] == 0)
1342 ob_debug_type(OB_DEBUG_APP_BUGS,
1343 "_NET_ACTIVE_WINDOW message for window %s is"
1344 " missing a timestamp", client->title);
1345 } else
1346 ob_debug_type(OB_DEBUG_APP_BUGS,
1347 "_NET_ACTIVE_WINDOW message for window %s is "
1348 "missing source indication");
1349 client_activate(client, TRUE, TRUE, TRUE,
1350 (e->xclient.data.l[0] == 0 ||
1351 e->xclient.data.l[0] == 2));
1352 } else if (msgtype == OBT_PROP_ATOM(NET_WM_MOVERESIZE)) {
1353 ob_debug("net_wm_moveresize for 0x%lx direction %d",
1354 client->window, e->xclient.data.l[2]);
1355 if ((Atom)e->xclient.data.l[2] ==
1356 OBT_PROP_ATOM(NET_WM_MOVERESIZE_SIZE_TOPLEFT) ||
1357 (Atom)e->xclient.data.l[2] ==
1358 OBT_PROP_ATOM(NET_WM_MOVERESIZE_SIZE_TOP) ||
1359 (Atom)e->xclient.data.l[2] ==
1360 OBT_PROP_ATOM(NET_WM_MOVERESIZE_SIZE_TOPRIGHT) ||
1361 (Atom)e->xclient.data.l[2] ==
1362 OBT_PROP_ATOM(NET_WM_MOVERESIZE_SIZE_RIGHT) ||
1363 (Atom)e->xclient.data.l[2] ==
1364 OBT_PROP_ATOM(NET_WM_MOVERESIZE_SIZE_RIGHT) ||
1365 (Atom)e->xclient.data.l[2] ==
1366 OBT_PROP_ATOM(NET_WM_MOVERESIZE_SIZE_BOTTOMRIGHT) ||
1367 (Atom)e->xclient.data.l[2] ==
1368 OBT_PROP_ATOM(NET_WM_MOVERESIZE_SIZE_BOTTOM) ||
1369 (Atom)e->xclient.data.l[2] ==
1370 OBT_PROP_ATOM(NET_WM_MOVERESIZE_SIZE_BOTTOMLEFT) ||
1371 (Atom)e->xclient.data.l[2] ==
1372 OBT_PROP_ATOM(NET_WM_MOVERESIZE_SIZE_LEFT) ||
1373 (Atom)e->xclient.data.l[2] ==
1374 OBT_PROP_ATOM(NET_WM_MOVERESIZE_MOVE) ||
1375 (Atom)e->xclient.data.l[2] ==
1376 OBT_PROP_ATOM(NET_WM_MOVERESIZE_SIZE_KEYBOARD) ||
1377 (Atom)e->xclient.data.l[2] ==
1378 OBT_PROP_ATOM(NET_WM_MOVERESIZE_MOVE_KEYBOARD))
1379 {
1380 moveresize_start(client, e->xclient.data.l[0],
1381 e->xclient.data.l[1], e->xclient.data.l[3],
1382 e->xclient.data.l[2]);
1383 }
1384 else if ((Atom)e->xclient.data.l[2] ==
1385 OBT_PROP_ATOM(NET_WM_MOVERESIZE_CANCEL))
1386 moveresize_end(TRUE);
1387 } else if (msgtype == OBT_PROP_ATOM(NET_MOVERESIZE_WINDOW)) {
1388 gint ograv, x, y, w, h;
1389
1390 ograv = client->gravity;
1391
1392 if (e->xclient.data.l[0] & 0xff)
1393 client->gravity = e->xclient.data.l[0] & 0xff;
1394
1395 if (e->xclient.data.l[0] & 1 << 8)
1396 x = e->xclient.data.l[1];
1397 else
1398 x = client->area.x;
1399 if (e->xclient.data.l[0] & 1 << 9)
1400 y = e->xclient.data.l[2];
1401 else
1402 y = client->area.y;
1403
1404 if (e->xclient.data.l[0] & 1 << 10) {
1405 w = e->xclient.data.l[3];
1406
1407 /* if x was not given, then use gravity to figure out the new
1408 x. the reference point should not be moved */
1409 if (!(e->xclient.data.l[0] & 1 << 8))
1410 client_gravity_resize_w(client, &x, client->area.width, w);
1411 }
1412 else
1413 w = client->area.width;
1414
1415 if (e->xclient.data.l[0] & 1 << 11) {
1416 h = e->xclient.data.l[4];
1417
1418 /* same for y */
1419 if (!(e->xclient.data.l[0] & 1 << 9))
1420 client_gravity_resize_h(client, &y, client->area.height,h);
1421 }
1422 else
1423 h = client->area.height;
1424
1425 ob_debug("MOVERESIZE x %d %d y %d %d (gravity %d)",
1426 e->xclient.data.l[0] & 1 << 8, x,
1427 e->xclient.data.l[0] & 1 << 9, y,
1428 client->gravity);
1429
1430 client_find_onscreen(client, &x, &y, w, h, FALSE);
1431
1432 client_configure(client, x, y, w, h, FALSE, TRUE, FALSE);
1433
1434 client->gravity = ograv;
1435 } else if (msgtype == OBT_PROP_ATOM(NET_RESTACK_WINDOW)) {
1436 if (e->xclient.data.l[0] != 2) {
1437 ob_debug_type(OB_DEBUG_APP_BUGS,
1438 "_NET_RESTACK_WINDOW sent for window %s with "
1439 "invalid source indication %ld",
1440 client->title, e->xclient.data.l[0]);
1441 } else {
1442 ObClient *sibling = NULL;
1443 if (e->xclient.data.l[1]) {
1444 ObWindow *win = window_find(e->xclient.data.l[1]);
1445 if (WINDOW_IS_CLIENT(win) &&
1446 WINDOW_AS_CLIENT(win) != client)
1447 {
1448 sibling = WINDOW_AS_CLIENT(win);
1449 }
1450 if (sibling == NULL)
1451 ob_debug_type(OB_DEBUG_APP_BUGS,
1452 "_NET_RESTACK_WINDOW sent for window %s "
1453 "with invalid sibling 0x%x",
1454 client->title, e->xclient.data.l[1]);
1455 }
1456 if (e->xclient.data.l[2] == Below ||
1457 e->xclient.data.l[2] == BottomIf ||
1458 e->xclient.data.l[2] == Above ||
1459 e->xclient.data.l[2] == TopIf ||
1460 e->xclient.data.l[2] == Opposite)
1461 {
1462 gulong ignore_start;
1463
1464 if (!config_focus_under_mouse)
1465 ignore_start = event_start_ignore_all_enters();
1466 /* just raise, don't activate */
1467 stacking_restack_request(client, sibling,
1468 e->xclient.data.l[2]);
1469 if (!config_focus_under_mouse)
1470 event_end_ignore_all_enters(ignore_start);
1471
1472 /* send a synthetic ConfigureNotify, cuz this is supposed
1473 to be like a ConfigureRequest. */
1474 client_reconfigure(client, TRUE);
1475 } else
1476 ob_debug_type(OB_DEBUG_APP_BUGS,
1477 "_NET_RESTACK_WINDOW sent for window %s "
1478 "with invalid detail %d",
1479 client->title, e->xclient.data.l[2]);
1480 }
1481 }
1482 break;
1483 case PropertyNotify:
1484 /* validate cuz we query stuff off the client here */
1485 if (!client_validate(client)) break;
1486
1487 /* compress changes to a single property into a single change */
1488 while (XCheckTypedWindowEvent(obt_display, client->window,
1489 e->type, &ce)) {
1490 Atom a, b;
1491
1492 /* XXX: it would be nice to compress ALL changes to a property,
1493 not just changes in a row without other props between. */
1494
1495 a = ce.xproperty.atom;
1496 b = e->xproperty.atom;
1497
1498 if (a == b)
1499 continue;
1500 if ((a == OBT_PROP_ATOM(NET_WM_NAME) ||
1501 a == OBT_PROP_ATOM(WM_NAME) ||
1502 a == OBT_PROP_ATOM(NET_WM_ICON_NAME) ||
1503 a == OBT_PROP_ATOM(WM_ICON_NAME))
1504 &&
1505 (b == OBT_PROP_ATOM(NET_WM_NAME) ||
1506 b == OBT_PROP_ATOM(WM_NAME) ||
1507 b == OBT_PROP_ATOM(NET_WM_ICON_NAME) ||
1508 b == OBT_PROP_ATOM(WM_ICON_NAME))) {
1509 continue;
1510 }
1511 if (a == OBT_PROP_ATOM(NET_WM_ICON) &&
1512 b == OBT_PROP_ATOM(NET_WM_ICON))
1513 continue;
1514
1515 XPutBackEvent(obt_display, &ce);
1516 break;
1517 }
1518
1519 msgtype = e->xproperty.atom;
1520 if (msgtype == XA_WM_NORMAL_HINTS) {
1521 ob_debug("Update NORMAL hints");
1522 client_update_normal_hints(client);
1523 /* normal hints can make a window non-resizable */
1524 client_setup_decor_and_functions(client, FALSE);
1525
1526 /* make sure the client's sizes are within its bounds, but only
1527 reconfigure the window if it needs to. emacs will update its
1528 normal hints every time it receives a conigurenotify */
1529 client_reconfigure(client, FALSE);
1530 } else if (msgtype == XA_WM_HINTS) {
1531 client_update_wmhints(client);
1532 } else if (msgtype == XA_WM_TRANSIENT_FOR) {
1533 client_update_transient_for(client);
1534 client_get_type_and_transientness(client);
1535 /* type may have changed, so update the layer */
1536 client_calc_layer(client);
1537 client_setup_decor_and_functions(client, TRUE);
1538 } else if (msgtype == OBT_PROP_ATOM(NET_WM_NAME) ||
1539 msgtype == OBT_PROP_ATOM(WM_NAME) ||
1540 msgtype == OBT_PROP_ATOM(NET_WM_ICON_NAME) ||
1541 msgtype == OBT_PROP_ATOM(WM_ICON_NAME)) {
1542 client_update_title(client);
1543 } else if (msgtype == OBT_PROP_ATOM(WM_PROTOCOLS)) {
1544 client_update_protocols(client);
1545 client_setup_decor_and_functions(client, TRUE);
1546 }
1547 else if (msgtype == OBT_PROP_ATOM(NET_WM_STRUT) ||
1548 msgtype == OBT_PROP_ATOM(NET_WM_STRUT_PARTIAL)) {
1549 client_update_strut(client);
1550 }
1551 else if (msgtype == OBT_PROP_ATOM(NET_WM_ICON)) {
1552 client_update_icons(client);
1553 }
1554 else if (msgtype == OBT_PROP_ATOM(NET_WM_ICON_GEOMETRY)) {
1555 client_update_icon_geometry(client);
1556 }
1557 else if (msgtype == OBT_PROP_ATOM(NET_WM_USER_TIME)) {
1558 guint32 t;
1559 if (client == focus_client &&
1560 OBT_PROP_GET32(client->window, NET_WM_USER_TIME, CARDINAL, &t)
1561 && t && !event_time_after(t, e->xproperty.time) &&
1562 (!event_last_user_time ||
1563 event_time_after(t, event_last_user_time)))
1564 {
1565 event_last_user_time = t;
1566 }
1567 }
1568 #ifdef SYNC
1569 else if (msgtype == OBT_PROP_ATOM(NET_WM_SYNC_REQUEST_COUNTER)) {
1570 client_update_sync_request_counter(client);
1571 }
1572 #endif
1573 break;
1574 case ColormapNotify:
1575 client_update_colormap(client, e->xcolormap.colormap);
1576 break;
1577 default:
1578 ;
1579 #ifdef SHAPE
1580 if (obt_display_extension_shape &&
1581 e->type == obt_display_extension_shape_basep)
1582 {
1583 client->shaped = ((XShapeEvent*)e)->shaped;
1584 frame_adjust_shape(client->frame);
1585 }
1586 #endif
1587 }
1588 }
1589
1590 static void event_handle_dock(ObDock *s, XEvent *e)
1591 {
1592 switch (e->type) {
1593 case ButtonPress:
1594 if (e->xbutton.button == 1)
1595 stacking_raise(DOCK_AS_WINDOW(s));
1596 else if (e->xbutton.button == 2)
1597 stacking_lower(DOCK_AS_WINDOW(s));
1598 break;
1599 case EnterNotify:
1600 dock_hide(FALSE);
1601 break;
1602 case LeaveNotify:
1603 /* don't hide when moving into a dock app */
1604 if (e->xcrossing.detail != NotifyInferior)
1605 dock_hide(TRUE);
1606 break;
1607 }
1608 }
1609
1610 static void event_handle_dockapp(ObDockApp *app, XEvent *e)
1611 {
1612 switch (e->type) {
1613 case MotionNotify:
1614 dock_app_drag(app, &e->xmotion);
1615 break;
1616 case UnmapNotify:
1617 if (app->ignore_unmaps) {
1618 app->ignore_unmaps--;
1619 break;
1620 }
1621 dock_unmanage(app, TRUE);
1622 break;
1623 case DestroyNotify:
1624 case ReparentNotify:
1625 dock_unmanage(app, FALSE);
1626 break;
1627 case ConfigureNotify:
1628 dock_app_configure(app, e->xconfigure.width, e->xconfigure.height);
1629 break;
1630 }
1631 }
1632
1633 static ObMenuFrame* find_active_menu(void)
1634 {
1635 GList *it;
1636 ObMenuFrame *ret = NULL;
1637
1638 for (it = menu_frame_visible; it; it = g_list_next(it)) {
1639 ret = it->data;
1640 if (ret->selected)
1641 break;
1642 ret = NULL;
1643 }
1644 return ret;
1645 }
1646
1647 static ObMenuFrame* find_active_or_last_menu(void)
1648 {
1649 ObMenuFrame *ret = NULL;
1650
1651 ret = find_active_menu();
1652 if (!ret && menu_frame_visible)
1653 ret = menu_frame_visible->data;
1654 return ret;
1655 }
1656
1657 static gboolean event_handle_prompt(ObPrompt *p, XEvent *e)
1658 {
1659 switch (e->type) {
1660 case ButtonPress:
1661 case ButtonRelease:
1662 case MotionNotify:
1663 return prompt_mouse_event(p, e);
1664 break;
1665 case KeyPress:
1666 return prompt_key_event(p, e);
1667 break;
1668 }
1669 return FALSE;
1670 }
1671
1672 static gboolean event_handle_menu_input(XEvent *ev)
1673 {
1674 gboolean ret = FALSE;
1675
1676 if (ev->type == ButtonRelease || ev->type == ButtonPress) {
1677 ObMenuEntryFrame *e;
1678
1679 if (menu_hide_delay_reached() &&
1680 (ev->xbutton.button < 4 || ev->xbutton.button > 5))
1681 {
1682 if ((e = menu_entry_frame_under(ev->xbutton.x_root,
1683 ev->xbutton.y_root)))
1684 {
1685 if (ev->type == ButtonPress && e->frame->child)
1686 menu_frame_select(e->frame->child, NULL, TRUE);
1687 menu_frame_select(e->frame, e, TRUE);
1688 if (ev->type == ButtonRelease)
1689 menu_entry_frame_execute(e, ev->xbutton.state);
1690 }
1691 else if (ev->type == ButtonRelease)
1692 menu_frame_hide_all();
1693 }
1694 ret = TRUE;
1695 }
1696 else if (ev->type == MotionNotify) {
1697 ObMenuFrame *f;
1698 ObMenuEntryFrame *e;
1699
1700 if ((e = menu_entry_frame_under(ev->xmotion.x_root,
1701 ev->xmotion.y_root)))
1702 if (!(f = find_active_menu()) ||
1703 f == e->frame ||
1704 f->parent == e->frame ||
1705 f->child == e->frame)
1706 menu_frame_select(e->frame, e, FALSE);
1707 }
1708 else if (ev->type == KeyPress || ev->type == KeyRelease) {
1709 guint keycode, state;
1710 gunichar unikey;
1711 ObMenuFrame *frame;
1712
1713 keycode = ev->xkey.keycode;
1714 state = ev->xkey.state;
1715 unikey = obt_keyboard_keycode_to_unichar(keycode);
1716
1717 frame = find_active_or_last_menu();
1718 if (frame == NULL)
1719 g_assert_not_reached(); /* there is no active menu */
1720
1721 /* Allow control while going thru the menu */
1722 else if (ev->type == KeyPress && (state & ~ControlMask) == 0) {
1723 frame->got_press = TRUE;
1724
1725 if (keycode == ob_keycode(OB_KEY_ESCAPE)) {
1726 menu_frame_hide_all();
1727 ret = TRUE;
1728 }
1729
1730 else if (keycode == ob_keycode(OB_KEY_LEFT)) {
1731 /* Left goes to the parent menu */
1732 if (frame->parent)
1733 menu_frame_select(frame, NULL, TRUE);
1734 ret = TRUE;
1735 }
1736
1737 else if (keycode == ob_keycode(OB_KEY_RIGHT)) {
1738 /* Right goes to the selected submenu */
1739 if (frame->child) menu_frame_select_next(frame->child);
1740 ret = TRUE;
1741 }
1742
1743 else if (keycode == ob_keycode(OB_KEY_UP)) {
1744 menu_frame_select_previous(frame);
1745 ret = TRUE;
1746 }
1747
1748 else if (keycode == ob_keycode(OB_KEY_DOWN)) {
1749 menu_frame_select_next(frame);
1750 ret = TRUE;
1751 }
1752 }
1753
1754 /* Use KeyRelease events for running things so that the key release
1755 doesn't get sent to the focused application.
1756
1757 Allow ControlMask only, and don't bother if the menu is empty */
1758 else if (ev->type == KeyRelease && (state & ~ControlMask) == 0 &&
1759 frame->entries && frame->got_press)
1760 {
1761 if (keycode == ob_keycode(OB_KEY_RETURN)) {
1762 /* Enter runs the active item or goes into the submenu.
1763 Control-Enter runs it without closing the menu. */
1764 if (frame->child)
1765 menu_frame_select_next(frame->child);
1766 else if (frame->selected)
1767 menu_entry_frame_execute(frame->selected, state);
1768
1769 ret = TRUE;
1770 }
1771
1772 /* keyboard accelerator shortcuts. (if it was a valid key) */
1773 else if (unikey != 0) {
1774 GList *start;
1775 GList *it;
1776 ObMenuEntryFrame *found = NULL;
1777 guint num_found = 0;
1778
1779 /* start after the selected one */
1780 start = frame->entries;
1781 if (frame->selected) {
1782 for (it = start; frame->selected != it->data;
1783 it = g_list_next(it))
1784 g_assert(it != NULL); /* nothing was selected? */
1785 /* next with wraparound */
1786 start = g_list_next(it);
1787 if (start == NULL) start = frame->entries;
1788 }
1789
1790 it = start;
1791 do {
1792 ObMenuEntryFrame *e = it->data;
1793 gunichar entrykey = 0;
1794
1795 if (e->entry->type == OB_MENU_ENTRY_TYPE_NORMAL)
1796 entrykey = e->entry->data.normal.shortcut;
1797 else if (e->entry->type == OB_MENU_ENTRY_TYPE_SUBMENU)
1798 entrykey = e->entry->data.submenu.submenu->shortcut;
1799
1800 if (unikey == entrykey) {
1801 if (found == NULL) found = e;
1802 ++num_found;
1803 }
1804
1805 /* next with wraparound */
1806 it = g_list_next(it);
1807 if (it == NULL) it = frame->entries;
1808 } while (it != start);
1809
1810 if (found) {
1811 if (found->entry->type == OB_MENU_ENTRY_TYPE_NORMAL &&
1812 num_found == 1)
1813 {
1814 menu_frame_select(frame, found, TRUE);
1815 usleep(50000); /* highlight the item for a short bit so
1816 the user can see what happened */
1817 menu_entry_frame_execute(found, state);
1818 } else {
1819 menu_frame_select(frame, found, TRUE);
1820 if (num_found == 1)
1821 menu_frame_select_next(frame->child);
1822 }
1823
1824 ret = TRUE;
1825 }
1826 }
1827 }
1828 }
1829
1830 return ret;
1831 }
1832
1833 static void event_handle_menu(ObMenuFrame *frame, XEvent *ev)
1834 {
1835 ObMenuFrame *f;
1836 ObMenuEntryFrame *e;
1837
1838 switch (ev->type) {
1839 case EnterNotify:
1840 if ((e = g_hash_table_lookup(menu_frame_map, &ev->xcrossing.window))) {
1841 if (e->ignore_enters)
1842 --e->ignore_enters;
1843 else if (!(f = find_active_menu()) ||
1844 f == e->frame ||
1845 f->parent == e->frame ||
1846 f->child == e->frame)
1847 menu_frame_select(e->frame, e, FALSE);
1848 }
1849 break;
1850 case LeaveNotify:
1851 /*ignore leaves when we're already in the window */
1852 if (ev->xcrossing.detail == NotifyInferior)
1853 break;
1854
1855 if ((e = g_hash_table_lookup(menu_frame_map, &ev->xcrossing.window)) &&
1856 (f = find_active_menu()) && f->selected == e &&
1857 e->entry->type != OB_MENU_ENTRY_TYPE_SUBMENU)
1858 {
1859 menu_frame_select(e->frame, NULL, FALSE);
1860 }
1861 break;
1862 }
1863 }
1864
1865 static void event_handle_user_input(ObClient *client, XEvent *e)
1866 {
1867 g_assert(e->type == ButtonPress || e->type == ButtonRelease ||
1868 e->type == MotionNotify || e->type == KeyPress ||
1869 e->type == KeyRelease);
1870
1871 if (menu_frame_visible) {
1872 if (event_handle_menu_input(e))
1873 /* don't use the event if the menu used it, but if the menu
1874 didn't use it and it's a keypress that is bound, it will
1875 close the menu and be used */
1876 return;
1877 }
1878
1879 /* if the keyboard interactive action uses the event then dont
1880 use it for bindings. likewise is moveresize uses the event. */
1881 if (!actions_interactive_input_event(e) && !moveresize_event(e)) {
1882 if (moveresize_in_progress)
1883 /* make further actions work on the client being
1884 moved/resized */
1885 client = moveresize_client;
1886
1887 if (e->type == ButtonPress ||
1888 e->type == ButtonRelease ||
1889 e->type == MotionNotify)
1890 {
1891 /* the frame may not be "visible" but they can still click on it
1892 in the case where it is animating before disappearing */
1893 if (!client || !frame_iconify_animating(client->frame))
1894 mouse_event(client, e);
1895 } else
1896 keyboard_event(event_target_client(client), e);
1897 }
1898 }
1899
1900 ObClient* event_target_client(ObClient *client)
1901 {
1902 return (focus_cycle_target ? focus_cycle_target :
1903 (client ? client : focus_client));
1904 }
1905
1906 static void focus_delay_dest(gpointer data)
1907 {
1908 g_free(data);
1909 }
1910
1911 static gboolean focus_delay_cmp(gconstpointer d1, gconstpointer d2)
1912 {
1913 const ObFocusDelayData *f1 = d1;
1914 return f1->client == d2;
1915 }
1916
1917 static gboolean focus_delay_func(gpointer data)
1918 {
1919 ObFocusDelayData *d = data;
1920 Time old = event_curtime;
1921
1922 /* don't move focus and kill the menu or the move/resize */
1923 if (menu_frame_visible || moveresize_in_progress) return FALSE;
1924
1925 event_curtime = d->time;
1926 event_curserial = d->serial;
1927 if (client_focus(d->client) && config_focus_raise)
1928 stacking_raise(CLIENT_AS_WINDOW(d->client));
1929 event_curtime = old;
1930 return FALSE; /* no repeat */
1931 }
1932
1933 static void focus_delay_client_dest(ObClient *client, gpointer data)
1934 {
1935 obt_main_loop_timeout_remove_data(ob_main_loop, focus_delay_func,
1936 client, FALSE);
1937 }
1938
1939 void event_halt_focus_delay(void)
1940 {
1941 /* ignore all enter events up till the event which caused this to occur */
1942 if (event_curserial) event_ignore_enter_range(1, event_curserial);
1943 obt_main_loop_timeout_remove(ob_main_loop, focus_delay_func);
1944 }
1945
1946 gulong event_start_ignore_all_enters(void)
1947 {
1948 return NextRequest(obt_display);
1949 }
1950
1951 static void event_ignore_enter_range(gulong start, gulong end)
1952 {
1953 ObSerialRange *r;
1954
1955 g_assert(start != 0);
1956 g_assert(end != 0);
1957
1958 r = g_new(ObSerialRange, 1);
1959 r->start = start;
1960 r->end = end;
1961 ignore_serials = g_slist_prepend(ignore_serials, r);
1962
1963 ob_debug_type(OB_DEBUG_FOCUS, "ignoring enters from %lu until %lu",
1964 r->start, r->end);
1965
1966 /* increment the serial so we don't ignore events we weren't meant to */
1967 OBT_PROP_ERASE(screen_support_win, MOTIF_WM_HINTS);
1968 }
1969
1970 void event_end_ignore_all_enters(gulong start)
1971 {
1972 /* Use (NextRequest-1) so that we ignore up to the current serial only.
1973 Inside event_ignore_enter_range, we increment the serial by one, but if
1974 we ignore that serial too, then any enter events generated by mouse
1975 movement will be ignored until we create some further network traffic.
1976 Instead ignore up to NextRequest-1, then when we increment the serial,
1977 we will be *past* the range of ignored serials */
1978 event_ignore_enter_range(start, NextRequest(obt_display)-1);
1979 }
1980
1981 static gboolean is_enter_focus_event_ignored(gulong serial)
1982 {
1983 GSList *it, *next;
1984
1985 for (it = ignore_serials; it; it = next) {
1986 ObSerialRange *r = it->data;
1987
1988 next = g_slist_next(it);
1989
1990 if ((glong)(serial - r->end) > 0) {
1991 /* past the end */
1992 ignore_serials = g_slist_delete_link(ignore_serials, it);
1993 g_free(r);
1994 }
1995 else if ((glong)(serial - r->start) >= 0)
1996 return TRUE;
1997 }
1998 return FALSE;
1999 }
2000
2001 void event_cancel_all_key_grabs(void)
2002 {
2003 if (actions_interactive_act_running()) {
2004 actions_interactive_cancel_act();
2005 ob_debug("KILLED interactive action");
2006 }
2007 else if (menu_frame_visible) {
2008 menu_frame_hide_all();
2009 ob_debug("KILLED open menus");
2010 }
2011 else if (moveresize_in_progress) {
2012 moveresize_end(TRUE);
2013 ob_debug("KILLED interactive moveresize");
2014 }
2015 else if (grab_on_keyboard()) {
2016 ungrab_keyboard();
2017 ob_debug("KILLED active grab on keyboard");
2018 }
2019 else
2020 ungrab_passive_key();
2021
2022 XSync(obt_display, FALSE);
2023 }
2024
2025 gboolean event_time_after(Time t1, Time t2)
2026 {
2027 g_assert(t1 != CurrentTime);
2028 g_assert(t2 != CurrentTime);
2029
2030 /*
2031 Timestamp values wrap around (after about 49.7 days). The server, given
2032 its current time is represented by timestamp T, always interprets
2033 timestamps from clients by treating half of the timestamp space as being
2034 later in time than T.
2035 - http://tronche.com/gui/x/xlib/input/pointer-grabbing.html
2036 */
2037
2038 /* TIME_HALF is half of the number space of a Time type variable */
2039 #define TIME_HALF (Time)(1 << (sizeof(Time)*8-1))
2040
2041 if (t2 >= TIME_HALF)
2042 /* t2 is in the second half so t1 might wrap around and be smaller than
2043 t2 */
2044 return t1 >= t2 || t1 < (t2 + TIME_HALF);
2045 else
2046 /* t2 is in the first half so t1 has to come after it */
2047 return t1 >= t2 && t1 < (t2 + TIME_HALF);
2048 }
2049
2050 Time event_get_server_time(void)
2051 {
2052 /* Generate a timestamp */
2053 XEvent event;
2054
2055 XChangeProperty(obt_display, screen_support_win,
2056 OBT_PROP_ATOM(WM_CLASS), OBT_PROP_ATOM(STRING),
2057 8, PropModeAppend, NULL, 0);
2058 XWindowEvent(obt_display, screen_support_win, PropertyChangeMask, &event);
2059 return event.xproperty.time;
2060 }
This page took 0.125229 seconds and 5 git commands to generate.