mirror of
https://github.com/bakkeby/patches
synced 2024-11-05 21:20:30 +00:00
98 lines
3.6 KiB
Diff
98 lines
3.6 KiB
Diff
From 3a6c2b419b9e5787fa388bad5a184b70432a41d8 Mon Sep 17 00:00:00 2001
|
|
From: bakkeby <bakkeby@gmail.com>
|
|
Date: Wed, 24 Jun 2020 14:16:27 +0200
|
|
Subject: [PATCH] resizepoint - Like resizecorners, but does not warp mouse
|
|
pointer
|
|
|
|
---
|
|
dwm.c | 30 +++++++++++++++++++++---------
|
|
1 file changed, 21 insertions(+), 9 deletions(-)
|
|
|
|
diff --git a/dwm.c b/dwm.c
|
|
index 4465af1..8c82bf3 100644
|
|
--- a/dwm.c
|
|
+++ b/dwm.c
|
|
@@ -58,7 +58,7 @@
|
|
#define TEXTW(X) (drw_fontset_getwidth(drw, (X)) + lrpad)
|
|
|
|
/* enums */
|
|
-enum { CurNormal, CurResize, CurMove, CurLast }; /* cursor */
|
|
+enum { CurResizeBR, CurResizeBL, CurResizeTR, CurResizeTL, CurNormal, CurMove, CurLast }; /* cursor */
|
|
enum { SchemeNorm, SchemeSel }; /* color schemes */
|
|
enum { NetSupported, NetWMName, NetWMState, NetWMCheck,
|
|
NetWMFullscreen, NetActiveWindow, NetWMWindowType,
|
|
@@ -1290,10 +1290,13 @@ resizeclient(Client *c, int x, int y, int w, int h)
|
|
void
|
|
resizemouse(const Arg *arg)
|
|
{
|
|
- int ocx, ocy, nw, nh;
|
|
+ int opx, opy, ocx, ocy, och, ocw, nx, ny, nw, nh;
|
|
Client *c;
|
|
Monitor *m;
|
|
XEvent ev;
|
|
+ int horizcorner, vertcorner;
|
|
+ unsigned int dui;
|
|
+ Window dummy;
|
|
Time lasttime = 0;
|
|
|
|
if (!(c = selmon->sel))
|
|
@@ -1303,10 +1306,15 @@ resizemouse(const Arg *arg)
|
|
restack(selmon);
|
|
ocx = c->x;
|
|
ocy = c->y;
|
|
+ och = c->h;
|
|
+ ocw = c->w;
|
|
+ if (!XQueryPointer(dpy, c->win, &dummy, &dummy, &opx, &opy, &nx, &ny, &dui))
|
|
+ return;
|
|
+ horizcorner = nx < c->w / 2;
|
|
+ vertcorner = ny < c->h / 2;
|
|
if (XGrabPointer(dpy, root, False, MOUSEMASK, GrabModeAsync, GrabModeAsync,
|
|
- None, cursor[CurResize]->cursor, CurrentTime) != GrabSuccess)
|
|
+ None, cursor[horizcorner | (vertcorner << 1)]->cursor, CurrentTime) != GrabSuccess)
|
|
return;
|
|
- XWarpPointer(dpy, None, c->win, 0, 0, 0, 0, c->w + c->bw - 1, c->h + c->bw - 1);
|
|
do {
|
|
XMaskEvent(dpy, MOUSEMASK|ExposureMask|SubstructureRedirectMask, &ev);
|
|
switch(ev.type) {
|
|
@@ -1320,8 +1328,10 @@ resizemouse(const Arg *arg)
|
|
continue;
|
|
lasttime = ev.xmotion.time;
|
|
|
|
- nw = MAX(ev.xmotion.x - ocx - 2 * c->bw + 1, 1);
|
|
- nh = MAX(ev.xmotion.y - ocy - 2 * c->bw + 1, 1);
|
|
+ nx = horizcorner ? (ocx + ev.xmotion.x - opx) : c->x;
|
|
+ ny = vertcorner ? (ocy + ev.xmotion.y - opy) : c->y;
|
|
+ nw = MAX(horizcorner ? (ocx + ocw - nx) : (ocw + (ev.xmotion.x - opx)), 1);
|
|
+ nh = MAX(vertcorner ? (ocy + och - ny) : (och + (ev.xmotion.y - opy)), 1);
|
|
if (c->mon->wx + nw >= selmon->wx && c->mon->wx + nw <= selmon->wx + selmon->ww
|
|
&& c->mon->wy + nh >= selmon->wy && c->mon->wy + nh <= selmon->wy + selmon->wh)
|
|
{
|
|
@@ -1330,11 +1340,10 @@ resizemouse(const Arg *arg)
|
|
togglefloating(NULL);
|
|
}
|
|
if (!selmon->lt[selmon->sellt]->arrange || c->isfloating)
|
|
- resize(c, c->x, c->y, nw, nh, 1);
|
|
+ resizeclient(c, nx, ny, nw, nh);
|
|
break;
|
|
}
|
|
} while (ev.type != ButtonRelease);
|
|
- XWarpPointer(dpy, None, c->win, 0, 0, 0, 0, c->w + c->bw - 1, c->h + c->bw - 1);
|
|
XUngrabPointer(dpy, CurrentTime);
|
|
while (XCheckMaskEvent(dpy, EnterWindowMask, &ev));
|
|
if ((m = recttomon(c->x, c->y, c->w, c->h)) != selmon) {
|
|
@@ -1564,7 +1573,10 @@ setup(void)
|
|
netatom[NetClientList] = XInternAtom(dpy, "_NET_CLIENT_LIST", False);
|
|
/* init cursors */
|
|
cursor[CurNormal] = drw_cur_create(drw, XC_left_ptr);
|
|
- cursor[CurResize] = drw_cur_create(drw, XC_sizing);
|
|
+ cursor[CurResizeBR] = drw_cur_create(drw, XC_bottom_right_corner);
|
|
+ cursor[CurResizeBL] = drw_cur_create(drw, XC_bottom_left_corner);
|
|
+ cursor[CurResizeTR] = drw_cur_create(drw, XC_top_right_corner);
|
|
+ cursor[CurResizeTL] = drw_cur_create(drw, XC_top_left_corner);
|
|
cursor[CurMove] = drw_cur_create(drw, XC_fleur);
|
|
/* init appearance */
|
|
scheme = ecalloc(LENGTH(colors), sizeof(Clr *));
|
|
--
|
|
2.19.1
|
|
|