1 /* -*- indent-tabs-mode: nil; tab-width: 4; c-basic-offset: 4; -*-
3 event.c for the Openbox window manager
4 Copyright (c) 2006 Mikael Magnusson
5 Copyright (c) 2003-2007 Dana Jansens
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.
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.
17 See the COPYING file for a copy of the GNU General Public License.
32 #include "menuframe.h"
38 #include "framerender.h"
40 #include "moveresize.h"
43 #include "extensions.h"
44 #include "translate.h"
47 #include <X11/Xatom.h>
50 #ifdef HAVE_SYS_SELECT_H
51 # include <sys/select.h>
57 # include <unistd.h> /* for usleep() */
60 # include <X11/XKBlib.h>
64 #include <X11/ICE/ICElib.h>
78 static void event_process(const XEvent
*e
, gpointer data
);
79 static void event_handle_root(XEvent
*e
);
80 static gboolean
event_handle_menu_keyboard(XEvent
*e
);
81 static gboolean
event_handle_menu(XEvent
*e
);
82 static void event_handle_dock(ObDock
*s
, XEvent
*e
);
83 static void event_handle_dockapp(ObDockApp
*app
, XEvent
*e
);
84 static void event_handle_client(ObClient
*c
, XEvent
*e
);
85 static void event_handle_user_time_window_clients(GSList
*l
, XEvent
*e
);
86 static void event_handle_user_input(ObClient
*client
, XEvent
*e
);
88 static void focus_delay_dest(gpointer data
);
89 static gboolean
focus_delay_cmp(gconstpointer d1
, gconstpointer d2
);
90 static gboolean
focus_delay_func(gpointer data
);
91 static void focus_delay_client_dest(ObClient
*client
, gpointer data
);
93 static gboolean
menu_hide_delay_func(gpointer data
);
95 /* The time for the current event being processed */
96 Time event_curtime
= CurrentTime
;
98 static guint ignore_enter_focus
= 0;
99 static gboolean menu_can_hide
;
100 static gboolean focus_left_screen
= FALSE
;
103 static void ice_handler(gint fd
, gpointer conn
)
106 IceProcessMessages(conn
, NULL
, &b
);
109 static void ice_watch(IceConn conn
, IcePointer data
, Bool opening
,
110 IcePointer
*watch_data
)
115 fd
= IceConnectionNumber(conn
);
116 ob_main_loop_fd_add(ob_main_loop
, fd
, ice_handler
, conn
, NULL
);
118 ob_main_loop_fd_remove(ob_main_loop
, fd
);
124 void event_startup(gboolean reconfig
)
126 if (reconfig
) return;
128 ob_main_loop_x_add(ob_main_loop
, event_process
, NULL
, NULL
);
131 IceAddConnectionWatch(ice_watch
, NULL
);
134 client_add_destructor(focus_delay_client_dest
, NULL
);
137 void event_shutdown(gboolean reconfig
)
139 if (reconfig
) return;
142 IceRemoveConnectionWatch(ice_watch
, NULL
);
145 client_remove_destructor(focus_delay_client_dest
);
148 static Window
event_get_window(XEvent
*e
)
155 window
= RootWindow(ob_display
, ob_screen
);
158 window
= e
->xmap
.window
;
161 window
= e
->xunmap
.window
;
164 window
= e
->xdestroywindow
.window
;
166 case ConfigureRequest
:
167 window
= e
->xconfigurerequest
.window
;
169 case ConfigureNotify
:
170 window
= e
->xconfigure
.window
;
174 if (extensions_xkb
&& e
->type
== extensions_xkb_event_basep
) {
175 switch (((XkbAnyEvent
*)e
)->xkb_type
) {
177 window
= ((XkbBellNotifyEvent
*)e
)->window
;
184 if (extensions_sync
&&
185 e
->type
== extensions_sync_event_basep
+ XSyncAlarmNotify
)
190 window
= e
->xany
.window
;
195 static void event_set_curtime(XEvent
*e
)
197 Time t
= CurrentTime
;
199 /* grab the lasttime and hack up the state */
215 t
= e
->xproperty
.time
;
219 t
= e
->xcrossing
.time
;
223 if (extensions_sync
&&
224 e
->type
== extensions_sync_event_basep
+ XSyncAlarmNotify
)
226 t
= ((XSyncAlarmNotifyEvent
*)e
)->time
;
229 /* if more event types are anticipated, get their timestamp
237 static void event_hack_mods(XEvent
*e
)
240 XkbStateRec xkb_state
;
246 e
->xbutton
.state
= modkeys_only_modifier_masks(e
->xbutton
.state
);
249 e
->xkey
.state
= modkeys_only_modifier_masks(e
->xkey
.state
);
252 e
->xkey
.state
= modkeys_only_modifier_masks(e
->xkey
.state
);
254 if (XkbGetState(ob_display
, XkbUseCoreKbd
, &xkb_state
) == Success
) {
255 e
->xkey
.state
= xkb_state
.compat_state
;
259 /* remove from the state the mask of the modifier key being released,
260 if it is a modifier key being released that is */
261 e
->xkey
.state
&= ~modkeys_keycode_to_mask(e
->xkey
.keycode
);
264 e
->xmotion
.state
= modkeys_only_modifier_masks(e
->xmotion
.state
);
265 /* compress events */
268 while (XCheckTypedWindowEvent(ob_display
, e
->xmotion
.window
,
270 e
->xmotion
.x_root
= ce
.xmotion
.x_root
;
271 e
->xmotion
.y_root
= ce
.xmotion
.y_root
;
278 static gboolean
wanted_focusevent(XEvent
*e
, gboolean in_client_only
)
280 gint mode
= e
->xfocus
.mode
;
281 gint detail
= e
->xfocus
.detail
;
282 Window win
= e
->xany
.window
;
284 if (e
->type
== FocusIn
) {
285 /* These are ones we never want.. */
287 /* This means focus was given by a keyboard/mouse grab. */
288 if (mode
== NotifyGrab
)
290 /* This means focus was given back from a keyboard/mouse grab. */
291 if (mode
== NotifyUngrab
)
294 /* These are the ones we want.. */
296 if (win
== RootWindow(ob_display
, ob_screen
) && !in_client_only
) {
297 /* This means focus reverted off of a client */
298 if (detail
== NotifyPointerRoot
|| detail
== NotifyDetailNone
||
299 detail
== NotifyInferior
)
305 /* This means focus moved from the root window to a client */
306 if (detail
== NotifyVirtual
)
308 /* This means focus moved from one client to another */
309 if (detail
== NotifyNonlinearVirtual
)
311 /* This means focus moved to the frame window */
312 if (detail
== NotifyInferior
&& !in_client_only
)
318 g_assert(e
->type
== FocusOut
);
320 /* These are ones we never want.. */
322 /* This means focus was taken by a keyboard/mouse grab. */
323 if (mode
== NotifyGrab
)
326 /* Focus left the root window revertedto state */
327 if (win
== RootWindow(ob_display
, ob_screen
))
330 /* These are the ones we want.. */
332 /* This means focus moved from a client to the root window */
333 if (detail
== NotifyVirtual
)
335 /* This means focus moved from one client to another */
336 if (detail
== NotifyNonlinearVirtual
)
338 /* This means focus had moved to our frame window and now moved off */
339 if (detail
== NotifyNonlinear
)
347 static Bool
look_for_focusin(Display
*d
, XEvent
*e
, XPointer arg
)
349 return e
->type
== FocusIn
&& wanted_focusevent(e
, FALSE
);
352 static Bool
look_for_focusin_client(Display
*d
, XEvent
*e
, XPointer arg
)
354 return e
->type
== FocusIn
&& wanted_focusevent(e
, TRUE
);
357 static void print_focusevent(XEvent
*e
)
359 gint mode
= e
->xfocus
.mode
;
360 gint detail
= e
->xfocus
.detail
;
361 Window win
= e
->xany
.window
;
362 const gchar
*modestr
, *detailstr
;
365 case NotifyNormal
: modestr
="NotifyNormal"; break;
366 case NotifyGrab
: modestr
="NotifyGrab"; break;
367 case NotifyUngrab
: modestr
="NotifyUngrab"; break;
368 case NotifyWhileGrabbed
: modestr
="NotifyWhileGrabbed"; break;
371 case NotifyAncestor
: detailstr
="NotifyAncestor"; break;
372 case NotifyVirtual
: detailstr
="NotifyVirtual"; break;
373 case NotifyInferior
: detailstr
="NotifyInferior"; break;
374 case NotifyNonlinear
: detailstr
="NotifyNonlinear"; break;
375 case NotifyNonlinearVirtual
: detailstr
="NotifyNonlinearVirtual"; break;
376 case NotifyPointer
: detailstr
="NotifyPointer"; break;
377 case NotifyPointerRoot
: detailstr
="NotifyPointerRoot"; break;
378 case NotifyDetailNone
: detailstr
="NotifyDetailNone"; break;
383 ob_debug_type(OB_DEBUG_FOCUS
, "Focus%s 0x%x mode=%s detail=%s\n",
384 (e
->xfocus
.type
== FocusIn
? "In" : "Out"),
390 static gboolean
event_ignore(XEvent
*e
, ObClient
*client
)
395 if (!wanted_focusevent(e
, FALSE
))
400 if (!wanted_focusevent(e
, FALSE
))
407 static void event_process(const XEvent
*ec
, gpointer data
)
410 ObClient
*client
= NULL
;
412 ObDockApp
*dockapp
= NULL
;
413 ObWindow
*obwin
= NULL
;
414 GSList
*timewinclients
= NULL
;
416 ObEventData
*ed
= data
;
418 /* make a copy we can mangle */
422 window
= event_get_window(e
);
423 if (e
->type
!= PropertyNotify
||
424 !(timewinclients
= propwin_get_clients(window
,
425 OB_PROPWIN_USER_TIME
)))
426 if ((obwin
= g_hash_table_lookup(window_map
, &window
))) {
427 switch (obwin
->type
) {
429 dock
= WINDOW_AS_DOCK(obwin
);
432 dockapp
= WINDOW_AS_DOCKAPP(obwin
);
435 client
= WINDOW_AS_CLIENT(obwin
);
438 case Window_Internal
:
439 /* not to be used for events */
440 g_assert_not_reached();
445 event_set_curtime(e
);
447 if (event_ignore(e
, client
)) {
454 /* deal with it in the kernel */
456 if (menu_frame_visible
&&
457 (e
->type
== EnterNotify
|| e
->type
== LeaveNotify
))
459 /* crossing events for menu */
460 event_handle_menu(e
);
461 } else if (e
->type
== FocusIn
) {
462 if (e
->xfocus
.detail
== NotifyPointerRoot
||
463 e
->xfocus
.detail
== NotifyDetailNone
||
464 e
->xfocus
.detail
== NotifyInferior
)
467 ob_debug_type(OB_DEBUG_FOCUS
,
468 "Focus went to pointer root/none or to our frame "
471 /* If another FocusIn is in the queue then don't fallback yet. This
472 fixes the fun case of:
473 window map -> send focusin
474 window unmap -> get focusout
475 window map -> send focusin
476 get first focus out -> fall back to something (new window
477 hasn't received focus yet, so something else) -> send focusin
478 which means the "something else" is the last thing to get a
479 focusin sent to it, so the new window doesn't end up with focus.
481 But if the other focus in is something like PointerRoot then we
482 still want to fall back.
484 if (XCheckIfEvent(ob_display
, &ce
, look_for_focusin_client
, NULL
)){
485 XPutBackEvent(ob_display
, &ce
);
486 ob_debug_type(OB_DEBUG_FOCUS
,
487 " but another FocusIn is coming\n");
489 /* Focus has been reverted to the root window, nothing, or to
492 FocusOut events come after UnmapNotify, so we don't need to
493 worry about focusing an invalid window
496 /* In this case we know focus is in our screen */
497 if (e
->xfocus
.detail
== NotifyInferior
)
498 focus_left_screen
= FALSE
;
500 if (!focus_left_screen
)
501 focus_fallback(TRUE
);
503 } else if (client
&& client
!= focus_client
) {
504 focus_left_screen
= FALSE
;
505 frame_adjust_focus(client
->frame
, TRUE
);
506 focus_set_client(client
);
507 client_calc_layer(client
);
508 client_bring_helper_windows(client
);
510 } else if (e
->type
== FocusOut
) {
511 gboolean nomove
= FALSE
;
514 /* Look for the followup FocusIn */
515 if (!XCheckIfEvent(ob_display
, &ce
, look_for_focusin
, NULL
)) {
516 /* There is no FocusIn, this means focus went to a window that
517 is not being managed, or a window on another screen. */
521 xerror_set_ignore(TRUE
);
522 if (XGetInputFocus(ob_display
, &win
, &i
) != 0 &&
523 XGetGeometry(ob_display
, win
, &root
, &i
,&i
,&u
,&u
,&u
,&u
) != 0 &&
524 root
!= RootWindow(ob_display
, ob_screen
))
526 ob_debug_type(OB_DEBUG_FOCUS
,
527 "Focus went to another screen !\n");
528 focus_left_screen
= TRUE
;
531 ob_debug_type(OB_DEBUG_FOCUS
,
532 "Focus went to a black hole !\n");
533 xerror_set_ignore(FALSE
);
534 /* nothing is focused */
535 focus_set_client(NULL
);
536 } else if (ce
.xany
.window
== e
->xany
.window
) {
537 ob_debug_type(OB_DEBUG_FOCUS
, "Focus didn't go anywhere\n");
538 /* If focus didn't actually move anywhere, there is nothing to do*/
541 /* Focus did move, so process the FocusIn event */
542 ObEventData ed
= { .ignored
= FALSE
};
543 event_process(&ce
, &ed
);
545 /* The FocusIn was ignored, this means it was on a window
546 that isn't a client. */
547 ob_debug_type(OB_DEBUG_FOCUS
,
548 "Focus went to an unmanaged window 0x%x !\n",
550 focus_fallback(TRUE
);
554 if (client
&& !nomove
) {
555 frame_adjust_focus(client
->frame
, FALSE
);
556 /* focus_set_client has already been called for sure */
557 client_calc_layer(client
);
559 } else if (timewinclients
)
560 event_handle_user_time_window_clients(timewinclients
, e
);
562 event_handle_client(client
, e
);
564 event_handle_dockapp(dockapp
, e
);
566 event_handle_dock(dock
, e
);
567 else if (window
== RootWindow(ob_display
, ob_screen
))
568 event_handle_root(e
);
569 else if (e
->type
== MapRequest
)
570 client_manage(window
);
571 else if (e
->type
== ClientMessage
) {
572 /* This is for _NET_WM_REQUEST_FRAME_EXTENTS messages. They come for
573 windows that are not managed yet. */
574 if (e
->xclient
.message_type
== prop_atoms
.net_request_frame_extents
) {
575 /* Pretend to manage the client, getting information used to
576 determine its decorations */
577 ObClient
*c
= client_fake_manage(e
->xclient
.window
);
580 /* adjust the decorations so we know the sizes */
581 frame_adjust_area(c
->frame
, FALSE
, TRUE
, TRUE
);
583 /* set the frame extents on the window */
584 vals
[0] = c
->frame
->size
.left
;
585 vals
[1] = c
->frame
->size
.right
;
586 vals
[2] = c
->frame
->size
.top
;
587 vals
[3] = c
->frame
->size
.bottom
;
588 PROP_SETA32(e
->xclient
.window
, net_frame_extents
,
591 /* Free the pretend client */
592 client_fake_unmanage(c
);
595 else if (e
->type
== ConfigureRequest
) {
596 /* unhandled config5Aure requests must be used to configure the
600 xwc
.x
= e
->xconfigurerequest
.x
;
601 xwc
.y
= e
->xconfigurerequest
.y
;
602 xwc
.width
= e
->xconfigurerequest
.width
;
603 xwc
.height
= e
->xconfigurerequest
.height
;
604 xwc
.border_width
= e
->xconfigurerequest
.border_width
;
605 xwc
.sibling
= e
->xconfigurerequest
.above
;
606 xwc
.stack_mode
= e
->xconfigurerequest
.detail
;
608 /* we are not to be held responsible if someone sends us an
610 xerror_set_ignore(TRUE
);
611 XConfigureWindow(ob_display
, window
,
612 e
->xconfigurerequest
.value_mask
, &xwc
);
613 xerror_set_ignore(FALSE
);
616 else if (extensions_sync
&&
617 e
->type
== extensions_sync_event_basep
+ XSyncAlarmNotify
)
619 XSyncAlarmNotifyEvent
*se
= (XSyncAlarmNotifyEvent
*)e
;
620 if (se
->alarm
== moveresize_alarm
&& moveresize_in_progress
)
625 if (e
->type
== ButtonPress
|| e
->type
== ButtonRelease
||
626 e
->type
== MotionNotify
|| e
->type
== KeyPress
||
627 e
->type
== KeyRelease
)
629 event_handle_user_input(client
, e
);
632 /* if something happens and it's not from an XEvent, then we don't know
634 event_curtime
= CurrentTime
;
637 static void event_handle_root(XEvent
*e
)
643 ob_debug("Another WM has requested to replace us. Exiting.\n");
648 if (e
->xclient
.format
!= 32) break;
650 msgtype
= e
->xclient
.message_type
;
651 if (msgtype
== prop_atoms
.net_current_desktop
) {
652 guint d
= e
->xclient
.data
.l
[0];
653 if (d
< screen_num_desktops
) {
654 event_curtime
= e
->xclient
.data
.l
[1];
655 if (event_curtime
== 0)
656 ob_debug_type(OB_DEBUG_APP_BUGS
,
657 "_NET_CURRENT_DESKTOP message is missing "
659 screen_set_desktop(d
, TRUE
);
661 } else if (msgtype
== prop_atoms
.net_number_of_desktops
) {
662 guint d
= e
->xclient
.data
.l
[0];
664 screen_set_num_desktops(d
);
665 } else if (msgtype
== prop_atoms
.net_showing_desktop
) {
666 screen_show_desktop(e
->xclient
.data
.l
[0] != 0, TRUE
);
667 } else if (msgtype
== prop_atoms
.openbox_control
) {
668 if (e
->xclient
.data
.l
[0] == 1)
670 else if (e
->xclient
.data
.l
[0] == 2)
675 if (e
->xproperty
.atom
== prop_atoms
.net_desktop_names
)
676 screen_update_desktop_names();
677 else if (e
->xproperty
.atom
== prop_atoms
.net_desktop_layout
)
678 screen_update_layout();
680 case ConfigureNotify
:
682 XRRUpdateConfiguration(e
);
691 void event_enter_client(ObClient
*client
)
693 g_assert(config_focus_follow
);
695 if (client_enter_focusable(client
) && client_can_focus(client
)) {
696 if (config_focus_delay
) {
697 ObFocusDelayData
*data
;
699 ob_main_loop_timeout_remove(ob_main_loop
, focus_delay_func
);
701 data
= g_new(ObFocusDelayData
, 1);
702 data
->client
= client
;
703 data
->time
= event_curtime
;
705 ob_main_loop_timeout_add(ob_main_loop
,
708 data
, focus_delay_cmp
, focus_delay_dest
);
710 ObFocusDelayData data
;
711 data
.client
= client
;
712 data
.time
= event_curtime
;
713 focus_delay_func(&data
);
718 static void event_handle_user_time_window_clients(GSList
*l
, XEvent
*e
)
720 g_assert(e
->type
== PropertyNotify
);
721 if (e
->xproperty
.atom
== prop_atoms
.net_wm_user_time
) {
722 for (; l
; l
= g_slist_next(l
))
723 client_update_user_time(l
->data
);
727 static void event_handle_client(ObClient
*client
, XEvent
*e
)
736 /* Wheel buttons don't draw because they are an instant click, so it
737 is a waste of resources to go drawing it.
738 if the user is doing an intereactive thing, or has a menu open then
739 the mouse is grabbed (possibly) and if we get these events we don't
740 want to deal with them
742 if (!(e
->xbutton
.button
== 4 || e
->xbutton
.button
== 5) &&
743 !keyboard_interactively_grabbed() &&
746 con
= frame_context(client
, e
->xbutton
.window
);
747 con
= mouse_button_frame_context(con
, e
->xbutton
.button
);
749 case OB_FRAME_CONTEXT_MAXIMIZE
:
750 client
->frame
->max_press
= (e
->type
== ButtonPress
);
751 framerender_frame(client
->frame
);
753 case OB_FRAME_CONTEXT_CLOSE
:
754 client
->frame
->close_press
= (e
->type
== ButtonPress
);
755 framerender_frame(client
->frame
);
757 case OB_FRAME_CONTEXT_ICONIFY
:
758 client
->frame
->iconify_press
= (e
->type
== ButtonPress
);
759 framerender_frame(client
->frame
);
761 case OB_FRAME_CONTEXT_ALLDESKTOPS
:
762 client
->frame
->desk_press
= (e
->type
== ButtonPress
);
763 framerender_frame(client
->frame
);
765 case OB_FRAME_CONTEXT_SHADE
:
766 client
->frame
->shade_press
= (e
->type
== ButtonPress
);
767 framerender_frame(client
->frame
);
770 /* nothing changes with clicks for any other contexts */
776 con
= frame_context(client
, e
->xcrossing
.window
);
778 case OB_FRAME_CONTEXT_MAXIMIZE
:
779 client
->frame
->max_hover
= FALSE
;
780 frame_adjust_state(client
->frame
);
782 case OB_FRAME_CONTEXT_ALLDESKTOPS
:
783 client
->frame
->desk_hover
= FALSE
;
784 frame_adjust_state(client
->frame
);
786 case OB_FRAME_CONTEXT_SHADE
:
787 client
->frame
->shade_hover
= FALSE
;
788 frame_adjust_state(client
->frame
);
790 case OB_FRAME_CONTEXT_ICONIFY
:
791 client
->frame
->iconify_hover
= FALSE
;
792 frame_adjust_state(client
->frame
);
794 case OB_FRAME_CONTEXT_CLOSE
:
795 client
->frame
->close_hover
= FALSE
;
796 frame_adjust_state(client
->frame
);
798 case OB_FRAME_CONTEXT_FRAME
:
799 /* When the mouse leaves an animating window, don't use the
800 corresponding enter events. Pretend like the animating window
801 doesn't even exist..! */
802 if (frame_iconify_animating(client
->frame
))
803 event_ignore_queued_enters();
805 ob_debug_type(OB_DEBUG_FOCUS
,
806 "%sNotify mode %d detail %d on %lx\n",
807 (e
->type
== EnterNotify
? "Enter" : "Leave"),
809 e
->xcrossing
.detail
, (client
?client
->window
:0));
810 if (keyboard_interactively_grabbed())
812 if (config_focus_follow
&& config_focus_delay
&&
813 /* leave inferior events can happen when the mouse goes onto
814 the window's border and then into the window before the
816 e
->xcrossing
.detail
!= NotifyInferior
)
818 ob_main_loop_timeout_remove_data(ob_main_loop
,
829 gboolean nofocus
= FALSE
;
831 if (ignore_enter_focus
) {
832 ignore_enter_focus
--;
836 con
= frame_context(client
, e
->xcrossing
.window
);
838 case OB_FRAME_CONTEXT_MAXIMIZE
:
839 client
->frame
->max_hover
= TRUE
;
840 frame_adjust_state(client
->frame
);
842 case OB_FRAME_CONTEXT_ALLDESKTOPS
:
843 client
->frame
->desk_hover
= TRUE
;
844 frame_adjust_state(client
->frame
);
846 case OB_FRAME_CONTEXT_SHADE
:
847 client
->frame
->shade_hover
= TRUE
;
848 frame_adjust_state(client
->frame
);
850 case OB_FRAME_CONTEXT_ICONIFY
:
851 client
->frame
->iconify_hover
= TRUE
;
852 frame_adjust_state(client
->frame
);
854 case OB_FRAME_CONTEXT_CLOSE
:
855 client
->frame
->close_hover
= TRUE
;
856 frame_adjust_state(client
->frame
);
858 case OB_FRAME_CONTEXT_FRAME
:
859 if (keyboard_interactively_grabbed())
861 if (e
->xcrossing
.mode
== NotifyGrab
||
862 e
->xcrossing
.mode
== NotifyUngrab
||
863 /*ignore enters when we're already in the window */
864 e
->xcrossing
.detail
== NotifyInferior
)
866 ob_debug_type(OB_DEBUG_FOCUS
,
867 "%sNotify mode %d detail %d on %lx IGNORED\n",
868 (e
->type
== EnterNotify
? "Enter" : "Leave"),
870 e
->xcrossing
.detail
, client
?client
->window
:0);
872 ob_debug_type(OB_DEBUG_FOCUS
,
873 "%sNotify mode %d detail %d on %lx, "
874 "focusing window: %d\n",
875 (e
->type
== EnterNotify
? "Enter" : "Leave"),
877 e
->xcrossing
.detail
, (client
?client
->window
:0),
879 if (!nofocus
&& config_focus_follow
)
880 event_enter_client(client
);
888 case ConfigureRequest
:
889 /* dont compress these unless you're going to watch for property
890 notifies in between (these can change what the configure would
892 also you can't compress stacking events
895 ob_debug("ConfigureRequest desktop %d wmstate %d vis %d\n",
896 screen_desktop
, client
->wmstate
, client
->frame
->visible
);
898 /* don't allow clients to move shaded windows (fvwm does this) */
899 if (client
->shaded
) {
900 e
->xconfigurerequest
.value_mask
&= ~CWX
;
901 e
->xconfigurerequest
.value_mask
&= ~CWY
;
904 /* resize, then move, as specified in the EWMH section 7.7 */
905 if (e
->xconfigurerequest
.value_mask
& (CWWidth
| CWHeight
|
910 if (e
->xconfigurerequest
.value_mask
& CWBorderWidth
)
911 client
->border_width
= e
->xconfigurerequest
.border_width
;
913 x
= (e
->xconfigurerequest
.value_mask
& CWX
) ?
914 e
->xconfigurerequest
.x
: client
->area
.x
;
915 y
= (e
->xconfigurerequest
.value_mask
& CWY
) ?
916 e
->xconfigurerequest
.y
: client
->area
.y
;
917 w
= (e
->xconfigurerequest
.value_mask
& CWWidth
) ?
918 e
->xconfigurerequest
.width
: client
->area
.width
;
919 h
= (e
->xconfigurerequest
.value_mask
& CWHeight
) ?
920 e
->xconfigurerequest
.height
: client
->area
.height
;
922 ob_debug("ConfigureRequest x %d %d y %d %d\n",
923 e
->xconfigurerequest
.value_mask
& CWX
, x
,
924 e
->xconfigurerequest
.value_mask
& CWY
, y
);
926 /* check for broken apps moving to their root position
928 XXX remove this some day...that would be nice. right now all
929 kde apps do this when they try activate themselves on another
930 desktop. eg. open amarok window on desktop 1, switch to desktop
931 2, click amarok tray icon. it will move by its decoration size.
933 if (x
!= client
->area
.x
&&
934 x
== (client
->frame
->area
.x
+ client
->frame
->size
.left
-
935 (gint
)client
->border_width
) &&
936 y
!= client
->area
.y
&&
937 y
== (client
->frame
->area
.y
+ client
->frame
->size
.top
-
938 (gint
)client
->border_width
))
940 ob_debug_type(OB_DEBUG_APP_BUGS
,
941 "Application %s is trying to move via "
942 "ConfigureRequest to it's root window position "
943 "but it is not using StaticGravity\n",
950 client_find_onscreen(client
, &x
, &y
, w
, h
, FALSE
);
951 client_configure_full(client
, x
, y
, w
, h
, FALSE
, TRUE
, TRUE
);
954 if (e
->xconfigurerequest
.value_mask
& CWStackMode
) {
955 switch (e
->xconfigurerequest
.detail
) {
958 /* Apps are so rude. And this is totally disconnected from
959 activation/focus. Bleh. */
960 /*client_lower(client);*/
966 /* Apps are so rude. And this is totally disconnected from
967 activation/focus. Bleh. */
968 /*client_raise(client);*/
974 if (client
->ignore_unmaps
) {
975 client
->ignore_unmaps
--;
978 ob_debug("UnmapNotify for window 0x%x eventwin 0x%x sendevent %d "
980 client
->window
, e
->xunmap
.event
, e
->xunmap
.from_configure
,
981 client
->ignore_unmaps
);
982 client_unmanage(client
);
985 ob_debug("DestroyNotify for window 0x%x\n", client
->window
);
986 client_unmanage(client
);
989 /* this is when the client is first taken captive in the frame */
990 if (e
->xreparent
.parent
== client
->frame
->plate
) break;
993 This event is quite rare and is usually handled in unmapHandler.
994 However, if the window is unmapped when the reparent event occurs,
995 the window manager never sees it because an unmap event is not sent
996 to an already unmapped window.
999 /* we don't want the reparent event, put it back on the stack for the
1000 X server to deal with after we unmanage the window */
1001 XPutBackEvent(ob_display
, e
);
1003 ob_debug("ReparentNotify for window 0x%x\n", client
->window
);
1004 client_unmanage(client
);
1007 ob_debug("MapRequest for 0x%lx\n", client
->window
);
1008 if (!client
->iconic
) break; /* this normally doesn't happen, but if it
1009 does, we don't want it!
1010 it can happen now when the window is on
1011 another desktop, but we still don't
1013 client_activate(client
, FALSE
, TRUE
);
1016 /* validate cuz we query stuff off the client here */
1017 if (!client_validate(client
)) break;
1019 if (e
->xclient
.format
!= 32) return;
1021 msgtype
= e
->xclient
.message_type
;
1022 if (msgtype
== prop_atoms
.wm_change_state
) {
1023 /* compress changes into a single change */
1024 while (XCheckTypedWindowEvent(ob_display
, client
->window
,
1026 /* XXX: it would be nice to compress ALL messages of a
1027 type, not just messages in a row without other
1028 message types between. */
1029 if (ce
.xclient
.message_type
!= msgtype
) {
1030 XPutBackEvent(ob_display
, &ce
);
1033 e
->xclient
= ce
.xclient
;
1035 client_set_wm_state(client
, e
->xclient
.data
.l
[0]);
1036 } else if (msgtype
== prop_atoms
.net_wm_desktop
) {
1037 /* compress changes into a single change */
1038 while (XCheckTypedWindowEvent(ob_display
, client
->window
,
1040 /* XXX: it would be nice to compress ALL messages of a
1041 type, not just messages in a row without other
1042 message types between. */
1043 if (ce
.xclient
.message_type
!= msgtype
) {
1044 XPutBackEvent(ob_display
, &ce
);
1047 e
->xclient
= ce
.xclient
;
1049 if ((unsigned)e
->xclient
.data
.l
[0] < screen_num_desktops
||
1050 (unsigned)e
->xclient
.data
.l
[0] == DESKTOP_ALL
)
1051 client_set_desktop(client
, (unsigned)e
->xclient
.data
.l
[0],
1053 } else if (msgtype
== prop_atoms
.net_wm_state
) {
1054 /* can't compress these */
1055 ob_debug("net_wm_state %s %ld %ld for 0x%lx\n",
1056 (e
->xclient
.data
.l
[0] == 0 ? "Remove" :
1057 e
->xclient
.data
.l
[0] == 1 ? "Add" :
1058 e
->xclient
.data
.l
[0] == 2 ? "Toggle" : "INVALID"),
1059 e
->xclient
.data
.l
[1], e
->xclient
.data
.l
[2],
1061 client_set_state(client
, e
->xclient
.data
.l
[0],
1062 e
->xclient
.data
.l
[1], e
->xclient
.data
.l
[2]);
1063 } else if (msgtype
== prop_atoms
.net_close_window
) {
1064 ob_debug("net_close_window for 0x%lx\n", client
->window
);
1065 client_close(client
);
1066 } else if (msgtype
== prop_atoms
.net_active_window
) {
1067 ob_debug("net_active_window for 0x%lx source=%s\n",
1069 (e
->xclient
.data
.l
[0] == 0 ? "unknown" :
1070 (e
->xclient
.data
.l
[0] == 1 ? "application" :
1071 (e
->xclient
.data
.l
[0] == 2 ? "user" : "INVALID"))));
1072 /* XXX make use of data.l[2] !? */
1073 event_curtime
= e
->xclient
.data
.l
[1];
1074 if (event_curtime
== 0)
1075 ob_debug_type(OB_DEBUG_APP_BUGS
,
1076 "_NET_ACTIVE_WINDOW message for window %s is "
1077 "missing a timestamp\n", client
->title
);
1078 client_activate(client
, FALSE
,
1079 (e
->xclient
.data
.l
[0] == 0 ||
1080 e
->xclient
.data
.l
[0] == 2));
1081 } else if (msgtype
== prop_atoms
.net_wm_moveresize
) {
1082 ob_debug("net_wm_moveresize for 0x%lx direction %d\n",
1083 client
->window
, e
->xclient
.data
.l
[2]);
1084 if ((Atom
)e
->xclient
.data
.l
[2] ==
1085 prop_atoms
.net_wm_moveresize_size_topleft
||
1086 (Atom
)e
->xclient
.data
.l
[2] ==
1087 prop_atoms
.net_wm_moveresize_size_top
||
1088 (Atom
)e
->xclient
.data
.l
[2] ==
1089 prop_atoms
.net_wm_moveresize_size_topright
||
1090 (Atom
)e
->xclient
.data
.l
[2] ==
1091 prop_atoms
.net_wm_moveresize_size_right
||
1092 (Atom
)e
->xclient
.data
.l
[2] ==
1093 prop_atoms
.net_wm_moveresize_size_right
||
1094 (Atom
)e
->xclient
.data
.l
[2] ==
1095 prop_atoms
.net_wm_moveresize_size_bottomright
||
1096 (Atom
)e
->xclient
.data
.l
[2] ==
1097 prop_atoms
.net_wm_moveresize_size_bottom
||
1098 (Atom
)e
->xclient
.data
.l
[2] ==
1099 prop_atoms
.net_wm_moveresize_size_bottomleft
||
1100 (Atom
)e
->xclient
.data
.l
[2] ==
1101 prop_atoms
.net_wm_moveresize_size_left
||
1102 (Atom
)e
->xclient
.data
.l
[2] ==
1103 prop_atoms
.net_wm_moveresize_move
||
1104 (Atom
)e
->xclient
.data
.l
[2] ==
1105 prop_atoms
.net_wm_moveresize_size_keyboard
||
1106 (Atom
)e
->xclient
.data
.l
[2] ==
1107 prop_atoms
.net_wm_moveresize_move_keyboard
) {
1109 moveresize_start(client
, e
->xclient
.data
.l
[0],
1110 e
->xclient
.data
.l
[1], e
->xclient
.data
.l
[3],
1111 e
->xclient
.data
.l
[2]);
1113 else if ((Atom
)e
->xclient
.data
.l
[2] ==
1114 prop_atoms
.net_wm_moveresize_cancel
)
1115 moveresize_end(TRUE
);
1116 } else if (msgtype
== prop_atoms
.net_moveresize_window
) {
1117 gint grav
, x
, y
, w
, h
;
1119 if (e
->xclient
.data
.l
[0] & 0xff)
1120 grav
= e
->xclient
.data
.l
[0] & 0xff;
1122 grav
= client
->gravity
;
1124 if (e
->xclient
.data
.l
[0] & 1 << 8)
1125 x
= e
->xclient
.data
.l
[1];
1128 if (e
->xclient
.data
.l
[0] & 1 << 9)
1129 y
= e
->xclient
.data
.l
[2];
1132 if (e
->xclient
.data
.l
[0] & 1 << 10)
1133 w
= e
->xclient
.data
.l
[3];
1135 w
= client
->area
.width
;
1136 if (e
->xclient
.data
.l
[0] & 1 << 11)
1137 h
= e
->xclient
.data
.l
[4];
1139 h
= client
->area
.height
;
1141 ob_debug("MOVERESIZE x %d %d y %d %d\n",
1142 e
->xclient
.data
.l
[0] & 1 << 8, x
,
1143 e
->xclient
.data
.l
[0] & 1 << 9, y
);
1144 client_convert_gravity(client
, grav
, &x
, &y
, w
, h
);
1145 client_find_onscreen(client
, &x
, &y
, w
, h
, FALSE
);
1146 client_configure(client
, x
, y
, w
, h
, FALSE
, TRUE
);
1149 case PropertyNotify
:
1150 /* validate cuz we query stuff off the client here */
1151 if (!client_validate(client
)) break;
1153 /* compress changes to a single property into a single change */
1154 while (XCheckTypedWindowEvent(ob_display
, client
->window
,
1158 /* XXX: it would be nice to compress ALL changes to a property,
1159 not just changes in a row without other props between. */
1161 a
= ce
.xproperty
.atom
;
1162 b
= e
->xproperty
.atom
;
1166 if ((a
== prop_atoms
.net_wm_name
||
1167 a
== prop_atoms
.wm_name
||
1168 a
== prop_atoms
.net_wm_icon_name
||
1169 a
== prop_atoms
.wm_icon_name
)
1171 (b
== prop_atoms
.net_wm_name
||
1172 b
== prop_atoms
.wm_name
||
1173 b
== prop_atoms
.net_wm_icon_name
||
1174 b
== prop_atoms
.wm_icon_name
)) {
1177 if (a
== prop_atoms
.net_wm_icon
&&
1178 b
== prop_atoms
.net_wm_icon
)
1181 XPutBackEvent(ob_display
, &ce
);
1185 msgtype
= e
->xproperty
.atom
;
1186 if (msgtype
== XA_WM_NORMAL_HINTS
) {
1187 client_update_normal_hints(client
);
1188 /* normal hints can make a window non-resizable */
1189 client_setup_decor_and_functions(client
);
1190 } else if (msgtype
== XA_WM_HINTS
) {
1191 client_update_wmhints(client
);
1192 } else if (msgtype
== XA_WM_TRANSIENT_FOR
) {
1193 client_update_transient_for(client
);
1194 client_get_type_and_transientness(client
);
1195 /* type may have changed, so update the layer */
1196 client_calc_layer(client
);
1197 client_setup_decor_and_functions(client
);
1198 } else if (msgtype
== prop_atoms
.net_wm_name
||
1199 msgtype
== prop_atoms
.wm_name
||
1200 msgtype
== prop_atoms
.net_wm_icon_name
||
1201 msgtype
== prop_atoms
.wm_icon_name
) {
1202 client_update_title(client
);
1203 } else if (msgtype
== prop_atoms
.wm_protocols
) {
1204 client_update_protocols(client
);
1205 client_setup_decor_and_functions(client
);
1207 else if (msgtype
== prop_atoms
.net_wm_strut
) {
1208 client_update_strut(client
);
1210 else if (msgtype
== prop_atoms
.net_wm_icon
) {
1211 client_update_icons(client
);
1213 else if (msgtype
== prop_atoms
.net_wm_icon_geometry
) {
1214 client_update_icon_geometry(client
);
1216 else if (msgtype
== prop_atoms
.net_wm_user_time
) {
1217 client_update_user_time(client
);
1219 else if (msgtype
== prop_atoms
.net_wm_user_time_window
) {
1220 client_update_user_time_window(client
);
1223 else if (msgtype
== prop_atoms
.net_wm_sync_request_counter
) {
1224 client_update_sync_request_counter(client
);
1227 case ColormapNotify
:
1228 client_update_colormap(client
, e
->xcolormap
.colormap
);
1233 if (extensions_shape
&& e
->type
== extensions_shape_event_basep
) {
1234 client
->shaped
= ((XShapeEvent
*)e
)->shaped
;
1235 frame_adjust_shape(client
->frame
);
1241 static void event_handle_dock(ObDock
*s
, XEvent
*e
)
1245 if (e
->xbutton
.button
== 1)
1246 stacking_raise(DOCK_AS_WINDOW(s
));
1247 else if (e
->xbutton
.button
== 2)
1248 stacking_lower(DOCK_AS_WINDOW(s
));
1259 static void event_handle_dockapp(ObDockApp
*app
, XEvent
*e
)
1263 dock_app_drag(app
, &e
->xmotion
);
1266 if (app
->ignore_unmaps
) {
1267 app
->ignore_unmaps
--;
1270 dock_remove(app
, TRUE
);
1273 dock_remove(app
, FALSE
);
1275 case ReparentNotify
:
1276 dock_remove(app
, FALSE
);
1278 case ConfigureNotify
:
1279 dock_app_configure(app
, e
->xconfigure
.width
, e
->xconfigure
.height
);
1284 static ObMenuFrame
* find_active_menu()
1287 ObMenuFrame
*ret
= NULL
;
1289 for (it
= menu_frame_visible
; it
; it
= g_list_next(it
)) {
1298 static ObMenuFrame
* find_active_or_last_menu()
1300 ObMenuFrame
*ret
= NULL
;
1302 ret
= find_active_menu();
1303 if (!ret
&& menu_frame_visible
)
1304 ret
= menu_frame_visible
->data
;
1308 static gboolean
event_handle_menu_keyboard(XEvent
*ev
)
1310 guint keycode
, state
;
1313 gboolean ret
= TRUE
;
1315 keycode
= ev
->xkey
.keycode
;
1316 state
= ev
->xkey
.state
;
1317 unikey
= translate_unichar(keycode
);
1319 frame
= find_active_or_last_menu();
1323 else if (keycode
== ob_keycode(OB_KEY_ESCAPE
) && state
== 0) {
1324 /* Escape closes the active menu */
1325 menu_frame_hide(frame
);
1328 else if (keycode
== ob_keycode(OB_KEY_RETURN
) && (state
== 0 ||
1329 state
== ControlMask
))
1331 /* Enter runs the active item or goes into the submenu.
1332 Control-Enter runs it without closing the menu. */
1334 menu_frame_select_next(frame
->child
);
1336 menu_entry_frame_execute(frame
->selected
, state
, ev
->xkey
.time
);
1339 else if (keycode
== ob_keycode(OB_KEY_LEFT
) && ev
->xkey
.state
== 0) {
1340 /* Left goes to the parent menu */
1341 menu_frame_select(frame
, NULL
, TRUE
);
1344 else if (keycode
== ob_keycode(OB_KEY_RIGHT
) && ev
->xkey
.state
== 0) {
1345 /* Right goes to the selected submenu */
1346 if (frame
->child
) menu_frame_select_next(frame
->child
);
1349 else if (keycode
== ob_keycode(OB_KEY_UP
) && state
== 0) {
1350 menu_frame_select_previous(frame
);
1353 else if (keycode
== ob_keycode(OB_KEY_DOWN
) && state
== 0) {
1354 menu_frame_select_next(frame
);
1357 /* keyboard accelerator shortcuts. */
1358 else if (ev
->xkey
.state
== 0 &&
1359 /* was it a valid key? */
1361 /* don't bother if the menu is empty. */
1366 ObMenuEntryFrame
*found
= NULL
;
1367 guint num_found
= 0;
1369 /* start after the selected one */
1370 start
= frame
->entries
;
1371 if (frame
->selected
) {
1372 for (it
= start
; frame
->selected
!= it
->data
; it
= g_list_next(it
))
1373 g_assert(it
!= NULL
); /* nothing was selected? */
1374 /* next with wraparound */
1375 start
= g_list_next(it
);
1376 if (start
== NULL
) start
= frame
->entries
;
1381 ObMenuEntryFrame
*e
= it
->data
;
1382 gunichar entrykey
= 0;
1384 if (e
->entry
->type
== OB_MENU_ENTRY_TYPE_NORMAL
)
1385 entrykey
= e
->entry
->data
.normal
.shortcut
;
1386 else if (e
->entry
->type
== OB_MENU_ENTRY_TYPE_SUBMENU
)
1387 entrykey
= e
->entry
->data
.submenu
.submenu
->shortcut
;
1389 if (unikey
== entrykey
) {
1390 if (found
== NULL
) found
= e
;
1394 /* next with wraparound */
1395 it
= g_list_next(it
);
1396 if (it
== NULL
) it
= frame
->entries
;
1397 } while (it
!= start
);
1400 if (found
->entry
->type
== OB_MENU_ENTRY_TYPE_NORMAL
&&
1403 menu_frame_select(frame
, found
, TRUE
);
1404 usleep(50000); /* highlight the item for a short bit so the
1405 user can see what happened */
1406 menu_entry_frame_execute(found
, state
, ev
->xkey
.time
);
1408 menu_frame_select(frame
, found
, TRUE
);
1410 menu_frame_select_next(frame
->child
);
1421 static gboolean
event_handle_menu(XEvent
*ev
)
1424 ObMenuEntryFrame
*e
;
1425 gboolean ret
= TRUE
;
1429 if ((ev
->xbutton
.button
< 4 || ev
->xbutton
.button
> 5)
1432 if ((e
= menu_entry_frame_under(ev
->xbutton
.x_root
,
1433 ev
->xbutton
.y_root
)))
1434 menu_entry_frame_execute(e
, ev
->xbutton
.state
,
1437 menu_frame_hide_all();
1441 if ((e
= g_hash_table_lookup(menu_frame_map
, &ev
->xcrossing
.window
))) {
1442 if (e
->ignore_enters
)
1445 menu_frame_select(e
->frame
, e
, FALSE
);
1449 if ((e
= g_hash_table_lookup(menu_frame_map
, &ev
->xcrossing
.window
)) &&
1450 (f
= find_active_menu()) && f
->selected
== e
&&
1451 e
->entry
->type
!= OB_MENU_ENTRY_TYPE_SUBMENU
)
1453 menu_frame_select(e
->frame
, NULL
, FALSE
);
1456 if ((e
= menu_entry_frame_under(ev
->xmotion
.x_root
,
1457 ev
->xmotion
.y_root
)))
1458 menu_frame_select(e
->frame
, e
, FALSE
);
1461 ret
= event_handle_menu_keyboard(ev
);
1467 static void event_handle_user_input(ObClient
*client
, XEvent
*e
)
1469 g_assert(e
->type
== ButtonPress
|| e
->type
== ButtonRelease
||
1470 e
->type
== MotionNotify
|| e
->type
== KeyPress
||
1471 e
->type
== KeyRelease
);
1473 if (menu_frame_visible
) {
1474 if (event_handle_menu(e
))
1475 /* don't use the event if the menu used it, but if the menu
1476 didn't use it and it's a keypress that is bound, it will
1477 close the menu and be used */
1481 /* if the keyboard interactive action uses the event then dont
1482 use it for bindings. likewise is moveresize uses the event. */
1483 if (!keyboard_process_interactive_grab(e
, &client
) &&
1484 !(moveresize_in_progress
&& moveresize_event(e
)))
1486 if (moveresize_in_progress
)
1487 /* make further actions work on the client being
1489 client
= moveresize_client
;
1491 menu_can_hide
= FALSE
;
1492 ob_main_loop_timeout_add(ob_main_loop
,
1493 config_menu_hide_delay
* 1000,
1494 menu_hide_delay_func
,
1495 NULL
, g_direct_equal
, NULL
);
1497 if (e
->type
== ButtonPress
||
1498 e
->type
== ButtonRelease
||
1499 e
->type
== MotionNotify
)
1501 /* the frame may not be "visible" but they can still click on it
1502 in the case where it is animating before disappearing */
1503 if (!client
|| !frame_iconify_animating(client
->frame
))
1504 mouse_event(client
, e
);
1505 } else if (e
->type
== KeyPress
) {
1506 keyboard_event((focus_cycle_target
? focus_cycle_target
:
1507 (client
? client
: focus_client
)), e
);
1512 static gboolean
menu_hide_delay_func(gpointer data
)
1514 menu_can_hide
= TRUE
;
1515 return FALSE
; /* no repeat */
1518 static void focus_delay_dest(gpointer data
)
1523 static gboolean
focus_delay_cmp(gconstpointer d1
, gconstpointer d2
)
1525 const ObFocusDelayData
*f1
= d1
;
1526 return f1
->client
== d2
;
1529 static gboolean
focus_delay_func(gpointer data
)
1531 ObFocusDelayData
*d
= data
;
1532 Time old
= event_curtime
;
1534 event_curtime
= d
->time
;
1535 if (focus_client
!= d
->client
) {
1536 if (client_focus(d
->client
) && config_focus_raise
)
1537 client_raise(d
->client
);
1539 event_curtime
= old
;
1540 return FALSE
; /* no repeat */
1543 static void focus_delay_client_dest(ObClient
*client
, gpointer data
)
1545 ob_main_loop_timeout_remove_data(ob_main_loop
, focus_delay_func
,
1549 void event_halt_focus_delay()
1551 ob_main_loop_timeout_remove(ob_main_loop
, focus_delay_func
);
1554 void event_ignore_queued_enters()
1556 GSList
*saved
= NULL
, *it
;
1559 XSync(ob_display
, FALSE
);
1561 /* count the events */
1563 e
= g_new(XEvent
, 1);
1564 if (XCheckTypedEvent(ob_display
, EnterNotify
, e
)) {
1567 win
= g_hash_table_lookup(window_map
, &e
->xany
.window
);
1568 if (win
&& WINDOW_IS_CLIENT(win
))
1569 ++ignore_enter_focus
;
1571 saved
= g_slist_append(saved
, e
);
1577 /* put the events back */
1578 for (it
= saved
; it
; it
= g_slist_next(it
)) {
1579 XPutBackEvent(ob_display
, it
->data
);
1582 g_slist_free(saved
);
1585 gboolean
event_time_after(Time t1
, Time t2
)
1587 g_assert(t1
!= CurrentTime
);
1588 g_assert(t2
!= CurrentTime
);
1591 Timestamp values wrap around (after about 49.7 days). The server, given
1592 its current time is represented by timestamp T, always interprets
1593 timestamps from clients by treating half of the timestamp space as being
1594 later in time than T.
1595 - http://tronche.com/gui/x/xlib/input/pointer-grabbing.html
1598 /* TIME_HALF is half of the number space of a Time type variable */
1599 #define TIME_HALF (Time)(1 << (sizeof(Time)*8-1))
1601 if (t2
>= TIME_HALF
)
1602 /* t2 is in the second half so t1 might wrap around and be smaller than
1604 return t1
>= t2
|| t1
< (t2
+ TIME_HALF
);
1606 /* t2 is in the first half so t1 has to come after it */
1607 return t1
>= t2
&& t1
< (t2
+ TIME_HALF
);