-
Notifications
You must be signed in to change notification settings - Fork 0
/
push.c
55 lines (49 loc) · 1.02 KB
/
push.c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
#define ISVISIBLE(C) ((C->tags & C->mon->tagset[C->mon->seltags]))
Client *
nextc(Client *c) {
for(; c && !ISVISIBLE(c); c = c->next);
return c;
}
static Client *
prevc(Client *c) {
Client *p, *r;
for(p = selmon->clients, r = NULL; c && p && p != c; p = p->next)
if(!p->isfloating && ISVISIBLE(p))
r = p;
return r;
}
static void
pushup(const Arg *arg) {
Client *sel = selmon->sel;
Client *c;
if(!sel || (sel->isfloating && !arg->f))
return;
if((c = prevc(sel))) {
/* attach before c */
detach(sel);
sel->next = c;
if(selmon->clients == c)
selmon->clients = sel;
else {
for(c = selmon->clients; c->next != sel->next; c = c->next);
c->next = sel;
}
focus(sel);
arrange(selmon);
}
}
static void
pushdown(const Arg *arg) {
Client *sel = selmon->sel;
Client *c;
if(!sel || (sel->isfloating && !arg->f))
return;
if((c = nextc(sel->next))) {
/* attach after c */
detach(sel);
sel->next = c->next;
c->next = sel;
focus(sel);
arrange(selmon);
}
}