about summary refs log tree commit diff stats
path: root/mouse.c
diff options
context:
space:
mode:
Diffstat (limited to 'mouse.c')
-rw-r--r--mouse.c32
1 files changed, 6 insertions, 26 deletions
diff --git a/mouse.c b/mouse.c
index 896d6b0..ff81701 100644
--- a/mouse.c
+++ b/mouse.c
@@ -13,27 +13,6 @@
 #define ButtonMask      (ButtonPressMask | ButtonReleaseMask)
 #define MouseMask       (ButtonMask | PointerMotionMask)
 
-static void
-mmatch(Client *c, int x1, int y1, int x2, int y2)
-{
-	c->w = abs(x1 - x2);
-	c->h = abs(y1 - y2);
-	if(c->incw)
-		c->w -= (c->w - c->basew) % c->incw;
-	if(c->inch)
-		c->h -= (c->h - c->baseh) % c->inch;
-	if(c->minw && c->w < c->minw)
-		c->w = c->minw;
-	if(c->minh && c->h < c->minh)
-		c->h = c->minh;
-	if(c->maxw && c->w > c->maxw)
-		c->w = c->maxw;
-	if(c->maxh && c->h > c->maxh)
-		c->h = c->maxh;
-	c->x = (x1 <= x2) ? x1 : x1 - c->w;
-	c->y = (y1 <= y2) ? y1 : y1 - c->h;
-}
-
 void
 mresize(Client *c)
 {
@@ -55,11 +34,13 @@ mresize(Client *c)
 			break;
 		case MotionNotify:
 			XFlush(dpy);
-			mmatch(c, old_cx, old_cy, ev.xmotion.x, ev.xmotion.y);
-			XResizeWindow(dpy, c->win, c->w, c->h);
+			c->w = abs(old_cx - ev.xmotion.x);
+			c->h = abs(old_cy - ev.xmotion.y);
+			c->x = (old_cx <= ev.xmotion.x) ? old_cx : old_cx - c->w;
+			c->y = (old_cy <= ev.xmotion.y) ? old_cy : old_cy - c->h;
+			resize(c);
 			break;
 		case ButtonRelease:
-			resize(c);
 			XUngrabPointer(dpy, CurrentTime);
 			return;
 		}
@@ -91,10 +72,9 @@ mmove(Client *c)
 			XFlush(dpy);
 			c->x = old_cx + (ev.xmotion.x - x1);
 			c->y = old_cy + (ev.xmotion.y - y1);
-			XMoveResizeWindow(dpy, c->win, c->x, c->y, c->w, c->h);
+			resize(c);
 			break;
 		case ButtonRelease:
-			resize(c);
 			XUngrabPointer(dpy, CurrentTime);
 			return;
 		}
tle='Blame the previous revision' href='/acidbong/suckless/dwm/blame/config.def.h?h=5.4.1&id=0271ac0ed7b422ffac8ff848193deceedb0872da'>^
fe2775a ^
e237b2a ^
a6a216f ^
f196b71 ^
3794c62 ^
f196b71 ^
7eb2628 ^
6f60b2e ^
8d1810c ^
39af3c2 ^
fe2775a ^
c917018 ^
247ba66 ^
93a4fe1 ^

3794c62 ^

f196b71 ^

e9a0733 ^


308f95a ^
20cd336 ^
e9a0733 ^
5602f44 ^
e9a0733 ^
5602f44 ^
d66ad14 ^
a355782 ^

e9a0733 ^
fa244aa ^
e9a0733 ^
e9a0733 ^
20cd336 ^

e9a0733 ^






































b515765 ^
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92