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