summaryrefslogtreecommitdiffhomepage
path: root/patch/warp.c
diff options
context:
space:
mode:
authorbakkeby <[email protected]>2020-10-06 08:45:17 +0200
committerbakkeby <[email protected]>2020-10-06 08:45:17 +0200
commit56c81ddbfa8f133d6690977f6ea01d16185538a2 (patch)
treeac1b2fe3f52b7f1b5bd12eab94a699f325fec837 /patch/warp.c
parentc47f61387da7c85aff9d3db00081053965e2e0dc (diff)
downloaddwm-flexipatch-56c81ddbfa8f133d6690977f6ea01d16185538a2.tar.gz
dwm-flexipatch-56c81ddbfa8f133d6690977f6ea01d16185538a2.zip
warp: dragmfact + dragcfact compatibility
These set of changes introduce: a) a flag to ignore warp from happening while dragmfact or dragcfact is being used and b) a flag to force warp when killclient or showhideclient is used, to make for a more intuitive experience ref. https://github.com/bakkeby/patches/issues/11
Diffstat (limited to 'patch/warp.c')
-rw-r--r--patch/warp.c34
1 files changed, 20 insertions, 14 deletions
diff --git a/patch/warp.c b/patch/warp.c
index 45048e2..e266656 100644
--- a/patch/warp.c
+++ b/patch/warp.c
@@ -5,26 +5,32 @@ warp(const Client *c)
Bar *bar;
int x, y;
+ if (ignore_warp)
+ return;
+
if (!c) {
XWarpPointer(dpy, None, root, 0, 0, 0, 0, selmon->wx + selmon->ww / 2, selmon->wy + selmon->wh / 2);
return;
}
- if (!getrootptr(&x, &y) ||
- (x > c->x - c->bw &&
- y > c->y - c->bw &&
- x < c->x + c->w + c->bw*2 &&
- y < c->y + c->h + c->bw*2)
- )
- return;
+ if (!force_warp) {
+ if (!getrootptr(&x, &y) ||
+ (x > c->x - c->bw &&
+ y > c->y - c->bw &&
+ x < c->x + c->w + c->bw*2 &&
+ y < c->y + c->h + c->bw*2)
+ )
+ return;
- for (m = mons; m; m = m->next)
- for (bar = m->bar; bar; bar = bar->next)
- if (x > bar->bx &&
- x < bar->bx + bar->bw &&
- y > bar->by &&
- y < bar->by + bar->bh)
- return;
+ for (m = mons; m; m = m->next)
+ for (bar = m->bar; bar; bar = bar->next)
+ if (x > bar->bx &&
+ x < bar->bx + bar->bw &&
+ y > bar->by &&
+ y < bar->by + bar->bh)
+ return;
+ } else
+ force_warp = 0;
XWarpPointer(dpy, None, c->win, 0, 0, 0, 0, c->w / 2, c->h / 2);
}