- MacOS X style window switching panel (navigate through windows with Alt-Tab or
[wmaker-crm.git] / src / cycling.c
blob5171168bd0201edaaa4fa2748c36513ae3f1f890
1 /* cycling.c- window cycling
3 * Window Maker window manager
5 * Copyright (c) 2000-2003 Alfredo K. Kojima
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 * You should have received a copy of the GNU General Public License
18 * along with this program; if not, write to the Free Software
19 * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307,
20 * USA.
23 #include "wconfig.h"
25 #include <X11/Xlib.h>
26 #include <X11/Xutil.h>
27 #include <X11/keysym.h>
29 #define MOX_CYCLING
31 #include "WindowMaker.h"
32 #include "GNUstep.h"
33 #include "screen.h"
34 #include "wcore.h"
35 #include "window.h"
36 #include "framewin.h"
37 #include "keybind.h"
38 #include "actions.h"
39 #include "stacking.h"
40 #include "funcs.h"
41 #include "xinerama.h"
42 #include "switchpanel.h"
44 /* Globals */
45 extern WPreferences wPreferences;
47 extern WShortKey wKeyBindings[WKBD_LAST];
53 #ifndef MOX_CYCLING
54 static WWindow*
55 nextToFocusAfter(WWindow *wwin)
57 WWindow *tmp = wwin->prev;
59 while (tmp) {
60 if (wWindowCanReceiveFocus(tmp) && !WFLAGP(tmp, skip_window_list)) {
61 return tmp;
63 tmp = tmp->prev;
66 tmp = wwin;
67 /* start over from the beginning of the list */
68 while (tmp->next)
69 tmp = tmp->next;
71 while (tmp && tmp != wwin) {
72 if (wWindowCanReceiveFocus(tmp) && !WFLAGP(tmp, skip_window_list)) {
73 return tmp;
75 tmp = tmp->prev;
78 return wwin;
82 static WWindow*
83 nextToFocusBefore(WWindow *wwin)
85 WWindow *tmp = wwin->next;
87 while (tmp) {
88 if (wWindowCanReceiveFocus(tmp) && !WFLAGP(tmp, skip_window_list)) {
89 return tmp;
91 tmp = tmp->next;
94 /* start over from the beginning of the list */
95 tmp = wwin;
96 while (tmp->prev)
97 tmp = tmp->prev;
99 while (tmp && tmp != wwin) {
100 if (wWindowCanReceiveFocus(tmp) && !WFLAGP(tmp, skip_window_list)) {
102 return tmp;
104 tmp = tmp->next;
107 return wwin;
113 static WWindow*
114 nextFocusWindow(WWindow *wwin)
116 WWindow *tmp, *closest, *min;
117 Window d;
119 if (!wwin)
120 return NULL;
121 tmp = wwin->prev;
122 closest = NULL;
123 min = wwin;
124 d = 0xffffffff;
125 while (tmp) {
126 if (wWindowCanReceiveFocus(tmp)
127 && (!WFLAGP(tmp, skip_window_list)|| tmp->flags.internal_window)) {
128 if (min->client_win > tmp->client_win)
129 min = tmp;
130 if (tmp->client_win > wwin->client_win
131 && (!closest
132 || (tmp->client_win - wwin->client_win) < d)) {
133 closest = tmp;
134 d = tmp->client_win - wwin->client_win;
137 tmp = tmp->prev;
139 if (!closest||closest==wwin)
140 return min;
141 return closest;
145 static WWindow*
146 prevFocusWindow(WWindow *wwin)
148 WWindow *tmp, *closest, *max;
149 Window d;
151 if (!wwin)
152 return NULL;
153 tmp = wwin->prev;
154 closest = NULL;
155 max = wwin;
156 d = 0xffffffff;
157 while (tmp) {
158 if (wWindowCanReceiveFocus(tmp) &&
159 (!WFLAGP(tmp, skip_window_list) || tmp->flags.internal_window)) {
160 if (max->client_win < tmp->client_win)
161 max = tmp;
162 if (tmp->client_win < wwin->client_win
163 && (!closest
164 || (wwin->client_win - tmp->client_win) < d)) {
165 closest = tmp;
166 d = wwin->client_win - tmp->client_win;
169 tmp = tmp->prev;
171 if (!closest||closest==wwin)
172 return max;
173 return closest;
175 #endif /* !MOX_CYCLING */
178 void
179 StartWindozeCycle(WWindow *wwin, XEvent *event, Bool next)
181 WScreen *scr = wScreenForRootWindow(event->xkey.root);
182 Bool done = False;
183 WWindow *newFocused;
184 WWindow *oldFocused;
185 int modifiers;
186 XModifierKeymap *keymap = NULL;
187 Bool hasModifier;
188 Bool somethingElse = False;
189 XEvent ev;
190 #ifdef MOX_CYCLING
191 WSwitchPanel *swpanel = NULL;
192 #endif
193 KeyCode leftKey, rightKey;
195 if (!wwin)
196 return;
198 leftKey = XKeysymToKeycode(dpy, XK_Left);
199 rightKey = XKeysymToKeycode(dpy, XK_Right);
201 if (next)
202 hasModifier = (wKeyBindings[WKBD_FOCUSNEXT].modifier != 0);
203 else
204 hasModifier = (wKeyBindings[WKBD_FOCUSPREV].modifier != 0);
206 if (hasModifier) {
207 keymap = XGetModifierMapping(dpy);
209 #ifdef DEBUG
210 printf("Grabbing keyboard\n");
211 #endif
212 XGrabKeyboard(dpy, scr->root_win, False, GrabModeAsync, GrabModeAsync,
213 CurrentTime);
216 scr->flags.doing_alt_tab = 1;
218 #ifdef MOX_CYCLING
219 swpanel = wInitSwitchPanel(scr, 0);
220 oldFocused = wwin;
222 newFocused = wSwitchPanelSelectNext(swpanel, next);
223 wWindowFocus(newFocused, oldFocused);
224 oldFocused = newFocused;
225 #else /* !MOX_CYCLING */
226 if (next) {
227 if (wPreferences.windows_cycling)
228 newFocused = nextToFocusAfter(wwin);
229 else
230 newFocused = nextFocusWindow(wwin);
231 } else {
232 if (wPreferences.windows_cycling)
233 newFocused = nextToFocusBefore(wwin);
234 else
235 newFocused = prevFocusWindow(wwin);
238 if (wPreferences.circ_raise)
239 XRaiseWindow(dpy, newFocused->frame->core->window);
240 wWindowFocus(newFocused, scr->focused_window);
241 oldFocused = newFocused;
242 #endif /* !MOX_CYCLING */
244 while (hasModifier && !done) {
245 WMMaskEvent(dpy, KeyPressMask|KeyReleaseMask|ExposureMask|PointerMotionMask, &ev);
247 if (ev.type != KeyRelease && ev.type != KeyPress) {
248 WMHandleEvent(&ev);
249 continue;
251 /* ignore CapsLock */
252 modifiers = ev.xkey.state & ValidModMask;
254 if (ev.type == KeyPress) {
255 #ifdef DEBUG
256 printf("Got key press\n");
257 #endif
258 if ((wKeyBindings[WKBD_FOCUSNEXT].keycode == ev.xkey.keycode
259 && wKeyBindings[WKBD_FOCUSNEXT].modifier == modifiers)
260 || ev.xkey.keycode == rightKey) {
262 #ifdef MOX_CYCLING
263 newFocused = wSwitchPanelSelectNext(swpanel, False);
264 wWindowFocus(newFocused, oldFocused);
265 oldFocused = newFocused;
266 #else /* !MOX_CYCLING */
267 newFocused = nextToFocusAfter(newFocused);
268 wWindowFocus(newFocused, oldFocused);
269 oldFocused = newFocused;
271 if (wPreferences.circ_raise) {
272 /* restore order */
273 CommitStacking(scr);
274 XRaiseWindow(dpy, newFocused->frame->core->window);
276 #endif /* !MOX_CYCLING */
277 } else if ((wKeyBindings[WKBD_FOCUSPREV].keycode == ev.xkey.keycode
278 && wKeyBindings[WKBD_FOCUSPREV].modifier == modifiers)
279 || ev.xkey.keycode == leftKey) {
281 #ifdef MOX_CYCLING
282 newFocused = wSwitchPanelSelectNext(swpanel, True);
283 wWindowFocus(newFocused, oldFocused);
284 oldFocused = newFocused;
285 #else /* !MOX_CYCLING */
286 newFocused = nextToFocusBefore(newFocused);
287 wWindowFocus(newFocused, oldFocused);
288 oldFocused = newFocused;
290 if (wPreferences.circ_raise) {
291 /* restore order */
292 CommitStacking(scr);
293 XRaiseWindow(dpy, newFocused->frame->core->window);
295 #endif /* !MOX_CYCLING */
296 } else if (ev.type == MotionNotify) {
297 WWindow *tmp;
298 tmp = wSwitchPanelHandleEvent(swpanel, &ev);
299 if (tmp) {
300 newFocused = tmp;
301 wWindowFocus(newFocused, oldFocused);
302 oldFocused = newFocused;
304 } else {
305 #ifdef DEBUG
306 printf("Got something else\n");
307 #endif
308 somethingElse = True;
309 done = True;
311 } else if (ev.type == KeyRelease) {
312 int i;
314 #ifdef DEBUG
315 printf("Got key release\n");
316 #endif
317 for (i = 0; i < 8 * keymap->max_keypermod; i++) {
318 if (keymap->modifiermap[i] == ev.xkey.keycode &&
319 wKeyBindings[WKBD_FOCUSNEXT].modifier
320 & 1<<(i/keymap->max_keypermod)) {
321 done = True;
322 break;
327 if (keymap)
328 XFreeModifiermap(keymap);
330 if (hasModifier) {
331 #ifdef DEBUG
332 printf("Ungrabbing keyboard\n");
333 #endif
334 XUngrabKeyboard(dpy, CurrentTime);
336 wSetFocusTo(scr, newFocused);
338 #ifdef MOX_CYCLING
339 if (swpanel)
340 wSwitchPanelDestroy(swpanel);
341 #endif
343 if (wPreferences.circ_raise) {
344 wRaiseFrame(newFocused->frame->core);
345 CommitStacking(scr);
348 scr->flags.doing_alt_tab = 0;
350 if (somethingElse) {
351 WMHandleEvent(&ev);