2007-01-02 21:44:19 +07:00
|
|
|
/* (C)opyright MMVI-MMVII Anselm R. Garbe <garbeam at gmail dot com>
|
2006-08-22 21:50:21 +07:00
|
|
|
* See LICENSE file for license details.
|
|
|
|
*/
|
|
|
|
#include "dwm.h"
|
2006-09-06 14:13:31 +07:00
|
|
|
|
2006-08-29 18:40:09 +07:00
|
|
|
/* extern */
|
|
|
|
|
2006-10-06 18:06:37 +07:00
|
|
|
void (*arrange)(void) = DEFMODE;
|
2006-08-29 18:40:09 +07:00
|
|
|
|
2006-08-29 14:23:44 +07:00
|
|
|
void
|
2006-09-12 15:57:28 +07:00
|
|
|
detach(Client *c) {
|
2006-08-29 14:23:44 +07:00
|
|
|
if(c->prev)
|
|
|
|
c->prev->next = c->next;
|
|
|
|
if(c->next)
|
|
|
|
c->next->prev = c->prev;
|
|
|
|
if(c == clients)
|
|
|
|
clients = c->next;
|
|
|
|
c->next = c->prev = NULL;
|
|
|
|
}
|
|
|
|
|
2006-08-22 21:50:21 +07:00
|
|
|
void
|
2006-10-06 18:06:37 +07:00
|
|
|
dofloat(void) {
|
2006-09-04 17:23:41 +07:00
|
|
|
Client *c;
|
2006-09-04 13:55:49 +07:00
|
|
|
|
2006-08-22 21:50:21 +07:00
|
|
|
for(c = clients; c; c = c->next) {
|
2007-02-14 20:01:12 +07:00
|
|
|
if(isvisible(c)) {
|
2007-02-16 22:38:40 +07:00
|
|
|
if(c->isbanned)
|
|
|
|
XMoveWindow(dpy, c->win, c->x, c->y);
|
2007-02-14 20:01:12 +07:00
|
|
|
c->isbanned = False;
|
2007-02-16 22:41:22 +07:00
|
|
|
resize(c, c->x, c->y, c->w, c->h, True);
|
2007-02-14 20:01:12 +07:00
|
|
|
}
|
2007-02-16 22:38:40 +07:00
|
|
|
else {
|
|
|
|
c->isbanned = True;
|
|
|
|
XMoveWindow(dpy, c->win, c->x + 2 * sw, c->y);
|
|
|
|
}
|
2006-08-22 21:50:21 +07:00
|
|
|
}
|
2006-09-07 22:53:40 +07:00
|
|
|
if(!sel || !isvisible(sel)) {
|
2006-09-08 13:19:54 +07:00
|
|
|
for(c = stack; c && !isvisible(c); c = c->snext);
|
|
|
|
focus(c);
|
2006-09-07 22:53:40 +07:00
|
|
|
}
|
2006-08-22 21:50:21 +07:00
|
|
|
restack();
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
2006-09-12 15:57:28 +07:00
|
|
|
focusnext(Arg *arg) {
|
2006-08-22 21:50:21 +07:00
|
|
|
Client *c;
|
|
|
|
|
|
|
|
if(!sel)
|
|
|
|
return;
|
2007-02-16 16:20:34 +07:00
|
|
|
for(c = sel->next; c && !isvisible(c); c = c->next);
|
|
|
|
if(!c)
|
|
|
|
for(c = clients; c && !isvisible(c); c = c->next);
|
2006-08-22 21:50:21 +07:00
|
|
|
if(c) {
|
|
|
|
focus(c);
|
|
|
|
restack();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
2006-09-12 15:57:28 +07:00
|
|
|
focusprev(Arg *arg) {
|
2006-08-22 21:50:21 +07:00
|
|
|
Client *c;
|
|
|
|
|
|
|
|
if(!sel)
|
|
|
|
return;
|
2007-02-16 16:20:34 +07:00
|
|
|
for(c = sel->prev; c && !isvisible(c); c = c->prev);
|
|
|
|
if(!c) {
|
2006-08-22 21:50:21 +07:00
|
|
|
for(c = clients; c && c->next; c = c->next);
|
2007-02-16 16:20:34 +07:00
|
|
|
for(; c && !isvisible(c); c = c->prev);
|
2006-08-22 21:50:21 +07:00
|
|
|
}
|
|
|
|
if(c) {
|
|
|
|
focus(c);
|
|
|
|
restack();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2006-09-05 18:25:42 +07:00
|
|
|
Bool
|
2006-09-12 15:57:28 +07:00
|
|
|
isvisible(Client *c) {
|
2006-09-05 18:25:42 +07:00
|
|
|
unsigned int i;
|
|
|
|
|
|
|
|
for(i = 0; i < ntags; i++)
|
|
|
|
if(c->tags[i] && seltag[i])
|
|
|
|
return True;
|
|
|
|
return False;
|
|
|
|
}
|
|
|
|
|
2007-02-19 19:00:29 +07:00
|
|
|
Client *
|
|
|
|
nextmanaged(Client *c) {
|
|
|
|
for(; c && (c->isfloat || !isvisible(c)); c = c->next);
|
|
|
|
return c;
|
2006-09-05 14:02:37 +07:00
|
|
|
}
|
|
|
|
|
2006-08-22 21:50:21 +07:00
|
|
|
void
|
2006-09-25 13:21:51 +07:00
|
|
|
restack(void) {
|
2006-08-22 21:50:21 +07:00
|
|
|
Client *c;
|
|
|
|
XEvent ev;
|
2006-09-22 18:58:21 +07:00
|
|
|
|
2007-01-15 18:07:18 +07:00
|
|
|
drawstatus();
|
|
|
|
if(!sel)
|
2006-08-22 21:50:21 +07:00
|
|
|
return;
|
2007-01-15 04:27:29 +07:00
|
|
|
if(sel->isfloat || arrange == dofloat)
|
2006-09-06 16:54:16 +07:00
|
|
|
XRaiseWindow(dpy, sel->win);
|
2006-09-29 22:12:57 +07:00
|
|
|
if(arrange != dofloat) {
|
2007-01-15 04:27:29 +07:00
|
|
|
if(!sel->isfloat)
|
2006-09-29 22:12:57 +07:00
|
|
|
XLowerWindow(dpy, sel->win);
|
2007-02-19 19:00:29 +07:00
|
|
|
for(c = nextmanaged(clients); c; c = nextmanaged(c->next)) {
|
2006-09-29 22:12:57 +07:00
|
|
|
if(c == sel)
|
|
|
|
continue;
|
2006-09-06 16:54:16 +07:00
|
|
|
XLowerWindow(dpy, c->win);
|
2006-08-22 21:50:21 +07:00
|
|
|
}
|
2006-09-29 22:12:57 +07:00
|
|
|
}
|
2006-08-22 21:50:21 +07:00
|
|
|
XSync(dpy, False);
|
|
|
|
while(XCheckMaskEvent(dpy, EnterWindowMask, &ev));
|
|
|
|
}
|
|
|
|
|
2006-11-27 16:57:37 +07:00
|
|
|
void
|
|
|
|
togglefloat(Arg *arg) {
|
2007-02-12 23:20:51 +07:00
|
|
|
if(!sel || arrange == dofloat)
|
2006-11-27 16:57:37 +07:00
|
|
|
return;
|
|
|
|
sel->isfloat = !sel->isfloat;
|
|
|
|
arrange();
|
|
|
|
}
|
|
|
|
|
2006-08-22 21:50:21 +07:00
|
|
|
void
|
2006-09-12 15:57:28 +07:00
|
|
|
togglemode(Arg *arg) {
|
2006-08-23 15:21:57 +07:00
|
|
|
arrange = (arrange == dofloat) ? dotile : dofloat;
|
2006-08-22 21:50:21 +07:00
|
|
|
if(sel)
|
2006-10-06 18:06:37 +07:00
|
|
|
arrange();
|
2006-08-22 21:50:21 +07:00
|
|
|
else
|
|
|
|
drawstatus();
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
2006-09-12 15:57:28 +07:00
|
|
|
toggleview(Arg *arg) {
|
2006-08-22 21:50:21 +07:00
|
|
|
unsigned int i;
|
|
|
|
|
|
|
|
seltag[arg->i] = !seltag[arg->i];
|
|
|
|
for(i = 0; i < ntags && !seltag[i]; i++);
|
|
|
|
if(i == ntags)
|
|
|
|
seltag[arg->i] = True; /* cannot toggle last view */
|
2006-10-06 18:06:37 +07:00
|
|
|
arrange();
|
2006-09-29 21:22:20 +07:00
|
|
|
}
|
|
|
|
|
2006-08-22 21:50:21 +07:00
|
|
|
void
|
2006-09-12 15:57:28 +07:00
|
|
|
view(Arg *arg) {
|
2006-08-22 21:50:21 +07:00
|
|
|
unsigned int i;
|
|
|
|
|
|
|
|
for(i = 0; i < ntags; i++)
|
2006-11-30 21:27:43 +07:00
|
|
|
seltag[i] = (arg->i == -1) ? True : False;
|
2006-12-05 03:00:26 +07:00
|
|
|
if(arg->i >= 0 && arg->i < ntags)
|
|
|
|
seltag[arg->i] = True;
|
2006-10-06 18:06:37 +07:00
|
|
|
arrange();
|
2006-08-22 21:50:21 +07:00
|
|
|
}
|
|
|
|
|