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 gboolean
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
;
477 /* make a copy we can mangle */
481 window
= event_get_window(e
);
482 if (window
== obt_root(ob_screen
))
483 /* don't do any lookups, waste of cpu */;
484 else if ((obwin
= window_find(window
))) {
485 switch (obwin
->type
) {
486 case OB_WINDOW_CLASS_DOCK
:
487 dock
= WINDOW_AS_DOCK(obwin
);
489 case OB_WINDOW_CLASS_CLIENT
:
490 client
= WINDOW_AS_CLIENT(obwin
);
491 /* events on clients can be events on prompt windows too */
492 prompt
= client
->prompt
;
494 case OB_WINDOW_CLASS_MENUFRAME
:
495 menu
= WINDOW_AS_MENUFRAME(obwin
);
497 case OB_WINDOW_CLASS_INTERNAL
:
498 /* we don't do anything with events directly on these windows */
500 case OB_WINDOW_CLASS_PROMPT
:
501 prompt
= WINDOW_AS_PROMPT(obwin
);
506 dockapp
= dock_find_dockapp(window
);
508 event_set_curtime(e
);
509 event_curserial
= e
->xany
.serial
;
511 if (event_ignore(e
, client
)) {
518 /* deal with it in the kernel */
520 if (e
->type
== FocusIn
) {
522 e
->xfocus
.detail
== NotifyInferior
)
524 ob_debug_type(OB_DEBUG_FOCUS
,
525 "Focus went to the frame window");
527 focus_left_screen
= FALSE
;
529 focus_fallback(FALSE
, config_focus_under_mouse
, TRUE
, TRUE
);
531 /* We don't get a FocusOut for this case, because it's just moving
532 from our Inferior up to us. This happens when iconifying a
533 window with RevertToParent focus */
534 frame_adjust_focus(client
->frame
, FALSE
);
535 /* focus_set_client(NULL) has already been called */
537 else if (e
->xfocus
.detail
== NotifyPointerRoot
||
538 e
->xfocus
.detail
== NotifyDetailNone
||
539 e
->xfocus
.detail
== NotifyInferior
||
540 e
->xfocus
.detail
== NotifyNonlinear
)
544 ob_debug_type(OB_DEBUG_FOCUS
,
545 "Focus went to root or pointer root/none");
547 if (e
->xfocus
.detail
== NotifyInferior
||
548 e
->xfocus
.detail
== NotifyNonlinear
)
550 focus_left_screen
= FALSE
;
553 /* If another FocusIn is in the queue then don't fallback yet. This
554 fixes the fun case of:
555 window map -> send focusin
556 window unmap -> get focusout
557 window map -> send focusin
558 get first focus out -> fall back to something (new window
559 hasn't received focus yet, so something else) -> send focusin
560 which means the "something else" is the last thing to get a
561 focusin sent to it, so the new window doesn't end up with focus.
563 But if the other focus in is something like PointerRoot then we
564 still want to fall back.
566 if (XCheckIfEvent(obt_display
, &ce
, event_look_for_focusin_client
,
569 XPutBackEvent(obt_display
, &ce
);
570 ob_debug_type(OB_DEBUG_FOCUS
,
571 " but another FocusIn is coming");
573 /* Focus has been reverted.
575 FocusOut events come after UnmapNotify, so we don't need to
576 worry about focusing an invalid window
579 if (!focus_left_screen
)
580 focus_fallback(FALSE
, config_focus_under_mouse
,
586 ob_debug_type(OB_DEBUG_FOCUS
,
587 "Focus went to a window that is already gone");
589 /* If you send focus to a window and then it disappears, you can
590 get the FocusIn for it, after it is unmanaged.
591 Just wait for the next FocusOut/FocusIn pair, but make note that
592 the window that was focused no longer is. */
593 focus_set_client(NULL
);
595 else if (client
!= focus_client
) {
596 focus_left_screen
= FALSE
;
597 frame_adjust_focus(client
->frame
, TRUE
);
598 focus_set_client(client
);
599 client_calc_layer(client
);
600 client_bring_helper_windows(client
);
602 } else if (e
->type
== FocusOut
) {
605 /* Look for the followup FocusIn */
606 if (!XCheckIfEvent(obt_display
, &ce
, event_look_for_focusin
, NULL
)) {
607 /* There is no FocusIn, this means focus went to a window that
608 is not being managed, or a window on another screen. */
612 obt_display_ignore_errors(TRUE
);
613 if (XGetInputFocus(obt_display
, &win
, &i
) &&
614 XGetGeometry(obt_display
, win
, &root
, &i
,&i
,&u
,&u
,&u
,&u
) &&
615 root
!= obt_root(ob_screen
))
617 ob_debug_type(OB_DEBUG_FOCUS
,
618 "Focus went to another screen !");
619 focus_left_screen
= TRUE
;
622 ob_debug_type(OB_DEBUG_FOCUS
,
623 "Focus went to a black hole !");
624 obt_display_ignore_errors(FALSE
);
625 /* nothing is focused */
626 focus_set_client(NULL
);
628 /* Focus moved, so process the FocusIn event */
629 ObEventData ed
= { .ignored
= FALSE
};
630 event_process(&ce
, &ed
);
632 /* The FocusIn was ignored, this means it was on a window
633 that isn't a client. */
634 ob_debug_type(OB_DEBUG_FOCUS
,
635 "Focus went to an unmanaged window 0x%x !",
637 focus_fallback(TRUE
, config_focus_under_mouse
, TRUE
, TRUE
);
641 if (client
&& client
!= focus_client
) {
642 frame_adjust_focus(client
->frame
, FALSE
);
643 /* focus_set_client(NULL) has already been called in this
644 section or by focus_fallback */
648 event_handle_client(client
, e
);
650 event_handle_dockapp(dockapp
, e
);
652 event_handle_dock(dock
, e
);
654 event_handle_menu(menu
, e
);
655 else if (window
== obt_root(ob_screen
))
656 event_handle_root(e
);
657 else if (e
->type
== MapRequest
)
658 window_manage(window
);
659 else if (e
->type
== MappingNotify
) {
660 /* keyboard layout changes for modifier mapping changes. reload the
661 modifier map, and rebind all the key bindings as appropriate */
662 ob_debug("Keyboard map changed. Reloading keyboard bindings.");
663 ob_set_state(OB_STATE_RECONFIGURING
);
664 obt_keyboard_reload();
666 ob_set_state(OB_STATE_RUNNING
);
668 else if (e
->type
== ClientMessage
) {
669 /* This is for _NET_WM_REQUEST_FRAME_EXTENTS messages. They come for
670 windows that are not managed yet. */
671 if (e
->xclient
.message_type
==
672 OBT_PROP_ATOM(NET_REQUEST_FRAME_EXTENTS
))
674 /* Pretend to manage the client, getting information used to
675 determine its decorations */
676 ObClient
*c
= client_fake_manage(e
->xclient
.window
);
679 /* set the frame extents on the window */
680 vals
[0] = c
->frame
->size
.left
;
681 vals
[1] = c
->frame
->size
.right
;
682 vals
[2] = c
->frame
->size
.top
;
683 vals
[3] = c
->frame
->size
.bottom
;
684 OBT_PROP_SETA32(e
->xclient
.window
, NET_FRAME_EXTENTS
,
687 /* Free the pretend client */
688 client_fake_unmanage(c
);
691 else if (e
->type
== ConfigureRequest
) {
692 /* unhandled configure requests must be used to configure the
696 xwc
.x
= e
->xconfigurerequest
.x
;
697 xwc
.y
= e
->xconfigurerequest
.y
;
698 xwc
.width
= e
->xconfigurerequest
.width
;
699 xwc
.height
= e
->xconfigurerequest
.height
;
700 xwc
.border_width
= e
->xconfigurerequest
.border_width
;
701 xwc
.sibling
= e
->xconfigurerequest
.above
;
702 xwc
.stack_mode
= e
->xconfigurerequest
.detail
;
704 /* we are not to be held responsible if someone sends us an
706 obt_display_ignore_errors(TRUE
);
707 XConfigureWindow(obt_display
, window
,
708 e
->xconfigurerequest
.value_mask
, &xwc
);
709 obt_display_ignore_errors(FALSE
);
712 else if (obt_display_extension_sync
&&
713 e
->type
== obt_display_extension_sync_basep
+ XSyncAlarmNotify
)
715 XSyncAlarmNotifyEvent
*se
= (XSyncAlarmNotifyEvent
*)e
;
716 if (se
->alarm
== moveresize_alarm
&& moveresize_in_progress
)
721 if (e
->type
== ButtonPress
|| e
->type
== ButtonRelease
) {
723 static guint pressed
= 0;
724 static Window pressed_win
= None
;
726 /* If the button press was on some non-root window, or was physically
727 on the root window... */
728 if (window
!= obt_root(ob_screen
) ||
729 e
->xbutton
.subwindow
== None
||
730 /* ...or if it is related to the last button press we handled... */
731 pressed
== e
->xbutton
.button
||
732 /* ...or it if it was physically on an openbox
733 internal window... */
734 ((w
= window_find(e
->xbutton
.subwindow
)) &&
735 WINDOW_IS_INTERNAL(w
)))
736 /* ...then process the event, otherwise ignore it */
738 used
= event_handle_user_input(client
, e
);
740 if (e
->type
== ButtonPress
) {
741 pressed
= e
->xbutton
.button
;
742 pressed_win
= e
->xbutton
.subwindow
;
746 else if (e
->type
== KeyPress
|| e
->type
== KeyRelease
||
747 e
->type
== MotionNotify
)
748 used
= event_handle_user_input(client
, e
);
751 used
= event_handle_prompt(prompt
, e
);
753 /* if something happens and it's not from an XEvent, then we don't know
755 event_curtime
= CurrentTime
;
759 static void event_handle_root(XEvent
*e
)
765 ob_debug("Another WM has requested to replace us. Exiting.");
770 if (e
->xclient
.format
!= 32) break;
772 msgtype
= e
->xclient
.message_type
;
773 if (msgtype
== OBT_PROP_ATOM(NET_CURRENT_DESKTOP
)) {
774 guint d
= e
->xclient
.data
.l
[0];
775 if (d
< screen_num_desktops
) {
776 event_curtime
= e
->xclient
.data
.l
[1];
777 if (event_curtime
== 0)
778 ob_debug_type(OB_DEBUG_APP_BUGS
,
779 "_NET_CURRENT_DESKTOP message is missing "
781 screen_set_desktop(d
, TRUE
);
783 } else if (msgtype
== OBT_PROP_ATOM(NET_NUMBER_OF_DESKTOPS
)) {
784 guint d
= e
->xclient
.data
.l
[0];
785 if (d
> 0 && d
<= 1000)
786 screen_set_num_desktops(d
);
787 } else if (msgtype
== OBT_PROP_ATOM(NET_SHOWING_DESKTOP
)) {
788 screen_show_desktop(e
->xclient
.data
.l
[0] != 0, NULL
);
789 } else if (msgtype
== OBT_PROP_ATOM(OB_CONTROL
)) {
790 ob_debug("OB_CONTROL: %d", e
->xclient
.data
.l
[0]);
791 if (e
->xclient
.data
.l
[0] == 1)
793 else if (e
->xclient
.data
.l
[0] == 2)
795 else if (e
->xclient
.data
.l
[0] == 3)
797 } else if (msgtype
== OBT_PROP_ATOM(WM_PROTOCOLS
)) {
798 if ((Atom
)e
->xclient
.data
.l
[0] == OBT_PROP_ATOM(NET_WM_PING
))
799 ping_got_pong(e
->xclient
.data
.l
[1]);
803 if (e
->xproperty
.atom
== OBT_PROP_ATOM(NET_DESKTOP_NAMES
)) {
804 ob_debug("UPDATE DESKTOP NAMES");
805 screen_update_desktop_names();
807 else if (e
->xproperty
.atom
== OBT_PROP_ATOM(NET_DESKTOP_LAYOUT
))
808 screen_update_layout();
810 case ConfigureNotify
:
812 XRRUpdateConfiguration(e
);
821 void event_enter_client(ObClient
*client
)
823 g_assert(config_focus_follow
);
825 if (is_enter_focus_event_ignored(event_curserial
)) {
826 ob_debug_type(OB_DEBUG_FOCUS
, "Ignoring enter event with serial %lu\n"
827 "on client 0x%x", event_curserial
, client
->window
);
831 if (client_enter_focusable(client
) && client_can_focus(client
)) {
832 if (config_focus_delay
) {
833 ObFocusDelayData
*data
;
835 obt_main_loop_timeout_remove(ob_main_loop
, focus_delay_func
);
837 data
= g_new(ObFocusDelayData
, 1);
838 data
->client
= client
;
839 data
->time
= event_curtime
;
840 data
->serial
= event_curserial
;
842 obt_main_loop_timeout_add(ob_main_loop
,
843 config_focus_delay
* 1000,
845 data
, focus_delay_cmp
, focus_delay_dest
);
847 ObFocusDelayData data
;
848 data
.client
= client
;
849 data
.time
= event_curtime
;
850 data
.serial
= event_curserial
;
851 focus_delay_func(&data
);
856 void event_leave_client(ObClient
*client
)
858 g_assert(config_focus_follow
);
860 if (is_enter_focus_event_ignored(event_curserial
)) {
861 ob_debug_type(OB_DEBUG_FOCUS
, "Ignoring leave event with serial %lu\n"
862 "on client 0x%x", event_curserial
, client
->window
);
866 if (client
== focus_client
) {
867 if (config_focus_delay
) {
868 ObFocusDelayData
*data
;
870 obt_main_loop_timeout_remove(ob_main_loop
, unfocus_delay_func
);
872 data
= g_new(ObFocusDelayData
, 1);
873 data
->client
= client
;
874 data
->time
= event_curtime
;
875 data
->serial
= event_curserial
;
877 obt_main_loop_timeout_add(ob_main_loop
,
878 config_focus_delay
* 1000,
880 data
, focus_delay_cmp
, focus_delay_dest
);
882 ObFocusDelayData data
;
883 data
.client
= client
;
884 data
.time
= event_curtime
;
885 data
.serial
= event_curserial
;
886 unfocus_delay_func(&data
);
891 static gboolean
*context_to_button(ObFrame
*f
, ObFrameContext con
, gboolean press
)
895 case OB_FRAME_CONTEXT_MAXIMIZE
:
896 return &f
->max_press
;
897 case OB_FRAME_CONTEXT_CLOSE
:
898 return &f
->close_press
;
899 case OB_FRAME_CONTEXT_ICONIFY
:
900 return &f
->iconify_press
;
901 case OB_FRAME_CONTEXT_ALLDESKTOPS
:
902 return &f
->desk_press
;
903 case OB_FRAME_CONTEXT_SHADE
:
904 return &f
->shade_press
;
910 case OB_FRAME_CONTEXT_MAXIMIZE
:
911 return &f
->max_hover
;
912 case OB_FRAME_CONTEXT_CLOSE
:
913 return &f
->close_hover
;
914 case OB_FRAME_CONTEXT_ICONIFY
:
915 return &f
->iconify_hover
;
916 case OB_FRAME_CONTEXT_ALLDESKTOPS
:
917 return &f
->desk_hover
;
918 case OB_FRAME_CONTEXT_SHADE
:
919 return &f
->shade_hover
;
926 static void compress_client_message_event(XEvent
*e
, XEvent
*ce
, Window window
,
929 /* compress changes into a single change */
930 while (XCheckTypedWindowEvent(obt_display
, window
, e
->type
, ce
)) {
931 /* XXX: it would be nice to compress ALL messages of a
932 type, not just messages in a row without other
933 message types between. */
934 if (ce
->xclient
.message_type
!= msgtype
) {
935 XPutBackEvent(obt_display
, ce
);
938 e
->xclient
= ce
->xclient
;
942 static void event_handle_client(ObClient
*client
, XEvent
*e
)
948 static gint px
= -1, py
= -1;
950 static ObFrameContext pcon
= OB_FRAME_CONTEXT_NONE
;
954 /* save where the press occured for the first button pressed */
956 pb
= e
->xbutton
.button
;
960 pcon
= frame_context(client
, e
->xbutton
.window
, px
, py
);
961 pcon
= mouse_button_frame_context(pcon
, e
->xbutton
.button
,
965 /* Wheel buttons don't draw because they are an instant click, so it
966 is a waste of resources to go drawing it.
967 if the user is doing an interactive thing, or has a menu open then
968 the mouse is grabbed (possibly) and if we get these events we don't
969 want to deal with them
971 if (!(e
->xbutton
.button
== 4 || e
->xbutton
.button
== 5) &&
974 /* use where the press occured */
975 con
= frame_context(client
, e
->xbutton
.window
, px
, py
);
976 con
= mouse_button_frame_context(con
, e
->xbutton
.button
,
979 /* button presses on CLIENT_CONTEXTs are not accompanied by a
980 release because they are Replayed to the client */
981 if ((e
->type
== ButtonRelease
|| CLIENT_CONTEXT(con
, client
)) &&
982 e
->xbutton
.button
== pb
)
983 pb
= 0, px
= py
= -1, pcon
= OB_FRAME_CONTEXT_NONE
;
985 but
= context_to_button(client
->frame
, con
, TRUE
);
987 *but
= (e
->type
== ButtonPress
);
988 frame_adjust_state(client
->frame
);
993 /* when there is a grab on the pointer, we won't get enter/leave
994 notifies, but we still get motion events */
995 if (grab_on_pointer()) break;
997 con
= frame_context(client
, e
->xmotion
.window
,
998 e
->xmotion
.x
, e
->xmotion
.y
);
1000 case OB_FRAME_CONTEXT_TITLEBAR
:
1001 case OB_FRAME_CONTEXT_TLCORNER
:
1002 case OB_FRAME_CONTEXT_TRCORNER
:
1003 /* we've left the button area inside the titlebar */
1004 if (client
->frame
->max_hover
|| client
->frame
->desk_hover
||
1005 client
->frame
->shade_hover
|| client
->frame
->iconify_hover
||
1006 client
->frame
->close_hover
)
1008 client
->frame
->max_hover
=
1009 client
->frame
->desk_hover
=
1010 client
->frame
->shade_hover
=
1011 client
->frame
->iconify_hover
=
1012 client
->frame
->close_hover
= FALSE
;
1013 frame_adjust_state(client
->frame
);
1017 but
= context_to_button(client
->frame
, con
, FALSE
);
1018 if (but
&& !*but
&& !pb
) {
1020 frame_adjust_state(client
->frame
);
1026 con
= frame_context(client
, e
->xcrossing
.window
,
1027 e
->xcrossing
.x
, e
->xcrossing
.y
);
1029 case OB_FRAME_CONTEXT_TITLEBAR
:
1030 case OB_FRAME_CONTEXT_TLCORNER
:
1031 case OB_FRAME_CONTEXT_TRCORNER
:
1032 /* we've left the button area inside the titlebar */
1033 client
->frame
->max_hover
=
1034 client
->frame
->desk_hover
=
1035 client
->frame
->shade_hover
=
1036 client
->frame
->iconify_hover
=
1037 client
->frame
->close_hover
= FALSE
;
1038 if (e
->xcrossing
.mode
== NotifyGrab
) {
1039 client
->frame
->max_press
=
1040 client
->frame
->desk_press
=
1041 client
->frame
->shade_press
=
1042 client
->frame
->iconify_press
=
1043 client
->frame
->close_press
= FALSE
;
1046 case OB_FRAME_CONTEXT_FRAME
:
1047 /* When the mouse leaves an animating window, don't use the
1048 corresponding enter events. Pretend like the animating window
1049 doesn't even exist..! */
1050 if (frame_iconify_animating(client
->frame
))
1051 event_end_ignore_all_enters(event_start_ignore_all_enters());
1053 ob_debug_type(OB_DEBUG_FOCUS
,
1054 "%sNotify mode %d detail %d on %lx",
1055 (e
->type
== EnterNotify
? "Enter" : "Leave"),
1057 e
->xcrossing
.detail
, (client
?client
->window
:0));
1058 if (grab_on_keyboard())
1060 if (config_focus_follow
&&
1061 /* leave inferior events can happen when the mouse goes onto
1062 the window's border and then into the window before the
1064 e
->xcrossing
.detail
!= NotifyInferior
)
1066 if (config_focus_delay
)
1067 obt_main_loop_timeout_remove_data(ob_main_loop
,
1070 if (config_unfocus_leave
)
1071 event_leave_client(client
);
1075 but
= context_to_button(client
->frame
, con
, FALSE
);
1078 if (e
->xcrossing
.mode
== NotifyGrab
) {
1079 but
= context_to_button(client
->frame
, con
, TRUE
);
1082 frame_adjust_state(client
->frame
);
1089 con
= frame_context(client
, e
->xcrossing
.window
,
1090 e
->xcrossing
.x
, e
->xcrossing
.y
);
1092 case OB_FRAME_CONTEXT_FRAME
:
1093 if (grab_on_keyboard())
1095 if (e
->xcrossing
.mode
== NotifyGrab
||
1096 e
->xcrossing
.mode
== NotifyUngrab
||
1097 /*ignore enters when we're already in the window */
1098 e
->xcrossing
.detail
== NotifyInferior
)
1100 ob_debug_type(OB_DEBUG_FOCUS
,
1101 "%sNotify mode %d detail %d serial %lu on %lx "
1103 (e
->type
== EnterNotify
? "Enter" : "Leave"),
1105 e
->xcrossing
.detail
,
1106 e
->xcrossing
.serial
,
1107 client
?client
->window
:0);
1110 ob_debug_type(OB_DEBUG_FOCUS
,
1111 "%sNotify mode %d detail %d serial %lu on %lx, "
1113 (e
->type
== EnterNotify
? "Enter" : "Leave"),
1115 e
->xcrossing
.detail
,
1116 e
->xcrossing
.serial
,
1117 (client
?client
->window
:0));
1118 if (config_focus_follow
) {
1119 if (config_focus_delay
)
1120 obt_main_loop_timeout_remove_data(ob_main_loop
,
1123 event_enter_client(client
);
1128 but
= context_to_button(client
->frame
, con
, FALSE
);
1131 if (e
->xcrossing
.mode
== NotifyUngrab
) {
1132 but
= context_to_button(client
->frame
, con
, TRUE
);
1133 *but
= (con
== pcon
);
1135 frame_adjust_state(client
->frame
);
1141 case ConfigureRequest
:
1143 /* dont compress these unless you're going to watch for property
1144 notifies in between (these can change what the configure would
1146 also you can't compress stacking events
1150 gboolean move
= FALSE
;
1151 gboolean resize
= FALSE
;
1153 /* get the current area */
1154 RECT_TO_DIMS(client
->area
, x
, y
, w
, h
);
1156 ob_debug("ConfigureRequest for \"%s\" desktop %d wmstate %d "
1159 screen_desktop
, client
->wmstate
, client
->frame
->visible
);
1160 ob_debug(" x %d y %d w %d h %d b %d",
1161 x
, y
, w
, h
, client
->border_width
);
1163 if (e
->xconfigurerequest
.value_mask
& CWBorderWidth
)
1164 if (client
->border_width
!= e
->xconfigurerequest
.border_width
) {
1165 client
->border_width
= e
->xconfigurerequest
.border_width
;
1167 /* if the border width is changing then that is the same
1168 as requesting a resize, but we don't actually change
1169 the client's border, so it will change their root
1170 coordinates (since they include the border width) and
1171 we need to a notify then */
1175 if (e
->xconfigurerequest
.value_mask
& CWStackMode
) {
1176 ObClient
*sibling
= NULL
;
1177 gulong ignore_start
;
1180 /* get the sibling */
1181 if (e
->xconfigurerequest
.value_mask
& CWSibling
) {
1183 win
= window_find(e
->xconfigurerequest
.above
);
1184 if (win
&& WINDOW_IS_CLIENT(win
) &&
1185 WINDOW_AS_CLIENT(win
) != client
)
1187 sibling
= WINDOW_AS_CLIENT(win
);
1190 /* an invalid sibling was specified so don't restack at
1191 all, it won't make sense no matter what we do */
1196 if (!config_focus_under_mouse
)
1197 ignore_start
= event_start_ignore_all_enters();
1198 stacking_restack_request(client
, sibling
,
1199 e
->xconfigurerequest
.detail
);
1200 if (!config_focus_under_mouse
)
1201 event_end_ignore_all_enters(ignore_start
);
1204 /* a stacking change moves the window without resizing */
1208 if ((e
->xconfigurerequest
.value_mask
& CWX
) ||
1209 (e
->xconfigurerequest
.value_mask
& CWY
) ||
1210 (e
->xconfigurerequest
.value_mask
& CWWidth
) ||
1211 (e
->xconfigurerequest
.value_mask
& CWHeight
))
1213 /* don't allow clients to move shaded windows (fvwm does this)
1215 if (e
->xconfigurerequest
.value_mask
& CWX
) {
1216 if (!client
->shaded
)
1217 x
= e
->xconfigurerequest
.x
;
1220 if (e
->xconfigurerequest
.value_mask
& CWY
) {
1221 if (!client
->shaded
)
1222 y
= e
->xconfigurerequest
.y
;
1226 if (e
->xconfigurerequest
.value_mask
& CWWidth
) {
1227 w
= e
->xconfigurerequest
.width
;
1230 if (e
->xconfigurerequest
.value_mask
& CWHeight
) {
1231 h
= e
->xconfigurerequest
.height
;
1236 ob_debug("ConfigureRequest x(%d) %d y(%d) %d w(%d) %d h(%d) %d "
1237 "move %d resize %d",
1238 e
->xconfigurerequest
.value_mask
& CWX
, x
,
1239 e
->xconfigurerequest
.value_mask
& CWY
, y
,
1240 e
->xconfigurerequest
.value_mask
& CWWidth
, w
,
1241 e
->xconfigurerequest
.value_mask
& CWHeight
, h
,
1244 /* check for broken apps moving to their root position
1246 XXX remove this some day...that would be nice. right now all
1247 kde apps do this when they try activate themselves on another
1248 desktop. eg. open amarok window on desktop 1, switch to desktop
1249 2, click amarok tray icon. it will move by its decoration size.
1251 if (x
!= client
->area
.x
&&
1252 x
== (client
->frame
->area
.x
+ client
->frame
->size
.left
-
1253 (gint
)client
->border_width
) &&
1254 y
!= client
->area
.y
&&
1255 y
== (client
->frame
->area
.y
+ client
->frame
->size
.top
-
1256 (gint
)client
->border_width
) &&
1257 w
== client
->area
.width
&&
1258 h
== client
->area
.height
)
1260 ob_debug_type(OB_DEBUG_APP_BUGS
,
1261 "Application %s is trying to move via "
1262 "ConfigureRequest to it's root window position "
1263 "but it is not using StaticGravity",
1269 /* they still requested a move, so don't change whether a
1270 notify is sent or not */
1276 client_try_configure(client
, &x
, &y
, &w
, &h
, &lw
, &lh
, FALSE
);
1278 /* if x was not given, then use gravity to figure out the new
1279 x. the reference point should not be moved */
1280 if ((e
->xconfigurerequest
.value_mask
& CWWidth
&&
1281 !(e
->xconfigurerequest
.value_mask
& CWX
)))
1282 client_gravity_resize_w(client
, &x
, client
->area
.width
, w
);
1284 if ((e
->xconfigurerequest
.value_mask
& CWHeight
&&
1285 !(e
->xconfigurerequest
.value_mask
& CWY
)))
1286 client_gravity_resize_h(client
, &y
, client
->area
.height
,h
);
1288 client_find_onscreen(client
, &x
, &y
, w
, h
, FALSE
);
1290 ob_debug("Granting ConfigureRequest x %d y %d w %d h %d",
1292 client_configure(client
, x
, y
, w
, h
, FALSE
, TRUE
, TRUE
);
1297 ob_debug("UnmapNotify for window 0x%x eventwin 0x%x sendevent %d "
1299 client
->window
, e
->xunmap
.event
, e
->xunmap
.from_configure
,
1300 client
->ignore_unmaps
);
1301 if (client
->ignore_unmaps
) {
1302 client
->ignore_unmaps
--;
1305 client_unmanage(client
);
1308 ob_debug("DestroyNotify for window 0x%x", client
->window
);
1309 client_unmanage(client
);
1311 case ReparentNotify
:
1312 /* this is when the client is first taken captive in the frame */
1313 if (e
->xreparent
.parent
== client
->frame
->window
) break;
1316 This event is quite rare and is usually handled in unmapHandler.
1317 However, if the window is unmapped when the reparent event occurs,
1318 the window manager never sees it because an unmap event is not sent
1319 to an already unmapped window.
1322 /* we don't want the reparent event, put it back on the stack for the
1323 X server to deal with after we unmanage the window */
1324 XPutBackEvent(obt_display
, e
);
1326 ob_debug("ReparentNotify for window 0x%x", client
->window
);
1327 client_unmanage(client
);
1330 ob_debug("MapRequest for 0x%lx", client
->window
);
1331 if (!client
->iconic
) break; /* this normally doesn't happen, but if it
1332 does, we don't want it!
1333 it can happen now when the window is on
1334 another desktop, but we still don't
1336 client_activate(client
, FALSE
, FALSE
, TRUE
, TRUE
, TRUE
);
1339 /* validate cuz we query stuff off the client here */
1340 if (!client_validate(client
)) break;
1342 if (e
->xclient
.format
!= 32) return;
1344 msgtype
= e
->xclient
.message_type
;
1345 if (msgtype
== OBT_PROP_ATOM(WM_CHANGE_STATE
)) {
1346 compress_client_message_event(e
, &ce
, client
->window
, msgtype
);
1347 client_set_wm_state(client
, e
->xclient
.data
.l
[0]);
1348 } else if (msgtype
== OBT_PROP_ATOM(NET_WM_DESKTOP
)) {
1349 compress_client_message_event(e
, &ce
, client
->window
, msgtype
);
1350 if ((unsigned)e
->xclient
.data
.l
[0] < screen_num_desktops
||
1351 (unsigned)e
->xclient
.data
.l
[0] == DESKTOP_ALL
)
1352 client_set_desktop(client
, (unsigned)e
->xclient
.data
.l
[0],
1354 } else if (msgtype
== OBT_PROP_ATOM(NET_WM_STATE
)) {
1355 gulong ignore_start
;
1357 /* can't compress these */
1358 ob_debug("net_wm_state %s %ld %ld for 0x%lx",
1359 (e
->xclient
.data
.l
[0] == 0 ? "Remove" :
1360 e
->xclient
.data
.l
[0] == 1 ? "Add" :
1361 e
->xclient
.data
.l
[0] == 2 ? "Toggle" : "INVALID"),
1362 e
->xclient
.data
.l
[1], e
->xclient
.data
.l
[2],
1365 /* ignore enter events caused by these like ob actions do */
1366 if (!config_focus_under_mouse
)
1367 ignore_start
= event_start_ignore_all_enters();
1368 client_set_state(client
, e
->xclient
.data
.l
[0],
1369 e
->xclient
.data
.l
[1], e
->xclient
.data
.l
[2]);
1370 if (!config_focus_under_mouse
)
1371 event_end_ignore_all_enters(ignore_start
);
1372 } else if (msgtype
== OBT_PROP_ATOM(NET_CLOSE_WINDOW
)) {
1373 ob_debug("net_close_window for 0x%lx", client
->window
);
1374 client_close(client
);
1375 } else if (msgtype
== OBT_PROP_ATOM(NET_ACTIVE_WINDOW
)) {
1376 ob_debug("net_active_window for 0x%lx source=%s",
1378 (e
->xclient
.data
.l
[0] == 0 ? "unknown" :
1379 (e
->xclient
.data
.l
[0] == 1 ? "application" :
1380 (e
->xclient
.data
.l
[0] == 2 ? "user" : "INVALID"))));
1381 /* XXX make use of data.l[2] !? */
1382 if (e
->xclient
.data
.l
[0] == 1 || e
->xclient
.data
.l
[0] == 2) {
1383 event_curtime
= e
->xclient
.data
.l
[1];
1384 if (e
->xclient
.data
.l
[1] == 0)
1385 ob_debug_type(OB_DEBUG_APP_BUGS
,
1386 "_NET_ACTIVE_WINDOW message for window %s is"
1387 " missing a timestamp", client
->title
);
1389 ob_debug_type(OB_DEBUG_APP_BUGS
,
1390 "_NET_ACTIVE_WINDOW message for window %s is "
1391 "missing source indication", client
->title
);
1392 client_activate(client
, FALSE
, FALSE
, TRUE
, TRUE
,
1393 (e
->xclient
.data
.l
[0] == 0 ||
1394 e
->xclient
.data
.l
[0] == 2));
1395 } else if (msgtype
== OBT_PROP_ATOM(NET_WM_MOVERESIZE
)) {
1396 ob_debug("net_wm_moveresize for 0x%lx direction %d",
1397 client
->window
, e
->xclient
.data
.l
[2]);
1398 if ((Atom
)e
->xclient
.data
.l
[2] ==
1399 OBT_PROP_ATOM(NET_WM_MOVERESIZE_SIZE_TOPLEFT
) ||
1400 (Atom
)e
->xclient
.data
.l
[2] ==
1401 OBT_PROP_ATOM(NET_WM_MOVERESIZE_SIZE_TOP
) ||
1402 (Atom
)e
->xclient
.data
.l
[2] ==
1403 OBT_PROP_ATOM(NET_WM_MOVERESIZE_SIZE_TOPRIGHT
) ||
1404 (Atom
)e
->xclient
.data
.l
[2] ==
1405 OBT_PROP_ATOM(NET_WM_MOVERESIZE_SIZE_RIGHT
) ||
1406 (Atom
)e
->xclient
.data
.l
[2] ==
1407 OBT_PROP_ATOM(NET_WM_MOVERESIZE_SIZE_RIGHT
) ||
1408 (Atom
)e
->xclient
.data
.l
[2] ==
1409 OBT_PROP_ATOM(NET_WM_MOVERESIZE_SIZE_BOTTOMRIGHT
) ||
1410 (Atom
)e
->xclient
.data
.l
[2] ==
1411 OBT_PROP_ATOM(NET_WM_MOVERESIZE_SIZE_BOTTOM
) ||
1412 (Atom
)e
->xclient
.data
.l
[2] ==
1413 OBT_PROP_ATOM(NET_WM_MOVERESIZE_SIZE_BOTTOMLEFT
) ||
1414 (Atom
)e
->xclient
.data
.l
[2] ==
1415 OBT_PROP_ATOM(NET_WM_MOVERESIZE_SIZE_LEFT
) ||
1416 (Atom
)e
->xclient
.data
.l
[2] ==
1417 OBT_PROP_ATOM(NET_WM_MOVERESIZE_MOVE
) ||
1418 (Atom
)e
->xclient
.data
.l
[2] ==
1419 OBT_PROP_ATOM(NET_WM_MOVERESIZE_SIZE_KEYBOARD
) ||
1420 (Atom
)e
->xclient
.data
.l
[2] ==
1421 OBT_PROP_ATOM(NET_WM_MOVERESIZE_MOVE_KEYBOARD
))
1423 moveresize_start(client
, e
->xclient
.data
.l
[0],
1424 e
->xclient
.data
.l
[1], e
->xclient
.data
.l
[3],
1425 e
->xclient
.data
.l
[2]);
1427 else if ((Atom
)e
->xclient
.data
.l
[2] ==
1428 OBT_PROP_ATOM(NET_WM_MOVERESIZE_CANCEL
))
1429 moveresize_end(TRUE
);
1430 } else if (msgtype
== OBT_PROP_ATOM(NET_MOVERESIZE_WINDOW
)) {
1431 gint ograv
, x
, y
, w
, h
;
1433 ograv
= client
->gravity
;
1435 if (e
->xclient
.data
.l
[0] & 0xff)
1436 client
->gravity
= e
->xclient
.data
.l
[0] & 0xff;
1438 if (e
->xclient
.data
.l
[0] & 1 << 8)
1439 x
= e
->xclient
.data
.l
[1];
1442 if (e
->xclient
.data
.l
[0] & 1 << 9)
1443 y
= e
->xclient
.data
.l
[2];
1447 if (e
->xclient
.data
.l
[0] & 1 << 10) {
1448 w
= e
->xclient
.data
.l
[3];
1450 /* if x was not given, then use gravity to figure out the new
1451 x. the reference point should not be moved */
1452 if (!(e
->xclient
.data
.l
[0] & 1 << 8))
1453 client_gravity_resize_w(client
, &x
, client
->area
.width
, w
);
1456 w
= client
->area
.width
;
1458 if (e
->xclient
.data
.l
[0] & 1 << 11) {
1459 h
= e
->xclient
.data
.l
[4];
1462 if (!(e
->xclient
.data
.l
[0] & 1 << 9))
1463 client_gravity_resize_h(client
, &y
, client
->area
.height
,h
);
1466 h
= client
->area
.height
;
1468 ob_debug("MOVERESIZE x %d %d y %d %d (gravity %d)",
1469 e
->xclient
.data
.l
[0] & 1 << 8, x
,
1470 e
->xclient
.data
.l
[0] & 1 << 9, y
,
1473 client_find_onscreen(client
, &x
, &y
, w
, h
, FALSE
);
1475 client_configure(client
, x
, y
, w
, h
, FALSE
, TRUE
, FALSE
);
1477 client
->gravity
= ograv
;
1478 } else if (msgtype
== OBT_PROP_ATOM(NET_RESTACK_WINDOW
)) {
1479 if (e
->xclient
.data
.l
[0] != 2) {
1480 ob_debug_type(OB_DEBUG_APP_BUGS
,
1481 "_NET_RESTACK_WINDOW sent for window %s with "
1482 "invalid source indication %ld",
1483 client
->title
, e
->xclient
.data
.l
[0]);
1485 ObClient
*sibling
= NULL
;
1486 if (e
->xclient
.data
.l
[1]) {
1487 ObWindow
*win
= window_find(e
->xclient
.data
.l
[1]);
1488 if (WINDOW_IS_CLIENT(win
) &&
1489 WINDOW_AS_CLIENT(win
) != client
)
1491 sibling
= WINDOW_AS_CLIENT(win
);
1493 if (sibling
== NULL
)
1494 ob_debug_type(OB_DEBUG_APP_BUGS
,
1495 "_NET_RESTACK_WINDOW sent for window %s "
1496 "with invalid sibling 0x%x",
1497 client
->title
, e
->xclient
.data
.l
[1]);
1499 if (e
->xclient
.data
.l
[2] == Below
||
1500 e
->xclient
.data
.l
[2] == BottomIf
||
1501 e
->xclient
.data
.l
[2] == Above
||
1502 e
->xclient
.data
.l
[2] == TopIf
||
1503 e
->xclient
.data
.l
[2] == Opposite
)
1505 gulong ignore_start
;
1507 if (!config_focus_under_mouse
)
1508 ignore_start
= event_start_ignore_all_enters();
1509 /* just raise, don't activate */
1510 stacking_restack_request(client
, sibling
,
1511 e
->xclient
.data
.l
[2]);
1512 if (!config_focus_under_mouse
)
1513 event_end_ignore_all_enters(ignore_start
);
1515 /* send a synthetic ConfigureNotify, cuz this is supposed
1516 to be like a ConfigureRequest. */
1517 client_reconfigure(client
, TRUE
);
1519 ob_debug_type(OB_DEBUG_APP_BUGS
,
1520 "_NET_RESTACK_WINDOW sent for window %s "
1521 "with invalid detail %d",
1522 client
->title
, e
->xclient
.data
.l
[2]);
1526 case PropertyNotify
:
1527 /* validate cuz we query stuff off the client here */
1528 if (!client_validate(client
)) break;
1530 /* compress changes to a single property into a single change */
1531 while (XCheckTypedWindowEvent(obt_display
, client
->window
,
1535 /* XXX: it would be nice to compress ALL changes to a property,
1536 not just changes in a row without other props between. */
1538 a
= ce
.xproperty
.atom
;
1539 b
= e
->xproperty
.atom
;
1543 if ((a
== OBT_PROP_ATOM(NET_WM_NAME
) ||
1544 a
== OBT_PROP_ATOM(WM_NAME
) ||
1545 a
== OBT_PROP_ATOM(NET_WM_ICON_NAME
) ||
1546 a
== OBT_PROP_ATOM(WM_ICON_NAME
))
1548 (b
== OBT_PROP_ATOM(NET_WM_NAME
) ||
1549 b
== OBT_PROP_ATOM(WM_NAME
) ||
1550 b
== OBT_PROP_ATOM(NET_WM_ICON_NAME
) ||
1551 b
== OBT_PROP_ATOM(WM_ICON_NAME
))) {
1554 if (a
== OBT_PROP_ATOM(NET_WM_ICON
) &&
1555 b
== OBT_PROP_ATOM(NET_WM_ICON
))
1558 XPutBackEvent(obt_display
, &ce
);
1562 msgtype
= e
->xproperty
.atom
;
1563 if (msgtype
== XA_WM_NORMAL_HINTS
) {
1564 int x
, y
, w
, h
, lw
, lh
;
1566 ob_debug("Update NORMAL hints");
1567 client_update_normal_hints(client
);
1568 /* normal hints can make a window non-resizable */
1569 client_setup_decor_and_functions(client
, FALSE
);
1573 w
= client
->area
.width
;
1574 h
= client
->area
.height
;
1576 /* apply the new normal hints */
1577 client_try_configure(client
, &x
, &y
, &w
, &h
, &lw
, &lh
, FALSE
);
1578 /* make sure the window is visible, and if the window is resized
1579 off-screen due to the normal hints changing then this will push
1580 it back onto the screen. */
1581 client_find_onscreen(client
, &x
, &y
, w
, h
, FALSE
);
1583 /* make sure the client's sizes are within its bounds, but don't
1584 make it reply with a configurenotify unless something changed.
1585 emacs will update its normal hints every time it receives a
1587 client_configure(client
, x
, y
, w
, h
, FALSE
, TRUE
, FALSE
);
1588 } else if (msgtype
== OBT_PROP_ATOM(MOTIF_WM_HINTS
)) {
1589 client_get_mwm_hints(client
);
1590 /* This can override some mwm hints */
1591 client_get_type_and_transientness(client
);
1593 /* Apply the changes to the window */
1594 client_setup_decor_and_functions(client
, TRUE
);
1595 } else if (msgtype
== XA_WM_HINTS
) {
1596 client_update_wmhints(client
);
1597 } else if (msgtype
== XA_WM_TRANSIENT_FOR
) {
1598 client_update_transient_for(client
);
1599 client_get_type_and_transientness(client
);
1600 /* type may have changed, so update the layer */
1601 client_calc_layer(client
);
1602 client_setup_decor_and_functions(client
, TRUE
);
1603 } else if (msgtype
== OBT_PROP_ATOM(NET_WM_NAME
) ||
1604 msgtype
== OBT_PROP_ATOM(WM_NAME
) ||
1605 msgtype
== OBT_PROP_ATOM(NET_WM_ICON_NAME
) ||
1606 msgtype
== OBT_PROP_ATOM(WM_ICON_NAME
)) {
1607 client_update_title(client
);
1608 } else if (msgtype
== OBT_PROP_ATOM(WM_PROTOCOLS
)) {
1609 client_update_protocols(client
);
1610 client_setup_decor_and_functions(client
, TRUE
);
1612 else if (msgtype
== OBT_PROP_ATOM(NET_WM_STRUT
) ||
1613 msgtype
== OBT_PROP_ATOM(NET_WM_STRUT_PARTIAL
)) {
1614 client_update_strut(client
);
1616 else if (msgtype
== OBT_PROP_ATOM(NET_WM_ICON
)) {
1617 client_update_icons(client
);
1619 else if (msgtype
== OBT_PROP_ATOM(NET_WM_ICON_GEOMETRY
)) {
1620 client_update_icon_geometry(client
);
1622 else if (msgtype
== OBT_PROP_ATOM(NET_WM_USER_TIME
)) {
1624 if (client
== focus_client
&&
1625 OBT_PROP_GET32(client
->window
, NET_WM_USER_TIME
, CARDINAL
, &t
)
1626 && t
&& !event_time_after(t
, e
->xproperty
.time
) &&
1627 (!event_last_user_time
||
1628 event_time_after(t
, event_last_user_time
)))
1630 event_last_user_time
= t
;
1634 else if (msgtype
== OBT_PROP_ATOM(NET_WM_SYNC_REQUEST_COUNTER
)) {
1635 client_update_sync_request_counter(client
);
1639 case ColormapNotify
:
1640 client_update_colormap(client
, e
->xcolormap
.colormap
);
1647 if (obt_display_extension_shape
&&
1648 e
->type
== obt_display_extension_shape_basep
)
1650 switch (((XShapeEvent
*)e
)->kind
) {
1653 client
->shaped
= ((XShapeEvent
*)e
)->shaped
;
1654 kind
= ShapeBounding
;
1657 client
->shaped_input
= ((XShapeEvent
*)e
)->shaped
;
1661 g_assert_not_reached();
1663 frame_adjust_shape_kind(client
->frame
, kind
);
1670 static void event_handle_dock(ObDock
*s
, XEvent
*e
)
1674 if (e
->xbutton
.button
== 1)
1675 stacking_raise(DOCK_AS_WINDOW(s
));
1676 else if (e
->xbutton
.button
== 2)
1677 stacking_lower(DOCK_AS_WINDOW(s
));
1683 /* don't hide when moving into a dock app */
1684 if (e
->xcrossing
.detail
!= NotifyInferior
)
1690 static void event_handle_dockapp(ObDockApp
*app
, XEvent
*e
)
1694 dock_app_drag(app
, &e
->xmotion
);
1697 if (app
->ignore_unmaps
) {
1698 app
->ignore_unmaps
--;
1701 dock_unmanage(app
, TRUE
);
1704 case ReparentNotify
:
1705 dock_unmanage(app
, FALSE
);
1707 case ConfigureNotify
:
1708 dock_app_configure(app
, e
->xconfigure
.width
, e
->xconfigure
.height
);
1713 static ObMenuFrame
* find_active_menu(void)
1716 ObMenuFrame
*ret
= NULL
;
1718 for (it
= menu_frame_visible
; it
; it
= g_list_next(it
)) {
1727 static ObMenuFrame
* find_active_or_last_menu(void)
1729 ObMenuFrame
*ret
= NULL
;
1731 ret
= find_active_menu();
1732 if (!ret
&& menu_frame_visible
)
1733 ret
= menu_frame_visible
->data
;
1737 static gboolean
event_handle_prompt(ObPrompt
*p
, XEvent
*e
)
1743 return prompt_mouse_event(p
, e
);
1746 return prompt_key_event(p
, e
);
1752 static gboolean
event_handle_menu_input(XEvent
*ev
)
1754 gboolean ret
= FALSE
;
1756 if (ev
->type
== ButtonRelease
|| ev
->type
== ButtonPress
) {
1757 ObMenuEntryFrame
*e
;
1759 if (menu_hide_delay_reached() &&
1760 (ev
->xbutton
.button
< 4 || ev
->xbutton
.button
> 5))
1762 if ((e
= menu_entry_frame_under(ev
->xbutton
.x_root
,
1763 ev
->xbutton
.y_root
)))
1765 if (ev
->type
== ButtonPress
&& e
->frame
->child
)
1766 menu_frame_select(e
->frame
->child
, NULL
, TRUE
);
1767 menu_frame_select(e
->frame
, e
, TRUE
);
1768 if (ev
->type
== ButtonRelease
)
1769 menu_entry_frame_execute(e
, ev
->xbutton
.state
);
1771 else if (ev
->type
== ButtonRelease
)
1772 menu_frame_hide_all();
1776 else if (ev
->type
== MotionNotify
) {
1778 ObMenuEntryFrame
*e
;
1780 if ((e
= menu_entry_frame_under(ev
->xmotion
.x_root
,
1781 ev
->xmotion
.y_root
)))
1782 if (!(f
= find_active_menu()) ||
1784 f
->parent
== e
->frame
||
1785 f
->child
== e
->frame
)
1786 menu_frame_select(e
->frame
, e
, FALSE
);
1788 else if (ev
->type
== KeyPress
|| ev
->type
== KeyRelease
) {
1789 guint keycode
, state
;
1793 keycode
= ev
->xkey
.keycode
;
1794 state
= ev
->xkey
.state
;
1795 unikey
= obt_keyboard_keycode_to_unichar(keycode
);
1797 frame
= find_active_or_last_menu();
1799 g_assert_not_reached(); /* there is no active menu */
1801 /* Allow control while going thru the menu */
1802 else if (ev
->type
== KeyPress
&& (state
& ~ControlMask
) == 0) {
1803 frame
->got_press
= TRUE
;
1805 if (ob_keycode_match(keycode
, OB_KEY_ESCAPE
)) {
1806 menu_frame_hide_all();
1810 else if (ob_keycode_match(keycode
, OB_KEY_LEFT
)) {
1811 /* Left goes to the parent menu */
1812 if (frame
->parent
) {
1813 /* remove focus from the child */
1814 menu_frame_select(frame
, NULL
, TRUE
);
1815 /* and put it in the parent */
1816 menu_frame_select(frame
->parent
, frame
->parent
->selected
,
1822 else if (ob_keycode_match(keycode
, OB_KEY_RIGHT
)) {
1823 /* Right goes to the selected submenu */
1824 if (frame
->selected
->entry
->type
== OB_MENU_ENTRY_TYPE_SUBMENU
)
1826 /* make sure it is visible */
1827 menu_frame_select(frame
, frame
->selected
, TRUE
);
1828 menu_frame_select_next(frame
->child
);
1833 else if (ob_keycode_match(keycode
, OB_KEY_UP
)) {
1834 menu_frame_select_previous(frame
);
1838 else if (ob_keycode_match(keycode
, OB_KEY_DOWN
)) {
1839 menu_frame_select_next(frame
);
1843 else if (ob_keycode_match(keycode
, OB_KEY_HOME
)) {
1844 menu_frame_select_first(frame
);
1848 else if (ob_keycode_match(keycode
, OB_KEY_END
)) {
1849 menu_frame_select_last(frame
);
1854 /* Use KeyRelease events for running things so that the key release
1855 doesn't get sent to the focused application.
1857 Allow ControlMask only, and don't bother if the menu is empty */
1858 else if (ev
->type
== KeyRelease
&& (state
& ~ControlMask
) == 0 &&
1859 frame
->entries
&& frame
->got_press
)
1861 if (ob_keycode_match(keycode
, OB_KEY_RETURN
)) {
1862 /* Enter runs the active item or goes into the submenu.
1863 Control-Enter runs it without closing the menu. */
1865 menu_frame_select_next(frame
->child
);
1866 else if (frame
->selected
)
1867 menu_entry_frame_execute(frame
->selected
, state
);
1872 /* keyboard accelerator shortcuts. (if it was a valid key) */
1873 else if (unikey
!= 0) {
1876 ObMenuEntryFrame
*found
= NULL
;
1877 guint num_found
= 0;
1879 /* start after the selected one */
1880 start
= frame
->entries
;
1881 if (frame
->selected
) {
1882 for (it
= start
; frame
->selected
!= it
->data
;
1883 it
= g_list_next(it
))
1884 g_assert(it
!= NULL
); /* nothing was selected? */
1885 /* next with wraparound */
1886 start
= g_list_next(it
);
1887 if (start
== NULL
) start
= frame
->entries
;
1892 ObMenuEntryFrame
*e
= it
->data
;
1893 gunichar entrykey
= 0;
1895 if (e
->entry
->type
== OB_MENU_ENTRY_TYPE_NORMAL
)
1896 entrykey
= e
->entry
->data
.normal
.shortcut
;
1897 else if (e
->entry
->type
== OB_MENU_ENTRY_TYPE_SUBMENU
)
1898 entrykey
= e
->entry
->data
.submenu
.submenu
->shortcut
;
1900 if (unikey
== entrykey
) {
1901 if (found
== NULL
) found
= e
;
1905 /* next with wraparound */
1906 it
= g_list_next(it
);
1907 if (it
== NULL
) it
= frame
->entries
;
1908 } while (it
!= start
);
1911 if (found
->entry
->type
== OB_MENU_ENTRY_TYPE_NORMAL
&&
1914 menu_frame_select(frame
, found
, TRUE
);
1915 usleep(50000); /* highlight the item for a short bit so
1916 the user can see what happened */
1917 menu_entry_frame_execute(found
, state
);
1919 menu_frame_select(frame
, found
, TRUE
);
1921 menu_frame_select_next(frame
->child
);
1933 static Bool
event_look_for_menu_enter(Display
*d
, XEvent
*ev
, XPointer arg
)
1935 ObMenuFrame
*f
= (ObMenuFrame
*)arg
;
1936 ObMenuEntryFrame
*e
;
1937 return ev
->type
== EnterNotify
&&
1938 (e
= g_hash_table_lookup(menu_frame_map
, &ev
->xcrossing
.window
)) &&
1939 !e
->ignore_enters
&& e
->frame
== f
;
1942 static void event_handle_menu(ObMenuFrame
*frame
, XEvent
*ev
)
1945 ObMenuEntryFrame
*e
;
1949 if ((e
= g_hash_table_lookup(menu_frame_map
, &ev
->xcrossing
.window
))) {
1950 if (e
->ignore_enters
)
1952 else if (!(f
= find_active_menu()) ||
1954 f
->parent
== e
->frame
||
1955 f
->child
== e
->frame
)
1956 menu_frame_select(e
->frame
, e
, FALSE
);
1960 /*ignore leaves when we're already in the window */
1961 if (ev
->xcrossing
.detail
== NotifyInferior
)
1964 if ((e
= g_hash_table_lookup(menu_frame_map
, &ev
->xcrossing
.window
)))
1968 /* check if an EnterNotify event is coming, and if not, then select
1969 nothing in the menu */
1970 if (XCheckIfEvent(obt_display
, &ce
, event_look_for_menu_enter
,
1971 (XPointer
)e
->frame
))
1972 XPutBackEvent(obt_display
, &ce
);
1974 menu_frame_select(e
->frame
, NULL
, FALSE
);
1980 static gboolean
event_handle_user_input(ObClient
*client
, XEvent
*e
)
1982 g_assert(e
->type
== ButtonPress
|| e
->type
== ButtonRelease
||
1983 e
->type
== MotionNotify
|| e
->type
== KeyPress
||
1984 e
->type
== KeyRelease
);
1986 if (menu_frame_visible
) {
1987 if (event_handle_menu_input(e
))
1988 /* don't use the event if the menu used it, but if the menu
1989 didn't use it and it's a keypress that is bound, it will
1990 close the menu and be used */
1994 /* if the keyboard interactive action uses the event then dont
1995 use it for bindings. likewise is moveresize uses the event. */
1996 if (actions_interactive_input_event(e
) || moveresize_event(e
))
1999 if (moveresize_in_progress
)
2000 /* make further actions work on the client being
2002 client
= moveresize_client
;
2004 if (e
->type
== ButtonPress
||
2005 e
->type
== ButtonRelease
||
2006 e
->type
== MotionNotify
)
2008 /* the frame may not be "visible" but they can still click on it
2009 in the case where it is animating before disappearing */
2010 if (!client
|| !frame_iconify_animating(client
->frame
))
2011 return mouse_event(client
, e
);
2013 return keyboard_event((focus_cycle_target
? focus_cycle_target
:
2014 (client
? client
: focus_client
)), e
);
2019 static void focus_delay_dest(gpointer data
)
2024 static gboolean
focus_delay_cmp(gconstpointer d1
, gconstpointer d2
)
2026 const ObFocusDelayData
*f1
= d1
;
2027 return f1
->client
== d2
;
2030 static gboolean
focus_delay_func(gpointer data
)
2032 ObFocusDelayData
*d
= data
;
2033 Time old
= event_curtime
;
2035 event_curtime
= d
->time
;
2036 event_curserial
= d
->serial
;
2037 if (client_focus(d
->client
) && config_focus_raise
)
2038 stacking_raise(CLIENT_AS_WINDOW(d
->client
));
2039 event_curtime
= old
;
2040 return FALSE
; /* no repeat */
2043 static gboolean
unfocus_delay_func(gpointer data
)
2045 ObFocusDelayData
*d
= data
;
2046 Time old
= event_curtime
;
2048 event_curtime
= d
->time
;
2049 event_curserial
= d
->serial
;
2051 event_curtime
= old
;
2052 return FALSE
; /* no repeat */
2055 static void focus_delay_client_dest(ObClient
*client
, gpointer data
)
2057 obt_main_loop_timeout_remove_data(ob_main_loop
, focus_delay_func
,
2059 obt_main_loop_timeout_remove_data(ob_main_loop
, unfocus_delay_func
,
2063 void event_halt_focus_delay(void)
2065 /* ignore all enter events up till the event which caused this to occur */
2066 if (event_curserial
) event_ignore_enter_range(1, event_curserial
);
2067 obt_main_loop_timeout_remove(ob_main_loop
, focus_delay_func
);
2068 obt_main_loop_timeout_remove(ob_main_loop
, unfocus_delay_func
);
2071 gulong
event_start_ignore_all_enters(void)
2073 return NextRequest(obt_display
);
2076 static void event_ignore_enter_range(gulong start
, gulong end
)
2080 g_assert(start
!= 0);
2083 r
= g_new(ObSerialRange
, 1);
2086 ignore_serials
= g_slist_prepend(ignore_serials
, r
);
2088 ob_debug_type(OB_DEBUG_FOCUS
, "ignoring enters from %lu until %lu",
2091 /* increment the serial so we don't ignore events we weren't meant to */
2092 OBT_PROP_ERASE(screen_support_win
, MOTIF_WM_HINTS
);
2095 void event_end_ignore_all_enters(gulong start
)
2097 /* Use (NextRequest-1) so that we ignore up to the current serial only.
2098 Inside event_ignore_enter_range, we increment the serial by one, but if
2099 we ignore that serial too, then any enter events generated by mouse
2100 movement will be ignored until we create some further network traffic.
2101 Instead ignore up to NextRequest-1, then when we increment the serial,
2102 we will be *past* the range of ignored serials */
2103 event_ignore_enter_range(start
, NextRequest(obt_display
)-1);
2106 static gboolean
is_enter_focus_event_ignored(gulong serial
)
2110 for (it
= ignore_serials
; it
; it
= next
) {
2111 ObSerialRange
*r
= it
->data
;
2113 next
= g_slist_next(it
);
2115 if ((glong
)(serial
- r
->end
) > 0) {
2117 ignore_serials
= g_slist_delete_link(ignore_serials
, it
);
2120 else if ((glong
)(serial
- r
->start
) >= 0)
2126 void event_cancel_all_key_grabs(void)
2128 if (actions_interactive_act_running()) {
2129 actions_interactive_cancel_act();
2130 ob_debug("KILLED interactive action");
2132 else if (menu_frame_visible
) {
2133 menu_frame_hide_all();
2134 ob_debug("KILLED open menus");
2136 else if (moveresize_in_progress
) {
2137 moveresize_end(TRUE
);
2138 ob_debug("KILLED interactive moveresize");
2140 else if (grab_on_keyboard()) {
2142 ob_debug("KILLED active grab on keyboard");
2145 ungrab_passive_key();
2147 XSync(obt_display
, FALSE
);
2150 gboolean
event_time_after(guint32 t1
, guint32 t2
)
2152 g_assert(t1
!= CurrentTime
);
2153 g_assert(t2
!= CurrentTime
);
2156 Timestamp values wrap around (after about 49.7 days). The server, given
2157 its current time is represented by timestamp T, always interprets
2158 timestamps from clients by treating half of the timestamp space as being
2159 later in time than T.
2160 - http://tronche.com/gui/x/xlib/input/pointer-grabbing.html
2163 /* TIME_HALF is not half of the number space of a Time type variable.
2164 * Rather, it is half the number space of a timestamp value, which is
2165 * always 32 bits. */
2166 #define TIME_HALF (guint32)(1 << 31)
2168 if (t2
>= TIME_HALF
)
2169 /* t2 is in the second half so t1 might wrap around and be smaller than
2171 return t1
>= t2
|| t1
< (t2
+ TIME_HALF
);
2173 /* t2 is in the first half so t1 has to come after it */
2174 return t1
>= t2
&& t1
< (t2
+ TIME_HALF
);
2177 Time
event_get_server_time(void)
2179 /* Generate a timestamp */
2182 XChangeProperty(obt_display
, screen_support_win
,
2183 OBT_PROP_ATOM(WM_CLASS
), OBT_PROP_ATOM(STRING
),
2184 8, PropModeAppend
, NULL
, 0);
2185 XWindowEvent(obt_display
, screen_support_win
, PropertyChangeMask
, &event
);
2186 return event
.xproperty
.time
;