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.
33 #include "menuframe.h"
37 #include "focus_cycle.h"
38 #include "moveresize.h"
42 #include "obt/display.h"
44 #include "obt/keyboard.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>
81 gulong start
; /* inclusive */
82 gulong end
; /* inclusive */
85 static void event_process(const XEvent
*e
, gpointer data
);
86 static void event_handle_root(XEvent
*e
);
87 static gboolean
event_handle_menu_input(XEvent
*e
);
88 static void event_handle_menu(ObMenuFrame
*frame
, XEvent
*e
);
89 static gboolean
event_handle_prompt(ObPrompt
*p
, XEvent
*e
);
90 static void event_handle_dock(ObDock
*s
, XEvent
*e
);
91 static void event_handle_dockapp(ObDockApp
*app
, XEvent
*e
);
92 static void event_handle_client(ObClient
*c
, XEvent
*e
);
93 static void event_handle_user_input(ObClient
*client
, XEvent
*e
);
94 static gboolean
is_enter_focus_event_ignored(gulong serial
);
95 static void event_ignore_enter_range(gulong start
, gulong end
);
97 static void focus_delay_dest(gpointer data
);
98 static gboolean
focus_delay_cmp(gconstpointer d1
, gconstpointer d2
);
99 static gboolean
focus_delay_func(gpointer data
);
100 static gboolean
unfocus_delay_func(gpointer data
);
101 static void focus_delay_client_dest(ObClient
*client
, gpointer data
);
103 Time event_curtime
= CurrentTime
;
104 Time event_last_user_time
= CurrentTime
;
105 /*! The serial of the current X event */
107 static gulong event_curserial
;
108 static gboolean focus_left_screen
= FALSE
;
109 /*! A list of ObSerialRanges which are to be ignored for mouse enter events */
110 static GSList
*ignore_serials
= NULL
;
113 static void ice_handler(gint fd
, gpointer conn
)
116 IceProcessMessages(conn
, NULL
, &b
);
119 static void ice_watch(IceConn conn
, IcePointer data
, Bool opening
,
120 IcePointer
*watch_data
)
125 fd
= IceConnectionNumber(conn
);
126 obt_main_loop_fd_add(ob_main_loop
, fd
, ice_handler
, conn
, NULL
);
128 obt_main_loop_fd_remove(ob_main_loop
, fd
);
134 void event_startup(gboolean reconfig
)
136 if (reconfig
) return;
138 obt_main_loop_x_add(ob_main_loop
, event_process
, NULL
, NULL
);
141 IceAddConnectionWatch(ice_watch
, NULL
);
144 client_add_destroy_notify(focus_delay_client_dest
, NULL
);
147 void event_shutdown(gboolean reconfig
)
149 if (reconfig
) return;
152 IceRemoveConnectionWatch(ice_watch
, NULL
);
155 client_remove_destroy_notify(focus_delay_client_dest
);
158 static Window
event_get_window(XEvent
*e
)
165 window
= obt_root(ob_screen
);
168 window
= e
->xcreatewindow
.window
;
171 window
= e
->xmaprequest
.window
;
174 window
= e
->xmap
.window
;
177 window
= e
->xunmap
.window
;
180 window
= e
->xdestroywindow
.window
;
182 case ConfigureRequest
:
183 window
= e
->xconfigurerequest
.window
;
185 case ConfigureNotify
:
186 window
= e
->xconfigure
.window
;
190 if (obt_display_extension_xkb
&&
191 e
->type
== obt_display_extension_xkb_basep
)
193 switch (((XkbAnyEvent
*)e
)->xkb_type
) {
195 window
= ((XkbBellNotifyEvent
*)e
)->window
;
202 if (obt_display_extension_sync
&&
203 e
->type
== obt_display_extension_sync_basep
+ XSyncAlarmNotify
)
208 window
= e
->xany
.window
;
213 static void event_set_curtime(XEvent
*e
)
215 Time t
= CurrentTime
;
217 /* grab the lasttime and hack up the state */
233 t
= e
->xproperty
.time
;
237 t
= e
->xcrossing
.time
;
241 if (obt_display_extension_sync
&&
242 e
->type
== obt_display_extension_sync_basep
+ XSyncAlarmNotify
)
244 t
= ((XSyncAlarmNotifyEvent
*)e
)->time
;
247 /* if more event types are anticipated, get their timestamp
252 /* watch that if we get an event earlier than the last specified user_time,
253 which can happen if the clock goes backwards, we erase the last
254 specified user_time */
255 if (t
&& event_last_user_time
&& event_time_after(event_last_user_time
, t
))
256 event_last_user_time
= CurrentTime
;
261 static void event_hack_mods(XEvent
*e
)
264 XkbStateRec xkb_state
;
270 e
->xbutton
.state
= obt_keyboard_only_modmasks(e
->xbutton
.state
);
273 e
->xkey
.state
= obt_keyboard_only_modmasks(e
->xkey
.state
);
277 /* If XKB is present, then the modifiers are all strange from its
278 magic. Our X core protocol stuff won't work, so we use this to
279 find what the modifier state is instead. */
280 if (XkbGetState(obt_display
, XkbUseCoreKbd
, &xkb_state
) == Success
)
282 obt_keyboard_only_modmasks(xkb_state
.compat_state
);
286 e
->xkey
.state
= obt_keyboard_only_modmasks(e
->xkey
.state
);
287 /* remove from the state the mask of the modifier key being
288 released, if it is a modifier key being released that is */
289 e
->xkey
.state
&= ~obt_keyboard_keycode_to_modmask(e
->xkey
.keycode
);
293 e
->xmotion
.state
= obt_keyboard_only_modmasks(e
->xmotion
.state
);
294 /* compress events */
297 while (XCheckTypedWindowEvent(obt_display
, e
->xmotion
.window
,
299 e
->xmotion
.x
= ce
.xmotion
.x
;
300 e
->xmotion
.y
= ce
.xmotion
.y
;
301 e
->xmotion
.x_root
= ce
.xmotion
.x_root
;
302 e
->xmotion
.y_root
= ce
.xmotion
.y_root
;
309 static gboolean
wanted_focusevent(XEvent
*e
, gboolean in_client_only
)
311 gint mode
= e
->xfocus
.mode
;
312 gint detail
= e
->xfocus
.detail
;
313 Window win
= e
->xany
.window
;
315 if (e
->type
== FocusIn
) {
316 /* These are ones we never want.. */
318 /* This means focus was given by a keyboard/mouse grab. */
319 if (mode
== NotifyGrab
)
321 /* This means focus was given back from a keyboard/mouse grab. */
322 if (mode
== NotifyUngrab
)
325 /* These are the ones we want.. */
327 if (win
== obt_root(ob_screen
)) {
328 /* If looking for a focus in on a client, then always return
329 FALSE for focus in's to the root window */
332 /* This means focus reverted off of a client */
333 else if (detail
== NotifyPointerRoot
||
334 detail
== NotifyDetailNone
||
335 detail
== NotifyInferior
||
336 /* This means focus got here from another screen */
337 detail
== NotifyNonlinear
)
343 /* It was on a client, was it a valid one?
344 It's possible to get a FocusIn event for a client that was managed
347 if (in_client_only
) {
348 ObWindow
*w
= window_find(e
->xfocus
.window
);
349 if (!w
|| !WINDOW_IS_CLIENT(w
))
353 /* This means focus reverted to parent from the client (this
354 happens often during iconify animation) */
355 if (detail
== NotifyInferior
)
359 /* This means focus moved from the root window to a client */
360 if (detail
== NotifyVirtual
)
362 /* This means focus moved from one client to another */
363 if (detail
== NotifyNonlinearVirtual
)
369 g_assert(e
->type
== FocusOut
);
371 /* These are ones we never want.. */
373 /* This means focus was taken by a keyboard/mouse grab. */
374 if (mode
== NotifyGrab
)
376 /* This means focus was grabbed on a window and it was released. */
377 if (mode
== NotifyUngrab
)
380 /* Focus left the root window revertedto state */
381 if (win
== obt_root(ob_screen
))
384 /* These are the ones we want.. */
386 /* This means focus moved from a client to the root window */
387 if (detail
== NotifyVirtual
)
389 /* This means focus moved from one client to another */
390 if (detail
== NotifyNonlinearVirtual
)
398 static Bool
event_look_for_focusin(Display
*d
, XEvent
*e
, XPointer arg
)
400 return e
->type
== FocusIn
&& wanted_focusevent(e
, FALSE
);
403 static Bool
event_look_for_focusin_client(Display
*d
, XEvent
*e
, XPointer arg
)
405 return e
->type
== FocusIn
&& wanted_focusevent(e
, TRUE
);
408 static void print_focusevent(XEvent
*e
)
410 gint mode
= e
->xfocus
.mode
;
411 gint detail
= e
->xfocus
.detail
;
412 Window win
= e
->xany
.window
;
413 const gchar
*modestr
, *detailstr
;
416 case NotifyNormal
: modestr
="NotifyNormal"; break;
417 case NotifyGrab
: modestr
="NotifyGrab"; break;
418 case NotifyUngrab
: modestr
="NotifyUngrab"; break;
419 case NotifyWhileGrabbed
: modestr
="NotifyWhileGrabbed"; break;
420 default: g_assert_not_reached();
423 case NotifyAncestor
: detailstr
="NotifyAncestor"; break;
424 case NotifyVirtual
: detailstr
="NotifyVirtual"; break;
425 case NotifyInferior
: detailstr
="NotifyInferior"; break;
426 case NotifyNonlinear
: detailstr
="NotifyNonlinear"; break;
427 case NotifyNonlinearVirtual
: detailstr
="NotifyNonlinearVirtual"; break;
428 case NotifyPointer
: detailstr
="NotifyPointer"; break;
429 case NotifyPointerRoot
: detailstr
="NotifyPointerRoot"; break;
430 case NotifyDetailNone
: detailstr
="NotifyDetailNone"; break;
431 default: g_assert_not_reached();
434 if (mode
== NotifyGrab
|| mode
== NotifyUngrab
)
439 ob_debug_type(OB_DEBUG_FOCUS
, "Focus%s 0x%x mode=%s detail=%s",
440 (e
->xfocus
.type
== FocusIn
? "In" : "Out"),
446 static gboolean
event_ignore(XEvent
*e
, ObClient
*client
)
451 if (!wanted_focusevent(e
, FALSE
))
456 if (!wanted_focusevent(e
, FALSE
))
463 static void event_process(const XEvent
*ec
, gpointer data
)
466 ObEventData
*ed
= data
;
469 ObClient
*client
= NULL
;
471 ObDockApp
*dockapp
= NULL
;
472 ObWindow
*obwin
= NULL
;
473 ObMenuFrame
*menu
= NULL
;
474 ObPrompt
*prompt
= NULL
;
476 /* make a copy we can mangle */
480 window
= event_get_window(e
);
481 if (window
== obt_root(ob_screen
))
482 /* don't do any lookups, waste of cpu */;
483 else if ((obwin
= window_find(window
))) {
484 switch (obwin
->type
) {
485 case OB_WINDOW_CLASS_DOCK
:
486 dock
= WINDOW_AS_DOCK(obwin
);
488 case OB_WINDOW_CLASS_CLIENT
:
489 client
= WINDOW_AS_CLIENT(obwin
);
490 /* events on clients can be events on prompt windows too */
491 prompt
= client
->prompt
;
493 case OB_WINDOW_CLASS_MENUFRAME
:
494 menu
= WINDOW_AS_MENUFRAME(obwin
);
496 case OB_WINDOW_CLASS_INTERNAL
:
497 /* we don't do anything with events directly on these windows */
499 case OB_WINDOW_CLASS_PROMPT
:
500 prompt
= WINDOW_AS_PROMPT(obwin
);
505 dockapp
= dock_find_dockapp(window
);
507 event_set_curtime(e
);
508 event_curserial
= e
->xany
.serial
;
510 if (event_ignore(e
, client
)) {
517 /* deal with it in the kernel */
519 if (e
->type
== FocusIn
) {
521 e
->xfocus
.detail
== NotifyInferior
)
523 ob_debug_type(OB_DEBUG_FOCUS
,
524 "Focus went to the frame window");
526 focus_left_screen
= FALSE
;
528 focus_fallback(FALSE
, config_focus_under_mouse
, TRUE
, TRUE
);
530 /* We don't get a FocusOut for this case, because it's just moving
531 from our Inferior up to us. This happens when iconifying a
532 window with RevertToParent focus */
533 frame_adjust_focus(client
->frame
, FALSE
);
534 /* focus_set_client(NULL) has already been called */
536 else if (e
->xfocus
.detail
== NotifyPointerRoot
||
537 e
->xfocus
.detail
== NotifyDetailNone
||
538 e
->xfocus
.detail
== NotifyInferior
||
539 e
->xfocus
.detail
== NotifyNonlinear
)
543 ob_debug_type(OB_DEBUG_FOCUS
,
544 "Focus went to root or pointer root/none");
546 if (e
->xfocus
.detail
== NotifyInferior
||
547 e
->xfocus
.detail
== NotifyNonlinear
)
549 focus_left_screen
= FALSE
;
552 /* If another FocusIn is in the queue then don't fallback yet. This
553 fixes the fun case of:
554 window map -> send focusin
555 window unmap -> get focusout
556 window map -> send focusin
557 get first focus out -> fall back to something (new window
558 hasn't received focus yet, so something else) -> send focusin
559 which means the "something else" is the last thing to get a
560 focusin sent to it, so the new window doesn't end up with focus.
562 But if the other focus in is something like PointerRoot then we
563 still want to fall back.
565 if (XCheckIfEvent(obt_display
, &ce
, event_look_for_focusin_client
,
568 XPutBackEvent(obt_display
, &ce
);
569 ob_debug_type(OB_DEBUG_FOCUS
,
570 " but another FocusIn is coming");
572 /* Focus has been reverted.
574 FocusOut events come after UnmapNotify, so we don't need to
575 worry about focusing an invalid window
578 if (!focus_left_screen
)
579 focus_fallback(FALSE
, config_focus_under_mouse
,
585 ob_debug_type(OB_DEBUG_FOCUS
,
586 "Focus went to a window that is already gone");
588 /* If you send focus to a window and then it disappears, you can
589 get the FocusIn for it, after it is unmanaged.
590 Just wait for the next FocusOut/FocusIn pair, but make note that
591 the window that was focused no longer is. */
592 focus_set_client(NULL
);
594 else if (client
!= focus_client
) {
595 focus_left_screen
= FALSE
;
596 frame_adjust_focus(client
->frame
, TRUE
);
597 focus_set_client(client
);
598 client_calc_layer(client
);
599 client_bring_helper_windows(client
);
601 } else if (e
->type
== FocusOut
) {
604 /* Look for the followup FocusIn */
605 if (!XCheckIfEvent(obt_display
, &ce
, event_look_for_focusin
, NULL
)) {
606 /* There is no FocusIn, this means focus went to a window that
607 is not being managed, or a window on another screen. */
611 obt_display_ignore_errors(TRUE
);
612 if (XGetInputFocus(obt_display
, &win
, &i
) &&
613 XGetGeometry(obt_display
, win
, &root
, &i
,&i
,&u
,&u
,&u
,&u
) &&
614 root
!= obt_root(ob_screen
))
616 ob_debug_type(OB_DEBUG_FOCUS
,
617 "Focus went to another screen !");
618 focus_left_screen
= TRUE
;
621 ob_debug_type(OB_DEBUG_FOCUS
,
622 "Focus went to a black hole !");
623 obt_display_ignore_errors(FALSE
);
624 /* nothing is focused */
625 focus_set_client(NULL
);
627 /* Focus moved, so process the FocusIn event */
628 ObEventData ed
= { .ignored
= FALSE
};
629 event_process(&ce
, &ed
);
631 /* The FocusIn was ignored, this means it was on a window
632 that isn't a client. */
633 ob_debug_type(OB_DEBUG_FOCUS
,
634 "Focus went to an unmanaged window 0x%x !",
636 focus_fallback(TRUE
, config_focus_under_mouse
, TRUE
, TRUE
);
640 if (client
&& client
!= focus_client
) {
641 frame_adjust_focus(client
->frame
, FALSE
);
642 /* focus_set_client(NULL) has already been called in this
643 section or by focus_fallback */
647 event_handle_client(client
, e
);
649 event_handle_dockapp(dockapp
, e
);
651 event_handle_dock(dock
, e
);
653 event_handle_menu(menu
, e
);
654 else if (window
== obt_root(ob_screen
))
655 event_handle_root(e
);
656 else if (e
->type
== MapRequest
)
657 window_manage(window
);
658 else if (e
->type
== MappingNotify
) {
659 /* keyboard layout changes for modifier mapping changes. reload the
660 modifier map, and rebind all the key bindings as appropriate */
661 ob_debug("Keyboard map changed. Reloading keyboard bindings.");
662 ob_set_state(OB_STATE_RECONFIGURING
);
663 obt_keyboard_reload();
665 ob_set_state(OB_STATE_RUNNING
);
667 else if (e
->type
== ClientMessage
) {
668 /* This is for _NET_WM_REQUEST_FRAME_EXTENTS messages. They come for
669 windows that are not managed yet. */
670 if (e
->xclient
.message_type
==
671 OBT_PROP_ATOM(NET_REQUEST_FRAME_EXTENTS
))
673 /* Pretend to manage the client, getting information used to
674 determine its decorations */
675 ObClient
*c
= client_fake_manage(e
->xclient
.window
);
678 /* set the frame extents on the window */
679 vals
[0] = c
->frame
->size
.left
;
680 vals
[1] = c
->frame
->size
.right
;
681 vals
[2] = c
->frame
->size
.top
;
682 vals
[3] = c
->frame
->size
.bottom
;
683 OBT_PROP_SETA32(e
->xclient
.window
, NET_FRAME_EXTENTS
,
686 /* Free the pretend client */
687 client_fake_unmanage(c
);
690 else if (e
->type
== ConfigureRequest
) {
691 /* unhandled configure requests must be used to configure the
695 xwc
.x
= e
->xconfigurerequest
.x
;
696 xwc
.y
= e
->xconfigurerequest
.y
;
697 xwc
.width
= e
->xconfigurerequest
.width
;
698 xwc
.height
= e
->xconfigurerequest
.height
;
699 xwc
.border_width
= e
->xconfigurerequest
.border_width
;
700 xwc
.sibling
= e
->xconfigurerequest
.above
;
701 xwc
.stack_mode
= e
->xconfigurerequest
.detail
;
703 /* we are not to be held responsible if someone sends us an
705 obt_display_ignore_errors(TRUE
);
706 XConfigureWindow(obt_display
, window
,
707 e
->xconfigurerequest
.value_mask
, &xwc
);
708 obt_display_ignore_errors(FALSE
);
711 else if (obt_display_extension_sync
&&
712 e
->type
== obt_display_extension_sync_basep
+ XSyncAlarmNotify
)
714 XSyncAlarmNotifyEvent
*se
= (XSyncAlarmNotifyEvent
*)e
;
715 if (se
->alarm
== moveresize_alarm
&& moveresize_in_progress
)
720 if (prompt
&& event_handle_prompt(prompt
, e
))
722 else if (e
->type
== ButtonPress
|| e
->type
== ButtonRelease
) {
723 /* If the button press was on some non-root window, or was physically
724 on the root window, then process it */
725 if (window
!= obt_root(ob_screen
) ||
726 e
->xbutton
.subwindow
== None
)
728 event_handle_user_input(client
, e
);
730 /* Otherwise only process it if it was physically on an openbox
735 if ((w
= window_find(e
->xbutton
.subwindow
)) &&
736 WINDOW_IS_INTERNAL(w
))
738 event_handle_user_input(client
, e
);
742 else if (e
->type
== KeyPress
|| e
->type
== KeyRelease
||
743 e
->type
== MotionNotify
)
744 event_handle_user_input(client
, e
);
746 /* if something happens and it's not from an XEvent, then we don't know
748 event_curtime
= CurrentTime
;
752 static void event_handle_root(XEvent
*e
)
758 ob_debug("Another WM has requested to replace us. Exiting.");
763 if (e
->xclient
.format
!= 32) break;
765 msgtype
= e
->xclient
.message_type
;
766 if (msgtype
== OBT_PROP_ATOM(NET_CURRENT_DESKTOP
)) {
767 guint d
= e
->xclient
.data
.l
[0];
768 if (d
< screen_num_desktops
) {
769 event_curtime
= e
->xclient
.data
.l
[1];
770 if (event_curtime
== 0)
771 ob_debug_type(OB_DEBUG_APP_BUGS
,
772 "_NET_CURRENT_DESKTOP message is missing "
774 screen_set_desktop(d
, TRUE
);
776 } else if (msgtype
== OBT_PROP_ATOM(NET_NUMBER_OF_DESKTOPS
)) {
777 guint d
= e
->xclient
.data
.l
[0];
778 if (d
> 0 && d
<= 1000)
779 screen_set_num_desktops(d
);
780 } else if (msgtype
== OBT_PROP_ATOM(NET_SHOWING_DESKTOP
)) {
781 screen_show_desktop(e
->xclient
.data
.l
[0] != 0, NULL
);
782 } else if (msgtype
== OBT_PROP_ATOM(OB_CONTROL
)) {
783 ob_debug("OB_CONTROL: %d", e
->xclient
.data
.l
[0]);
784 if (e
->xclient
.data
.l
[0] == 1)
786 else if (e
->xclient
.data
.l
[0] == 2)
788 else if (e
->xclient
.data
.l
[0] == 3)
790 } else if (msgtype
== OBT_PROP_ATOM(WM_PROTOCOLS
)) {
791 if ((Atom
)e
->xclient
.data
.l
[0] == OBT_PROP_ATOM(NET_WM_PING
))
792 ping_got_pong(e
->xclient
.data
.l
[1]);
796 if (e
->xproperty
.atom
== OBT_PROP_ATOM(NET_DESKTOP_NAMES
)) {
797 ob_debug("UPDATE DESKTOP NAMES");
798 screen_update_desktop_names();
800 else if (e
->xproperty
.atom
== OBT_PROP_ATOM(NET_DESKTOP_LAYOUT
))
801 screen_update_layout();
803 case ConfigureNotify
:
805 XRRUpdateConfiguration(e
);
814 void event_enter_client(ObClient
*client
)
816 g_assert(config_focus_follow
);
818 if (is_enter_focus_event_ignored(event_curserial
)) {
819 ob_debug_type(OB_DEBUG_FOCUS
, "Ignoring enter event with serial %lu\n"
820 "on client 0x%x", event_curserial
, client
->window
);
824 if (client_enter_focusable(client
) && client_can_focus(client
)) {
825 if (config_focus_delay
) {
826 ObFocusDelayData
*data
;
828 obt_main_loop_timeout_remove(ob_main_loop
, focus_delay_func
);
830 data
= g_new(ObFocusDelayData
, 1);
831 data
->client
= client
;
832 data
->time
= event_curtime
;
833 data
->serial
= event_curserial
;
835 obt_main_loop_timeout_add(ob_main_loop
,
836 config_focus_delay
* 1000,
838 data
, focus_delay_cmp
, focus_delay_dest
);
840 ObFocusDelayData data
;
841 data
.client
= client
;
842 data
.time
= event_curtime
;
843 data
.serial
= event_curserial
;
844 focus_delay_func(&data
);
849 void event_leave_client(ObClient
*client
)
851 g_assert(config_focus_follow
);
853 if (is_enter_focus_event_ignored(event_curserial
)) {
854 ob_debug_type(OB_DEBUG_FOCUS
, "Ignoring leave event with serial %lu\n"
855 "on client 0x%x", event_curserial
, client
->window
);
859 if (client
== focus_client
) {
860 if (config_focus_delay
) {
861 ObFocusDelayData
*data
;
863 obt_main_loop_timeout_remove(ob_main_loop
, unfocus_delay_func
);
865 data
= g_new(ObFocusDelayData
, 1);
866 data
->client
= client
;
867 data
->time
= event_curtime
;
868 data
->serial
= event_curserial
;
870 obt_main_loop_timeout_add(ob_main_loop
,
871 config_focus_delay
* 1000,
873 data
, focus_delay_cmp
, focus_delay_dest
);
875 ObFocusDelayData data
;
876 data
.client
= client
;
877 data
.time
= event_curtime
;
878 data
.serial
= event_curserial
;
879 unfocus_delay_func(&data
);
884 static gboolean
*context_to_button(ObFrame
*f
, ObFrameContext con
, gboolean press
)
888 case OB_FRAME_CONTEXT_MAXIMIZE
:
889 return &f
->max_press
;
890 case OB_FRAME_CONTEXT_CLOSE
:
891 return &f
->close_press
;
892 case OB_FRAME_CONTEXT_ICONIFY
:
893 return &f
->iconify_press
;
894 case OB_FRAME_CONTEXT_ALLDESKTOPS
:
895 return &f
->desk_press
;
896 case OB_FRAME_CONTEXT_SHADE
:
897 return &f
->shade_press
;
903 case OB_FRAME_CONTEXT_MAXIMIZE
:
904 return &f
->max_hover
;
905 case OB_FRAME_CONTEXT_CLOSE
:
906 return &f
->close_hover
;
907 case OB_FRAME_CONTEXT_ICONIFY
:
908 return &f
->iconify_hover
;
909 case OB_FRAME_CONTEXT_ALLDESKTOPS
:
910 return &f
->desk_hover
;
911 case OB_FRAME_CONTEXT_SHADE
:
912 return &f
->shade_hover
;
919 static void compress_client_message_event(XEvent
*e
, XEvent
*ce
, Window window
,
922 /* compress changes into a single change */
923 while (XCheckTypedWindowEvent(obt_display
, window
, e
->type
, ce
)) {
924 /* XXX: it would be nice to compress ALL messages of a
925 type, not just messages in a row without other
926 message types between. */
927 if (ce
->xclient
.message_type
!= msgtype
) {
928 XPutBackEvent(obt_display
, ce
);
931 e
->xclient
= ce
->xclient
;
935 static void event_handle_client(ObClient
*client
, XEvent
*e
)
941 static gint px
= -1, py
= -1;
943 static ObFrameContext pcon
= OB_FRAME_CONTEXT_NONE
;
947 /* save where the press occured for the first button pressed */
949 pb
= e
->xbutton
.button
;
953 pcon
= frame_context(client
, e
->xbutton
.window
, px
, py
);
954 pcon
= mouse_button_frame_context(pcon
, e
->xbutton
.button
,
958 /* Wheel buttons don't draw because they are an instant click, so it
959 is a waste of resources to go drawing it.
960 if the user is doing an interactive thing, or has a menu open then
961 the mouse is grabbed (possibly) and if we get these events we don't
962 want to deal with them
964 if (!(e
->xbutton
.button
== 4 || e
->xbutton
.button
== 5) &&
967 /* use where the press occured */
968 con
= frame_context(client
, e
->xbutton
.window
, px
, py
);
969 con
= mouse_button_frame_context(con
, e
->xbutton
.button
,
972 /* button presses on CLIENT_CONTEXTs are not accompanied by a
973 release because they are Replayed to the client */
974 if ((e
->type
== ButtonRelease
|| CLIENT_CONTEXT(con
, client
)) &&
975 e
->xbutton
.button
== pb
)
976 pb
= 0, px
= py
= -1, pcon
= OB_FRAME_CONTEXT_NONE
;
978 but
= context_to_button(client
->frame
, con
, TRUE
);
980 *but
= (e
->type
== ButtonPress
);
981 frame_adjust_state(client
->frame
);
986 /* when there is a grab on the pointer, we won't get enter/leave
987 notifies, but we still get motion events */
988 if (grab_on_pointer()) break;
990 con
= frame_context(client
, e
->xmotion
.window
,
991 e
->xmotion
.x
, e
->xmotion
.y
);
993 case OB_FRAME_CONTEXT_TITLEBAR
:
994 case OB_FRAME_CONTEXT_TLCORNER
:
995 case OB_FRAME_CONTEXT_TRCORNER
:
996 /* we've left the button area inside the titlebar */
997 if (client
->frame
->max_hover
|| client
->frame
->desk_hover
||
998 client
->frame
->shade_hover
|| client
->frame
->iconify_hover
||
999 client
->frame
->close_hover
)
1001 client
->frame
->max_hover
=
1002 client
->frame
->desk_hover
=
1003 client
->frame
->shade_hover
=
1004 client
->frame
->iconify_hover
=
1005 client
->frame
->close_hover
= FALSE
;
1006 frame_adjust_state(client
->frame
);
1010 but
= context_to_button(client
->frame
, con
, FALSE
);
1011 if (but
&& !*but
&& !pb
) {
1013 frame_adjust_state(client
->frame
);
1019 con
= frame_context(client
, e
->xcrossing
.window
,
1020 e
->xcrossing
.x
, e
->xcrossing
.y
);
1022 case OB_FRAME_CONTEXT_TITLEBAR
:
1023 case OB_FRAME_CONTEXT_TLCORNER
:
1024 case OB_FRAME_CONTEXT_TRCORNER
:
1025 /* we've left the button area inside the titlebar */
1026 client
->frame
->max_hover
=
1027 client
->frame
->desk_hover
=
1028 client
->frame
->shade_hover
=
1029 client
->frame
->iconify_hover
=
1030 client
->frame
->close_hover
= FALSE
;
1031 if (e
->xcrossing
.mode
== NotifyGrab
) {
1032 client
->frame
->max_press
=
1033 client
->frame
->desk_press
=
1034 client
->frame
->shade_press
=
1035 client
->frame
->iconify_press
=
1036 client
->frame
->close_press
= FALSE
;
1039 case OB_FRAME_CONTEXT_FRAME
:
1040 /* When the mouse leaves an animating window, don't use the
1041 corresponding enter events. Pretend like the animating window
1042 doesn't even exist..! */
1043 if (frame_iconify_animating(client
->frame
))
1044 event_end_ignore_all_enters(event_start_ignore_all_enters());
1046 ob_debug_type(OB_DEBUG_FOCUS
,
1047 "%sNotify mode %d detail %d on %lx",
1048 (e
->type
== EnterNotify
? "Enter" : "Leave"),
1050 e
->xcrossing
.detail
, (client
?client
->window
:0));
1051 if (grab_on_keyboard())
1053 if (config_focus_follow
&&
1054 /* leave inferior events can happen when the mouse goes onto
1055 the window's border and then into the window before the
1057 e
->xcrossing
.detail
!= NotifyInferior
)
1059 if (config_focus_delay
)
1060 obt_main_loop_timeout_remove_data(ob_main_loop
,
1063 if (config_unfocus_leave
)
1064 event_leave_client(client
);
1068 but
= context_to_button(client
->frame
, con
, FALSE
);
1071 if (e
->xcrossing
.mode
== NotifyGrab
) {
1072 but
= context_to_button(client
->frame
, con
, TRUE
);
1075 frame_adjust_state(client
->frame
);
1082 con
= frame_context(client
, e
->xcrossing
.window
,
1083 e
->xcrossing
.x
, e
->xcrossing
.y
);
1085 case OB_FRAME_CONTEXT_FRAME
:
1086 if (grab_on_keyboard())
1088 if (e
->xcrossing
.mode
== NotifyGrab
||
1089 e
->xcrossing
.mode
== NotifyUngrab
||
1090 /*ignore enters when we're already in the window */
1091 e
->xcrossing
.detail
== NotifyInferior
)
1093 ob_debug_type(OB_DEBUG_FOCUS
,
1094 "%sNotify mode %d detail %d serial %lu on %lx "
1096 (e
->type
== EnterNotify
? "Enter" : "Leave"),
1098 e
->xcrossing
.detail
,
1099 e
->xcrossing
.serial
,
1100 client
?client
->window
:0);
1103 ob_debug_type(OB_DEBUG_FOCUS
,
1104 "%sNotify mode %d detail %d serial %lu on %lx, "
1106 (e
->type
== EnterNotify
? "Enter" : "Leave"),
1108 e
->xcrossing
.detail
,
1109 e
->xcrossing
.serial
,
1110 (client
?client
->window
:0));
1111 if (config_focus_follow
) {
1112 if (config_focus_delay
)
1113 obt_main_loop_timeout_remove_data(ob_main_loop
,
1116 event_enter_client(client
);
1121 but
= context_to_button(client
->frame
, con
, FALSE
);
1124 if (e
->xcrossing
.mode
== NotifyUngrab
) {
1125 but
= context_to_button(client
->frame
, con
, TRUE
);
1126 *but
= (con
== pcon
);
1128 frame_adjust_state(client
->frame
);
1134 case ConfigureRequest
:
1136 /* dont compress these unless you're going to watch for property
1137 notifies in between (these can change what the configure would
1139 also you can't compress stacking events
1143 gboolean move
= FALSE
;
1144 gboolean resize
= FALSE
;
1146 /* get the current area */
1147 RECT_TO_DIMS(client
->area
, x
, y
, w
, h
);
1149 ob_debug("ConfigureRequest for \"%s\" desktop %d wmstate %d "
1152 screen_desktop
, client
->wmstate
, client
->frame
->visible
);
1153 ob_debug(" x %d y %d w %d h %d b %d",
1154 x
, y
, w
, h
, client
->border_width
);
1156 if (e
->xconfigurerequest
.value_mask
& CWBorderWidth
)
1157 if (client
->border_width
!= e
->xconfigurerequest
.border_width
) {
1158 client
->border_width
= e
->xconfigurerequest
.border_width
;
1160 /* if the border width is changing then that is the same
1161 as requesting a resize, but we don't actually change
1162 the client's border, so it will change their root
1163 coordinates (since they include the border width) and
1164 we need to a notify then */
1168 if (e
->xconfigurerequest
.value_mask
& CWStackMode
) {
1169 ObClient
*sibling
= NULL
;
1170 gulong ignore_start
;
1173 /* get the sibling */
1174 if (e
->xconfigurerequest
.value_mask
& CWSibling
) {
1176 win
= window_find(e
->xconfigurerequest
.above
);
1177 if (win
&& WINDOW_IS_CLIENT(win
) &&
1178 WINDOW_AS_CLIENT(win
) != client
)
1180 sibling
= WINDOW_AS_CLIENT(win
);
1183 /* an invalid sibling was specified so don't restack at
1184 all, it won't make sense no matter what we do */
1189 if (!config_focus_under_mouse
)
1190 ignore_start
= event_start_ignore_all_enters();
1191 stacking_restack_request(client
, sibling
,
1192 e
->xconfigurerequest
.detail
);
1193 if (!config_focus_under_mouse
)
1194 event_end_ignore_all_enters(ignore_start
);
1197 /* a stacking change moves the window without resizing */
1201 if ((e
->xconfigurerequest
.value_mask
& CWX
) ||
1202 (e
->xconfigurerequest
.value_mask
& CWY
) ||
1203 (e
->xconfigurerequest
.value_mask
& CWWidth
) ||
1204 (e
->xconfigurerequest
.value_mask
& CWHeight
))
1206 /* don't allow clients to move shaded windows (fvwm does this)
1208 if (e
->xconfigurerequest
.value_mask
& CWX
) {
1209 if (!client
->shaded
)
1210 x
= e
->xconfigurerequest
.x
;
1213 if (e
->xconfigurerequest
.value_mask
& CWY
) {
1214 if (!client
->shaded
)
1215 y
= e
->xconfigurerequest
.y
;
1219 if (e
->xconfigurerequest
.value_mask
& CWWidth
) {
1220 w
= e
->xconfigurerequest
.width
;
1223 if (e
->xconfigurerequest
.value_mask
& CWHeight
) {
1224 h
= e
->xconfigurerequest
.height
;
1229 ob_debug("ConfigureRequest x(%d) %d y(%d) %d w(%d) %d h(%d) %d "
1230 "move %d resize %d",
1231 e
->xconfigurerequest
.value_mask
& CWX
, x
,
1232 e
->xconfigurerequest
.value_mask
& CWY
, y
,
1233 e
->xconfigurerequest
.value_mask
& CWWidth
, w
,
1234 e
->xconfigurerequest
.value_mask
& CWHeight
, h
,
1237 /* check for broken apps moving to their root position
1239 XXX remove this some day...that would be nice. right now all
1240 kde apps do this when they try activate themselves on another
1241 desktop. eg. open amarok window on desktop 1, switch to desktop
1242 2, click amarok tray icon. it will move by its decoration size.
1244 if (x
!= client
->area
.x
&&
1245 x
== (client
->frame
->area
.x
+ client
->frame
->size
.left
-
1246 (gint
)client
->border_width
) &&
1247 y
!= client
->area
.y
&&
1248 y
== (client
->frame
->area
.y
+ client
->frame
->size
.top
-
1249 (gint
)client
->border_width
) &&
1250 w
== client
->area
.width
&&
1251 h
== client
->area
.height
)
1253 ob_debug_type(OB_DEBUG_APP_BUGS
,
1254 "Application %s is trying to move via "
1255 "ConfigureRequest to it's root window position "
1256 "but it is not using StaticGravity",
1262 /* they still requested a move, so don't change whether a
1263 notify is sent or not */
1269 client_try_configure(client
, &x
, &y
, &w
, &h
, &lw
, &lh
, FALSE
);
1271 /* if x was not given, then use gravity to figure out the new
1272 x. the reference point should not be moved */
1273 if ((e
->xconfigurerequest
.value_mask
& CWWidth
&&
1274 !(e
->xconfigurerequest
.value_mask
& CWX
)))
1275 client_gravity_resize_w(client
, &x
, client
->area
.width
, w
);
1277 if ((e
->xconfigurerequest
.value_mask
& CWHeight
&&
1278 !(e
->xconfigurerequest
.value_mask
& CWY
)))
1279 client_gravity_resize_h(client
, &y
, client
->area
.height
,h
);
1281 client_find_onscreen(client
, &x
, &y
, w
, h
, FALSE
);
1283 ob_debug("Granting ConfigureRequest x %d y %d w %d h %d",
1285 client_configure(client
, x
, y
, w
, h
, FALSE
, TRUE
, TRUE
);
1290 ob_debug("UnmapNotify for window 0x%x eventwin 0x%x sendevent %d "
1292 client
->window
, e
->xunmap
.event
, e
->xunmap
.from_configure
,
1293 client
->ignore_unmaps
);
1294 if (client
->ignore_unmaps
) {
1295 client
->ignore_unmaps
--;
1298 client_unmanage(client
);
1301 ob_debug("DestroyNotify for window 0x%x", client
->window
);
1302 client_unmanage(client
);
1304 case ReparentNotify
:
1305 /* this is when the client is first taken captive in the frame */
1306 if (e
->xreparent
.parent
== client
->frame
->window
) break;
1309 This event is quite rare and is usually handled in unmapHandler.
1310 However, if the window is unmapped when the reparent event occurs,
1311 the window manager never sees it because an unmap event is not sent
1312 to an already unmapped window.
1315 /* we don't want the reparent event, put it back on the stack for the
1316 X server to deal with after we unmanage the window */
1317 XPutBackEvent(obt_display
, e
);
1319 ob_debug("ReparentNotify for window 0x%x", client
->window
);
1320 client_unmanage(client
);
1323 ob_debug("MapRequest for 0x%lx", client
->window
);
1324 if (!client
->iconic
) break; /* this normally doesn't happen, but if it
1325 does, we don't want it!
1326 it can happen now when the window is on
1327 another desktop, but we still don't
1329 client_activate(client
, FALSE
, FALSE
, TRUE
, TRUE
, TRUE
);
1332 /* validate cuz we query stuff off the client here */
1333 if (!client_validate(client
)) break;
1335 if (e
->xclient
.format
!= 32) return;
1337 msgtype
= e
->xclient
.message_type
;
1338 if (msgtype
== OBT_PROP_ATOM(WM_CHANGE_STATE
)) {
1339 compress_client_message_event(e
, &ce
, client
->window
, msgtype
);
1340 client_set_wm_state(client
, e
->xclient
.data
.l
[0]);
1341 } else if (msgtype
== OBT_PROP_ATOM(NET_WM_DESKTOP
)) {
1342 compress_client_message_event(e
, &ce
, client
->window
, msgtype
);
1343 if ((unsigned)e
->xclient
.data
.l
[0] < screen_num_desktops
||
1344 (unsigned)e
->xclient
.data
.l
[0] == DESKTOP_ALL
)
1345 client_set_desktop(client
, (unsigned)e
->xclient
.data
.l
[0],
1347 } else if (msgtype
== OBT_PROP_ATOM(NET_WM_STATE
)) {
1348 gulong ignore_start
;
1350 /* can't compress these */
1351 ob_debug("net_wm_state %s %ld %ld for 0x%lx",
1352 (e
->xclient
.data
.l
[0] == 0 ? "Remove" :
1353 e
->xclient
.data
.l
[0] == 1 ? "Add" :
1354 e
->xclient
.data
.l
[0] == 2 ? "Toggle" : "INVALID"),
1355 e
->xclient
.data
.l
[1], e
->xclient
.data
.l
[2],
1358 /* ignore enter events caused by these like ob actions do */
1359 if (!config_focus_under_mouse
)
1360 ignore_start
= event_start_ignore_all_enters();
1361 client_set_state(client
, e
->xclient
.data
.l
[0],
1362 e
->xclient
.data
.l
[1], e
->xclient
.data
.l
[2]);
1363 if (!config_focus_under_mouse
)
1364 event_end_ignore_all_enters(ignore_start
);
1365 } else if (msgtype
== OBT_PROP_ATOM(NET_CLOSE_WINDOW
)) {
1366 ob_debug("net_close_window for 0x%lx", client
->window
);
1367 client_close(client
);
1368 } else if (msgtype
== OBT_PROP_ATOM(NET_ACTIVE_WINDOW
)) {
1369 ob_debug("net_active_window for 0x%lx source=%s",
1371 (e
->xclient
.data
.l
[0] == 0 ? "unknown" :
1372 (e
->xclient
.data
.l
[0] == 1 ? "application" :
1373 (e
->xclient
.data
.l
[0] == 2 ? "user" : "INVALID"))));
1374 /* XXX make use of data.l[2] !? */
1375 if (e
->xclient
.data
.l
[0] == 1 || e
->xclient
.data
.l
[0] == 2) {
1376 event_curtime
= e
->xclient
.data
.l
[1];
1377 if (e
->xclient
.data
.l
[1] == 0)
1378 ob_debug_type(OB_DEBUG_APP_BUGS
,
1379 "_NET_ACTIVE_WINDOW message for window %s is"
1380 " missing a timestamp", client
->title
);
1382 ob_debug_type(OB_DEBUG_APP_BUGS
,
1383 "_NET_ACTIVE_WINDOW message for window %s is "
1384 "missing source indication", client
->title
);
1385 client_activate(client
, FALSE
, FALSE
, TRUE
, TRUE
,
1386 (e
->xclient
.data
.l
[0] == 0 ||
1387 e
->xclient
.data
.l
[0] == 2));
1388 } else if (msgtype
== OBT_PROP_ATOM(NET_WM_MOVERESIZE
)) {
1389 ob_debug("net_wm_moveresize for 0x%lx direction %d",
1390 client
->window
, e
->xclient
.data
.l
[2]);
1391 if ((Atom
)e
->xclient
.data
.l
[2] ==
1392 OBT_PROP_ATOM(NET_WM_MOVERESIZE_SIZE_TOPLEFT
) ||
1393 (Atom
)e
->xclient
.data
.l
[2] ==
1394 OBT_PROP_ATOM(NET_WM_MOVERESIZE_SIZE_TOP
) ||
1395 (Atom
)e
->xclient
.data
.l
[2] ==
1396 OBT_PROP_ATOM(NET_WM_MOVERESIZE_SIZE_TOPRIGHT
) ||
1397 (Atom
)e
->xclient
.data
.l
[2] ==
1398 OBT_PROP_ATOM(NET_WM_MOVERESIZE_SIZE_RIGHT
) ||
1399 (Atom
)e
->xclient
.data
.l
[2] ==
1400 OBT_PROP_ATOM(NET_WM_MOVERESIZE_SIZE_RIGHT
) ||
1401 (Atom
)e
->xclient
.data
.l
[2] ==
1402 OBT_PROP_ATOM(NET_WM_MOVERESIZE_SIZE_BOTTOMRIGHT
) ||
1403 (Atom
)e
->xclient
.data
.l
[2] ==
1404 OBT_PROP_ATOM(NET_WM_MOVERESIZE_SIZE_BOTTOM
) ||
1405 (Atom
)e
->xclient
.data
.l
[2] ==
1406 OBT_PROP_ATOM(NET_WM_MOVERESIZE_SIZE_BOTTOMLEFT
) ||
1407 (Atom
)e
->xclient
.data
.l
[2] ==
1408 OBT_PROP_ATOM(NET_WM_MOVERESIZE_SIZE_LEFT
) ||
1409 (Atom
)e
->xclient
.data
.l
[2] ==
1410 OBT_PROP_ATOM(NET_WM_MOVERESIZE_MOVE
) ||
1411 (Atom
)e
->xclient
.data
.l
[2] ==
1412 OBT_PROP_ATOM(NET_WM_MOVERESIZE_SIZE_KEYBOARD
) ||
1413 (Atom
)e
->xclient
.data
.l
[2] ==
1414 OBT_PROP_ATOM(NET_WM_MOVERESIZE_MOVE_KEYBOARD
))
1416 moveresize_start(client
, e
->xclient
.data
.l
[0],
1417 e
->xclient
.data
.l
[1], e
->xclient
.data
.l
[3],
1418 e
->xclient
.data
.l
[2]);
1420 else if ((Atom
)e
->xclient
.data
.l
[2] ==
1421 OBT_PROP_ATOM(NET_WM_MOVERESIZE_CANCEL
))
1422 moveresize_end(TRUE
);
1423 } else if (msgtype
== OBT_PROP_ATOM(NET_MOVERESIZE_WINDOW
)) {
1424 gint ograv
, x
, y
, w
, h
;
1426 ograv
= client
->gravity
;
1428 if (e
->xclient
.data
.l
[0] & 0xff)
1429 client
->gravity
= e
->xclient
.data
.l
[0] & 0xff;
1431 if (e
->xclient
.data
.l
[0] & 1 << 8)
1432 x
= e
->xclient
.data
.l
[1];
1435 if (e
->xclient
.data
.l
[0] & 1 << 9)
1436 y
= e
->xclient
.data
.l
[2];
1440 if (e
->xclient
.data
.l
[0] & 1 << 10) {
1441 w
= e
->xclient
.data
.l
[3];
1443 /* if x was not given, then use gravity to figure out the new
1444 x. the reference point should not be moved */
1445 if (!(e
->xclient
.data
.l
[0] & 1 << 8))
1446 client_gravity_resize_w(client
, &x
, client
->area
.width
, w
);
1449 w
= client
->area
.width
;
1451 if (e
->xclient
.data
.l
[0] & 1 << 11) {
1452 h
= e
->xclient
.data
.l
[4];
1455 if (!(e
->xclient
.data
.l
[0] & 1 << 9))
1456 client_gravity_resize_h(client
, &y
, client
->area
.height
,h
);
1459 h
= client
->area
.height
;
1461 ob_debug("MOVERESIZE x %d %d y %d %d (gravity %d)",
1462 e
->xclient
.data
.l
[0] & 1 << 8, x
,
1463 e
->xclient
.data
.l
[0] & 1 << 9, y
,
1466 client_find_onscreen(client
, &x
, &y
, w
, h
, FALSE
);
1468 client_configure(client
, x
, y
, w
, h
, FALSE
, TRUE
, FALSE
);
1470 client
->gravity
= ograv
;
1471 } else if (msgtype
== OBT_PROP_ATOM(NET_RESTACK_WINDOW
)) {
1472 if (e
->xclient
.data
.l
[0] != 2) {
1473 ob_debug_type(OB_DEBUG_APP_BUGS
,
1474 "_NET_RESTACK_WINDOW sent for window %s with "
1475 "invalid source indication %ld",
1476 client
->title
, e
->xclient
.data
.l
[0]);
1478 ObClient
*sibling
= NULL
;
1479 if (e
->xclient
.data
.l
[1]) {
1480 ObWindow
*win
= window_find(e
->xclient
.data
.l
[1]);
1481 if (WINDOW_IS_CLIENT(win
) &&
1482 WINDOW_AS_CLIENT(win
) != client
)
1484 sibling
= WINDOW_AS_CLIENT(win
);
1486 if (sibling
== NULL
)
1487 ob_debug_type(OB_DEBUG_APP_BUGS
,
1488 "_NET_RESTACK_WINDOW sent for window %s "
1489 "with invalid sibling 0x%x",
1490 client
->title
, e
->xclient
.data
.l
[1]);
1492 if (e
->xclient
.data
.l
[2] == Below
||
1493 e
->xclient
.data
.l
[2] == BottomIf
||
1494 e
->xclient
.data
.l
[2] == Above
||
1495 e
->xclient
.data
.l
[2] == TopIf
||
1496 e
->xclient
.data
.l
[2] == Opposite
)
1498 gulong ignore_start
;
1500 if (!config_focus_under_mouse
)
1501 ignore_start
= event_start_ignore_all_enters();
1502 /* just raise, don't activate */
1503 stacking_restack_request(client
, sibling
,
1504 e
->xclient
.data
.l
[2]);
1505 if (!config_focus_under_mouse
)
1506 event_end_ignore_all_enters(ignore_start
);
1508 /* send a synthetic ConfigureNotify, cuz this is supposed
1509 to be like a ConfigureRequest. */
1510 client_reconfigure(client
, TRUE
);
1512 ob_debug_type(OB_DEBUG_APP_BUGS
,
1513 "_NET_RESTACK_WINDOW sent for window %s "
1514 "with invalid detail %d",
1515 client
->title
, e
->xclient
.data
.l
[2]);
1519 case PropertyNotify
:
1520 /* validate cuz we query stuff off the client here */
1521 if (!client_validate(client
)) break;
1523 /* compress changes to a single property into a single change */
1524 while (XCheckTypedWindowEvent(obt_display
, client
->window
,
1528 /* XXX: it would be nice to compress ALL changes to a property,
1529 not just changes in a row without other props between. */
1531 a
= ce
.xproperty
.atom
;
1532 b
= e
->xproperty
.atom
;
1536 if ((a
== OBT_PROP_ATOM(NET_WM_NAME
) ||
1537 a
== OBT_PROP_ATOM(WM_NAME
) ||
1538 a
== OBT_PROP_ATOM(NET_WM_ICON_NAME
) ||
1539 a
== OBT_PROP_ATOM(WM_ICON_NAME
))
1541 (b
== OBT_PROP_ATOM(NET_WM_NAME
) ||
1542 b
== OBT_PROP_ATOM(WM_NAME
) ||
1543 b
== OBT_PROP_ATOM(NET_WM_ICON_NAME
) ||
1544 b
== OBT_PROP_ATOM(WM_ICON_NAME
))) {
1547 if (a
== OBT_PROP_ATOM(NET_WM_ICON
) &&
1548 b
== OBT_PROP_ATOM(NET_WM_ICON
))
1551 XPutBackEvent(obt_display
, &ce
);
1555 msgtype
= e
->xproperty
.atom
;
1556 if (msgtype
== XA_WM_NORMAL_HINTS
) {
1557 int x
, y
, w
, h
, lw
, lh
;
1559 ob_debug("Update NORMAL hints");
1560 client_update_normal_hints(client
);
1561 /* normal hints can make a window non-resizable */
1562 client_setup_decor_and_functions(client
, FALSE
);
1566 w
= client
->area
.width
;
1567 h
= client
->area
.height
;
1569 /* apply the new normal hints */
1570 client_try_configure(client
, &x
, &y
, &w
, &h
, &lw
, &lh
, FALSE
);
1571 /* make sure the window is visible, and if the window is resized
1572 off-screen due to the normal hints changing then this will push
1573 it back onto the screen. */
1574 client_find_onscreen(client
, &x
, &y
, w
, h
, FALSE
);
1576 /* make sure the client's sizes are within its bounds, but don't
1577 make it reply with a configurenotify unless something changed.
1578 emacs will update its normal hints every time it receives a
1580 client_configure(client
, x
, y
, w
, h
, FALSE
, TRUE
, FALSE
);
1581 } else if (msgtype
== OBT_PROP_ATOM(MOTIF_WM_HINTS
)) {
1582 client_get_mwm_hints(client
);
1583 /* This can override some mwm hints */
1584 client_get_type_and_transientness(client
);
1586 /* Apply the changes to the window */
1587 client_setup_decor_and_functions(client
, TRUE
);
1588 } else if (msgtype
== XA_WM_HINTS
) {
1589 client_update_wmhints(client
);
1590 } else if (msgtype
== XA_WM_TRANSIENT_FOR
) {
1591 client_update_transient_for(client
);
1592 client_get_type_and_transientness(client
);
1593 /* type may have changed, so update the layer */
1594 client_calc_layer(client
);
1595 client_setup_decor_and_functions(client
, TRUE
);
1596 } else if (msgtype
== OBT_PROP_ATOM(NET_WM_NAME
) ||
1597 msgtype
== OBT_PROP_ATOM(WM_NAME
) ||
1598 msgtype
== OBT_PROP_ATOM(NET_WM_ICON_NAME
) ||
1599 msgtype
== OBT_PROP_ATOM(WM_ICON_NAME
)) {
1600 client_update_title(client
);
1601 } else if (msgtype
== OBT_PROP_ATOM(WM_PROTOCOLS
)) {
1602 client_update_protocols(client
);
1603 client_setup_decor_and_functions(client
, TRUE
);
1605 else if (msgtype
== OBT_PROP_ATOM(NET_WM_STRUT
) ||
1606 msgtype
== OBT_PROP_ATOM(NET_WM_STRUT_PARTIAL
)) {
1607 client_update_strut(client
);
1609 else if (msgtype
== OBT_PROP_ATOM(NET_WM_ICON
)) {
1610 client_update_icons(client
);
1612 else if (msgtype
== OBT_PROP_ATOM(NET_WM_ICON_GEOMETRY
)) {
1613 client_update_icon_geometry(client
);
1615 else if (msgtype
== OBT_PROP_ATOM(NET_WM_USER_TIME
)) {
1617 if (client
== focus_client
&&
1618 OBT_PROP_GET32(client
->window
, NET_WM_USER_TIME
, CARDINAL
, &t
)
1619 && t
&& !event_time_after(t
, e
->xproperty
.time
) &&
1620 (!event_last_user_time
||
1621 event_time_after(t
, event_last_user_time
)))
1623 event_last_user_time
= t
;
1627 else if (msgtype
== OBT_PROP_ATOM(NET_WM_SYNC_REQUEST_COUNTER
)) {
1628 client_update_sync_request_counter(client
);
1632 case ColormapNotify
:
1633 client_update_colormap(client
, e
->xcolormap
.colormap
);
1640 if (obt_display_extension_shape
&&
1641 e
->type
== obt_display_extension_shape_basep
)
1643 switch (((XShapeEvent
*)e
)->kind
) {
1646 client
->shaped
= ((XShapeEvent
*)e
)->shaped
;
1647 kind
= ShapeBounding
;
1650 client
->shaped_input
= ((XShapeEvent
*)e
)->shaped
;
1654 g_assert_not_reached();
1656 frame_adjust_shape_kind(client
->frame
, kind
);
1663 static void event_handle_dock(ObDock
*s
, XEvent
*e
)
1667 if (e
->xbutton
.button
== 1)
1668 stacking_raise(DOCK_AS_WINDOW(s
));
1669 else if (e
->xbutton
.button
== 2)
1670 stacking_lower(DOCK_AS_WINDOW(s
));
1676 /* don't hide when moving into a dock app */
1677 if (e
->xcrossing
.detail
!= NotifyInferior
)
1683 static void event_handle_dockapp(ObDockApp
*app
, XEvent
*e
)
1687 dock_app_drag(app
, &e
->xmotion
);
1690 if (app
->ignore_unmaps
) {
1691 app
->ignore_unmaps
--;
1694 dock_unmanage(app
, TRUE
);
1697 case ReparentNotify
:
1698 dock_unmanage(app
, FALSE
);
1700 case ConfigureNotify
:
1701 dock_app_configure(app
, e
->xconfigure
.width
, e
->xconfigure
.height
);
1706 static ObMenuFrame
* find_active_menu(void)
1709 ObMenuFrame
*ret
= NULL
;
1711 for (it
= menu_frame_visible
; it
; it
= g_list_next(it
)) {
1720 static ObMenuFrame
* find_active_or_last_menu(void)
1722 ObMenuFrame
*ret
= NULL
;
1724 ret
= find_active_menu();
1725 if (!ret
&& menu_frame_visible
)
1726 ret
= menu_frame_visible
->data
;
1730 static gboolean
event_handle_prompt(ObPrompt
*p
, XEvent
*e
)
1736 return prompt_mouse_event(p
, e
);
1739 return prompt_key_event(p
, e
);
1745 static gboolean
event_handle_menu_input(XEvent
*ev
)
1747 gboolean ret
= FALSE
;
1749 if (ev
->type
== ButtonRelease
|| ev
->type
== ButtonPress
) {
1750 ObMenuEntryFrame
*e
;
1752 if (menu_hide_delay_reached() &&
1753 (ev
->xbutton
.button
< 4 || ev
->xbutton
.button
> 5))
1755 if ((e
= menu_entry_frame_under(ev
->xbutton
.x_root
,
1756 ev
->xbutton
.y_root
)))
1758 if (ev
->type
== ButtonPress
&& e
->frame
->child
)
1759 menu_frame_select(e
->frame
->child
, NULL
, TRUE
);
1760 menu_frame_select(e
->frame
, e
, TRUE
);
1761 if (ev
->type
== ButtonRelease
)
1762 menu_entry_frame_execute(e
, ev
->xbutton
.state
);
1764 else if (ev
->type
== ButtonRelease
)
1765 menu_frame_hide_all();
1769 else if (ev
->type
== MotionNotify
) {
1771 ObMenuEntryFrame
*e
;
1773 if ((e
= menu_entry_frame_under(ev
->xmotion
.x_root
,
1774 ev
->xmotion
.y_root
)))
1775 if (!(f
= find_active_menu()) ||
1777 f
->parent
== e
->frame
||
1778 f
->child
== e
->frame
)
1779 menu_frame_select(e
->frame
, e
, FALSE
);
1781 else if (ev
->type
== KeyPress
|| ev
->type
== KeyRelease
) {
1782 guint keycode
, state
;
1786 keycode
= ev
->xkey
.keycode
;
1787 state
= ev
->xkey
.state
;
1788 unikey
= obt_keyboard_keycode_to_unichar(keycode
);
1790 frame
= find_active_or_last_menu();
1792 g_assert_not_reached(); /* there is no active menu */
1794 /* Allow control while going thru the menu */
1795 else if (ev
->type
== KeyPress
&& (state
& ~ControlMask
) == 0) {
1796 frame
->got_press
= TRUE
;
1798 if (ob_keycode_match(keycode
, OB_KEY_ESCAPE
)) {
1799 menu_frame_hide_all();
1803 else if (ob_keycode_match(keycode
, OB_KEY_LEFT
)) {
1804 /* Left goes to the parent menu */
1806 menu_frame_select(frame
, NULL
, TRUE
);
1810 else if (ob_keycode_match(keycode
, OB_KEY_RIGHT
)) {
1811 /* Right goes to the selected submenu */
1812 if (frame
->child
) menu_frame_select_next(frame
->child
);
1816 else if (ob_keycode_match(keycode
, OB_KEY_UP
)) {
1817 menu_frame_select_previous(frame
);
1821 else if (ob_keycode_match(keycode
, OB_KEY_DOWN
)) {
1822 menu_frame_select_next(frame
);
1827 /* Use KeyRelease events for running things so that the key release
1828 doesn't get sent to the focused application.
1830 Allow ControlMask only, and don't bother if the menu is empty */
1831 else if (ev
->type
== KeyRelease
&& (state
& ~ControlMask
) == 0 &&
1832 frame
->entries
&& frame
->got_press
)
1834 if (ob_keycode_match(keycode
, OB_KEY_RETURN
)) {
1835 /* Enter runs the active item or goes into the submenu.
1836 Control-Enter runs it without closing the menu. */
1838 menu_frame_select_next(frame
->child
);
1839 else if (frame
->selected
)
1840 menu_entry_frame_execute(frame
->selected
, state
);
1845 /* keyboard accelerator shortcuts. (if it was a valid key) */
1846 else if (unikey
!= 0) {
1849 ObMenuEntryFrame
*found
= NULL
;
1850 guint num_found
= 0;
1852 /* start after the selected one */
1853 start
= frame
->entries
;
1854 if (frame
->selected
) {
1855 for (it
= start
; frame
->selected
!= it
->data
;
1856 it
= g_list_next(it
))
1857 g_assert(it
!= NULL
); /* nothing was selected? */
1858 /* next with wraparound */
1859 start
= g_list_next(it
);
1860 if (start
== NULL
) start
= frame
->entries
;
1865 ObMenuEntryFrame
*e
= it
->data
;
1866 gunichar entrykey
= 0;
1868 if (e
->entry
->type
== OB_MENU_ENTRY_TYPE_NORMAL
)
1869 entrykey
= e
->entry
->data
.normal
.shortcut
;
1870 else if (e
->entry
->type
== OB_MENU_ENTRY_TYPE_SUBMENU
)
1871 entrykey
= e
->entry
->data
.submenu
.submenu
->shortcut
;
1873 if (unikey
== entrykey
) {
1874 if (found
== NULL
) found
= e
;
1878 /* next with wraparound */
1879 it
= g_list_next(it
);
1880 if (it
== NULL
) it
= frame
->entries
;
1881 } while (it
!= start
);
1884 if (found
->entry
->type
== OB_MENU_ENTRY_TYPE_NORMAL
&&
1887 menu_frame_select(frame
, found
, TRUE
);
1888 usleep(50000); /* highlight the item for a short bit so
1889 the user can see what happened */
1890 menu_entry_frame_execute(found
, state
);
1892 menu_frame_select(frame
, found
, TRUE
);
1894 menu_frame_select_next(frame
->child
);
1906 static void event_handle_menu(ObMenuFrame
*frame
, XEvent
*ev
)
1909 ObMenuEntryFrame
*e
;
1913 if ((e
= g_hash_table_lookup(menu_frame_map
, &ev
->xcrossing
.window
))) {
1914 if (e
->ignore_enters
)
1916 else if (!(f
= find_active_menu()) ||
1918 f
->parent
== e
->frame
||
1919 f
->child
== e
->frame
)
1920 menu_frame_select(e
->frame
, e
, FALSE
);
1924 /*ignore leaves when we're already in the window */
1925 if (ev
->xcrossing
.detail
== NotifyInferior
)
1928 if ((e
= g_hash_table_lookup(menu_frame_map
, &ev
->xcrossing
.window
)) &&
1929 (f
= find_active_menu()) && f
->selected
== e
&&
1930 e
->entry
->type
!= OB_MENU_ENTRY_TYPE_SUBMENU
)
1932 ObMenuEntryFrame
*u
= menu_entry_frame_under(ev
->xcrossing
.x_root
,
1933 ev
->xcrossing
.y_root
);
1934 /* if we're just going from one entry in the menu to the next,
1935 don't unselect stuff first */
1936 if (!u
|| e
->frame
!= u
->frame
)
1937 menu_frame_select(e
->frame
, NULL
, FALSE
);
1943 static void event_handle_user_input(ObClient
*client
, XEvent
*e
)
1945 g_assert(e
->type
== ButtonPress
|| e
->type
== ButtonRelease
||
1946 e
->type
== MotionNotify
|| e
->type
== KeyPress
||
1947 e
->type
== KeyRelease
);
1949 if (menu_frame_visible
) {
1950 if (event_handle_menu_input(e
))
1951 /* don't use the event if the menu used it, but if the menu
1952 didn't use it and it's a keypress that is bound, it will
1953 close the menu and be used */
1957 /* if the keyboard interactive action uses the event then dont
1958 use it for bindings. likewise is moveresize uses the event. */
1959 if (!actions_interactive_input_event(e
) && !moveresize_event(e
)) {
1960 if (moveresize_in_progress
)
1961 /* make further actions work on the client being
1963 client
= moveresize_client
;
1965 if (e
->type
== ButtonPress
||
1966 e
->type
== ButtonRelease
||
1967 e
->type
== MotionNotify
)
1969 /* the frame may not be "visible" but they can still click on it
1970 in the case where it is animating before disappearing */
1971 if (!client
|| !frame_iconify_animating(client
->frame
))
1972 mouse_event(client
, e
);
1974 keyboard_event((focus_cycle_target
? focus_cycle_target
:
1975 (client
? client
: focus_client
)), e
);
1979 static void focus_delay_dest(gpointer data
)
1984 static gboolean
focus_delay_cmp(gconstpointer d1
, gconstpointer d2
)
1986 const ObFocusDelayData
*f1
= d1
;
1987 return f1
->client
== d2
;
1990 static gboolean
focus_delay_func(gpointer data
)
1992 ObFocusDelayData
*d
= data
;
1993 Time old
= event_curtime
;
1995 event_curtime
= d
->time
;
1996 event_curserial
= d
->serial
;
1997 if (client_focus(d
->client
) && config_focus_raise
)
1998 stacking_raise(CLIENT_AS_WINDOW(d
->client
));
1999 event_curtime
= old
;
2000 return FALSE
; /* no repeat */
2003 static gboolean
unfocus_delay_func(gpointer data
)
2005 ObFocusDelayData
*d
= data
;
2006 Time old
= event_curtime
;
2008 event_curtime
= d
->time
;
2009 event_curserial
= d
->serial
;
2011 event_curtime
= old
;
2012 return FALSE
; /* no repeat */
2015 static void focus_delay_client_dest(ObClient
*client
, gpointer data
)
2017 obt_main_loop_timeout_remove_data(ob_main_loop
, focus_delay_func
,
2019 obt_main_loop_timeout_remove_data(ob_main_loop
, unfocus_delay_func
,
2023 void event_halt_focus_delay(void)
2025 /* ignore all enter events up till the event which caused this to occur */
2026 if (event_curserial
) event_ignore_enter_range(1, event_curserial
);
2027 obt_main_loop_timeout_remove(ob_main_loop
, focus_delay_func
);
2028 obt_main_loop_timeout_remove(ob_main_loop
, unfocus_delay_func
);
2031 gulong
event_start_ignore_all_enters(void)
2033 return NextRequest(obt_display
);
2036 static void event_ignore_enter_range(gulong start
, gulong end
)
2040 g_assert(start
!= 0);
2043 r
= g_new(ObSerialRange
, 1);
2046 ignore_serials
= g_slist_prepend(ignore_serials
, r
);
2048 ob_debug_type(OB_DEBUG_FOCUS
, "ignoring enters from %lu until %lu",
2051 /* increment the serial so we don't ignore events we weren't meant to */
2052 OBT_PROP_ERASE(screen_support_win
, MOTIF_WM_HINTS
);
2055 void event_end_ignore_all_enters(gulong start
)
2057 /* Use (NextRequest-1) so that we ignore up to the current serial only.
2058 Inside event_ignore_enter_range, we increment the serial by one, but if
2059 we ignore that serial too, then any enter events generated by mouse
2060 movement will be ignored until we create some further network traffic.
2061 Instead ignore up to NextRequest-1, then when we increment the serial,
2062 we will be *past* the range of ignored serials */
2063 event_ignore_enter_range(start
, NextRequest(obt_display
)-1);
2066 static gboolean
is_enter_focus_event_ignored(gulong serial
)
2070 for (it
= ignore_serials
; it
; it
= next
) {
2071 ObSerialRange
*r
= it
->data
;
2073 next
= g_slist_next(it
);
2075 if ((glong
)(serial
- r
->end
) > 0) {
2077 ignore_serials
= g_slist_delete_link(ignore_serials
, it
);
2080 else if ((glong
)(serial
- r
->start
) >= 0)
2086 void event_cancel_all_key_grabs(void)
2088 if (actions_interactive_act_running()) {
2089 actions_interactive_cancel_act();
2090 ob_debug("KILLED interactive action");
2092 else if (menu_frame_visible
) {
2093 menu_frame_hide_all();
2094 ob_debug("KILLED open menus");
2096 else if (moveresize_in_progress
) {
2097 moveresize_end(TRUE
);
2098 ob_debug("KILLED interactive moveresize");
2100 else if (grab_on_keyboard()) {
2102 ob_debug("KILLED active grab on keyboard");
2105 ungrab_passive_key();
2107 XSync(obt_display
, FALSE
);
2110 gboolean
event_time_after(guint32 t1
, guint32 t2
)
2112 g_assert(t1
!= CurrentTime
);
2113 g_assert(t2
!= CurrentTime
);
2116 Timestamp values wrap around (after about 49.7 days). The server, given
2117 its current time is represented by timestamp T, always interprets
2118 timestamps from clients by treating half of the timestamp space as being
2119 later in time than T.
2120 - http://tronche.com/gui/x/xlib/input/pointer-grabbing.html
2123 /* TIME_HALF is not half of the number space of a Time type variable.
2124 * Rather, it is half the number space of a timestamp value, which is
2125 * always 32 bits. */
2126 #define TIME_HALF (guint32)(1 << 31)
2128 if (t2
>= TIME_HALF
)
2129 /* t2 is in the second half so t1 might wrap around and be smaller than
2131 return t1
>= t2
|| t1
< (t2
+ TIME_HALF
);
2133 /* t2 is in the first half so t1 has to come after it */
2134 return t1
>= t2
&& t1
< (t2
+ TIME_HALF
);
2137 Time
event_get_server_time(void)
2139 /* Generate a timestamp */
2142 XChangeProperty(obt_display
, screen_support_win
,
2143 OBT_PROP_ATOM(WM_CLASS
), OBT_PROP_ATOM(STRING
),
2144 8, PropModeAppend
, NULL
, 0);
2145 XWindowEvent(obt_display
, screen_support_win
, PropertyChangeMask
, &event
);
2146 return event
.xproperty
.time
;