1 /* -*- indent-tabs-mode: nil; tab-width: 4; c-basic-offset: 4; -*-
3 event.c for the Openbox window manager
4 Copyright (c) 2003 Ben Jansens
6 This program is free software; you can redistribute it and/or modify
7 it under the terms of the GNU General Public License as published by
8 the Free Software Foundation; either version 2 of the License, or
9 (at your option) any later version.
11 This program is distributed in the hope that it will be useful,
12 but WITHOUT ANY WARRANTY; without even the implied warranty of
13 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 GNU General Public License for more details.
16 See the COPYING file for a copy of the GNU General Public License.
31 #include "menuframe.h"
35 #include "framerender.h"
37 #include "moveresize.h"
40 #include "extensions.h"
43 #include <X11/keysym.h>
44 #include <X11/Xatom.h>
47 #ifdef HAVE_SYS_SELECT_H
48 # include <sys/select.h>
55 #include <X11/ICE/ICElib.h>
58 static void event_process(const XEvent
*e
, gpointer data
);
59 static void event_done(gpointer data
);
60 static void event_client_dest(ObClient
*client
, gpointer data
);
61 static void event_handle_root(XEvent
*e
);
62 static void event_handle_menu(XEvent
*e
);
63 static void event_handle_dock(ObDock
*s
, XEvent
*e
);
64 static void event_handle_dockapp(ObDockApp
*app
, XEvent
*e
);
65 static void event_handle_client(ObClient
*c
, XEvent
*e
);
66 static void event_handle_group(ObGroup
*g
, XEvent
*e
);
68 static gboolean
focus_delay_func(gpointer data
);
69 static void focus_delay_client_dest(ObClient
*client
, gpointer data
);
71 static gboolean
menu_hide_delay_func(gpointer data
);
73 Time event_lasttime
= 0;
75 /*! The value of the mask for the NumLock modifier */
76 unsigned int NumLockMask
;
77 /*! The value of the mask for the ScrollLock modifier */
78 unsigned int ScrollLockMask
;
79 /*! The key codes for the modifier keys */
80 static XModifierKeymap
*modmap
;
81 /*! Table of the constant modifier masks */
82 static const int mask_table
[] = {
83 ShiftMask
, LockMask
, ControlMask
, Mod1Mask
,
84 Mod2Mask
, Mod3Mask
, Mod4Mask
, Mod5Mask
86 static int mask_table_size
;
88 static guint ignore_enter_focus
= 0;
90 static gboolean menu_can_hide
;
92 static ObClient
*focus_in
, *focus_out
;
95 static void ice_handler(int fd
, gpointer conn
)
98 IceProcessMessages(conn
, NULL
, &b
);
101 static void ice_watch(IceConn conn
, IcePointer data
, Bool opening
,
102 IcePointer
*watch_data
)
107 fd
= IceConnectionNumber(conn
);
108 ob_main_loop_fd_add(ob_main_loop
, fd
, ice_handler
, conn
, NULL
);
110 ob_main_loop_fd_remove(ob_main_loop
, fd
);
116 void event_startup(gboolean reconfig
)
118 if (reconfig
) return;
120 mask_table_size
= sizeof(mask_table
) / sizeof(mask_table
[0]);
122 /* get lock masks that are defined by the display (not constant) */
123 modmap
= XGetModifierMapping(ob_display
);
125 if (modmap
&& modmap
->max_keypermod
> 0) {
127 const size_t size
= mask_table_size
* modmap
->max_keypermod
;
128 /* get the values of the keyboard lock modifiers
129 Note: Caps lock is not retrieved the same way as Scroll and Num
130 lock since it doesn't need to be. */
131 const KeyCode num_lock
= XKeysymToKeycode(ob_display
, XK_Num_Lock
);
132 const KeyCode scroll_lock
= XKeysymToKeycode(ob_display
,
135 for (cnt
= 0; cnt
< size
; ++cnt
) {
136 if (! modmap
->modifiermap
[cnt
]) continue;
138 if (num_lock
== modmap
->modifiermap
[cnt
])
139 NumLockMask
= mask_table
[cnt
/ modmap
->max_keypermod
];
140 if (scroll_lock
== modmap
->modifiermap
[cnt
])
141 ScrollLockMask
= mask_table
[cnt
/ modmap
->max_keypermod
];
145 ob_main_loop_x_add(ob_main_loop
, event_process
, event_done
, NULL
, NULL
);
148 IceAddConnectionWatch(ice_watch
, NULL
);
151 client_add_destructor(focus_delay_client_dest
, NULL
);
152 client_add_destructor(event_client_dest
, NULL
);
155 void event_shutdown(gboolean reconfig
)
157 if (reconfig
) return;
160 IceRemoveConnectionWatch(ice_watch
, NULL
);
163 client_remove_destructor(focus_delay_client_dest
);
164 XFreeModifiermap(modmap
);
167 static Window
event_get_window(XEvent
*e
)
174 window
= RootWindow(ob_display
, ob_screen
);
177 window
= e
->xmap
.window
;
180 window
= e
->xunmap
.window
;
183 window
= e
->xdestroywindow
.window
;
185 case ConfigureRequest
:
186 window
= e
->xconfigurerequest
.window
;
188 case ConfigureNotify
:
189 window
= e
->xconfigure
.window
;
193 if (extensions_xkb
&& e
->type
== extensions_xkb_event_basep
) {
194 switch (((XkbAnyEvent
*)e
)->xkb_type
) {
196 window
= ((XkbBellNotifyEvent
*)e
)->window
;
202 window
= e
->xany
.window
;
207 static void event_set_lasttime(XEvent
*e
)
211 /* grab the lasttime and hack up the state */
227 t
= e
->xproperty
.time
;
231 t
= e
->xcrossing
.time
;
234 /* if more event types are anticipated, get their timestamp
239 if (t
> event_lasttime
)
243 #define STRIP_MODS(s) \
244 s &= ~(LockMask | NumLockMask | ScrollLockMask), \
245 /* kill off the Button1Mask etc, only want the modifiers */ \
246 s &= (ControlMask | ShiftMask | Mod1Mask | \
247 Mod2Mask | Mod3Mask | Mod4Mask | Mod5Mask) \
249 static void event_hack_mods(XEvent *e)
257 STRIP_MODS(e
->xbutton
.state
);
260 STRIP_MODS(e
->xkey
.state
);
263 STRIP_MODS(e
->xkey
.state
);
264 /* remove from the state the mask of the modifier being released, if
265 it is a modifier key being released (this is a little ugly..) */
266 kp
= modmap
->modifiermap
;
267 for (i
= 0; i
< mask_table_size
; ++i
) {
268 for (k
= 0; k
< modmap
->max_keypermod
; ++k
) {
269 if (*kp
== e
->xkey
.keycode
) { /* found the keycode */
270 /* remove the mask for it */
271 e
->xkey
.state
&= ~mask_table
[i
];
272 /* cause the first loop to break; */
274 break; /* get outta here! */
281 STRIP_MODS(e
->xmotion
.state
);
282 /* compress events */
285 while (XCheckTypedWindowEvent(ob_display
, e
->xmotion
.window
,
287 e
->xmotion
.x_root
= ce
.xmotion
.x_root
;
288 e
->xmotion
.y_root
= ce
.xmotion
.y_root
;
295 static gboolean
event_ignore(XEvent
*e
, ObClient
*client
)
300 if (e
->xcrossing
.detail
== NotifyInferior
)
304 if (e
->xfocus
.detail
> NotifyNonlinearVirtual
)
308 if (e
->xfocus
.detail
> NotifyNonlinearVirtual
)
310 if (e
->xfocus
.detail
== NotifyInferior
||
311 e
->xfocus
.mode
== NotifyGrab
)
318 static void event_client_dest(ObClient
*client
, gpointer data
)
320 if (client
== focus_in
)
322 if (client
== focus_out
)
326 static void event_done(gpointer data
)
328 static ObClient
*last
= NULL
;
330 /* sometimes focus_hilite can be on an unfocused window, this make sure
331 it loses its focus hilite when focus moves */
333 (focus_in
&& focus_hilite
!= focus_in
) &&
334 (focus_out
&& focus_hilite
!= focus_out
))
336 frame_adjust_focus(focus_hilite
->frame
, FALSE
);
340 if (focus_in
!= focus_client
) {
341 focus_set_client(focus_in
);
342 frame_adjust_focus(focus_in
->frame
, TRUE
);
343 client_calc_layer(focus_in
);
347 if (focus_out
== focus_client
)
348 focus_set_client(NULL
);
349 frame_adjust_focus(focus_out
->frame
, FALSE
);
350 client_calc_layer(focus_out
);
353 focus_hilite
= focus_in
;
355 if (focus_client
!= last
) {
357 focus_fallback(OB_FOCUS_FALLBACK_NOFOCUS
);
361 focus_in
= focus_out
= NULL
;
364 static void event_process(const XEvent
*ec
, gpointer data
)
367 ObGroup
*group
= NULL
;
368 ObClient
*client
= NULL
;
370 ObDockApp
*dockapp
= NULL
;
371 ObWindow
*obwin
= NULL
;
374 /* make a copy we can mangle */
378 window
= event_get_window(e
);
379 if (!(e
->type
== PropertyNotify
&&
380 (group
= g_hash_table_lookup(group_map
, &window
))))
381 if ((obwin
= g_hash_table_lookup(window_map
, &window
))) {
382 switch (obwin
->type
) {
384 dock
= WINDOW_AS_DOCK(obwin
);
387 dockapp
= WINDOW_AS_DOCKAPP(obwin
);
390 client
= WINDOW_AS_CLIENT(obwin
);
393 case Window_Internal
:
394 /* not to be used for events */
395 g_assert_not_reached();
400 event_set_lasttime(e
);
402 if (event_ignore(e
, client
))
405 /* deal with it in the kernel */
407 event_handle_group(group
, e
);
409 event_handle_client(client
, e
);
411 event_handle_dockapp(dockapp
, e
);
413 event_handle_dock(dock
, e
);
414 else if (window
== RootWindow(ob_display
, ob_screen
))
415 event_handle_root(e
);
416 else if (e
->type
== MapRequest
)
417 client_manage(window
);
418 else if (e
->type
== ConfigureRequest
) {
419 /* unhandled configure requests must be used to configure the
423 xwc
.x
= e
->xconfigurerequest
.x
;
424 xwc
.y
= e
->xconfigurerequest
.y
;
425 xwc
.width
= e
->xconfigurerequest
.width
;
426 xwc
.height
= e
->xconfigurerequest
.height
;
427 xwc
.border_width
= e
->xconfigurerequest
.border_width
;
428 xwc
.sibling
= e
->xconfigurerequest
.above
;
429 xwc
.stack_mode
= e
->xconfigurerequest
.detail
;
431 /* we are not to be held responsible if someone sends us an
433 xerror_set_ignore(TRUE
);
434 XConfigureWindow(ob_display
, window
,
435 e
->xconfigurerequest
.value_mask
, &xwc
);
436 xerror_set_ignore(FALSE
);
439 /* user input (action-bound) events */
440 if (e
->type
== ButtonPress
|| e
->type
== ButtonRelease
||
441 e
->type
== MotionNotify
|| e
->type
== KeyPress
||
442 e
->type
== KeyRelease
)
444 if (menu_frame_visible
)
445 event_handle_menu(e
);
447 if (!keyboard_process_interactive_grab(e
, &client
)) {
448 if (moveresize_in_progress
) {
451 /* make further actions work on the client being
453 client
= moveresize_client
;
456 menu_can_hide
= FALSE
;
457 ob_main_loop_timeout_add(ob_main_loop
,
459 menu_hide_delay_func
,
462 if (e
->type
== ButtonPress
|| e
->type
== ButtonRelease
||
463 e
->type
== MotionNotify
)
464 mouse_event(client
, e
);
465 else if (e
->type
== KeyPress
)
466 /* when in the middle of a focus cycling action, this
467 causes the window which appears to be focused to be
468 the one on which the actions will be executed */
469 keyboard_event((focus_cycle_target
?
470 focus_cycle_target
: client
), e
);
476 static void event_handle_root(XEvent
*e
)
482 ob_debug("Another WM has requested to replace us. Exiting.\n");
487 if (e
->xclient
.format
!= 32) break;
489 msgtype
= e
->xclient
.message_type
;
490 if (msgtype
== prop_atoms
.net_current_desktop
) {
491 unsigned int d
= e
->xclient
.data
.l
[0];
492 if (d
< screen_num_desktops
)
493 screen_set_desktop(d
);
494 } else if (msgtype
== prop_atoms
.net_number_of_desktops
) {
495 unsigned int d
= e
->xclient
.data
.l
[0];
497 screen_set_num_desktops(d
);
498 } else if (msgtype
== prop_atoms
.net_showing_desktop
) {
499 screen_show_desktop(e
->xclient
.data
.l
[0] != 0);
503 if (e
->xproperty
.atom
== prop_atoms
.net_desktop_names
)
504 screen_update_desktop_names();
505 else if (e
->xproperty
.atom
== prop_atoms
.net_desktop_layout
)
506 screen_update_layout();
508 case ConfigureNotify
:
510 XRRUpdateConfiguration(e
);
517 if (extensions_vidmode
&& e
->type
== extensions_vidmode_event_basep
) {
518 ob_debug("VIDMODE EVENT\n");
524 static void event_handle_group(ObGroup
*group
, XEvent
*e
)
528 g_assert(e
->type
== PropertyNotify
);
530 for (it
= group
->members
; it
; it
= g_slist_next(it
))
531 event_handle_client(it
->data
, e
);
534 void event_enter_client(ObClient
*client
)
536 g_assert(config_focus_follow
);
538 if (client_normal(client
) && client_can_focus(client
)) {
539 if (config_focus_delay
) {
540 ob_main_loop_timeout_remove(ob_main_loop
, focus_delay_func
);
541 ob_main_loop_timeout_add(ob_main_loop
,
546 focus_delay_func(client
);
550 static void event_handle_client(ObClient
*client
, XEvent
*e
)
558 case VisibilityNotify
:
559 client
->frame
->obscured
= e
->xvisibility
.state
!= VisibilityUnobscured
;
563 /* Wheel buttons don't draw because they are an instant click, so it
564 is a waste of resources to go drawing it. */
565 if (!(e
->xbutton
.button
== 4 || e
->xbutton
.button
== 5)) {
566 con
= frame_context(client
, e
->xbutton
.window
);
567 con
= mouse_button_frame_context(con
, e
->xbutton
.button
);
569 case OB_FRAME_CONTEXT_MAXIMIZE
:
570 client
->frame
->max_press
= (e
->type
== ButtonPress
);
571 framerender_frame(client
->frame
);
573 case OB_FRAME_CONTEXT_CLOSE
:
574 client
->frame
->close_press
= (e
->type
== ButtonPress
);
575 framerender_frame(client
->frame
);
577 case OB_FRAME_CONTEXT_ICONIFY
:
578 client
->frame
->iconify_press
= (e
->type
== ButtonPress
);
579 framerender_frame(client
->frame
);
581 case OB_FRAME_CONTEXT_ALLDESKTOPS
:
582 client
->frame
->desk_press
= (e
->type
== ButtonPress
);
583 framerender_frame(client
->frame
);
585 case OB_FRAME_CONTEXT_SHADE
:
586 client
->frame
->shade_press
= (e
->type
== ButtonPress
);
587 framerender_frame(client
->frame
);
590 /* nothing changes with clicks for any other contexts */
597 ob_debug("FocusIn on client for %lx (client %lx) mode %d detail %d\n",
598 e
->xfocus
.window
, client
->window
,
599 e
->xfocus
.mode
, e
->xfocus
.detail
);
602 if (focus_out
== client
)
607 ob_debug("FocusOut on client for %lx (client %lx) mode %d detail %d\n",
608 e
->xfocus
.window
, client
->window
,
609 e
->xfocus
.mode
, e
->xfocus
.detail
);
612 if (focus_in
== client
)
616 con
= frame_context(client
, e
->xcrossing
.window
);
618 case OB_FRAME_CONTEXT_MAXIMIZE
:
619 client
->frame
->max_hover
= FALSE
;
620 frame_adjust_state(client
->frame
);
622 case OB_FRAME_CONTEXT_ALLDESKTOPS
:
623 client
->frame
->desk_hover
= FALSE
;
624 frame_adjust_state(client
->frame
);
626 case OB_FRAME_CONTEXT_SHADE
:
627 client
->frame
->shade_hover
= FALSE
;
628 frame_adjust_state(client
->frame
);
630 case OB_FRAME_CONTEXT_ICONIFY
:
631 client
->frame
->iconify_hover
= FALSE
;
632 frame_adjust_state(client
->frame
);
634 case OB_FRAME_CONTEXT_CLOSE
:
635 client
->frame
->close_hover
= FALSE
;
636 frame_adjust_state(client
->frame
);
638 case OB_FRAME_CONTEXT_FRAME
:
639 if (config_focus_follow
&& config_focus_delay
)
640 ob_main_loop_timeout_remove_data(ob_main_loop
,
650 gboolean nofocus
= FALSE
;
652 if (ignore_enter_focus
) {
653 ignore_enter_focus
--;
657 con
= frame_context(client
, e
->xcrossing
.window
);
659 case OB_FRAME_CONTEXT_MAXIMIZE
:
660 client
->frame
->max_hover
= TRUE
;
661 frame_adjust_state(client
->frame
);
663 case OB_FRAME_CONTEXT_ALLDESKTOPS
:
664 client
->frame
->desk_hover
= TRUE
;
665 frame_adjust_state(client
->frame
);
667 case OB_FRAME_CONTEXT_SHADE
:
668 client
->frame
->shade_hover
= TRUE
;
669 frame_adjust_state(client
->frame
);
671 case OB_FRAME_CONTEXT_ICONIFY
:
672 client
->frame
->iconify_hover
= TRUE
;
673 frame_adjust_state(client
->frame
);
675 case OB_FRAME_CONTEXT_CLOSE
:
676 client
->frame
->close_hover
= TRUE
;
677 frame_adjust_state(client
->frame
);
679 case OB_FRAME_CONTEXT_FRAME
:
680 if (e
->xcrossing
.mode
== NotifyGrab
||
681 e
->xcrossing
.mode
== NotifyUngrab
)
684 ob_debug("%sNotify mode %d detail %d on %lx IGNORED\n",
685 (e
->type
== EnterNotify
? "Enter" : "Leave"),
687 e
->xcrossing
.detail
, client
?client
->window
:0);
691 ob_debug("%sNotify mode %d detail %d on %lx, "
692 "focusing window: %d\n",
693 (e
->type
== EnterNotify
? "Enter" : "Leave"),
695 e
->xcrossing
.detail
, (client
?client
->window
:0),
698 if (!nofocus
&& config_focus_follow
)
699 event_enter_client(client
);
707 case ConfigureRequest
:
709 while (XCheckTypedWindowEvent(ob_display
, client
->window
,
710 ConfigureRequest
, &ce
)) {
712 /* XXX if this causes bad things.. we can compress config req's
713 with the same mask. */
714 e
->xconfigurerequest
.value_mask
|=
715 ce
.xconfigurerequest
.value_mask
;
716 if (ce
.xconfigurerequest
.value_mask
& CWX
)
717 e
->xconfigurerequest
.x
= ce
.xconfigurerequest
.x
;
718 if (ce
.xconfigurerequest
.value_mask
& CWY
)
719 e
->xconfigurerequest
.y
= ce
.xconfigurerequest
.y
;
720 if (ce
.xconfigurerequest
.value_mask
& CWWidth
)
721 e
->xconfigurerequest
.width
= ce
.xconfigurerequest
.width
;
722 if (ce
.xconfigurerequest
.value_mask
& CWHeight
)
723 e
->xconfigurerequest
.height
= ce
.xconfigurerequest
.height
;
724 if (ce
.xconfigurerequest
.value_mask
& CWBorderWidth
)
725 e
->xconfigurerequest
.border_width
=
726 ce
.xconfigurerequest
.border_width
;
727 if (ce
.xconfigurerequest
.value_mask
& CWStackMode
)
728 e
->xconfigurerequest
.detail
= ce
.xconfigurerequest
.detail
;
731 /* if we are iconic (or shaded (fvwm does this)) ignore the event */
732 if (client
->iconic
|| client
->shaded
) return;
734 /* resize, then move, as specified in the EWMH section 7.7 */
735 if (e
->xconfigurerequest
.value_mask
& (CWWidth
| CWHeight
|
741 if (e
->xconfigurerequest
.value_mask
& CWBorderWidth
)
742 client
->border_width
= e
->xconfigurerequest
.border_width
;
744 x
= (e
->xconfigurerequest
.value_mask
& CWX
) ?
745 e
->xconfigurerequest
.x
: client
->area
.x
;
746 y
= (e
->xconfigurerequest
.value_mask
& CWY
) ?
747 e
->xconfigurerequest
.y
: client
->area
.y
;
748 w
= (e
->xconfigurerequest
.value_mask
& CWWidth
) ?
749 e
->xconfigurerequest
.width
: client
->area
.width
;
750 h
= (e
->xconfigurerequest
.value_mask
& CWHeight
) ?
751 e
->xconfigurerequest
.height
: client
->area
.height
;
757 client
->frame
->size
.left
+ client
->frame
->size
.right
;
759 client
->frame
->size
.top
+ client
->frame
->size
.bottom
;
760 client_find_onscreen(client
, &newx
, &newy
, fw
, fh
,
761 client_normal(client
));
762 if (e
->xconfigurerequest
.value_mask
& CWX
)
764 if (e
->xconfigurerequest
.value_mask
& CWY
)
768 switch (client
->gravity
) {
769 case NorthEastGravity
:
771 corner
= OB_CORNER_TOPRIGHT
;
773 case SouthWestGravity
:
775 corner
= OB_CORNER_BOTTOMLEFT
;
777 case SouthEastGravity
:
778 corner
= OB_CORNER_BOTTOMRIGHT
;
780 default: /* NorthWest, Static, etc */
781 corner
= OB_CORNER_TOPLEFT
;
784 client_configure_full(client
, corner
, x
, y
, w
, h
, FALSE
, TRUE
,
788 if (e
->xconfigurerequest
.value_mask
& CWStackMode
) {
789 switch (e
->xconfigurerequest
.detail
) {
792 client_lower(client
);
798 client_raise(client
);
804 if (client
->ignore_unmaps
) {
805 client
->ignore_unmaps
--;
808 client_unmanage(client
);
811 client_unmanage(client
);
814 /* this is when the client is first taken captive in the frame */
815 if (e
->xreparent
.parent
== client
->frame
->plate
) break;
818 This event is quite rare and is usually handled in unmapHandler.
819 However, if the window is unmapped when the reparent event occurs,
820 the window manager never sees it because an unmap event is not sent
821 to an already unmapped window.
824 /* we don't want the reparent event, put it back on the stack for the
825 X server to deal with after we unmanage the window */
826 XPutBackEvent(ob_display
, e
);
828 client_unmanage(client
);
831 ob_debug("MapRequest for 0x%lx\n", client
->window
);
832 if (!client
->iconic
) break; /* this normally doesn't happen, but if it
833 does, we don't want it! */
834 client_activate(client
, FALSE
);
837 /* validate cuz we query stuff off the client here */
838 if (!client_validate(client
)) break;
840 if (e
->xclient
.format
!= 32) return;
842 msgtype
= e
->xclient
.message_type
;
843 if (msgtype
== prop_atoms
.wm_change_state
) {
844 /* compress changes into a single change */
845 while (XCheckTypedWindowEvent(ob_display
, client
->window
,
847 /* XXX: it would be nice to compress ALL messages of a
848 type, not just messages in a row without other
849 message types between. */
850 if (ce
.xclient
.message_type
!= msgtype
) {
851 XPutBackEvent(ob_display
, &ce
);
854 e
->xclient
= ce
.xclient
;
856 client_set_wm_state(client
, e
->xclient
.data
.l
[0]);
857 } else if (msgtype
== prop_atoms
.net_wm_desktop
) {
858 /* compress changes into a single change */
859 while (XCheckTypedWindowEvent(ob_display
, client
->window
,
861 /* XXX: it would be nice to compress ALL messages of a
862 type, not just messages in a row without other
863 message types between. */
864 if (ce
.xclient
.message_type
!= msgtype
) {
865 XPutBackEvent(ob_display
, &ce
);
868 e
->xclient
= ce
.xclient
;
870 if ((unsigned)e
->xclient
.data
.l
[0] < screen_num_desktops
||
871 (unsigned)e
->xclient
.data
.l
[0] == DESKTOP_ALL
)
872 client_set_desktop(client
, (unsigned)e
->xclient
.data
.l
[0],
874 } else if (msgtype
== prop_atoms
.net_wm_state
) {
875 /* can't compress these */
876 ob_debug("net_wm_state %s %ld %ld for 0x%lx\n",
877 (e
->xclient
.data
.l
[0] == 0 ? "Remove" :
878 e
->xclient
.data
.l
[0] == 1 ? "Add" :
879 e
->xclient
.data
.l
[0] == 2 ? "Toggle" : "INVALID"),
880 e
->xclient
.data
.l
[1], e
->xclient
.data
.l
[2],
882 client_set_state(client
, e
->xclient
.data
.l
[0],
883 e
->xclient
.data
.l
[1], e
->xclient
.data
.l
[2]);
884 } else if (msgtype
== prop_atoms
.net_close_window
) {
885 ob_debug("net_close_window for 0x%lx\n", client
->window
);
886 client_close(client
);
887 } else if (msgtype
== prop_atoms
.net_active_window
) {
888 ob_debug("net_active_window for 0x%lx\n", client
->window
);
889 client_activate(client
, FALSE
);
890 } else if (msgtype
== prop_atoms
.net_wm_moveresize
) {
891 ob_debug("net_wm_moveresize for 0x%lx\n", client
->window
);
892 if ((Atom
)e
->xclient
.data
.l
[2] ==
893 prop_atoms
.net_wm_moveresize_size_topleft
||
894 (Atom
)e
->xclient
.data
.l
[2] ==
895 prop_atoms
.net_wm_moveresize_size_top
||
896 (Atom
)e
->xclient
.data
.l
[2] ==
897 prop_atoms
.net_wm_moveresize_size_topright
||
898 (Atom
)e
->xclient
.data
.l
[2] ==
899 prop_atoms
.net_wm_moveresize_size_right
||
900 (Atom
)e
->xclient
.data
.l
[2] ==
901 prop_atoms
.net_wm_moveresize_size_right
||
902 (Atom
)e
->xclient
.data
.l
[2] ==
903 prop_atoms
.net_wm_moveresize_size_bottomright
||
904 (Atom
)e
->xclient
.data
.l
[2] ==
905 prop_atoms
.net_wm_moveresize_size_bottom
||
906 (Atom
)e
->xclient
.data
.l
[2] ==
907 prop_atoms
.net_wm_moveresize_size_bottomleft
||
908 (Atom
)e
->xclient
.data
.l
[2] ==
909 prop_atoms
.net_wm_moveresize_size_left
||
910 (Atom
)e
->xclient
.data
.l
[2] ==
911 prop_atoms
.net_wm_moveresize_move
||
912 (Atom
)e
->xclient
.data
.l
[2] ==
913 prop_atoms
.net_wm_moveresize_size_keyboard
||
914 (Atom
)e
->xclient
.data
.l
[2] ==
915 prop_atoms
.net_wm_moveresize_move_keyboard
) {
917 moveresize_start(client
, e
->xclient
.data
.l
[0],
918 e
->xclient
.data
.l
[1], e
->xclient
.data
.l
[3],
919 e
->xclient
.data
.l
[2]);
921 } else if (msgtype
== prop_atoms
.net_moveresize_window
) {
922 int oldg
= client
->gravity
;
923 int tmpg
, x
, y
, w
, h
;
925 if (e
->xclient
.data
.l
[0] & 0xff)
926 tmpg
= e
->xclient
.data
.l
[0] & 0xff;
930 if (e
->xclient
.data
.l
[0] & 1 << 8)
931 x
= e
->xclient
.data
.l
[1];
934 if (e
->xclient
.data
.l
[0] & 1 << 9)
935 y
= e
->xclient
.data
.l
[2];
938 if (e
->xclient
.data
.l
[0] & 1 << 10)
939 w
= e
->xclient
.data
.l
[3];
941 w
= client
->area
.width
;
942 if (e
->xclient
.data
.l
[0] & 1 << 11)
943 h
= e
->xclient
.data
.l
[4];
945 h
= client
->area
.height
;
946 client
->gravity
= tmpg
;
952 client
->frame
->size
.left
+ client
->frame
->size
.right
;
954 client
->frame
->size
.top
+ client
->frame
->size
.bottom
;
955 client_find_onscreen(client
, &newx
, &newy
, fw
, fh
,
956 client_normal(client
));
957 if (e
->xclient
.data
.l
[0] & 1 << 8)
959 if (e
->xclient
.data
.l
[0] & 1 << 9)
963 client_configure(client
, OB_CORNER_TOPLEFT
,
964 x
, y
, w
, h
, FALSE
, TRUE
);
966 client
->gravity
= oldg
;
970 /* validate cuz we query stuff off the client here */
971 if (!client_validate(client
)) break;
973 /* compress changes to a single property into a single change */
974 while (XCheckTypedWindowEvent(ob_display
, client
->window
,
978 /* XXX: it would be nice to compress ALL changes to a property,
979 not just changes in a row without other props between. */
981 a
= ce
.xproperty
.atom
;
982 b
= e
->xproperty
.atom
;
986 if ((a
== prop_atoms
.net_wm_name
||
987 a
== prop_atoms
.wm_name
||
988 a
== prop_atoms
.net_wm_icon_name
||
989 a
== prop_atoms
.wm_icon_name
)
991 (b
== prop_atoms
.net_wm_name
||
992 b
== prop_atoms
.wm_name
||
993 b
== prop_atoms
.net_wm_icon_name
||
994 b
== prop_atoms
.wm_icon_name
)) {
997 if ((a
== prop_atoms
.net_wm_icon
||
998 a
== prop_atoms
.kwm_win_icon
)
1000 (b
== prop_atoms
.net_wm_icon
||
1001 b
== prop_atoms
.kwm_win_icon
))
1004 XPutBackEvent(ob_display
, &ce
);
1008 msgtype
= e
->xproperty
.atom
;
1009 if (msgtype
== XA_WM_NORMAL_HINTS
) {
1010 client_update_normal_hints(client
);
1011 /* normal hints can make a window non-resizable */
1012 client_setup_decor_and_functions(client
);
1013 } else if (msgtype
== XA_WM_HINTS
) {
1014 client_update_wmhints(client
);
1015 } else if (msgtype
== XA_WM_TRANSIENT_FOR
) {
1016 client_update_transient_for(client
);
1017 client_get_type(client
);
1018 /* type may have changed, so update the layer */
1019 client_calc_layer(client
);
1020 client_setup_decor_and_functions(client
);
1021 } else if (msgtype
== prop_atoms
.net_wm_name
||
1022 msgtype
== prop_atoms
.wm_name
||
1023 msgtype
== prop_atoms
.net_wm_icon_name
||
1024 msgtype
== prop_atoms
.wm_icon_name
) {
1025 client_update_title(client
);
1026 } else if (msgtype
== prop_atoms
.wm_class
) {
1027 client_update_class(client
);
1028 } else if (msgtype
== prop_atoms
.wm_protocols
) {
1029 client_update_protocols(client
);
1030 client_setup_decor_and_functions(client
);
1032 else if (msgtype
== prop_atoms
.net_wm_strut
) {
1033 client_update_strut(client
);
1035 else if (msgtype
== prop_atoms
.net_wm_icon
||
1036 msgtype
== prop_atoms
.kwm_win_icon
) {
1037 client_update_icons(client
);
1039 else if (msgtype
== prop_atoms
.sm_client_id
) {
1040 client_update_sm_client_id(client
);
1045 if (extensions_shape
&& e
->type
== extensions_shape_event_basep
) {
1046 client
->shaped
= ((XShapeEvent
*)e
)->shaped
;
1047 frame_adjust_shape(client
->frame
);
1053 static void event_handle_dock(ObDock
*s
, XEvent
*e
)
1057 stacking_raise(DOCK_AS_WINDOW(s
));
1068 static void event_handle_dockapp(ObDockApp
*app
, XEvent
*e
)
1072 dock_app_drag(app
, &e
->xmotion
);
1075 if (app
->ignore_unmaps
) {
1076 app
->ignore_unmaps
--;
1079 dock_remove(app
, TRUE
);
1082 dock_remove(app
, FALSE
);
1084 case ReparentNotify
:
1085 dock_remove(app
, FALSE
);
1087 case ConfigureNotify
:
1088 dock_app_configure(app
, e
->xconfigure
.width
, e
->xconfigure
.height
);
1093 ObMenuFrame
* find_active_menu()
1096 ObMenuFrame
*ret
= NULL
;
1098 for (it
= menu_frame_visible
; it
; it
= g_list_next(it
)) {
1107 ObMenuFrame
* find_active_or_last_menu()
1109 ObMenuFrame
*ret
= NULL
;
1111 ret
= find_active_menu();
1112 if (!ret
&& menu_frame_visible
)
1113 ret
= menu_frame_visible
->data
;
1117 static void event_handle_menu(XEvent
*ev
)
1120 ObMenuEntryFrame
*e
;
1124 if (menu_can_hide
) {
1125 if ((e
= menu_entry_frame_under(ev
->xbutton
.x_root
,
1126 ev
->xbutton
.y_root
)))
1127 menu_entry_frame_execute(e
, ev
->xbutton
.state
);
1129 menu_frame_hide_all();
1133 if ((f
= menu_frame_under(ev
->xmotion
.x_root
,
1134 ev
->xmotion
.y_root
))) {
1135 menu_frame_move_on_screen(f
);
1136 if ((e
= menu_entry_frame_under(ev
->xmotion
.x_root
,
1137 ev
->xmotion
.y_root
)))
1138 menu_frame_select(f
, e
);
1143 a
= find_active_menu();
1145 a
->selected
->entry
->type
!= OB_MENU_ENTRY_TYPE_SUBMENU
)
1147 menu_frame_select(a
, NULL
);
1152 if (ev
->xkey
.keycode
== ob_keycode(OB_KEY_ESCAPE
))
1153 menu_frame_hide_all();
1154 else if (ev
->xkey
.keycode
== ob_keycode(OB_KEY_RETURN
)) {
1156 if ((f
= find_active_menu()))
1157 menu_entry_frame_execute(f
->selected
, ev
->xkey
.state
);
1158 } else if (ev
->xkey
.keycode
== ob_keycode(OB_KEY_LEFT
)) {
1160 if ((f
= find_active_or_last_menu()) && f
->parent
)
1161 menu_frame_select(f
, NULL
);
1162 } else if (ev
->xkey
.keycode
== ob_keycode(OB_KEY_RIGHT
)) {
1164 if ((f
= find_active_or_last_menu()) && f
->child
)
1165 menu_frame_select_next(f
->child
);
1166 } else if (ev
->xkey
.keycode
== ob_keycode(OB_KEY_UP
)) {
1168 if ((f
= find_active_or_last_menu()))
1169 menu_frame_select_previous(f
);
1170 } else if (ev
->xkey
.keycode
== ob_keycode(OB_KEY_DOWN
)) {
1172 if ((f
= find_active_or_last_menu()))
1173 menu_frame_select_next(f
);
1179 static gboolean
menu_hide_delay_func(gpointer data
)
1181 menu_can_hide
= TRUE
;
1182 return FALSE
; /* no repeat */
1185 static gboolean
focus_delay_func(gpointer data
)
1189 if (focus_client
!= c
) {
1191 if (config_focus_raise
)
1194 return FALSE
; /* no repeat */
1197 static void focus_delay_client_dest(ObClient
*client
, gpointer data
)
1199 ob_main_loop_timeout_remove_data(ob_main_loop
, focus_delay_func
, client
);
1202 void event_halt_focus_delay()
1204 ob_main_loop_timeout_remove(ob_main_loop
, focus_delay_func
);
1207 void event_ignore_queued_enters()
1209 GSList
*saved
= NULL
, *it
;
1212 XSync(ob_display
, FALSE
);
1214 /* count the events */
1216 e
= g_new(XEvent
, 1);
1217 if (XCheckTypedEvent(ob_display
, EnterNotify
, e
)) {
1220 win
= g_hash_table_lookup(window_map
, &e
->xany
.window
);
1221 if (win
&& WINDOW_IS_CLIENT(win
))
1222 ++ignore_enter_focus
;
1224 saved
= g_slist_append(saved
, e
);
1230 /* put the events back */
1231 for (it
= saved
; it
; it
= g_slist_next(it
)) {
1232 XPutBackEvent(ob_display
, it
->data
);
1235 g_slist_free(saved
);