]> git.lizzy.rs Git - bspwm.git/blob - src/desktop.c
Honor single_monocle in make_desktop
[bspwm.git] / src / desktop.c
1 /* Copyright (c) 2012, Bastien Dejean
2  * All rights reserved.
3  *
4  * Redistribution and use in source and binary forms, with or without
5  * modification, are permitted provided that the following conditions are met:
6  *
7  * 1. Redistributions of source code must retain the above copyright notice, this
8  *    list of conditions and the following disclaimer.
9  * 2. Redistributions in binary form must reproduce the above copyright notice,
10  *    this list of conditions and the following disclaimer in the documentation
11  *    and/or other materials provided with the distribution.
12  *
13  * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND
14  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
15  * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
16  * DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR
17  * ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
18  * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
19  * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
20  * ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
21  * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
22  * SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
23  */
24
25 #include <stdio.h>
26 #include <stdlib.h>
27 #include <stdbool.h>
28 #include "bspwm.h"
29 #include "ewmh.h"
30 #include "history.h"
31 #include "monitor.h"
32 #include "query.h"
33 #include "tree.h"
34 #include "window.h"
35 #include "desktop.h"
36 #include "subscribe.h"
37 #include "settings.h"
38
39 void focus_desktop(monitor_t *m, desktop_t *d)
40 {
41         bool changed = (m != mon || m->desk != d);
42
43         focus_monitor(m);
44
45         if (m->desk != d) {
46                 show_desktop(d);
47                 hide_desktop(m->desk);
48                 m->desk = d;
49         }
50
51         if (changed) {
52                 ewmh_update_current_desktop();
53                 put_status(SBSC_MASK_DESKTOP_FOCUS, "desktop_focus 0x%08X 0x%08X\n", m->id, d->id);
54         }
55 }
56
57 bool activate_desktop(monitor_t *m, desktop_t *d)
58 {
59         if (d != NULL && m == mon) {
60                 return false;
61         }
62
63         if (d == NULL) {
64                 d = m->desk;
65                 if (d == NULL) {
66                         d = history_last_desktop(m, NULL);
67                 }
68                 if (d == NULL) {
69                         d = m->desk_head;
70                 }
71         }
72
73         if (d == NULL || d == m->desk) {
74                 return false;
75         }
76
77         if (m->sticky_count > 0 && m->desk != NULL) {
78                 transfer_sticky_nodes(m, m->desk, m, d, m->desk->root);
79         }
80
81         show_desktop(d);
82         hide_desktop(m->desk);
83
84         m->desk = d;
85
86         history_add(m, d, NULL, false);
87
88         put_status(SBSC_MASK_DESKTOP_ACTIVATE, "desktop_activate 0x%08X 0x%08X\n", m->id, d->id);
89         put_status(SBSC_MASK_REPORT);
90
91         return true;
92 }
93
94 bool find_closest_desktop(coordinates_t *ref, coordinates_t *dst, cycle_dir_t dir, desktop_select_t *sel)
95 {
96         monitor_t *m = ref->monitor;
97         desktop_t *d = ref->desktop;
98         d = (dir == CYCLE_PREV ? d->prev : d->next);
99
100 #define HANDLE_BOUNDARIES(m, d)  \
101         if (d == NULL) { \
102                 m = (dir == CYCLE_PREV ? m->prev : m->next); \
103                 if (m == NULL) { \
104                         m = (dir == CYCLE_PREV ? mon_tail : mon_head); \
105                 } \
106                 d = (dir == CYCLE_PREV ? m->desk_tail : m->desk_head); \
107         }
108         HANDLE_BOUNDARIES(m, d)
109
110         while (d != ref->desktop) {
111                 coordinates_t loc = {m, d, NULL};
112                 if (desktop_matches(&loc, ref, sel)) {
113                         *dst = loc;
114                         return true;
115                 }
116                 d = (dir == CYCLE_PREV ? d->prev : d->next);
117                 HANDLE_BOUNDARIES(m, d)
118         }
119 #undef HANDLE_BOUNDARIES
120
121         return false;
122 }
123
124 bool find_any_desktop(coordinates_t *ref, coordinates_t *dst, desktop_select_t *sel)
125 {
126         for (monitor_t *m = mon_head; m != NULL; m = m->next) {
127                 for (desktop_t *d = m->desk_head; d != NULL; d = d->next) {
128                         coordinates_t loc = {m, d, NULL};
129                         if (desktop_matches(&loc, ref, sel)) {
130                                 *dst = loc;
131                                 return true;
132                         }
133                 }
134         }
135         return false;
136 }
137
138 bool set_layout(monitor_t *m, desktop_t *d, layout_t l, bool user)
139 {
140         if ((user && d->user_layout == l) || (!user && d->layout == l)) {
141                 return false;
142         }
143
144         layout_t old_layout = d->layout;
145
146         if (user) {
147                 d->user_layout = l;
148         } else {
149                 d->layout = l;
150         }
151
152         if (user && (!single_monocle || tiled_count(d->root, true) > 1)) {
153                 d->layout = l;
154         }
155
156         if (d->layout != old_layout) {
157                 handle_presel_feedbacks(m, d);
158
159                 if (user) {
160                         arrange(m, d);
161                 }
162
163                 put_status(SBSC_MASK_DESKTOP_LAYOUT, "desktop_layout 0x%08X 0x%08X %s\n", m->id, d->id, LAYOUT_STR(d->layout));
164
165                 if (d == m->desk) {
166                         put_status(SBSC_MASK_REPORT);
167                 }
168
169                 return true;
170         } else {
171                 return false;
172         }
173 }
174
175 void handle_presel_feedbacks(monitor_t *m, desktop_t *d)
176 {
177         if (m->desk != d) {
178                 return;
179         }
180         if (d->layout == LAYOUT_MONOCLE) {
181                 hide_presel_feedbacks(m, d, d->root);
182         } else {
183                 show_presel_feedbacks(m, d, d->root);
184         }
185 }
186
187 bool transfer_desktop(monitor_t *ms, monitor_t *md, desktop_t *d, bool follow)
188 {
189         if (ms == NULL || md == NULL || d == NULL || ms == md) {
190                 return false;
191         }
192
193         bool d_was_active = (d == ms->desk);
194         bool ms_was_focused = (ms == mon);
195
196         unlink_desktop(ms, d);
197
198         if ((!follow || !d_was_active || !ms_was_focused) && md->desk != NULL) {
199                 hide_sticky = false;
200                 hide_desktop(d);
201                 hide_sticky = true;
202         }
203
204         insert_desktop(md, d);
205         history_remove(d, NULL, false);
206
207         if (d_was_active) {
208                 if (follow) {
209                         if (activate_desktop(ms, NULL)) {
210                                 activate_node(ms, ms->desk, NULL);
211                         }
212                         if (ms_was_focused) {
213                                 focus_node(md, d, d->focus);
214                         }
215                 } else {
216                         if (ms_was_focused) {
217                                 focus_node(ms, ms->desk, NULL);
218                         } else if (activate_desktop(ms, NULL)) {
219                                 activate_node(ms, ms->desk, NULL);
220                         }
221                 }
222         }
223
224         if (ms->sticky_count > 0 && d_was_active) {
225                 if (ms->desk != NULL) {
226                         transfer_sticky_nodes(md, d, ms, ms->desk, d->root);
227                 } else {
228                         ms->sticky_count -= sticky_count(d->root);
229                         md->sticky_count += sticky_count(d->root);
230                         if (d != md->desk) {
231                                 transfer_sticky_nodes(md, d, md, md->desk, d->root);
232                         }
233                 }
234         }
235
236         adapt_geometry(&ms->rectangle, &md->rectangle, d->root);
237         arrange(md, d);
238
239         if ((!follow || !d_was_active || !ms_was_focused) && md->desk == d) {
240                 if (md == mon) {
241                         focus_node(md, d, d->focus);
242                 } else {
243                         activate_node(md, d, d->focus);
244                 }
245         }
246
247         ewmh_update_wm_desktops();
248         ewmh_update_desktop_names();
249         ewmh_update_desktop_viewport();
250         ewmh_update_current_desktop();
251
252         put_status(SBSC_MASK_DESKTOP_TRANSFER, "desktop_transfer 0x%08X 0x%08X 0x%08X\n", ms->id, d->id, md->id);
253         put_status(SBSC_MASK_REPORT);
254
255         return true;
256 }
257
258 desktop_t *make_desktop(const char *name, uint32_t id)
259 {
260         desktop_t *d = calloc(1, sizeof(desktop_t));
261         snprintf(d->name, sizeof(d->name), "%s", name == NULL ? DEFAULT_DESK_NAME : name);
262         if (id == XCB_NONE) {
263                 d->id = xcb_generate_id(dpy);
264         }
265         d->prev = d->next = NULL;
266         d->root = d->focus = NULL;
267         d->user_layout = LAYOUT_TILED;
268         d->layout = single_monocle ? LAYOUT_MONOCLE : LAYOUT_TILED;
269         d->padding = (padding_t) PADDING;
270         d->window_gap = window_gap;
271         d->border_width = border_width;
272         return d;
273 }
274
275 void rename_desktop(monitor_t *m, desktop_t *d, const char *name)
276 {
277
278         put_status(SBSC_MASK_DESKTOP_RENAME, "desktop_rename 0x%08X 0x%08X %s %s\n", m->id, d->id, d->name, name);
279
280         snprintf(d->name, sizeof(d->name), "%s", name);
281
282         put_status(SBSC_MASK_REPORT);
283         ewmh_update_desktop_names();
284 }
285
286 void insert_desktop(monitor_t *m, desktop_t *d)
287 {
288         if (m->desk == NULL) {
289                 m->desk = d;
290                 m->desk_head = d;
291                 m->desk_tail = d;
292         } else {
293                 m->desk_tail->next = d;
294                 d->prev = m->desk_tail;
295                 m->desk_tail = d;
296         }
297 }
298
299 void add_desktop(monitor_t *m, desktop_t *d)
300 {
301         put_status(SBSC_MASK_DESKTOP_ADD, "desktop_add 0x%08X 0x%08X %s\n", m->id, d->id, d->name);
302
303         d->border_width = m->border_width;
304         d->window_gap = m->window_gap;
305         insert_desktop(m, d);
306         ewmh_update_number_of_desktops();
307         ewmh_update_desktop_names();
308         ewmh_update_desktop_viewport();
309         ewmh_update_wm_desktops();
310         put_status(SBSC_MASK_REPORT);
311 }
312
313 desktop_t *find_desktop_in(uint32_t id, monitor_t *m)
314 {
315         if (m == NULL) {
316                 return NULL;
317         }
318
319         for (desktop_t *d = m->desk_head; d != NULL; d = d->next) {
320                 if (d->id == id) {
321                         return d;
322                 }
323         }
324
325         return NULL;
326 }
327
328 void unlink_desktop(monitor_t *m, desktop_t *d)
329 {
330         desktop_t *prev = d->prev;
331         desktop_t *next = d->next;
332
333         if (prev != NULL) {
334                 prev->next = next;
335         }
336
337         if (next != NULL) {
338                 next->prev = prev;
339         }
340
341         if (m->desk_head == d) {
342                 m->desk_head = next;
343         }
344
345         if (m->desk_tail == d) {
346                 m->desk_tail = prev;
347         }
348
349         if (m->desk == d) {
350                 m->desk = NULL;
351         }
352
353         d->prev = d->next = NULL;
354 }
355
356 void remove_desktop(monitor_t *m, desktop_t *d)
357 {
358         put_status(SBSC_MASK_DESKTOP_REMOVE, "desktop_remove 0x%08X 0x%08X\n", m->id, d->id);
359
360         remove_node(m, d, d->root);
361         unlink_desktop(m, d);
362         history_remove(d, NULL, false);
363         free(d);
364
365         ewmh_update_current_desktop();
366         ewmh_update_number_of_desktops();
367         ewmh_update_desktop_names();
368         ewmh_update_desktop_viewport();
369
370         if (mon != NULL && m->desk == NULL) {
371                 if (m == mon) {
372                         focus_node(m, NULL, NULL);
373                 } else {
374                         activate_desktop(m, NULL);
375                         if (m->desk != NULL) {
376                                 activate_node(m, m->desk, m->desk->focus);
377                         }
378                 }
379         }
380
381         put_status(SBSC_MASK_REPORT);
382 }
383
384 void merge_desktops(monitor_t *ms, desktop_t *ds, monitor_t *md, desktop_t *dd)
385 {
386         if (ds == NULL || dd == NULL || ds == dd) {
387                 return;
388         }
389         /* TODO: Handle sticky nodes. */
390         transfer_node(ms, ds, ds->root, md, dd, dd->focus, false);
391 }
392
393 bool swap_desktops(monitor_t *m1, desktop_t *d1, monitor_t *m2, desktop_t *d2, bool follow)
394 {
395         if (d1 == NULL || d2 == NULL || d1 == d2 ||
396             (m1->desk == d1 && m1->sticky_count > 0) ||
397             (m2->desk == d2 && m2->sticky_count > 0)) {
398                 return false;
399         }
400
401         put_status(SBSC_MASK_DESKTOP_SWAP, "desktop_swap 0x%08X 0x%08X 0x%08X 0x%08X\n", m1->id, d1->id, m2->id, d2->id);
402
403         bool d1_was_active = (m1->desk == d1);
404         bool d2_was_active = (m2->desk == d2);
405         bool d1_was_focused = (mon->desk == d1);
406         bool d2_was_focused = (mon->desk == d2);
407
408         if (m1 != m2) {
409                 if (m1->desk == d1) {
410                         m1->desk = d2;
411                 }
412                 if (m1->desk_head == d1) {
413                         m1->desk_head = d2;
414                 }
415                 if (m1->desk_tail == d1) {
416                         m1->desk_tail = d2;
417                 }
418                 if (m2->desk == d2) {
419                         m2->desk = d1;
420                 }
421                 if (m2->desk_head == d2) {
422                         m2->desk_head = d1;
423                 }
424                 if (m2->desk_tail == d2) {
425                         m2->desk_tail = d1;
426                 }
427         } else {
428                 if (m1->desk == d1) {
429                         m1->desk = d2;
430                 } else if (m1->desk == d2) {
431                         m1->desk = d1;
432                 }
433                 if (m1->desk_head == d1) {
434                         m1->desk_head = d2;
435                 } else if (m1->desk_head == d2) {
436                         m1->desk_head = d1;
437                 }
438                 if (m1->desk_tail == d1) {
439                         m1->desk_tail = d2;
440                 } else if (m1->desk_tail == d2) {
441                         m1->desk_tail = d1;
442                 }
443         }
444
445         desktop_t *p1 = d1->prev;
446         desktop_t *n1 = d1->next;
447         desktop_t *p2 = d2->prev;
448         desktop_t *n2 = d2->next;
449
450         if (p1 != NULL && p1 != d2) {
451                 p1->next = d2;
452         }
453         if (n1 != NULL && n1 != d2) {
454                 n1->prev = d2;
455         }
456         if (p2 != NULL && p2 != d1) {
457                 p2->next = d1;
458         }
459         if (n2 != NULL && n2 != d1) {
460                 n2->prev = d1;
461         }
462
463         d1->prev = p2 == d1 ? d2 : p2;
464         d1->next = n2 == d1 ? d2 : n2;
465         d2->prev = p1 == d2 ? d1 : p1;
466         d2->next = n1 == d2 ? d1 : n1;
467
468         if (m1 != m2) {
469                 adapt_geometry(&m1->rectangle, &m2->rectangle, d1->root);
470                 adapt_geometry(&m2->rectangle, &m1->rectangle, d2->root);
471                 history_remove(d1, NULL, false);
472                 history_remove(d2, NULL, false);
473                 arrange(m1, d2);
474                 arrange(m2, d1);
475         }
476
477         if (d1_was_active && !d2_was_active) {
478                 if ((!follow && m1 != m2) || !d1_was_focused) {
479                         hide_desktop(d1);
480                 }
481                 show_desktop(d2);
482         } else if (!d1_was_active && d2_was_active) {
483                 show_desktop(d1);
484                 if ((!follow && m1 != m2) || !d2_was_focused) {
485                         hide_desktop(d2);
486                 }
487         }
488
489         if (follow || m1 == m2) {
490                 if (d1_was_focused) {
491                         focus_node(m2, d1, d1->focus);
492                 } else if (d1_was_active) {
493                         activate_node(m2, d1, d1->focus);
494                 }
495
496                 if (d2_was_focused) {
497                         focus_node(m1, d2, d2->focus);
498                 } else if (d2_was_active) {
499                         activate_node(m1, d2, d2->focus);
500                 }
501         } else {
502                 if (d1_was_focused) {
503                         focus_node(m1, d2, d2->focus);
504                 } else if (d1_was_active) {
505                         activate_node(m1, d2, d2->focus);
506                 }
507
508                 if (d2_was_focused) {
509                         focus_node(m2, d1, d1->focus);
510                 } else if (d2_was_active) {
511                         activate_node(m2, d1, d1->focus);
512                 }
513         }
514
515         ewmh_update_wm_desktops();
516         ewmh_update_desktop_names();
517         ewmh_update_desktop_viewport();
518         ewmh_update_current_desktop();
519
520         put_status(SBSC_MASK_REPORT);
521
522         return true;
523 }
524
525 void show_desktop(desktop_t *d)
526 {
527         if (d == NULL) {
528                 return;
529         }
530         show_node(d, d->root);
531 }
532
533 void hide_desktop(desktop_t *d)
534 {
535         if (d == NULL) {
536                 return;
537         }
538         hide_node(d, d->root);
539 }
540
541 bool is_urgent(desktop_t *d)
542 {
543         for (node_t *n = first_extrema(d->root); n != NULL; n = next_leaf(n, d->root)) {
544                 if (n->client == NULL) {
545                         continue;
546                 }
547                 if (n->client->urgent) {
548                         return true;
549                 }
550         }
551         return false;
552 }