several fixes through ISVISIBLE change (takes Monitor into account)

This commit is contained in:
Anselm R Garbe 2009-06-20 15:51:34 +01:00
parent 2ce37bc69e
commit 3da2453997
1 changed files with 20 additions and 18 deletions

38
dwm.c
View File

@ -44,8 +44,8 @@
#define BUTTONMASK (ButtonPressMask|ButtonReleaseMask) #define BUTTONMASK (ButtonPressMask|ButtonReleaseMask)
#define CLEANMASK(mask) (mask & ~(numlockmask|LockMask)) #define CLEANMASK(mask) (mask & ~(numlockmask|LockMask))
#define INRECT(X,Y,RX,RY,RW,RH) ((X) >= (RX) && (X) < (RX) + (RW) && (Y) >= (RY) && (Y) < (RY) + (RH)) #define INRECT(X,Y,RX,RY,RW,RH) ((X) >= (RX) && (X) < (RX) + (RW) && (Y) >= (RY) && (Y) < (RY) + (RH))
#define ISVISIBLE(x) (x->tags & tagset[mon[x->mon].seltags]) #define ISVISIBLE(M, C) ((M) == (&mon[C->mon]) && (C->tags & tagset[M->seltags]))
#define LENGTH(x) (sizeof x / sizeof x[0]) #define LENGTH(X) (sizeof X / sizeof X[0])
#define MAX(a, b) ((a) > (b) ? (a) : (b)) #define MAX(a, b) ((a) > (b) ? (a) : (b))
#define MIN(a, b) ((a) < (b) ? (a) : (b)) #define MIN(a, b) ((a) < (b) ? (a) : (b))
#define MOUSEMASK (BUTTONMASK|PointerMotionMask) #define MOUSEMASK (BUTTONMASK|PointerMotionMask)
@ -493,7 +493,7 @@ configurenotify(XEvent *e) {
updategeom(); updategeom();
if(dc.drawable != 0) if(dc.drawable != 0)
XFreePixmap(dpy, dc.drawable); XFreePixmap(dpy, dc.drawable);
dc.drawable = XCreatePixmap(dpy, root, DisplayWidth(dpy, screen), bh, DefaultDepth(dpy, screen)); dc.drawable = XCreatePixmap(dpy, root, sw, bh, DefaultDepth(dpy, screen));
for(i = 0; i < nmons; i++) for(i = 0; i < nmons; i++)
XMoveResizeWindow(dpy, mon[i].barwin, mon[i].wx, mon[i].by, mon[i].ww, bh); XMoveResizeWindow(dpy, mon[i].barwin, mon[i].wx, mon[i].by, mon[i].ww, bh);
arrange(); arrange();
@ -524,7 +524,7 @@ configurerequest(XEvent *e) {
c->y = sy + (sh / 2 - c->h / 2); /* center in y direction */ c->y = sy + (sh / 2 - c->h / 2); /* center in y direction */
if((ev->value_mask & (CWX|CWY)) && !(ev->value_mask & (CWWidth|CWHeight))) if((ev->value_mask & (CWX|CWY)) && !(ev->value_mask & (CWWidth|CWHeight)))
configure(c); configure(c);
if(ISVISIBLE(c)) if(ISVISIBLE((&mon[c->mon]), c))
XMoveResizeWindow(dpy, c->win, c->x, c->y, c->w, c->h); XMoveResizeWindow(dpy, c->win, c->x, c->y, c->w, c->h);
} }
else else
@ -636,6 +636,7 @@ drawbar(Monitor *m) {
} }
} }
else { else {
dc.x = x;
dc.w = m->ww - x; dc.w = m->ww - x;
drawtext(NULL, dc.norm, False); drawtext(NULL, dc.norm, False);
} }
@ -718,17 +719,18 @@ expose(XEvent *e) {
unsigned int i; unsigned int i;
XExposeEvent *ev = &e->xexpose; XExposeEvent *ev = &e->xexpose;
for(i = 0; i < nmons; i++) if(ev->count == 0)
if(ev->count == 0 && (ev->window == mon[i].barwin)) { for(i = 0; i < nmons; i++)
drawbar(&mon[i]); if(ev->window == mon[i].barwin) {
break; drawbar(&mon[i]);
} break;
}
} }
void void
focus(Client *c) { focus(Client *c) {
if(!c || !ISVISIBLE(c)) if(!c || !ISVISIBLE((&mon[c->mon]), c))
for(c = stack; c && !ISVISIBLE(c); c = c->snext); for(c = stack; c && !ISVISIBLE(selmon, c); c = c->snext);
if(sel && sel != c) { if(sel && sel != c) {
grabbuttons(sel, False); grabbuttons(sel, False);
XSetWindowBorder(dpy, sel->win, dc.norm[ColBorder]); XSetWindowBorder(dpy, sel->win, dc.norm[ColBorder]);
@ -776,17 +778,17 @@ focusstack(const Arg *arg) {
if(!sel) if(!sel)
return; return;
if(arg->i > 0) { if(arg->i > 0) {
for(c = sel->next; c && !ISVISIBLE(c); c = c->next); for(c = sel->next; c && !ISVISIBLE(selmon, c); c = c->next);
if(!c) if(!c)
for(c = clients; c && !ISVISIBLE(c); c = c->next); for(c = clients; c && !ISVISIBLE(selmon, c); c = c->next);
} }
else { else {
for(i = clients; i != sel; i = i->next) for(i = clients; i != sel; i = i->next)
if(ISVISIBLE(i)) if(ISVISIBLE(selmon, i))
c = i; c = i;
if(!c) if(!c)
for(; i; i = i->next) for(; i; i = i->next)
if(ISVISIBLE(i)) if(ISVISIBLE(selmon, i))
c = i; c = i;
} }
if(c) { if(c) {
@ -1126,7 +1128,7 @@ movemouse(const Arg *arg) {
Client * Client *
nexttiled(Monitor *m, Client *c) { nexttiled(Monitor *m, Client *c) {
// TODO: m handling // TODO: m handling
for(; c && (c->isfloating || m != &mon[c->mon] || !ISVISIBLE(c)); c = c->next); for(; c && (c->isfloating || !ISVISIBLE(m, c)); c = c->next);
return c; return c;
} }
@ -1246,7 +1248,7 @@ restack(Monitor *m) {
wc.stack_mode = Below; wc.stack_mode = Below;
wc.sibling = m->barwin; wc.sibling = m->barwin;
for(c = stack; c; c = c->snext) for(c = stack; c; c = c->snext)
if(!c->isfloating && m == &mon[c->mon] && ISVISIBLE(c)) { if(!c->isfloating && ISVISIBLE(m, c)) {
XConfigureWindow(dpy, c->win, CWSibling|CWStackMode, &wc); XConfigureWindow(dpy, c->win, CWSibling|CWStackMode, &wc);
wc.sibling = c->win; wc.sibling = c->win;
} }
@ -1408,7 +1410,7 @@ void
showhide(Client *c) { showhide(Client *c) {
if(!c) if(!c)
return; return;
if(ISVISIBLE(c)) { /* show clients top down */ if(ISVISIBLE((&mon[c->mon]), c)) { /* show clients top down */
XMoveWindow(dpy, c->win, c->x, c->y); XMoveWindow(dpy, c->win, c->x, c->y);
if(!lt[selmon->sellt]->arrange || c->isfloating) if(!lt[selmon->sellt]->arrange || c->isfloating)
resize(c, c->x, c->y, c->w, c->h); resize(c, c->x, c->y, c->w, c->h);