dwm/fibonacci.c

82 lines
1.4 KiB
C
Raw Normal View History

2020-07-02 12:40:33 +02:00
void
fibonacci(Monitor *mon, int s) {
unsigned int i, n, nx, ny, nw, nh;
Client *c;
for(n = 0, c = nexttiled(mon->clients); c; c = nexttiled(c->next), n++);
if(n == 0)
return;
2020-08-24 01:43:26 +02:00
2020-07-02 12:40:33 +02:00
nx = mon->wx;
ny = 0;
nw = mon->ww;
nh = mon->wh;
2020-08-24 01:43:26 +02:00
if(n==1){
c = nexttiled(mon->clients);
int altw = WIDTH(c)*mon->wh/HEIGHT(c);
if ( c->mina > 0 && altw < c->mon->mw ){
nx = c->mon->mx + (c->mon->mw - altw ) / 2;
resize(c, nx, ny, nw , nh , False);
}
}
2020-07-02 12:40:33 +02:00
for(i = 0, c = nexttiled(mon->clients); c; c = nexttiled(c->next)) {
if((i % 2 && nh / 2 > 2 * c->bw)
|| (!(i % 2) && nw / 2 > 2 * c->bw)) {
if(i < n - 1) {
if(i % 2)
nh /= 2;
else
nw /= 2;
if((i % 4) == 2 && !s)
nx += nw;
else if((i % 4) == 3 && !s)
ny += nh;
}
if((i % 4) == 0) {
if(s)
ny += nh;
else
ny -= nh;
}
else if((i % 4) == 1)
nx += nw;
else if((i % 4) == 2)
ny += nh;
else if((i % 4) == 3) {
if(s)
nx += nw;
else
nx -= nw;
}
if(i == 0)
{
if(n != 1)
2020-08-24 01:43:26 +02:00
nw = mon->ww *mon->mfact;
unsigned int altw = WIDTH(c) * mon->wh / HEIGHT(c);
nw = c->mina > 0 && altw < nw ? altw : nw;
//if ( c->mina > 0 && altw < nw){
// nw = altw;
//}
2020-07-02 12:40:33 +02:00
ny = mon->wy;
}
else if(i == 1)
nw = mon->ww - nw;
i++;
}
resize(c, nx, ny, nw - 2 * c->bw, nh - 2 * c->bw, False);
}
}
void
dwindle(Monitor *mon) {
fibonacci(mon, 1);
}
void
spiral(Monitor *mon) {
fibonacci(mon, 0);
}