2007-05-30 12:19:28 +02:00
|
|
|
/* See LICENSE file for copyright and license details. */
|
2007-02-19 14:44:05 +01:00
|
|
|
#include "dwm.h"
|
2007-08-03 19:23:30 +02:00
|
|
|
#include <stdio.h>
|
2007-02-22 12:00:02 +01:00
|
|
|
#include <stdlib.h>
|
2007-02-19 14:44:05 +01:00
|
|
|
|
2007-02-19 16:40:36 +01:00
|
|
|
unsigned int blw = 0;
|
|
|
|
Layout *lt = NULL;
|
2007-02-19 14:44:05 +01:00
|
|
|
|
|
|
|
/* static */
|
|
|
|
|
2007-08-04 10:51:39 +02:00
|
|
|
static double hratio = HRATIO;
|
|
|
|
static double vratio = VRATIO;
|
2007-02-19 16:40:36 +01:00
|
|
|
static unsigned int nlayouts = 0;
|
2007-02-22 07:59:13 +01:00
|
|
|
static unsigned int nmaster = NMASTER;
|
2007-02-19 14:44:05 +01:00
|
|
|
|
2007-08-04 10:51:39 +02:00
|
|
|
static void
|
|
|
|
incratio(const char *arg, double *ratio, double def) {
|
|
|
|
double delta;
|
|
|
|
|
|
|
|
if(lt->arrange != tile)
|
|
|
|
return;
|
|
|
|
if(!arg)
|
|
|
|
*ratio = def;
|
|
|
|
else {
|
|
|
|
if(1 == sscanf(arg, "%lf", &delta)) {
|
|
|
|
if(delta + (*ratio) < .1 || delta + (*ratio) > 1.9)
|
|
|
|
return;
|
|
|
|
*ratio += delta;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
lt->arrange();
|
|
|
|
}
|
|
|
|
|
2007-08-03 19:29:58 +02:00
|
|
|
static double /* simple pow() */
|
2007-08-03 19:23:30 +02:00
|
|
|
spow(double x, double y)
|
|
|
|
{
|
|
|
|
if(y == 0)
|
|
|
|
return 1;
|
|
|
|
while(--y)
|
|
|
|
x *= x;
|
|
|
|
return x;
|
|
|
|
}
|
|
|
|
|
2007-02-19 17:00:32 +01:00
|
|
|
static void
|
|
|
|
tile(void) {
|
2007-08-03 19:23:30 +02:00
|
|
|
double mscale = 0, tscale = 0, sum = 0;
|
|
|
|
unsigned int i, n, nx, ny, nw, nh, mw, tw;
|
2007-02-19 14:44:05 +01:00
|
|
|
Client *c;
|
|
|
|
|
2007-02-19 15:05:29 +01:00
|
|
|
for(n = 0, c = nexttiled(clients); c; c = nexttiled(c->next))
|
2007-02-19 14:44:05 +01:00
|
|
|
n++;
|
2007-08-03 19:23:30 +02:00
|
|
|
|
2007-08-04 10:51:39 +02:00
|
|
|
mw = (n <= nmaster) ? waw : waw / (1 + hratio);
|
2007-02-19 14:44:05 +01:00
|
|
|
tw = waw - mw;
|
|
|
|
|
2007-08-03 19:23:30 +02:00
|
|
|
if(n > 0) {
|
|
|
|
if(n < nmaster) {
|
|
|
|
for(i = 0; i < n; i++)
|
2007-08-04 10:51:39 +02:00
|
|
|
sum += spow(vratio, i);
|
2007-08-03 19:23:30 +02:00
|
|
|
mscale = wah / sum;
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
for(i = 0; i < nmaster; i++)
|
2007-08-04 10:51:39 +02:00
|
|
|
sum += spow(vratio, i);
|
2007-08-03 19:23:30 +02:00
|
|
|
mscale = wah / sum;
|
|
|
|
for(sum = 0, i = 0; i < (n - nmaster); i++)
|
2007-08-04 10:51:39 +02:00
|
|
|
sum += spow(vratio, i);
|
2007-08-03 19:23:30 +02:00
|
|
|
tscale = wah / sum;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
nx = wax;
|
|
|
|
ny = way;
|
2007-02-19 14:44:05 +01:00
|
|
|
for(i = 0, c = clients; c; c = c->next)
|
|
|
|
if(isvisible(c)) {
|
2007-05-29 11:35:20 +02:00
|
|
|
unban(c);
|
2007-02-22 22:10:16 +01:00
|
|
|
if(c->isfloating)
|
2007-02-19 14:44:05 +01:00
|
|
|
continue;
|
|
|
|
c->ismax = False;
|
2007-08-03 19:23:30 +02:00
|
|
|
if(i < nmaster) { /* master window */
|
2007-04-17 14:56:46 +02:00
|
|
|
nw = mw - 2 * c->border;
|
2007-08-03 19:23:30 +02:00
|
|
|
if(i + 1 == n || i + 1 == nmaster)
|
|
|
|
nh = (way + wah) - ny - (2 * c->border);
|
|
|
|
else
|
2007-08-04 10:51:39 +02:00
|
|
|
nh = (mscale * spow(vratio, i)) - (2 * c->border);
|
2007-02-19 14:44:05 +01:00
|
|
|
}
|
2007-08-03 19:23:30 +02:00
|
|
|
else { /* tile window */
|
|
|
|
if(i == nmaster) {
|
|
|
|
ny = way;
|
|
|
|
nx = wax + mw;
|
2007-02-19 14:44:05 +01:00
|
|
|
}
|
2007-08-03 19:23:30 +02:00
|
|
|
nw = tw - 2 * c->border;
|
|
|
|
if(i + 1 == n)
|
|
|
|
nh = (way + wah) - ny - (2 * c->border);
|
|
|
|
else
|
2007-08-04 10:51:39 +02:00
|
|
|
nh = (tscale * spow(vratio, i - nmaster)) - (2 * c->border);
|
2007-08-03 19:23:30 +02:00
|
|
|
}
|
|
|
|
if(nh < bh) {
|
|
|
|
nh = bh;
|
|
|
|
ny = way + wah - nh;
|
2007-02-19 14:44:05 +01:00
|
|
|
}
|
|
|
|
resize(c, nx, ny, nw, nh, False);
|
2007-08-03 19:23:30 +02:00
|
|
|
ny += nh;
|
2007-02-19 14:44:05 +01:00
|
|
|
i++;
|
|
|
|
}
|
2007-05-29 11:35:20 +02:00
|
|
|
else
|
|
|
|
ban(c);
|
|
|
|
focus(NULL);
|
2007-02-19 14:44:05 +01:00
|
|
|
restack();
|
|
|
|
}
|
|
|
|
|
2007-02-19 17:00:32 +01:00
|
|
|
LAYOUTS
|
|
|
|
|
|
|
|
/* extern */
|
|
|
|
|
2007-02-22 22:10:16 +01:00
|
|
|
void
|
|
|
|
floating(void) {
|
|
|
|
Client *c;
|
|
|
|
|
2007-05-29 11:35:20 +02:00
|
|
|
for(c = clients; c; c = c->next)
|
2007-02-22 22:10:16 +01:00
|
|
|
if(isvisible(c)) {
|
2007-06-04 11:37:33 +02:00
|
|
|
unban(c);
|
2007-02-22 22:10:16 +01:00
|
|
|
resize(c, c->x, c->y, c->w, c->h, True);
|
|
|
|
}
|
2007-05-29 11:35:20 +02:00
|
|
|
else
|
|
|
|
ban(c);
|
|
|
|
focus(NULL);
|
2007-02-22 22:10:16 +01:00
|
|
|
restack();
|
|
|
|
}
|
|
|
|
|
2007-02-21 11:39:57 +01:00
|
|
|
void
|
2007-02-22 15:25:19 +01:00
|
|
|
focusclient(const char *arg) {
|
2007-02-21 11:39:57 +01:00
|
|
|
Client *c;
|
|
|
|
|
2007-02-22 15:25:19 +01:00
|
|
|
if(!sel || !arg)
|
2007-02-21 11:39:57 +01:00
|
|
|
return;
|
2007-02-22 17:51:34 +01:00
|
|
|
if(atoi(arg) < 0) {
|
2007-02-22 15:25:19 +01:00
|
|
|
for(c = sel->prev; c && !isvisible(c); c = c->prev);
|
|
|
|
if(!c) {
|
|
|
|
for(c = clients; c && c->next; c = c->next);
|
|
|
|
for(; c && !isvisible(c); c = c->prev);
|
|
|
|
}
|
2007-02-22 17:51:34 +01:00
|
|
|
}
|
|
|
|
else {
|
|
|
|
for(c = sel->next; c && !isvisible(c); c = c->next);
|
|
|
|
if(!c)
|
|
|
|
for(c = clients; c && !isvisible(c); c = c->next);
|
2007-02-21 11:39:57 +01:00
|
|
|
}
|
|
|
|
if(c) {
|
|
|
|
focus(c);
|
|
|
|
restack();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2007-02-19 14:44:05 +01:00
|
|
|
void
|
2007-08-04 10:51:39 +02:00
|
|
|
inchratio(const char *arg) {
|
|
|
|
incratio(arg, &hratio, HRATIO);
|
|
|
|
}
|
2007-08-03 19:23:30 +02:00
|
|
|
|
2007-08-04 10:51:39 +02:00
|
|
|
void
|
|
|
|
incvratio(const char *arg) {
|
|
|
|
incratio(arg, &vratio, VRATIO);
|
2007-02-22 07:59:13 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
void
|
2007-02-22 11:42:08 +01:00
|
|
|
incnmaster(const char *arg) {
|
2007-02-22 12:15:48 +01:00
|
|
|
int i;
|
|
|
|
|
|
|
|
if(!arg)
|
|
|
|
nmaster = NMASTER;
|
|
|
|
else {
|
|
|
|
i = atoi(arg);
|
|
|
|
if((lt->arrange != tile) || (nmaster + i < 1)
|
|
|
|
|| (wah / (nmaster + i) <= 2 * BORDERPX))
|
|
|
|
return;
|
|
|
|
nmaster += i;
|
|
|
|
}
|
2007-02-19 14:44:05 +01:00
|
|
|
if(sel)
|
2007-02-19 16:40:36 +01:00
|
|
|
lt->arrange();
|
2007-02-19 14:44:05 +01:00
|
|
|
else
|
|
|
|
drawstatus();
|
|
|
|
}
|
|
|
|
|
2007-02-19 16:40:36 +01:00
|
|
|
void
|
|
|
|
initlayouts(void) {
|
|
|
|
unsigned int i, w;
|
|
|
|
|
|
|
|
lt = &layout[0];
|
|
|
|
nlayouts = sizeof layout / sizeof layout[0];
|
|
|
|
for(blw = i = 0; i < nlayouts; i++) {
|
|
|
|
w = textw(layout[i].symbol);
|
|
|
|
if(w > blw)
|
|
|
|
blw = w;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2007-02-21 11:39:57 +01:00
|
|
|
Client *
|
|
|
|
nexttiled(Client *c) {
|
2007-02-22 22:10:16 +01:00
|
|
|
for(; c && (c->isfloating || !isvisible(c)); c = c->next);
|
2007-02-21 11:39:57 +01:00
|
|
|
return c;
|
|
|
|
}
|
|
|
|
|
2007-02-19 14:44:05 +01:00
|
|
|
void
|
|
|
|
restack(void) {
|
|
|
|
Client *c;
|
|
|
|
XEvent ev;
|
2007-06-06 11:43:14 +02:00
|
|
|
XWindowChanges wc;
|
2007-02-19 14:44:05 +01:00
|
|
|
|
|
|
|
drawstatus();
|
|
|
|
if(!sel)
|
|
|
|
return;
|
2007-02-22 22:10:16 +01:00
|
|
|
if(sel->isfloating || lt->arrange == floating)
|
2007-02-19 14:44:05 +01:00
|
|
|
XRaiseWindow(dpy, sel->win);
|
2007-02-22 22:10:16 +01:00
|
|
|
if(lt->arrange != floating) {
|
2007-06-06 11:43:14 +02:00
|
|
|
wc.stack_mode = Below;
|
|
|
|
wc.sibling = barwin;
|
|
|
|
if(!sel->isfloating) {
|
|
|
|
XConfigureWindow(dpy, sel->win, CWSibling | CWStackMode, &wc);
|
|
|
|
wc.sibling = sel->win;
|
|
|
|
}
|
2007-02-19 15:05:29 +01:00
|
|
|
for(c = nexttiled(clients); c; c = nexttiled(c->next)) {
|
2007-02-19 14:44:05 +01:00
|
|
|
if(c == sel)
|
|
|
|
continue;
|
2007-06-06 11:43:14 +02:00
|
|
|
XConfigureWindow(dpy, c->win, CWSibling | CWStackMode, &wc);
|
|
|
|
wc.sibling = c->win;
|
2007-02-19 14:44:05 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
XSync(dpy, False);
|
|
|
|
while(XCheckMaskEvent(dpy, EnterWindowMask, &ev));
|
|
|
|
}
|
|
|
|
|
2007-02-19 18:33:15 +01:00
|
|
|
void
|
2007-02-22 11:42:08 +01:00
|
|
|
setlayout(const char *arg) {
|
2007-02-22 12:15:48 +01:00
|
|
|
int i;
|
2007-02-19 18:33:15 +01:00
|
|
|
|
2007-02-22 11:42:08 +01:00
|
|
|
if(!arg) {
|
2007-05-22 11:29:04 +02:00
|
|
|
lt++;
|
|
|
|
if(lt == layout + nlayouts)
|
|
|
|
lt = layout;
|
2007-02-19 18:33:15 +01:00
|
|
|
}
|
|
|
|
else {
|
2007-02-22 11:42:08 +01:00
|
|
|
i = atoi(arg);
|
|
|
|
if(i < 0 || i >= nlayouts)
|
2007-02-19 18:33:15 +01:00
|
|
|
return;
|
2007-02-22 11:42:08 +01:00
|
|
|
lt = &layout[i];
|
2007-02-19 18:33:15 +01:00
|
|
|
}
|
|
|
|
if(sel)
|
|
|
|
lt->arrange();
|
|
|
|
else
|
|
|
|
drawstatus();
|
|
|
|
}
|
|
|
|
|
2007-05-15 12:09:18 +02:00
|
|
|
void
|
|
|
|
togglebar(const char *arg) {
|
2007-05-15 14:06:18 +02:00
|
|
|
if(bpos == BarOff)
|
|
|
|
bpos = (BARPOS == BarOff) ? BarTop : BARPOS;
|
2007-05-15 13:49:43 +02:00
|
|
|
else
|
|
|
|
bpos = BarOff;
|
2007-05-15 12:09:18 +02:00
|
|
|
updatebarpos();
|
2007-05-15 13:36:04 +02:00
|
|
|
lt->arrange();
|
2007-05-15 12:09:18 +02:00
|
|
|
}
|
|
|
|
|
2007-02-22 07:59:13 +01:00
|
|
|
void
|
2007-02-22 11:42:08 +01:00
|
|
|
togglemax(const char *arg) {
|
2007-02-22 07:59:13 +01:00
|
|
|
XEvent ev;
|
|
|
|
|
2007-02-22 22:10:16 +01:00
|
|
|
if(!sel || (lt->arrange != floating && !sel->isfloating) || sel->isfixed)
|
2007-02-22 07:59:13 +01:00
|
|
|
return;
|
|
|
|
if((sel->ismax = !sel->ismax)) {
|
|
|
|
sel->rx = sel->x;
|
|
|
|
sel->ry = sel->y;
|
|
|
|
sel->rw = sel->w;
|
|
|
|
sel->rh = sel->h;
|
2007-05-30 20:49:38 +02:00
|
|
|
resize(sel, wax, way, waw - 2 * sel->border, wah - 2 * sel->border, True);
|
2007-02-22 07:59:13 +01:00
|
|
|
}
|
|
|
|
else
|
|
|
|
resize(sel, sel->rx, sel->ry, sel->rw, sel->rh, True);
|
2007-02-22 10:59:42 +01:00
|
|
|
drawstatus();
|
2007-02-22 07:59:13 +01:00
|
|
|
while(XCheckMaskEvent(dpy, EnterWindowMask, &ev));
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
2007-02-22 11:42:08 +01:00
|
|
|
zoom(const char *arg) {
|
2007-02-22 07:59:13 +01:00
|
|
|
Client *c;
|
|
|
|
|
2007-05-22 11:29:59 +02:00
|
|
|
if(!sel || lt->arrange == floating || sel->isfloating)
|
2007-02-22 07:59:13 +01:00
|
|
|
return;
|
|
|
|
if((c = sel) == nexttiled(clients))
|
|
|
|
if(!(c = nexttiled(c->next)))
|
|
|
|
return;
|
|
|
|
detach(c);
|
|
|
|
attach(c);
|
|
|
|
focus(c);
|
|
|
|
lt->arrange();
|
|
|
|
}
|