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