]>
Dogcows Code - chaz/openbox/blob - openbox/grab.c
1 /* -*- indent-tabs-mode: nil; tab-width: 4; c-basic-offset: 4; -*-
3 grab.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.
28 #define GRAB_PTR_MASK (ButtonPressMask | ButtonReleaseMask | PointerMotionMask)
29 #define GRAB_KEY_MASK (KeyPressMask | KeyReleaseMask)
31 #define MASK_LIST_SIZE 8
33 /*! A list of all possible combinations of keyboard lock masks */
34 static unsigned int mask_list
[MASK_LIST_SIZE
];
35 static guint kgrabs
= 0;
36 static guint pgrabs
= 0;
38 gboolean
grab_on_keyboard()
43 gboolean
grab_on_pointer()
48 gboolean
grab_keyboard(gboolean grab
)
54 ret
= XGrabKeyboard(ob_display
, RootWindow(ob_display
, ob_screen
),
55 FALSE
, GrabModeAsync
, GrabModeAsync
,
56 event_lasttime
) == Success
;
61 } else if (kgrabs
> 0) {
63 XUngrabKeyboard(ob_display
, event_lasttime
);
70 gboolean
grab_pointer(gboolean grab
, ObCursor cur
)
76 ret
= XGrabPointer(ob_display
, screen_support_win
,
77 False
, GRAB_PTR_MASK
, GrabModeAsync
,
79 ob_cursor(cur
), event_lasttime
) == Success
;
80 ob_debug("GRABBING\n");
85 } else if (pgrabs
> 0) {
87 XUngrabPointer(ob_display
, event_lasttime
);
89 ob_debug("UNGRABBING\n");
90 event_ignore_queued_enters();
97 gboolean
grab_pointer_window(gboolean grab
, ObCursor cur
, Window win
)
103 ret
= XGrabPointer(ob_display
, win
, False
, GRAB_PTR_MASK
,
104 GrabModeAsync
, GrabModeAsync
, TRUE
,
106 event_lasttime
) == Success
;
111 } else if (pgrabs
> 0) {
113 XUngrabPointer(ob_display
, event_lasttime
);
120 gint
grab_server(gboolean grab
)
122 static guint sgrabs
= 0;
125 XGrabServer(ob_display
);
126 XSync(ob_display
, FALSE
);
128 } else if (sgrabs
> 0) {
130 XUngrabServer(ob_display
);
137 void grab_startup(gboolean reconfig
)
141 if (reconfig
) return;
144 mask_list
[i
++] = LockMask
;
145 mask_list
[i
++] = NumLockMask
;
146 mask_list
[i
++] = LockMask
| NumLockMask
;
147 mask_list
[i
++] = ScrollLockMask
;
148 mask_list
[i
++] = ScrollLockMask
| LockMask
;
149 mask_list
[i
++] = ScrollLockMask
| NumLockMask
;
150 mask_list
[i
++] = ScrollLockMask
| LockMask
| NumLockMask
;
151 g_assert(i
== MASK_LIST_SIZE
);
154 void grab_shutdown(gboolean reconfig
)
156 if (reconfig
) return;
158 while (grab_keyboard(FALSE
));
159 while (grab_pointer(FALSE
, OB_CURSOR_NONE
));
160 while (grab_pointer_window(FALSE
, OB_CURSOR_NONE
, None
));
161 while (grab_server(FALSE
));
164 void grab_button_full(guint button
, guint state
, Window win
, guint mask
,
165 int pointer_mode
, ObCursor cur
)
169 xerror_set_ignore(TRUE
); /* can get BadAccess' from these */
170 xerror_occured
= FALSE
;
171 for (i
= 0; i
< MASK_LIST_SIZE
; ++i
)
172 XGrabButton(ob_display
, button
, state
| mask_list
[i
], win
, FALSE
, mask
,
173 pointer_mode
, GrabModeSync
, None
, ob_cursor(cur
));
174 xerror_set_ignore(FALSE
);
176 g_warning("failed to grab button %d modifiers %d", button
, state
);
179 void grab_button(guint button
, guint state
, Window win
, guint mask
)
181 grab_button_full(button
, state
, win
, mask
, GrabModeAsync
, OB_CURSOR_NONE
);
184 void ungrab_button(guint button
, guint state
, Window win
)
188 for (i
= 0; i
< MASK_LIST_SIZE
; ++i
)
189 XUngrabButton(ob_display
, button
, state
| mask_list
[i
], win
);
192 void grab_key(guint keycode
, guint state
, Window win
, int keyboard_mode
)
196 xerror_set_ignore(TRUE
); /* can get BadAccess' from these */
197 xerror_occured
= FALSE
;
198 for (i
= 0; i
< MASK_LIST_SIZE
; ++i
)
199 XGrabKey(ob_display
, keycode
, state
| mask_list
[i
], win
, FALSE
,
200 GrabModeAsync
, keyboard_mode
);
201 xerror_set_ignore(FALSE
);
203 g_warning("failed to grab keycode %d modifiers %d", keycode
, state
);
206 void ungrab_all_keys(Window win
)
208 XUngrabKey(ob_display
, AnyKey
, AnyModifier
, win
);
This page took 0.042436 seconds and 4 git commands to generate.