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