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