2007-08-11 12:11:50 +02:00
|
|
|
/* See LICENSE file for copyright and license details. */
|
|
|
|
#include "dwm.h"
|
|
|
|
#include <stdio.h>
|
|
|
|
|
|
|
|
/* static */
|
|
|
|
|
2007-08-12 12:46:08 +02:00
|
|
|
static double mwfact = MWFACT;
|
2007-08-11 12:11:50 +02:00
|
|
|
|
|
|
|
/* extern */
|
|
|
|
|
|
|
|
void
|
2007-08-12 12:46:08 +02:00
|
|
|
addtomwfact(const char *arg) {
|
2007-08-11 12:11:50 +02:00
|
|
|
double delta;
|
|
|
|
|
2007-08-13 19:22:51 +02:00
|
|
|
if(!isarrange(tile))
|
2007-08-11 12:11:50 +02:00
|
|
|
return;
|
|
|
|
|
2007-08-12 12:46:08 +02:00
|
|
|
/* arg handling, manipulate mwfact */
|
2007-08-11 12:11:50 +02:00
|
|
|
if(arg && (1 == sscanf(arg, "%lf", &delta))) {
|
2007-08-12 12:46:08 +02:00
|
|
|
if(delta + mwfact > 0.1 && delta + mwfact < 0.9)
|
|
|
|
mwfact += delta;
|
2007-08-11 12:11:50 +02:00
|
|
|
}
|
2007-08-13 19:13:54 +02:00
|
|
|
arrange();
|
2007-08-11 12:11:50 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
tile(void) {
|
|
|
|
unsigned int i, n, nx, ny, nw, nh, mw, th;
|
|
|
|
Client *c;
|
|
|
|
|
|
|
|
for(n = 0, c = nexttiled(clients); c; c = nexttiled(c->next))
|
|
|
|
n++;
|
|
|
|
|
|
|
|
/* window geoms */
|
2007-08-12 12:46:08 +02:00
|
|
|
mw = (n == 1) ? waw : mwfact * waw;
|
2007-08-11 12:11:50 +02:00
|
|
|
th = (n > 1) ? wah / (n - 1) : 0;
|
|
|
|
if(n > 1 && th < bh)
|
|
|
|
th = wah;
|
|
|
|
|
|
|
|
nx = wax;
|
|
|
|
ny = way;
|
2007-08-13 19:19:38 +02:00
|
|
|
for(i = 0, c = nexttiled(clients); c; c = nexttiled(c->next)) {
|
|
|
|
c->ismax = False;
|
|
|
|
if(i == 0) { /* master */
|
|
|
|
nw = mw - 2 * c->border;
|
|
|
|
nh = wah - 2 * c->border;
|
|
|
|
}
|
|
|
|
else { /* tile window */
|
|
|
|
if(i == 1) {
|
|
|
|
ny = way;
|
|
|
|
nx += mw;
|
2007-08-11 12:11:50 +02:00
|
|
|
}
|
2007-08-13 19:19:38 +02:00
|
|
|
nw = waw - mw - 2 * c->border;
|
|
|
|
if(i + 1 == n) /* remainder */
|
|
|
|
nh = (way + wah) - ny - 2 * c->border;
|
|
|
|
else
|
|
|
|
nh = th - 2 * c->border;
|
2007-08-11 12:11:50 +02:00
|
|
|
}
|
2007-08-13 19:19:38 +02:00
|
|
|
resize(c, nx, ny, nw, nh, False);
|
|
|
|
if(n > 1 && th != wah)
|
|
|
|
ny += nh + 2 * c->border;
|
|
|
|
i++;
|
|
|
|
}
|
2007-08-11 12:11:50 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
zoom(const char *arg) {
|
|
|
|
Client *c;
|
|
|
|
|
2007-08-13 19:13:54 +02:00
|
|
|
if(!sel || !isarrange(tile) || sel->isfloating)
|
2007-08-11 12:11:50 +02:00
|
|
|
return;
|
|
|
|
if((c = sel) == nexttiled(clients))
|
|
|
|
if(!(c = nexttiled(c->next)))
|
|
|
|
return;
|
|
|
|
detach(c);
|
|
|
|
attach(c);
|
|
|
|
focus(c);
|
2007-08-13 19:13:54 +02:00
|
|
|
arrange();
|
2007-08-11 12:11:50 +02:00
|
|
|
}
|