5bb0e2a09f4971d207bbde7e57a130e3a2da17b1
[dana/openbox-history.git] / 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        Ben 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 "client.h"
26 #include "xerror.h"
27 #include "prop.h"
28 #include "config.h"
29 #include "screen.h"
30 #include "frame.h"
31 #include "menu.h"
32 #include "menuframe.h"
33 #include "keyboard.h"
34 #include "mouse.h"
35 #include "mainloop.h"
36 #include "framerender.h"
37 #include "focus.h"
38 #include "moveresize.h"
39 #include "group.h"
40 #include "stacking.h"
41 #include "extensions.h"
42
43 #include <X11/Xlib.h>
44 #include <X11/keysym.h>
45 #include <X11/Xatom.h>
46 #include <glib.h>
47
48 #ifdef HAVE_SYS_SELECT_H
49 #  include <sys/select.h>
50 #endif
51 #ifdef HAVE_SIGNAL_H
52 #  include <signal.h>
53 #endif
54 #ifdef XKB
55 #  include <X11/XKBlib.h>
56 #endif
57
58 #ifdef USE_SM
59 #include <X11/ICE/ICElib.h>
60 #endif
61
62 typedef struct
63 {
64     gboolean ignored;
65 } ObEventData;
66
67 typedef struct
68 {
69     ObClient *client;
70     Time time;
71 } ObFocusDelayData;
72
73 static void event_process(const XEvent *e, gpointer data);
74 static void event_handle_root(XEvent *e);
75 static void event_handle_menu(XEvent *e);
76 static void event_handle_dock(ObDock *s, XEvent *e);
77 static void event_handle_dockapp(ObDockApp *app, XEvent *e);
78 static void event_handle_client(ObClient *c, XEvent *e);
79 static void event_handle_group(ObGroup *g, XEvent *e);
80
81 static void focus_delay_dest(gpointer data);
82 static gboolean focus_delay_cmp(gconstpointer d1, gconstpointer d2);
83 static gboolean focus_delay_func(gpointer data);
84 static void focus_delay_client_dest(ObClient *client, gpointer data);
85
86 static gboolean menu_hide_delay_func(gpointer data);
87
88 /* The time for the current event being processed */
89 Time event_curtime = CurrentTime;
90
91 /*! The value of the mask for the NumLock modifier */
92 guint NumLockMask;
93 /*! The value of the mask for the ScrollLock modifier */
94 guint ScrollLockMask;
95 /*! The key codes for the modifier keys */
96 static XModifierKeymap *modmap;
97 /*! Table of the constant modifier masks */
98 static const gint mask_table[] = {
99     ShiftMask, LockMask, ControlMask, Mod1Mask,
100     Mod2Mask, Mod3Mask, Mod4Mask, Mod5Mask
101 };
102 static gint mask_table_size;
103
104 static guint ignore_enter_focus = 0;
105
106 static gboolean menu_can_hide;
107
108 #ifdef USE_SM
109 static void ice_handler(gint fd, gpointer conn)
110 {
111     Bool b;
112     IceProcessMessages(conn, NULL, &b);
113 }
114
115 static void ice_watch(IceConn conn, IcePointer data, Bool opening,
116                       IcePointer *watch_data)
117 {
118     static gint fd = -1;
119
120     if (opening) {
121         fd = IceConnectionNumber(conn);
122         ob_main_loop_fd_add(ob_main_loop, fd, ice_handler, conn, NULL);
123     } else {
124         ob_main_loop_fd_remove(ob_main_loop, fd);
125         fd = -1;
126     }
127 }
128 #endif
129
130 void event_startup(gboolean reconfig)
131 {
132     if (reconfig) return;
133
134     mask_table_size = sizeof(mask_table) / sizeof(mask_table[0]);
135      
136     /* get lock masks that are defined by the display (not constant) */
137     modmap = XGetModifierMapping(ob_display);
138     g_assert(modmap);
139     if (modmap && modmap->max_keypermod > 0) {
140         size_t cnt;
141         const size_t size = mask_table_size * modmap->max_keypermod;
142         /* get the values of the keyboard lock modifiers
143            Note: Caps lock is not retrieved the same way as Scroll and Num
144            lock since it doesn't need to be. */
145         const KeyCode num_lock = XKeysymToKeycode(ob_display, XK_Num_Lock);
146         const KeyCode scroll_lock = XKeysymToKeycode(ob_display,
147                                                      XK_Scroll_Lock);
148
149         for (cnt = 0; cnt < size; ++cnt) {
150             if (! modmap->modifiermap[cnt]) continue;
151
152             if (num_lock == modmap->modifiermap[cnt])
153                 NumLockMask = mask_table[cnt / modmap->max_keypermod];
154             if (scroll_lock == modmap->modifiermap[cnt])
155                 ScrollLockMask = mask_table[cnt / modmap->max_keypermod];
156         }
157     }
158
159     ob_main_loop_x_add(ob_main_loop, event_process, NULL, NULL);
160
161 #ifdef USE_SM
162     IceAddConnectionWatch(ice_watch, NULL);
163 #endif
164
165     client_add_destructor(focus_delay_client_dest, NULL);
166 }
167
168 void event_shutdown(gboolean reconfig)
169 {
170     if (reconfig) return;
171
172 #ifdef USE_SM
173     IceRemoveConnectionWatch(ice_watch, NULL);
174 #endif
175
176     client_remove_destructor(focus_delay_client_dest);
177     XFreeModifiermap(modmap);
178 }
179
180 static Window event_get_window(XEvent *e)
181 {
182     Window window;
183
184     /* pick a window */
185     switch (e->type) {
186     case SelectionClear:
187         window = RootWindow(ob_display, ob_screen);
188         break;
189     case MapRequest:
190         window = e->xmap.window;
191         break;
192     case UnmapNotify:
193         window = e->xunmap.window;
194         break;
195     case DestroyNotify:
196         window = e->xdestroywindow.window;
197         break;
198     case ConfigureRequest:
199         window = e->xconfigurerequest.window;
200         break;
201     case ConfigureNotify:
202         window = e->xconfigure.window;
203         break;
204     default:
205 #ifdef XKB
206         if (extensions_xkb && e->type == extensions_xkb_event_basep) {
207             switch (((XkbAnyEvent*)e)->xkb_type) {
208             case XkbBellNotify:
209                 window = ((XkbBellNotifyEvent*)e)->window;
210             default:
211                 window = None;
212             }
213         } else
214 #endif
215             window = e->xany.window;
216     }
217     return window;
218 }
219
220 static void event_set_curtime(XEvent *e)
221 {
222     Time t = CurrentTime;
223
224     /* grab the lasttime and hack up the state */
225     switch (e->type) {
226     case ButtonPress:
227     case ButtonRelease:
228         t = e->xbutton.time;
229         break;
230     case KeyPress:
231         t = e->xkey.time;
232         break;
233     case KeyRelease:
234         t = e->xkey.time;
235         break;
236     case MotionNotify:
237         t = e->xmotion.time;
238         break;
239     case PropertyNotify:
240         t = e->xproperty.time;
241         break;
242     case EnterNotify:
243     case LeaveNotify:
244         t = e->xcrossing.time;
245         break;
246     default:
247         /* if more event types are anticipated, get their timestamp
248            explicitly */
249         break;
250     }
251
252     event_curtime = t;
253 }
254
255 #define STRIP_MODS(s) \
256         s &= ~(LockMask | NumLockMask | ScrollLockMask), \
257         /* kill off the Button1Mask etc, only want the modifiers */ \
258         s &= (ControlMask | ShiftMask | Mod1Mask | \
259               Mod2Mask | Mod3Mask | Mod4Mask | Mod5Mask) \
260
261 static void event_hack_mods(XEvent *e)
262 {
263 #ifdef XKB
264     XkbStateRec xkb_state;
265 #endif
266     KeyCode *kp;
267     gint i, k;
268
269     switch (e->type) {
270     case ButtonPress:
271     case ButtonRelease:
272         STRIP_MODS(e->xbutton.state);
273         break;
274     case KeyPress:
275         STRIP_MODS(e->xkey.state);
276         break;
277     case KeyRelease:
278         STRIP_MODS(e->xkey.state);
279         /* remove from the state the mask of the modifier being released, if
280            it is a modifier key being released (this is a little ugly..) */
281 #ifdef XKB
282         if (XkbGetState(ob_display, XkbUseCoreKbd, &xkb_state) == Success) {
283             e->xkey.state = xkb_state.compat_state;
284             break;
285         }
286 #endif
287         kp = modmap->modifiermap;
288         for (i = 0; i < mask_table_size; ++i) {
289             for (k = 0; k < modmap->max_keypermod; ++k) {
290                 if (*kp == e->xkey.keycode) { /* found the keycode */
291                     /* remove the mask for it */
292                     e->xkey.state &= ~mask_table[i];
293                     /* cause the first loop to break; */
294                     i = mask_table_size;
295                     break; /* get outta here! */
296                 }
297                 ++kp;
298             }
299         }
300         break;
301     case MotionNotify:
302         STRIP_MODS(e->xmotion.state);
303         /* compress events */
304         {
305             XEvent ce;
306             while (XCheckTypedWindowEvent(ob_display, e->xmotion.window,
307                                           e->type, &ce)) {
308                 e->xmotion.x_root = ce.xmotion.x_root;
309                 e->xmotion.y_root = ce.xmotion.y_root;
310             }
311         }
312         break;
313     }
314 }
315
316 static gboolean wanted_focusevent(XEvent *e)
317 {
318     gint mode = e->xfocus.mode;
319     gint detail = e->xfocus.detail;
320     Window win = e->xany.window;
321
322     if (e->type == FocusIn) {
323
324         /* These are ones we never want.. */
325
326         /* This means focus was given by a keyboard/mouse grab. */
327         if (mode == NotifyGrab)
328             return FALSE;
329         /* This means focus was given back from a keyboard/mouse grab. */
330         if (mode == NotifyUngrab)
331             return FALSE;
332
333         /* These are the ones we want.. */
334
335         if (win == RootWindow(ob_display, ob_screen)) {
336             /* This means focus reverted off of a client */
337             if (detail == NotifyPointerRoot || detail == NotifyDetailNone ||
338                 detail == NotifyInferior)
339                 return TRUE;
340             else
341                 return FALSE;
342         }
343
344         /* This means focus moved from the root window to a client */
345         if (detail == NotifyVirtual)
346             return TRUE;
347         /* This means focus moved from one client to another */
348         if (detail == NotifyNonlinearVirtual)
349             return TRUE;
350
351         /* Otherwise.. */
352         return FALSE;
353     } else {
354         g_assert(e->type == FocusOut);
355
356
357         /* These are ones we never want.. */
358
359         /* This means focus was taken by a keyboard/mouse grab. */
360         if (mode == NotifyGrab)
361             return FALSE;
362
363         /* Focus left the root window revertedto state */
364         if (win == RootWindow(ob_display, ob_screen))
365             return FALSE;
366
367         /* These are the ones we want.. */
368
369         /* This means focus moved from a client to the root window */
370         if (detail == NotifyVirtual)
371             return TRUE;
372         /* This means focus moved from one client to another */
373         if (detail == NotifyNonlinearVirtual)
374             return TRUE;
375         /* This means focus had moved to our frame window and now moved off */
376         if (detail == NotifyNonlinear)
377             return TRUE;
378
379         /* Otherwise.. */
380         return FALSE;
381     }
382 }
383
384 static Bool look_for_focusin(Display *d, XEvent *e, XPointer arg)
385 {
386     return e->type == FocusIn && wanted_focusevent(e);
387 }
388
389 static gboolean event_ignore(XEvent *e, ObClient *client)
390 {
391     switch(e->type) {
392     case FocusIn:
393         if (!wanted_focusevent(e))
394             return TRUE;
395         break;
396     case FocusOut:
397         if (!wanted_focusevent(e))
398             return TRUE;
399         break;
400     }
401     return FALSE;
402 }
403
404 static void event_process(const XEvent *ec, gpointer data)
405 {
406     Window window;
407     ObGroup *group = NULL;
408     ObClient *client = NULL;
409     ObDock *dock = NULL;
410     ObDockApp *dockapp = NULL;
411     ObWindow *obwin = NULL;
412     XEvent ee, *e;
413     ObEventData *ed = data;
414
415     /* make a copy we can mangle */
416     ee = *ec;
417     e = &ee;
418
419     window = event_get_window(e);
420     if (!(e->type == PropertyNotify &&
421           (group = g_hash_table_lookup(group_map, &window))))
422         if ((obwin = g_hash_table_lookup(window_map, &window))) {
423             switch (obwin->type) {
424             case Window_Dock:
425                 dock = WINDOW_AS_DOCK(obwin);
426                 break;
427             case Window_DockApp:
428                 dockapp = WINDOW_AS_DOCKAPP(obwin);
429                 break;
430             case Window_Client:
431                 client = WINDOW_AS_CLIENT(obwin);
432                 break;
433             case Window_Menu:
434             case Window_Internal:
435                 /* not to be used for events */
436                 g_assert_not_reached();
437                 break;
438             }
439         }
440
441     event_set_curtime(e);
442     event_hack_mods(e);
443     if (event_ignore(e, client)) {
444         if (ed)
445             ed->ignored = TRUE;
446         return;
447     } else if (ed)
448             ed->ignored = FALSE;
449
450     /* deal with it in the kernel */
451
452     if (menu_frame_visible &&
453         (e->type == EnterNotify || e->type == LeaveNotify))
454     {
455         /* crossing events for menu */
456         event_handle_menu(e);
457     } else if (e->type == FocusIn) {
458         if (client && client != focus_client) {
459             frame_adjust_focus(client->frame, TRUE);
460             focus_set_client(client);
461             client_calc_layer(client);
462         }
463     } else if (e->type == FocusOut) {
464         gboolean nomove = FALSE;
465         XEvent ce;
466
467         ob_debug_type(OB_DEBUG_FOCUS, "FocusOut Event\n");
468
469         /* Look for the followup FocusIn */
470         if (!XCheckIfEvent(ob_display, &ce, look_for_focusin, NULL)) {
471             /* There is no FocusIn, this means focus went to a window that
472                is not being managed, or a window on another screen. */
473             ob_debug_type(OB_DEBUG_FOCUS, "Focus went to a black hole !\n");
474             /* nothing is focused */
475             focus_set_client(NULL);
476         } else if (ce.xany.window == e->xany.window) {
477             ob_debug_type(OB_DEBUG_FOCUS, "Focus didn't go anywhere\n");
478             /* If focus didn't actually move anywhere, there is nothing to do*/
479             nomove = TRUE;
480         } else if (ce.xfocus.detail == NotifyPointerRoot ||
481                    ce.xfocus.detail == NotifyDetailNone ||
482                    ce.xfocus.detail == NotifyInferior) {
483             ob_debug_type(OB_DEBUG_FOCUS, "Focus went to root\n");
484             /* Focus has been reverted to the root window or nothing
485                FocusOut events come after UnmapNotify, so we don't need to
486                worry about focusing an invalid window
487              */
488             focus_fallback(TRUE);
489         } else {
490             /* Focus did move, so process the FocusIn event */
491             ObEventData ed = { .ignored = FALSE };
492             event_process(&ce, &ed);
493             if (ed.ignored) {
494                 /* The FocusIn was ignored, this means it was on a window
495                    that isn't a client. */
496                 ob_debug_type(OB_DEBUG_FOCUS,
497                               "Focus went to an unmanaged window 0x%x !\n",
498                               ce.xfocus.window);
499                 focus_fallback(TRUE);
500             }
501         }
502
503         if (client && !nomove) {
504             frame_adjust_focus(client->frame, FALSE);
505             /* focus_set_client has already been called for sure */
506             client_calc_layer(client);
507         }
508     } else if (group)
509         event_handle_group(group, e);
510     else if (client)
511         event_handle_client(client, e);
512     else if (dockapp)
513         event_handle_dockapp(dockapp, e);
514     else if (dock)
515         event_handle_dock(dock, e);
516     else if (window == RootWindow(ob_display, ob_screen))
517         event_handle_root(e);
518     else if (e->type == MapRequest)
519         client_manage(window);
520     else if (e->type == ConfigureRequest) {
521         /* unhandled configure requests must be used to configure the
522            window directly */
523         XWindowChanges xwc;
524
525         xwc.x = e->xconfigurerequest.x;
526         xwc.y = e->xconfigurerequest.y;
527         xwc.width = e->xconfigurerequest.width;
528         xwc.height = e->xconfigurerequest.height;
529         xwc.border_width = e->xconfigurerequest.border_width;
530         xwc.sibling = e->xconfigurerequest.above;
531         xwc.stack_mode = e->xconfigurerequest.detail;
532        
533         /* we are not to be held responsible if someone sends us an
534            invalid request! */
535         xerror_set_ignore(TRUE);
536         XConfigureWindow(ob_display, window,
537                          e->xconfigurerequest.value_mask, &xwc);
538         xerror_set_ignore(FALSE);
539     }
540
541     /* user input (action-bound) events */
542     if (e->type == ButtonPress || e->type == ButtonRelease ||
543         e->type == MotionNotify || e->type == KeyPress ||
544         e->type == KeyRelease)
545     {
546         if (menu_frame_visible)
547             event_handle_menu(e);
548         else {
549             if (!keyboard_process_interactive_grab(e, &client)) {
550                 if (moveresize_in_progress) {
551                     moveresize_event(e);
552
553                     /* make further actions work on the client being
554                        moved/resized */
555                     client = moveresize_client;
556                 }
557
558                 menu_can_hide = FALSE;
559                 ob_main_loop_timeout_add(ob_main_loop,
560                                          config_menu_hide_delay * 1000,
561                                          menu_hide_delay_func,
562                                          NULL, g_direct_equal, NULL);
563
564                 if (e->type == ButtonPress || e->type == ButtonRelease ||
565                     e->type == MotionNotify) {
566                     mouse_event(client, e);
567                 } else if (e->type == KeyPress) {
568                     keyboard_event((focus_cycle_target ? focus_cycle_target :
569                                     client), e);
570                 }
571             }
572         }
573     }
574     /* if something happens and it's not from an XEvent, then we don't know
575        the time */
576     event_curtime = CurrentTime;
577 }
578
579 static void event_handle_root(XEvent *e)
580 {
581     Atom msgtype;
582      
583     switch(e->type) {
584     case SelectionClear:
585         ob_debug("Another WM has requested to replace us. Exiting.\n");
586         ob_exit_replace();
587         break;
588
589     case ClientMessage:
590         if (e->xclient.format != 32) break;
591
592         msgtype = e->xclient.message_type;
593         if (msgtype == prop_atoms.net_current_desktop) {
594             guint d = e->xclient.data.l[0];
595             if (d < screen_num_desktops) {
596                 event_curtime = e->xclient.data.l[1];
597                 ob_debug("SWITCH DESKTOP TIME: %d\n", event_curtime);
598                 screen_set_desktop(d);
599             }
600         } else if (msgtype == prop_atoms.net_number_of_desktops) {
601             guint d = e->xclient.data.l[0];
602             if (d > 0)
603                 screen_set_num_desktops(d);
604         } else if (msgtype == prop_atoms.net_showing_desktop) {
605             screen_show_desktop(e->xclient.data.l[0] != 0);
606         } else if (msgtype == prop_atoms.ob_control) {
607             if (e->xclient.data.l[0] == 1)
608                 ob_reconfigure();
609             else if (e->xclient.data.l[0] == 2)
610                 ob_restart();
611         }
612         break;
613     case PropertyNotify:
614         if (e->xproperty.atom == prop_atoms.net_desktop_names)
615             screen_update_desktop_names();
616         else if (e->xproperty.atom == prop_atoms.net_desktop_layout)
617             screen_update_layout();
618         break;
619     case ConfigureNotify:
620 #ifdef XRANDR
621         XRRUpdateConfiguration(e);
622 #endif
623         screen_resize();
624         break;
625     default:
626         ;
627     }
628 }
629
630 static void event_handle_group(ObGroup *group, XEvent *e)
631 {
632     GSList *it;
633
634     g_assert(e->type == PropertyNotify);
635
636     for (it = group->members; it; it = g_slist_next(it))
637         event_handle_client(it->data, e);
638 }
639
640 void event_enter_client(ObClient *client)
641 {
642     g_assert(config_focus_follow);
643
644     if (client_normal(client) && client_can_focus(client)) {
645         if (config_focus_delay) {
646             ObFocusDelayData *data;
647
648             ob_main_loop_timeout_remove(ob_main_loop, focus_delay_func);
649
650             data = g_new(ObFocusDelayData, 1);
651             data->client = client;
652             data->time = event_curtime;
653
654             ob_main_loop_timeout_add(ob_main_loop,
655                                      config_focus_delay,
656                                      focus_delay_func,
657                                      data, focus_delay_cmp, focus_delay_dest);
658         } else {
659             ObFocusDelayData data;
660             data.client = client;
661             data.time = event_curtime;
662             focus_delay_func(&data);
663         }
664     }
665 }
666
667 static void event_handle_client(ObClient *client, XEvent *e)
668 {
669     XEvent ce;
670     Atom msgtype;
671     gint i=0;
672     ObFrameContext con;
673      
674     switch (e->type) {
675     case VisibilityNotify:
676         client->frame->obscured = e->xvisibility.state != VisibilityUnobscured;
677         break;
678     case ButtonPress:
679     case ButtonRelease:
680         /* Wheel buttons don't draw because they are an instant click, so it
681            is a waste of resources to go drawing it. */
682         if (!(e->xbutton.button == 4 || e->xbutton.button == 5)) {
683             con = frame_context(client, e->xbutton.window);
684             con = mouse_button_frame_context(con, e->xbutton.button);
685             switch (con) {
686             case OB_FRAME_CONTEXT_MAXIMIZE:
687                 client->frame->max_press = (e->type == ButtonPress);
688                 framerender_frame(client->frame);
689                 break;
690             case OB_FRAME_CONTEXT_CLOSE:
691                 client->frame->close_press = (e->type == ButtonPress);
692                 framerender_frame(client->frame);
693                 break;
694             case OB_FRAME_CONTEXT_ICONIFY:
695                 client->frame->iconify_press = (e->type == ButtonPress);
696                 framerender_frame(client->frame);
697                 break;
698             case OB_FRAME_CONTEXT_ALLDESKTOPS:
699                 client->frame->desk_press = (e->type == ButtonPress);
700                 framerender_frame(client->frame);
701                 break; 
702             case OB_FRAME_CONTEXT_SHADE:
703                 client->frame->shade_press = (e->type == ButtonPress);
704                 framerender_frame(client->frame);
705                 break;
706             default:
707                 /* nothing changes with clicks for any other contexts */
708                 break;
709             }
710         }
711         break;
712     case LeaveNotify:
713         con = frame_context(client, e->xcrossing.window);
714         switch (con) {
715         case OB_FRAME_CONTEXT_MAXIMIZE:
716             client->frame->max_hover = FALSE;
717             frame_adjust_state(client->frame);
718             break;
719         case OB_FRAME_CONTEXT_ALLDESKTOPS:
720             client->frame->desk_hover = FALSE;
721             frame_adjust_state(client->frame);
722             break;
723         case OB_FRAME_CONTEXT_SHADE:
724             client->frame->shade_hover = FALSE;
725             frame_adjust_state(client->frame);
726             break;
727         case OB_FRAME_CONTEXT_ICONIFY:
728             client->frame->iconify_hover = FALSE;
729             frame_adjust_state(client->frame);
730             break;
731         case OB_FRAME_CONTEXT_CLOSE:
732             client->frame->close_hover = FALSE;
733             frame_adjust_state(client->frame);
734             break;
735         case OB_FRAME_CONTEXT_FRAME:
736             if (keyboard_interactively_grabbed())
737                 break;
738             if (config_focus_follow && config_focus_delay)
739                 ob_main_loop_timeout_remove_data(ob_main_loop,
740                                                  focus_delay_func,
741                                                  client, FALSE);
742             break;
743         default:
744             break;
745         }
746         break;
747     case EnterNotify:
748     {
749         gboolean nofocus = FALSE;
750
751         if (ignore_enter_focus) {
752             ignore_enter_focus--;
753             nofocus = TRUE;
754         }
755
756         con = frame_context(client, e->xcrossing.window);
757         switch (con) {
758         case OB_FRAME_CONTEXT_MAXIMIZE:
759             client->frame->max_hover = TRUE;
760             frame_adjust_state(client->frame);
761             break;
762         case OB_FRAME_CONTEXT_ALLDESKTOPS:
763             client->frame->desk_hover = TRUE;
764             frame_adjust_state(client->frame);
765             break;
766         case OB_FRAME_CONTEXT_SHADE:
767             client->frame->shade_hover = TRUE;
768             frame_adjust_state(client->frame);
769             break;
770         case OB_FRAME_CONTEXT_ICONIFY:
771             client->frame->iconify_hover = TRUE;
772             frame_adjust_state(client->frame);
773             break;
774         case OB_FRAME_CONTEXT_CLOSE:
775             client->frame->close_hover = TRUE;
776             frame_adjust_state(client->frame);
777             break;
778         case OB_FRAME_CONTEXT_FRAME:
779             if (keyboard_interactively_grabbed())
780                 break;
781             if (e->xcrossing.mode == NotifyGrab ||
782                 e->xcrossing.mode == NotifyUngrab)
783             {
784                 ob_debug_type(OB_DEBUG_FOCUS,
785                               "%sNotify mode %d detail %d on %lx IGNORED\n",
786                               (e->type == EnterNotify ? "Enter" : "Leave"),
787                               e->xcrossing.mode,
788                               e->xcrossing.detail, client?client->window:0);
789             } else {
790                 ob_debug_type(OB_DEBUG_FOCUS,
791                               "%sNotify mode %d detail %d on %lx, "
792                               "focusing window: %d\n",
793                               (e->type == EnterNotify ? "Enter" : "Leave"),
794                               e->xcrossing.mode,
795                               e->xcrossing.detail, (client?client->window:0),
796                               !nofocus);
797                 if (!nofocus && config_focus_follow)
798                     event_enter_client(client);
799             }
800             break;
801         default:
802             break;
803         }
804         break;
805     }
806     case ConfigureRequest:
807         /* compress these */
808         while (XCheckTypedWindowEvent(ob_display, client->window,
809                                       ConfigureRequest, &ce)) {
810             ++i;
811             /* XXX if this causes bad things.. we can compress config req's
812                with the same mask. */
813             e->xconfigurerequest.value_mask |=
814                 ce.xconfigurerequest.value_mask;
815             if (ce.xconfigurerequest.value_mask & CWX)
816                 e->xconfigurerequest.x = ce.xconfigurerequest.x;
817             if (ce.xconfigurerequest.value_mask & CWY)
818                 e->xconfigurerequest.y = ce.xconfigurerequest.y;
819             if (ce.xconfigurerequest.value_mask & CWWidth)
820                 e->xconfigurerequest.width = ce.xconfigurerequest.width;
821             if (ce.xconfigurerequest.value_mask & CWHeight)
822                 e->xconfigurerequest.height = ce.xconfigurerequest.height;
823             if (ce.xconfigurerequest.value_mask & CWBorderWidth)
824                 e->xconfigurerequest.border_width =
825                     ce.xconfigurerequest.border_width;
826             if (ce.xconfigurerequest.value_mask & CWStackMode)
827                 e->xconfigurerequest.detail = ce.xconfigurerequest.detail;
828         }
829
830         /* if we are iconic (or shaded (fvwm does this)) ignore the event */
831         if (client->iconic || client->shaded) return;
832
833         /* resize, then move, as specified in the EWMH section 7.7 */
834         if (e->xconfigurerequest.value_mask & (CWWidth | CWHeight |
835                                                CWX | CWY |
836                                                CWBorderWidth)) {
837             gint x, y, w, h;
838             ObCorner corner;
839
840             if (e->xconfigurerequest.value_mask & CWBorderWidth)
841                 client->border_width = e->xconfigurerequest.border_width;
842
843             x = (e->xconfigurerequest.value_mask & CWX) ?
844                 e->xconfigurerequest.x : client->area.x;
845             y = (e->xconfigurerequest.value_mask & CWY) ?
846                 e->xconfigurerequest.y : client->area.y;
847             w = (e->xconfigurerequest.value_mask & CWWidth) ?
848                 e->xconfigurerequest.width : client->area.width;
849             h = (e->xconfigurerequest.value_mask & CWHeight) ?
850                 e->xconfigurerequest.height : client->area.height;
851
852             {
853                 gint newx = x;
854                 gint newy = y;
855                 gint fw = w +
856                      client->frame->size.left + client->frame->size.right;
857                 gint fh = h +
858                      client->frame->size.top + client->frame->size.bottom;
859                 /* make this rude for size-only changes but not for position
860                    changes.. */
861                 gboolean moving = ((e->xconfigurerequest.value_mask & CWX) ||
862                                    (e->xconfigurerequest.value_mask & CWY));
863
864                 client_find_onscreen(client, &newx, &newy, fw, fh,
865                                      !moving);
866                 if (e->xconfigurerequest.value_mask & CWX)
867                     x = newx;
868                 if (e->xconfigurerequest.value_mask & CWY)
869                     y = newy;
870             }
871
872             switch (client->gravity) {
873             case NorthEastGravity:
874             case EastGravity:
875                 corner = OB_CORNER_TOPRIGHT;
876                 break;
877             case SouthWestGravity:
878             case SouthGravity:
879                 corner = OB_CORNER_BOTTOMLEFT;
880                 break;
881             case SouthEastGravity:
882                 corner = OB_CORNER_BOTTOMRIGHT;
883                 break;
884             default:     /* NorthWest, Static, etc */
885                 corner = OB_CORNER_TOPLEFT;
886             }
887
888             client_configure_full(client, corner, x, y, w, h, FALSE, TRUE,
889                                   TRUE);
890         }
891
892         if (e->xconfigurerequest.value_mask & CWStackMode) {
893             switch (e->xconfigurerequest.detail) {
894             case Below:
895             case BottomIf:
896                 /* Apps are so rude. And this is totally disconnected from
897                    activation/focus. Bleh. */
898                 /*client_lower(client);*/
899                 break;
900
901             case Above:
902             case TopIf:
903             default:
904                 /* Apps are so rude. And this is totally disconnected from
905                    activation/focus. Bleh. */
906                 /*client_raise(client);*/
907                 break;
908             }
909         }
910         break;
911     case UnmapNotify:
912         if (client->ignore_unmaps) {
913             client->ignore_unmaps--;
914             break;
915         }
916         ob_debug("UnmapNotify for window 0x%x eventwin 0x%x sendevent %d "
917                  "ignores left %d\n",
918                  client->window, e->xunmap.event, e->xunmap.from_configure,
919                  client->ignore_unmaps);
920         client_unmanage(client);
921         break;
922     case DestroyNotify:
923         ob_debug("DestroyNotify for window 0x%x\n", client->window);
924         client_unmanage(client);
925         break;
926     case ReparentNotify:
927         /* this is when the client is first taken captive in the frame */
928         if (e->xreparent.parent == client->frame->plate) break;
929
930         /*
931           This event is quite rare and is usually handled in unmapHandler.
932           However, if the window is unmapped when the reparent event occurs,
933           the window manager never sees it because an unmap event is not sent
934           to an already unmapped window.
935         */
936
937         /* we don't want the reparent event, put it back on the stack for the
938            X server to deal with after we unmanage the window */
939         XPutBackEvent(ob_display, e);
940      
941         ob_debug("ReparentNotify for window 0x%x\n", client->window);
942         client_unmanage(client);
943         break;
944     case MapRequest:
945         ob_debug("MapRequest for 0x%lx\n", client->window);
946         if (!client->iconic) break; /* this normally doesn't happen, but if it
947                                        does, we don't want it!
948                                        it can happen now when the window is on
949                                        another desktop, but we still don't
950                                        want it! */
951         client_activate(client, FALSE, TRUE);
952         break;
953     case ClientMessage:
954         /* validate cuz we query stuff off the client here */
955         if (!client_validate(client)) break;
956
957         if (e->xclient.format != 32) return;
958
959         msgtype = e->xclient.message_type;
960         if (msgtype == prop_atoms.wm_change_state) {
961             /* compress changes into a single change */
962             while (XCheckTypedWindowEvent(ob_display, client->window,
963                                           e->type, &ce)) {
964                 /* XXX: it would be nice to compress ALL messages of a
965                    type, not just messages in a row without other
966                    message types between. */
967                 if (ce.xclient.message_type != msgtype) {
968                     XPutBackEvent(ob_display, &ce);
969                     break;
970                 }
971                 e->xclient = ce.xclient;
972             }
973             client_set_wm_state(client, e->xclient.data.l[0]);
974         } else if (msgtype == prop_atoms.net_wm_desktop) {
975             /* compress changes into a single change */
976             while (XCheckTypedWindowEvent(ob_display, client->window,
977                                           e->type, &ce)) {
978                 /* XXX: it would be nice to compress ALL messages of a
979                    type, not just messages in a row without other
980                    message types between. */
981                 if (ce.xclient.message_type != msgtype) {
982                     XPutBackEvent(ob_display, &ce);
983                     break;
984                 }
985                 e->xclient = ce.xclient;
986             }
987             if ((unsigned)e->xclient.data.l[0] < screen_num_desktops ||
988                 (unsigned)e->xclient.data.l[0] == DESKTOP_ALL)
989                 client_set_desktop(client, (unsigned)e->xclient.data.l[0],
990                                    FALSE);
991         } else if (msgtype == prop_atoms.net_wm_state) {
992             /* can't compress these */
993             ob_debug("net_wm_state %s %ld %ld for 0x%lx\n",
994                      (e->xclient.data.l[0] == 0 ? "Remove" :
995                       e->xclient.data.l[0] == 1 ? "Add" :
996                       e->xclient.data.l[0] == 2 ? "Toggle" : "INVALID"),
997                      e->xclient.data.l[1], e->xclient.data.l[2],
998                      client->window);
999             client_set_state(client, e->xclient.data.l[0],
1000                              e->xclient.data.l[1], e->xclient.data.l[2]);
1001         } else if (msgtype == prop_atoms.net_close_window) {
1002             ob_debug("net_close_window for 0x%lx\n", client->window);
1003             client_close(client);
1004         } else if (msgtype == prop_atoms.net_active_window) {
1005             ob_debug("net_active_window for 0x%lx source=%s\n",
1006                      client->window,
1007                      (e->xclient.data.l[0] == 0 ? "unknown" :
1008                       (e->xclient.data.l[0] == 1 ? "application" :
1009                        (e->xclient.data.l[0] == 2 ? "user" : "INVALID"))));
1010             /* XXX make use of data.l[2] ! */
1011             event_curtime = e->xclient.data.l[1];
1012             client_activate(client, FALSE,
1013                             (e->xclient.data.l[0] == 0 ||
1014                              e->xclient.data.l[0] == 2));
1015         } else if (msgtype == prop_atoms.net_wm_moveresize) {
1016             ob_debug("net_wm_moveresize for 0x%lx direction %d\n",
1017                      client->window, e->xclient.data.l[2]);
1018             if ((Atom)e->xclient.data.l[2] ==
1019                 prop_atoms.net_wm_moveresize_size_topleft ||
1020                 (Atom)e->xclient.data.l[2] ==
1021                 prop_atoms.net_wm_moveresize_size_top ||
1022                 (Atom)e->xclient.data.l[2] ==
1023                 prop_atoms.net_wm_moveresize_size_topright ||
1024                 (Atom)e->xclient.data.l[2] ==
1025                 prop_atoms.net_wm_moveresize_size_right ||
1026                 (Atom)e->xclient.data.l[2] ==
1027                 prop_atoms.net_wm_moveresize_size_right ||
1028                 (Atom)e->xclient.data.l[2] ==
1029                 prop_atoms.net_wm_moveresize_size_bottomright ||
1030                 (Atom)e->xclient.data.l[2] ==
1031                 prop_atoms.net_wm_moveresize_size_bottom ||
1032                 (Atom)e->xclient.data.l[2] ==
1033                 prop_atoms.net_wm_moveresize_size_bottomleft ||
1034                 (Atom)e->xclient.data.l[2] ==
1035                 prop_atoms.net_wm_moveresize_size_left ||
1036                 (Atom)e->xclient.data.l[2] ==
1037                 prop_atoms.net_wm_moveresize_move ||
1038                 (Atom)e->xclient.data.l[2] ==
1039                 prop_atoms.net_wm_moveresize_size_keyboard ||
1040                 (Atom)e->xclient.data.l[2] ==
1041                 prop_atoms.net_wm_moveresize_move_keyboard) {
1042
1043                 moveresize_start(client, e->xclient.data.l[0],
1044                                  e->xclient.data.l[1], e->xclient.data.l[3],
1045                                  e->xclient.data.l[2]);
1046             }
1047             else if ((Atom)e->xclient.data.l[2] ==
1048                      prop_atoms.net_wm_moveresize_cancel)
1049                 moveresize_end(TRUE);
1050         } else if (msgtype == prop_atoms.net_moveresize_window) {
1051             gint oldg = client->gravity;
1052             gint tmpg, x, y, w, h;
1053
1054             if (e->xclient.data.l[0] & 0xff)
1055                 tmpg = e->xclient.data.l[0] & 0xff;
1056             else
1057                 tmpg = oldg;
1058
1059             if (e->xclient.data.l[0] & 1 << 8)
1060                 x = e->xclient.data.l[1];
1061             else
1062                 x = client->area.x;
1063             if (e->xclient.data.l[0] & 1 << 9)
1064                 y = e->xclient.data.l[2];
1065             else
1066                 y = client->area.y;
1067             if (e->xclient.data.l[0] & 1 << 10)
1068                 w = e->xclient.data.l[3];
1069             else
1070                 w = client->area.width;
1071             if (e->xclient.data.l[0] & 1 << 11)
1072                 h = e->xclient.data.l[4];
1073             else
1074                 h = client->area.height;
1075             client->gravity = tmpg;
1076
1077             {
1078                 gint newx = x;
1079                 gint newy = y;
1080                 gint fw = w +
1081                      client->frame->size.left + client->frame->size.right;
1082                 gint fh = h +
1083                      client->frame->size.top + client->frame->size.bottom;
1084                 client_find_onscreen(client, &newx, &newy, fw, fh,
1085                                      client_normal(client));
1086                 if (e->xclient.data.l[0] & 1 << 8)
1087                     x = newx;
1088                 if (e->xclient.data.l[0] & 1 << 9)
1089                     y = newy;
1090             }
1091
1092             client_configure(client, OB_CORNER_TOPLEFT,
1093                              x, y, w, h, FALSE, TRUE);
1094
1095             client->gravity = oldg;
1096         }
1097         break;
1098     case PropertyNotify:
1099         /* validate cuz we query stuff off the client here */
1100         if (!client_validate(client)) break;
1101   
1102         /* compress changes to a single property into a single change */
1103         while (XCheckTypedWindowEvent(ob_display, client->window,
1104                                       e->type, &ce)) {
1105             Atom a, b;
1106
1107             /* XXX: it would be nice to compress ALL changes to a property,
1108                not just changes in a row without other props between. */
1109
1110             a = ce.xproperty.atom;
1111             b = e->xproperty.atom;
1112
1113             if (a == b)
1114                 continue;
1115             if ((a == prop_atoms.net_wm_name ||
1116                  a == prop_atoms.wm_name ||
1117                  a == prop_atoms.net_wm_icon_name ||
1118                  a == prop_atoms.wm_icon_name)
1119                 &&
1120                 (b == prop_atoms.net_wm_name ||
1121                  b == prop_atoms.wm_name ||
1122                  b == prop_atoms.net_wm_icon_name ||
1123                  b == prop_atoms.wm_icon_name)) {
1124                 continue;
1125             }
1126             if (a == prop_atoms.net_wm_icon &&
1127                 b == prop_atoms.net_wm_icon)
1128                 continue;
1129
1130             XPutBackEvent(ob_display, &ce);
1131             break;
1132         }
1133
1134         msgtype = e->xproperty.atom;
1135         if (msgtype == XA_WM_NORMAL_HINTS) {
1136             client_update_normal_hints(client);
1137             /* normal hints can make a window non-resizable */
1138             client_setup_decor_and_functions(client);
1139         } else if (msgtype == XA_WM_HINTS) {
1140             client_update_wmhints(client);
1141         } else if (msgtype == XA_WM_TRANSIENT_FOR) {
1142             client_update_transient_for(client);
1143             client_get_type(client);
1144             /* type may have changed, so update the layer */
1145             client_calc_layer(client);
1146             client_setup_decor_and_functions(client);
1147         } else if (msgtype == prop_atoms.net_wm_name ||
1148                    msgtype == prop_atoms.wm_name ||
1149                    msgtype == prop_atoms.net_wm_icon_name ||
1150                    msgtype == prop_atoms.wm_icon_name) {
1151             client_update_title(client);
1152         } else if (msgtype == prop_atoms.wm_class) {
1153             client_update_class(client);
1154         } else if (msgtype == prop_atoms.wm_protocols) {
1155             client_update_protocols(client);
1156             client_setup_decor_and_functions(client);
1157         }
1158         else if (msgtype == prop_atoms.net_wm_strut) {
1159             client_update_strut(client);
1160         }
1161         else if (msgtype == prop_atoms.net_wm_icon) {
1162             client_update_icons(client);
1163         }
1164         else if (msgtype == prop_atoms.net_wm_user_time) {
1165             client_update_user_time(client);
1166         }
1167         else if (msgtype == prop_atoms.sm_client_id) {
1168             client_update_sm_client_id(client);
1169         }
1170     default:
1171         ;
1172 #ifdef SHAPE
1173         if (extensions_shape && e->type == extensions_shape_event_basep) {
1174             client->shaped = ((XShapeEvent*)e)->shaped;
1175             frame_adjust_shape(client->frame);
1176         }
1177 #endif
1178     }
1179 }
1180
1181 static void event_handle_dock(ObDock *s, XEvent *e)
1182 {
1183     switch (e->type) {
1184     case ButtonPress:
1185         if (e->xbutton.button == 1)
1186             stacking_raise(DOCK_AS_WINDOW(s));
1187         else if (e->xbutton.button == 2)
1188             stacking_lower(DOCK_AS_WINDOW(s));
1189         break;
1190     case EnterNotify:
1191         dock_hide(FALSE);
1192         break;
1193     case LeaveNotify:
1194         dock_hide(TRUE);
1195         break;
1196     }
1197 }
1198
1199 static void event_handle_dockapp(ObDockApp *app, XEvent *e)
1200 {
1201     switch (e->type) {
1202     case MotionNotify:
1203         dock_app_drag(app, &e->xmotion);
1204         break;
1205     case UnmapNotify:
1206         if (app->ignore_unmaps) {
1207             app->ignore_unmaps--;
1208             break;
1209         }
1210         dock_remove(app, TRUE);
1211         break;
1212     case DestroyNotify:
1213         dock_remove(app, FALSE);
1214         break;
1215     case ReparentNotify:
1216         dock_remove(app, FALSE);
1217         break;
1218     case ConfigureNotify:
1219         dock_app_configure(app, e->xconfigure.width, e->xconfigure.height);
1220         break;
1221     }
1222 }
1223
1224 ObMenuFrame* find_active_menu()
1225 {
1226     GList *it;
1227     ObMenuFrame *ret = NULL;
1228
1229     for (it = menu_frame_visible; it; it = g_list_next(it)) {
1230         ret = it->data;
1231         if (ret->selected)
1232             break;
1233         ret = NULL;
1234     }
1235     return ret;
1236 }
1237
1238 ObMenuFrame* find_active_or_last_menu()
1239 {
1240     ObMenuFrame *ret = NULL;
1241
1242     ret = find_active_menu();
1243     if (!ret && menu_frame_visible)
1244         ret = menu_frame_visible->data;
1245     return ret;
1246 }
1247
1248 static void event_handle_menu(XEvent *ev)
1249 {
1250     ObMenuFrame *f;
1251     ObMenuEntryFrame *e;
1252
1253     switch (ev->type) {
1254     case ButtonRelease:
1255         if (menu_can_hide) {
1256             if ((e = menu_entry_frame_under(ev->xbutton.x_root,
1257                                             ev->xbutton.y_root)))
1258                 menu_entry_frame_execute(e, ev->xbutton.state,
1259                                          ev->xbutton.time);
1260             else
1261                 menu_frame_hide_all();
1262         }
1263         break;
1264     case EnterNotify:
1265         if ((e = g_hash_table_lookup(menu_frame_map, &ev->xcrossing.window))) {
1266             if (e->ignore_enters)
1267                 --e->ignore_enters;
1268             else
1269                 menu_frame_select(e->frame, e);
1270         }
1271         break;
1272     case LeaveNotify:
1273         if ((e = g_hash_table_lookup(menu_frame_map, &ev->xcrossing.window)) &&
1274             (f = find_active_menu()) && f->selected == e &&
1275             e->entry->type != OB_MENU_ENTRY_TYPE_SUBMENU)
1276         {
1277             menu_frame_select(e->frame, NULL);
1278         }
1279     case MotionNotify:   
1280         if ((e = menu_entry_frame_under(ev->xmotion.x_root,   
1281                                         ev->xmotion.y_root)))
1282             menu_frame_select(e->frame, e);   
1283         break;
1284     case KeyPress:
1285         if (ev->xkey.keycode == ob_keycode(OB_KEY_ESCAPE))
1286             menu_frame_hide_all();
1287         else if (ev->xkey.keycode == ob_keycode(OB_KEY_RETURN)) {
1288             ObMenuFrame *f;
1289             if ((f = find_active_menu()))
1290                 menu_entry_frame_execute(f->selected, ev->xkey.state,
1291                                          ev->xkey.time);
1292         } else if (ev->xkey.keycode == ob_keycode(OB_KEY_LEFT)) {
1293             ObMenuFrame *f;
1294             if ((f = find_active_or_last_menu()) && f->parent)
1295                 menu_frame_select(f, NULL);
1296         } else if (ev->xkey.keycode == ob_keycode(OB_KEY_RIGHT)) {
1297             ObMenuFrame *f;
1298             if ((f = find_active_or_last_menu()) && f->child)
1299                 menu_frame_select_next(f->child);
1300         } else if (ev->xkey.keycode == ob_keycode(OB_KEY_UP)) {
1301             ObMenuFrame *f;
1302             if ((f = find_active_or_last_menu()))
1303                 menu_frame_select_previous(f);
1304         } else if (ev->xkey.keycode == ob_keycode(OB_KEY_DOWN)) {
1305             ObMenuFrame *f;
1306             if ((f = find_active_or_last_menu()))
1307                 menu_frame_select_next(f);
1308         }
1309         break;
1310     }
1311 }
1312
1313 static gboolean menu_hide_delay_func(gpointer data)
1314 {
1315     menu_can_hide = TRUE;
1316     return FALSE; /* no repeat */
1317 }
1318
1319 static void focus_delay_dest(gpointer data)
1320 {
1321     g_free(data);
1322 }
1323
1324 static gboolean focus_delay_cmp(gconstpointer d1, gconstpointer d2)
1325 {
1326     const ObFocusDelayData *f1 = d1;
1327     return f1->client == d2;
1328 }
1329
1330 static gboolean focus_delay_func(gpointer data)
1331 {
1332     ObFocusDelayData *d = data;
1333     Time old = event_curtime;
1334
1335     event_curtime = d->time;
1336     if (focus_client != d->client) {
1337         if (client_focus(d->client) && config_focus_raise)
1338             client_raise(d->client);
1339     }
1340     event_curtime = old;
1341     return FALSE; /* no repeat */
1342 }
1343
1344 static void focus_delay_client_dest(ObClient *client, gpointer data)
1345 {
1346     ob_main_loop_timeout_remove_data(ob_main_loop, focus_delay_func,
1347                                      client, FALSE);
1348 }
1349
1350 void event_halt_focus_delay()
1351 {
1352     ob_main_loop_timeout_remove(ob_main_loop, focus_delay_func);
1353 }
1354
1355 void event_ignore_queued_enters()
1356 {
1357     GSList *saved = NULL, *it;
1358     XEvent *e;
1359                 
1360     XSync(ob_display, FALSE);
1361
1362     /* count the events */
1363     while (TRUE) {
1364         e = g_new(XEvent, 1);
1365         if (XCheckTypedEvent(ob_display, EnterNotify, e)) {
1366             ObWindow *win;
1367             
1368             win = g_hash_table_lookup(window_map, &e->xany.window);
1369             if (win && WINDOW_IS_CLIENT(win))
1370                 ++ignore_enter_focus;
1371             
1372             saved = g_slist_append(saved, e);
1373         } else {
1374             g_free(e);
1375             break;
1376         }
1377     }
1378     /* put the events back */
1379     for (it = saved; it; it = g_slist_next(it)) {
1380         XPutBackEvent(ob_display, it->data);
1381         g_free(it->data);
1382     }
1383     g_slist_free(saved);
1384 }
1385
1386 gboolean event_time_after(Time t1, Time t2)
1387 {
1388     g_assert(t1 != CurrentTime);
1389     g_assert(t2 != CurrentTime);
1390
1391     /*
1392       Timestamp values wrap around (after about 49.7 days). The server, given
1393       its current time is represented by timestamp T, always interprets
1394       timestamps from clients by treating half of the timestamp space as being
1395       later in time than T.
1396       - http://tronche.com/gui/x/xlib/input/pointer-grabbing.html
1397     */
1398
1399     /* TIME_HALF is half of the number space of a Time type variable */
1400 #define TIME_HALF (Time)(1 << (sizeof(Time)*8-1))
1401
1402     if (t2 >= TIME_HALF)
1403         /* t2 is in the second half so t1 might wrap around and be smaller than
1404            t2 */
1405         return t1 >= t2 || t1 < (t2 + TIME_HALF);
1406     else
1407         /* t2 is in the first half so t1 has to come after it */
1408         return t1 >= t2 && t1 < (t2 + TIME_HALF);
1409 }