re-work client_snapcalc() so it takes client and edge dimensions with

snapdist; allows for simplier snap calculations.

required for an upcoming diff for honoring gap.
This commit is contained in:
okan
2013-01-02 21:37:21 +00:00
parent 6e5dda99a6
commit 2ac65bd288
3 changed files with 14 additions and 16 deletions

View File

@@ -101,11 +101,11 @@ kbfunc_moveresize(struct client_ctx *cc, union arg *arg)
cc->geom.x = sc->view.w - 1;
cc->geom.x += client_snapcalc(cc->geom.x,
cc->geom.w, sc->view.w,
cc->bwidth, Conf.snapdist);
cc->geom.x + cc->geom.w + (cc->bwidth * 2),
sc->view.x, sc->view.w, Conf.snapdist);
cc->geom.y += client_snapcalc(cc->geom.y,
cc->geom.h, sc->view.h,
cc->bwidth, Conf.snapdist);
cc->geom.y + cc->geom.h + (cc->bwidth * 2),
sc->view.y, sc->view.h, Conf.snapdist);
client_move(cc);
xu_ptr_getpos(cc->win, &x, &y);