no tabs
[mikachu/openbox.git] / openbox / stacking.c
1 /* -*- indent-tabs-mode: nil; tab-width: 4; c-basic-offset: 4; -*-
2
3    stacking.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 "openbox.h"
20 #include "prop.h"
21 #include "screen.h"
22 #include "focus.h"
23 #include "client.h"
24 #include "group.h"
25 #include "frame.h"
26 #include "window.h"
27
28 GList  *stacking_list = NULL;
29
30 void stacking_set_list()
31 {
32     Window *windows = NULL;
33     GList *it;
34     guint i = 0;
35
36     /* on shutdown, don't update the properties, so that we can read it back
37        in on startup and re-stack the windows as they were before we shut down
38     */
39     if (ob_state() == OB_STATE_EXITING) return;
40
41     /* create an array of the window ids (from bottom to top,
42        reverse order!) */
43     if (stacking_list) {
44         windows = g_new(Window, g_list_length(stacking_list));
45         for (it = g_list_last(stacking_list); it; it = g_list_previous(it)) {
46             if (WINDOW_IS_CLIENT(it->data))
47                 windows[i++] = WINDOW_AS_CLIENT(it->data)->window;
48         }
49     }
50
51     PROP_SETA32(RootWindow(ob_display, ob_screen),
52                 net_client_list_stacking, window, (guint32*)windows, i);
53
54     g_free(windows);
55 }
56
57 static void do_restack(GList *wins, GList *before)
58 {
59     GList *it, *next;
60     Window *win;
61     int i;
62
63 #ifdef DEBUG
64     /* pls only restack stuff in the same layer at a time */
65     for (it = wins; it; it = next) {
66         next = g_list_next(it);
67         if (!next) break;
68         g_assert (window_layer(it->data) == window_layer(next->data));
69     }
70     if (before)
71         g_assert(window_layer(it->data) >= window_layer(before->data));
72 #endif
73
74     win = g_new(Window, g_list_length(wins) + 1);
75
76     if (before == stacking_list)
77         win[0] = screen_support_win;
78     else if (!before)
79         win[0] = window_top(g_list_last(stacking_list)->data);
80     else
81         win[0] = window_top(g_list_previous(before)->data);
82
83     for (i = 1, it = wins; it; ++i, it = g_list_next(it)) {
84         win[i] = window_top(it->data);
85         g_assert(win[i] != None); /* better not call stacking shit before
86                                      setting your top level window value */
87         stacking_list = g_list_insert_before(stacking_list, before, it->data);
88     }
89
90 #ifdef DEBUG
91     /* some debug checking of the stacking list's order */
92     for (it = stacking_list; ; it = next) {
93         next = g_list_next(it);
94         if (!next) break;
95         g_assert(window_layer(it->data) >= window_layer(next->data));
96     }
97 #endif
98
99     XRestackWindows(ob_display, win, i);
100     g_free(win);
101
102     stacking_set_list();
103 }
104
105 static void do_raise(GList *wins)
106 {
107     GList *it;
108     GList *layer[OB_NUM_STACKING_LAYERS] = {NULL};
109     int i;
110
111     for (it = wins; it; it = g_list_next(it)) {
112         ObStackingLayer l;
113
114         l = window_layer(it->data);
115         layer[l] = g_list_append(layer[l], it->data);
116     }
117
118     it = stacking_list;
119     for (i = OB_NUM_STACKING_LAYERS - 1; i >= 0; --i) {
120         if (layer[i]) {
121             for (; it; it = g_list_next(it)) {
122                 /* look for the top of the layer */
123                 if (window_layer(it->data) <= (ObStackingLayer) i)
124                     break;
125             }
126             do_restack(layer[i], it);
127             g_list_free(layer[i]);
128         }
129     }
130 }
131
132 static void do_lower(GList *wins)
133 {
134     GList *it;
135     GList *layer[OB_NUM_STACKING_LAYERS] = {NULL};
136     int i;
137
138     for (it = wins; it; it = g_list_next(it)) {
139         ObStackingLayer l;
140
141         l = window_layer(it->data);
142         layer[l] = g_list_append(layer[l], it->data);
143     }
144
145     it = stacking_list;
146     for (i = OB_NUM_STACKING_LAYERS - 1; i >= 0; --i) {
147         if (layer[i]) {
148             for (; it; it = g_list_next(it)) {
149                 /* look for the top of the next layer down */
150                 if (window_layer(it->data) < (ObStackingLayer) i)
151                     break;
152             }
153             do_restack(layer[i], it);
154             g_list_free(layer[i]);
155         }
156     }
157 }
158
159 static GList *pick_windows(ObClient *top, ObClient *selected, gboolean raise)
160 {
161     GList *ret = NULL;
162     GList *it, *next, *prev;
163     GSList *sit;
164     int i, n;
165     GList *modals = NULL;
166     GList *trans = NULL;
167     GList *modal_sel = NULL; /* the selected guys if modal */
168     GList *trans_sel = NULL; /* the selected guys if not */
169
170     /* remove first so we can't run into ourself */
171     if ((it = g_list_find(stacking_list, top)))
172         stacking_list = g_list_delete_link(stacking_list, it);
173     else
174         return NULL;
175
176     i = 0;
177     n = g_slist_length(top->transients);
178     for (it = stacking_list; i < n && it; it = next) {
179         prev = g_list_previous(it);
180         next = g_list_next(it);
181
182         if ((sit = g_slist_find(top->transients, it->data))) {
183             ObClient *c = sit->data;
184             gboolean sel_child;
185
186             ++i;
187
188             if (c == selected)
189                 sel_child = TRUE;
190             else
191                 sel_child = client_search_transient(c, selected) != NULL;
192
193             if (!c->modal) {
194                 if (!sel_child) {
195                     trans = g_list_concat(trans,
196                                           pick_windows(c, selected, raise));
197                 } else {
198                     trans_sel = g_list_concat(trans_sel,
199                                                  pick_windows(c, selected,
200                                                               raise));
201                 }
202             } else {
203                 if (!sel_child) {
204                     modals = g_list_concat(modals,
205                                            pick_windows(c, selected, raise));
206                 } else {
207                     modal_sel = g_list_concat(modal_sel,
208                                                  pick_windows(c, selected,
209                                                               raise));
210                 }
211             }
212             /* if we dont have a prev then start back at the beginning,
213                otherwise skip back to the prev's next */
214             next = prev ? g_list_next(prev) : stacking_list;
215         }
216     }
217
218     ret = g_list_concat((raise ? modal_sel : modals),
219                         (raise ? modals : modal_sel));
220
221     ret = g_list_concat(ret, (raise ? trans_sel : trans));
222     ret = g_list_concat(ret, (raise ? trans : trans_sel));
223
224
225     /* add itself */
226     ret = g_list_append(ret, top);
227
228     return ret;
229 }
230
231 #if 0
232 static GList *pick_group_windows(ObClient *top, ObClient *selected,
233                                  gboolean raise)
234 {
235     GList *ret = NULL;
236     GList *it, *next, *prev;
237     GSList *sit;
238     int i, n;
239
240     /* add group members in their stacking order */
241     if (top->group) {
242         i = 0;
243         n = g_slist_length(top->group->members) - 1;
244         for (it = stacking_list; i < n && it; it = next) {
245             prev = g_list_previous(it);
246             next = g_list_next(it);
247
248             if ((sit = g_slist_find(top->group->members, it->data))) {
249                 ++i;
250                 ret = g_list_concat(ret,
251                                     pick_windows(sit->data, selected, raise)); 
252                 /* if we dont have a prev then start back at the beginning,
253                    otherwise skip back to the prev's next */
254                 next = prev ? g_list_next(prev) : stacking_list;
255             }
256         }
257     }
258     return ret;
259 }
260 #endif
261
262 void stacking_raise(ObWindow *window)
263 {
264     GList *wins;
265
266     if (WINDOW_IS_CLIENT(window)) {
267         ObClient *c;
268         ObClient *selected;
269         selected = WINDOW_AS_CLIENT(window);
270         c = client_search_top_transient(selected); /*/ c = selected; */
271         wins = pick_windows(c, selected, TRUE);
272         /*wins = g_list_concat(wins, pick_group_windows(c, selected, TRUE));*/
273     } else {
274         wins = g_list_append(NULL, window);
275         stacking_list = g_list_remove(stacking_list, window);
276     }
277     do_raise(wins);
278     g_list_free(wins);
279 }
280
281 void stacking_lower(ObWindow *window)
282 {
283     GList *wins;
284
285     if (WINDOW_IS_CLIENT(window)) {
286         ObClient *c;
287         ObClient *selected;
288         selected = WINDOW_AS_CLIENT(window);
289         c = client_search_top_transient(selected);
290         wins = pick_windows(c, selected, FALSE);
291         /*wins = g_list_concat(pick_group_windows(c, selected, FALSE), wins);*/
292     } else {
293         wins = g_list_append(NULL, window);
294         stacking_list = g_list_remove(stacking_list, window);
295     }
296     do_lower(wins);
297     g_list_free(wins);
298 }
299
300 void stacking_below(ObWindow *window, ObWindow *below)
301 {
302     GList *wins, *before;
303
304     if (window_layer(window) != window_layer(below))
305         return;
306
307     wins = g_list_append(NULL, window);
308     stacking_list = g_list_remove(stacking_list, window);
309     before = g_list_next(g_list_find(stacking_list, below));
310     do_restack(wins, before);
311     g_list_free(wins);
312 }
313
314 void stacking_add(ObWindow *win)
315 {
316     ObStackingLayer l;
317     GList *wins;
318
319     g_assert(screen_support_win != None); /* make sure I dont break this in the
320                                        future */
321
322     l = window_layer(win);
323     wins = g_list_append(NULL, win); /* list of 1 element */
324
325     stacking_list = g_list_append(stacking_list, win);
326     stacking_raise(win);
327 }
328
329 void stacking_add_nonintrusive(ObWindow *win)
330 {
331     ObClient *client;
332     ObClient *parent = NULL;
333     GList *it_before = NULL;
334
335     if (!WINDOW_IS_CLIENT(win)) {
336         stacking_add(win); /* no special rules for others */
337         return;
338     }
339
340     client = WINDOW_AS_CLIENT(win);
341
342     /* insert above its highest parent */
343     if (client->transient_for) {
344         if (client->transient_for != OB_TRAN_GROUP) {
345             parent = client->transient_for;
346         } else {
347             GSList *sit;
348             GList *it;
349
350             if (client->group)
351                 for (it = stacking_list; !parent && it; it = it->next) {
352                     if ((sit = g_slist_find(client->group->members, it->data)))
353                 for (sit = client->group->members; !parent && sit;
354                      sit = sit->next) {
355                     ObClient *c = sit->data;
356                     /* checking transient_for prevents infinate loops! */
357                     if (sit->data == it->data && !c->transient_for)
358                         parent = it->data;
359                 }
360             }
361         }
362     }
363
364     if (!(it_before = g_list_find(stacking_list, parent))) {
365         /* no parent to put above, try find the focused client to go
366            under */
367         if (focus_client && focus_client->layer == client->layer) {
368             if ((it_before = g_list_find(stacking_list, focus_client)))
369                 it_before = it_before->next;
370         }
371     }
372     if (!it_before) {
373         /* out of ideas, just add it normally... */
374         stacking_add(win);
375     } else {
376         GList *wins = g_list_append(NULL, win);
377         do_restack(wins, it_before);
378         g_list_free(wins);
379     }
380 }