2007-04-13 11:40:09 +02:00
|
|
|
/* © 2006-2007 Anselm R. Garbe <garbeam at gmail dot com>
|
|
|
|
* © 2006-2007 Sander van Dijk <a dot h dot vandijk at gmail dot com>
|
2007-04-13 11:32:38 +02:00
|
|
|
* See LICENSE file for license details. */
|
2007-02-19 14:44:05 +01:00
|
|
|
#include "dwm.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-02-19 16:40:36 +01:00
|
|
|
static unsigned int nlayouts = 0;
|
2007-02-22 07:59:13 +01:00
|
|
|
static unsigned int masterw = MASTERWIDTH;
|
|
|
|
static unsigned int nmaster = NMASTER;
|
2007-02-19 14:44:05 +01:00
|
|
|
|
2007-02-19 17:00:32 +01:00
|
|
|
static void
|
|
|
|
tile(void) {
|
2007-02-19 14:44:05 +01:00
|
|
|
unsigned int i, n, nx, ny, nw, nh, mw, mh, tw, th;
|
|
|
|
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++;
|
|
|
|
/* window geoms */
|
|
|
|
mh = (n > nmaster) ? wah / nmaster : wah / (n > 0 ? n : 1);
|
2007-02-22 07:59:13 +01:00
|
|
|
mw = (n > nmaster) ? (waw * masterw) / 1000 : waw;
|
2007-02-19 14:44:05 +01:00
|
|
|
th = (n > nmaster) ? wah / (n - nmaster) : 0;
|
|
|
|
tw = waw - mw;
|
|
|
|
|
|
|
|
for(i = 0, c = clients; c; c = c->next)
|
|
|
|
if(isvisible(c)) {
|
|
|
|
if(c->isbanned)
|
|
|
|
XMoveWindow(dpy, c->win, c->x, c->y);
|
|
|
|
c->isbanned = False;
|
2007-02-22 22:10:16 +01:00
|
|
|
if(c->isfloating)
|
2007-02-19 14:44:05 +01:00
|
|
|
continue;
|
|
|
|
c->ismax = False;
|
|
|
|
nx = wax;
|
|
|
|
ny = way;
|
|
|
|
if(i < nmaster) {
|
|
|
|
ny += i * mh;
|
2007-04-17 14:56:46 +02:00
|
|
|
nw = mw - 2 * c->border;
|
|
|
|
nh = mh - 2 * c->border;
|
2007-02-19 14:44:05 +01:00
|
|
|
}
|
|
|
|
else { /* tile window */
|
|
|
|
nx += mw;
|
2007-04-17 14:56:46 +02:00
|
|
|
nw = tw - 2 * c->border;
|
|
|
|
if(th > 2 * c->border) {
|
2007-02-19 14:44:05 +01:00
|
|
|
ny += (i - nmaster) * th;
|
2007-04-17 14:56:46 +02:00
|
|
|
nh = th - 2 * c->border;
|
2007-02-19 14:44:05 +01:00
|
|
|
}
|
2007-04-17 14:56:46 +02:00
|
|
|
else /* fallback if th <= 2 * c->border */
|
|
|
|
nh = wah - 2 * c->border;
|
2007-02-19 14:44:05 +01:00
|
|
|
}
|
|
|
|
resize(c, nx, ny, nw, nh, False);
|
|
|
|
i++;
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
c->isbanned = True;
|
|
|
|
XMoveWindow(dpy, c->win, c->x + 2 * sw, c->y);
|
|
|
|
}
|
|
|
|
if(!sel || !isvisible(sel)) {
|
|
|
|
for(c = stack; c && !isvisible(c); c = c->snext);
|
|
|
|
focus(c);
|
|
|
|
}
|
|
|
|
restack();
|
|
|
|
}
|
|
|
|
|
2007-02-19 17:00:32 +01:00
|
|
|
LAYOUTS
|
|
|
|
|
|
|
|
/* extern */
|
|
|
|
|
2007-02-22 22:10:16 +01:00
|
|
|
void
|
|
|
|
floating(void) {
|
|
|
|
Client *c;
|
|
|
|
|
|
|
|
for(c = clients; c; c = c->next) {
|
|
|
|
if(isvisible(c)) {
|
|
|
|
if(c->isbanned)
|
|
|
|
XMoveWindow(dpy, c->win, c->x, c->y);
|
|
|
|
c->isbanned = False;
|
|
|
|
resize(c, c->x, c->y, c->w, c->h, True);
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
c->isbanned = True;
|
|
|
|
XMoveWindow(dpy, c->win, c->x + 2 * sw, c->y);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if(!sel || !isvisible(sel)) {
|
|
|
|
for(c = stack; c && !isvisible(c); c = c->snext);
|
|
|
|
focus(c);
|
|
|
|
}
|
|
|
|
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-02-22 11:42:08 +01:00
|
|
|
incmasterw(const char *arg) {
|
|
|
|
int i;
|
2007-02-22 07:59:13 +01:00
|
|
|
if(lt->arrange != tile)
|
|
|
|
return;
|
2007-02-22 11:42:08 +01:00
|
|
|
if(!arg)
|
2007-02-22 07:59:13 +01:00
|
|
|
masterw = MASTERWIDTH;
|
|
|
|
else {
|
2007-02-22 11:42:08 +01:00
|
|
|
i = atoi(arg);
|
2007-04-17 14:56:46 +02:00
|
|
|
if(waw * (masterw + i) / 1000 >= waw - 2 * BORDERPX
|
2007-02-22 11:42:08 +01:00
|
|
|
|| waw * (masterw + i) / 1000 <= 2 * BORDERPX)
|
2007-02-22 07:59:13 +01:00
|
|
|
return;
|
2007-02-22 11:42:08 +01:00
|
|
|
masterw += i;
|
2007-02-22 07:59:13 +01:00
|
|
|
}
|
|
|
|
lt->arrange();
|
|
|
|
}
|
|
|
|
|
|
|
|
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;
|
|
|
|
|
|
|
|
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) {
|
|
|
|
if(!sel->isfloating)
|
2007-02-19 14:44:05 +01:00
|
|
|
XLowerWindow(dpy, 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;
|
|
|
|
XLowerWindow(dpy, c->win);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
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-02-19 18:33:15 +01:00
|
|
|
for(i = 0; i < nlayouts && lt != &layout[i]; i++);
|
|
|
|
if(i == nlayouts - 1)
|
|
|
|
lt = &layout[0];
|
|
|
|
else
|
|
|
|
lt = &layout[++i];
|
|
|
|
}
|
|
|
|
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-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;
|
|
|
|
resize(sel, wax, way, waw - 2 * BORDERPX, wah - 2 * BORDERPX, True);
|
|
|
|
}
|
|
|
|
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
|
|
|
unsigned int n;
|
|
|
|
Client *c;
|
|
|
|
|
2007-02-22 22:10:16 +01:00
|
|
|
if(!sel || lt->arrange != tile || sel->isfloating)
|
2007-02-22 07:59:13 +01:00
|
|
|
return;
|
|
|
|
for(n = 0, c = nexttiled(clients); c; c = nexttiled(c->next))
|
|
|
|
n++;
|
|
|
|
if((c = sel) == nexttiled(clients))
|
|
|
|
if(!(c = nexttiled(c->next)))
|
|
|
|
return;
|
|
|
|
detach(c);
|
|
|
|
attach(c);
|
|
|
|
focus(c);
|
|
|
|
lt->arrange();
|
|
|
|
}
|