]> icculus.org git repositories - dana/openbox.git/blob - openbox/grab.c
dont need to swallow enter events on ungrab cuz we just ignore them all now
[dana/openbox.git] / openbox / grab.c
1 /* -*- indent-tabs-mode: nil; tab-width: 4; c-basic-offset: 4; -*-
2
3    grab.c for the Openbox window manager
4    Copyright (c) 2003        Ben Jansens
5
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.
10
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.
15
16    See the COPYING file for a copy of the GNU General Public License.
17 */
18
19 #include "grab.h"
20 #include "openbox.h"
21 #include "event.h"
22 #include "xerror.h"
23 #include "screen.h"
24
25 #include <glib.h>
26 #include <X11/Xlib.h>
27
28 #define GRAB_PTR_MASK (ButtonPressMask | ButtonReleaseMask | PointerMotionMask)
29 #define GRAB_KEY_MASK (KeyPressMask | KeyReleaseMask)
30
31 #define MASK_LIST_SIZE 8
32
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;
37
38 gboolean grab_on_keyboard()
39 {
40     return kgrabs > 0;
41 }
42
43 gboolean grab_on_pointer()
44 {
45     return pgrabs > 0;
46 }
47
48 gboolean grab_keyboard(gboolean grab)
49 {
50     gboolean ret = FALSE;
51
52     if (grab) {
53         if (kgrabs++ == 0)
54             ret = XGrabKeyboard(ob_display, RootWindow(ob_display, ob_screen),
55                                 FALSE, GrabModeAsync, GrabModeAsync,
56                                 event_lasttime) == Success;
57         else
58             ret = TRUE;
59     } else if (kgrabs > 0) {
60         if (--kgrabs == 0)
61             XUngrabKeyboard(ob_display, event_lasttime);
62         ret = TRUE;
63     }
64
65     return ret;
66 }
67
68 gboolean grab_pointer(gboolean grab, ObCursor cur)
69 {
70     gboolean ret = FALSE;
71
72     if (grab) {
73         if (pgrabs++ == 0)
74             ret = XGrabPointer(ob_display, screen_support_win,
75                                False, GRAB_PTR_MASK, GrabModeAsync,
76                                GrabModeAsync, FALSE,
77                                ob_cursor(cur), event_lasttime) == Success;
78         else
79             ret = TRUE;
80     } else if (pgrabs > 0) {
81         if (--pgrabs == 0) {
82             XUngrabPointer(ob_display, event_lasttime);
83         }
84         ret = TRUE;
85     }
86     return ret;
87 }
88
89 gboolean grab_pointer_window(gboolean grab, ObCursor cur, Window win)
90 {
91     gboolean ret = FALSE;
92
93     if (grab) {
94         if (pgrabs++ == 0)
95             ret = XGrabPointer(ob_display, win, False, GRAB_PTR_MASK,
96                                GrabModeAsync, GrabModeAsync, TRUE,
97                                ob_cursor(cur),
98                                event_lasttime) == Success;
99         else
100             ret = TRUE;
101     } else if (pgrabs > 0) {
102         if (--pgrabs == 0) {
103             XUngrabPointer(ob_display, event_lasttime);
104         }
105         ret = TRUE;
106     }
107     return ret;
108 }
109
110 gint grab_server(gboolean grab)
111 {
112     static guint sgrabs = 0;
113     if (grab) {
114         if (sgrabs++ == 0) {
115             XGrabServer(ob_display);
116             XSync(ob_display, FALSE);
117         }
118     } else if (sgrabs > 0) {
119         if (--sgrabs == 0) {
120             XUngrabServer(ob_display);
121             XFlush(ob_display);
122         }
123     }
124     return sgrabs;
125 }
126
127 void grab_startup(gboolean reconfig)
128 {
129     guint i = 0;
130
131     if (reconfig) return;
132
133     mask_list[i++] = 0;
134     mask_list[i++] = LockMask;
135     mask_list[i++] = NumLockMask;
136     mask_list[i++] = LockMask | NumLockMask;
137     mask_list[i++] = ScrollLockMask;
138     mask_list[i++] = ScrollLockMask | LockMask;
139     mask_list[i++] = ScrollLockMask | NumLockMask;
140     mask_list[i++] = ScrollLockMask | LockMask | NumLockMask;
141     g_assert(i == MASK_LIST_SIZE);
142 }
143
144 void grab_shutdown(gboolean reconfig)
145 {
146     if (reconfig) return;
147
148     while (grab_keyboard(FALSE));
149     while (grab_pointer(FALSE, OB_CURSOR_NONE));
150     while (grab_pointer_window(FALSE, OB_CURSOR_NONE, None));
151     while (grab_server(FALSE));
152 }
153
154 void grab_button_full(guint button, guint state, Window win, guint mask,
155                       int pointer_mode, ObCursor cur)
156 {
157     guint i;
158
159     xerror_set_ignore(TRUE); /* can get BadAccess' from these */
160     xerror_occured = FALSE;
161     for (i = 0; i < MASK_LIST_SIZE; ++i)
162         XGrabButton(ob_display, button, state | mask_list[i], win, FALSE, mask,
163                     pointer_mode, GrabModeSync, None, ob_cursor(cur));
164     xerror_set_ignore(FALSE);
165     if (xerror_occured)
166         g_warning("failed to grab button %d modifiers %d", button, state);
167 }
168
169 void grab_button(guint button, guint state, Window win, guint mask)
170 {
171     grab_button_full(button, state, win, mask, GrabModeAsync, OB_CURSOR_NONE);
172 }
173
174 void ungrab_button(guint button, guint state, Window win)
175 {
176     guint i;
177
178     for (i = 0; i < MASK_LIST_SIZE; ++i)
179         XUngrabButton(ob_display, button, state | mask_list[i], win);
180 }
181
182 void grab_key(guint keycode, guint state, Window win, int keyboard_mode)
183 {
184     guint i;
185
186     xerror_set_ignore(TRUE); /* can get BadAccess' from these */
187     xerror_occured = FALSE;
188     for (i = 0; i < MASK_LIST_SIZE; ++i)
189         XGrabKey(ob_display, keycode, state | mask_list[i], win, FALSE,
190                  GrabModeAsync, keyboard_mode);
191     xerror_set_ignore(FALSE);
192     if (xerror_occured)
193         g_warning("failed to grab keycode %d modifiers %d", keycode, state);
194 }
195
196 void ungrab_all_keys(Window win)
197 {
198     XUngrabKey(ob_display, AnyKey, AnyModifier, win);
199 }