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-17 21:10:50 +02:00
|
|
|
setmwfact(const char *arg) {
|
2007-08-18 11:40:25 +02:00
|
|
|
double delta;
|
2007-08-11 12:11:50 +02:00
|
|
|
|
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-16 08:05:30 +02:00
|
|
|
if(arg == NULL)
|
|
|
|
mwfact = MWFACT;
|
|
|
|
else if(1 == sscanf(arg, "%lf", &delta)) {
|
2007-08-17 21:10:50 +02:00
|
|
|
if(arg[0] != '+' && arg[0] != '-')
|
2007-08-18 11:40:25 +02:00
|
|
|
mwfact = delta;
|
2007-08-17 21:10:50 +02:00
|
|
|
else
|
2007-08-18 11:40:25 +02:00
|
|
|
mwfact += delta;
|
|
|
|
if(mwfact < 0.1)
|
|
|
|
mwfact = 0.1;
|
|
|
|
else if(mwfact > 0.9)
|
|
|
|
mwfact = 0.9;
|
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-26 12:53:40 +02:00
|
|
|
for(i = 0, c = nexttiled(clients); c; c = nexttiled(c->next), i++) {
|
2007-08-13 19:19:38 +02:00
|
|
|
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-09-09 18:28:39 +02:00
|
|
|
resize(c, nx, ny, nw, nh, RESIZEHINTS);
|
2007-08-13 19:19:38 +02:00
|
|
|
if(n > 1 && th != wah)
|
|
|
|
ny += nh + 2 * c->border;
|
|
|
|
}
|
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
|
|
|
}
|