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