diff options
author | Okan Demirmen <okan@cvs.openbsd.org> | 2009-01-16 15:24:15 +0000 |
---|---|---|
committer | Okan Demirmen <okan@cvs.openbsd.org> | 2009-01-16 15:24:15 +0000 |
commit | c1af2c0baf9c1eeccacf2c1dd727f5151fdb4bf4 (patch) | |
tree | 40cd91953031d3fe7c6e725effcb04a896b2eed8 /app/cwm/kbfunc.c | |
parent | 43c5c20221bd4c9a8724c4726ab6908666529bd5 (diff) |
remove pwin, bringing us to one client, one window. we no longer have
to push attributes around, so things get a lot simplier, while fixing a
few issues in the meantime; original suggestion by Edd Barrett many many
moons ago.
annoying window placement and race, found in c2k8 by todd, fix by oga!
lots of feedback from todd and oga - thanks!
"commit that bad boy" oga@
Diffstat (limited to 'app/cwm/kbfunc.c')
-rw-r--r-- | app/cwm/kbfunc.c | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/app/cwm/kbfunc.c b/app/cwm/kbfunc.c index a7c9acdb7..1f2dcbe9f 100644 --- a/app/cwm/kbfunc.c +++ b/app/cwm/kbfunc.c @@ -15,7 +15,7 @@ * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. * - * $Id: kbfunc.c,v 1.32 2008/07/11 15:18:29 okan Exp $ + * $Id: kbfunc.c,v 1.33 2009/01/16 15:24:14 okan Exp $ */ #include <paths.h> @@ -90,7 +90,7 @@ kbfunc_moveresize(struct client_ctx *cc, void *arg) cc->geom.x = cc->sc->xmax; client_move(cc); - xu_ptr_getpos(cc->pwin, &x, &y); + xu_ptr_getpos(cc->win, &x, &y); cc->ptr.y = y + my; cc->ptr.x = x + mx; client_ptrwarp(cc); @@ -103,7 +103,7 @@ kbfunc_moveresize(struct client_ctx *cc, void *arg) client_resize(cc); /* Make sure the pointer stays within the window. */ - xu_ptr_getpos(cc->pwin, &cc->ptr.x, &cc->ptr.y); + xu_ptr_getpos(cc->win, &cc->ptr.x, &cc->ptr.y); if (cc->ptr.x > cc->geom.width) cc->ptr.x = cc->geom.width - cc->bwidth; if (cc->ptr.y > cc->geom.height) @@ -112,8 +112,8 @@ kbfunc_moveresize(struct client_ctx *cc, void *arg) break; case CWM_PTRMOVE: if (cc) { - xu_ptr_getpos(cc->pwin, &x, &y); - xu_ptr_setpos(cc->pwin, x + mx, y + my); + xu_ptr_getpos(cc->win, &x, &y); + xu_ptr_setpos(cc->win, x + mx, y + my); } else { xu_ptr_getpos(sc->rootwin, &x, &y); xu_ptr_setpos(sc->rootwin, x + mx, y + my); @@ -455,7 +455,7 @@ void kbfunc_client_grouptoggle(struct client_ctx *cc, void *arg) { /* XXX for stupid X apps like xpdf and gvim */ - XGrabKeyboard(X_Dpy, cc->pwin, True, + XGrabKeyboard(X_Dpy, cc->win, True, GrabModeAsync, GrabModeAsync, CurrentTime); group_sticky_toggle_enter(cc); |