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