about summary refs log tree commit diff stats
path: root/mouse.c
diff options
context:
space:
mode:
authorAnselm R. Garbe <garbeam@wmii.de>2006-07-11 21:41:49 +0200
committerAnselm R. Garbe <garbeam@wmii.de>2006-07-11 21:41:49 +0200
commit48b6e9a3968e54a87f022c8e68b5bec5423cb75f (patch)
tree0c2fccdc7b2b18996840e8043bc1a95a1c897f40 /mouse.c
parentb9da4b082eb658b4142b61c149212f414f7653b6 (diff)
downloaddwm-48b6e9a3968e54a87f022c8e68b5bec5423cb75f.tar.gz
added basic mouse support (actually we don't need more)
Diffstat (limited to 'mouse.c')
-rw-r--r--mouse.c12
1 files changed, 8 insertions, 4 deletions
diff --git a/mouse.c b/mouse.c
index 2b5d63b..07b533c 100644
--- a/mouse.c
+++ b/mouse.c
@@ -42,7 +42,7 @@ mresize(Client *c)
 
 	old_cx = c->r[RFloat].x;
 	old_cy = c->r[RFloat].y;
-	if(XGrabPointer(dpy, c->win, False, MouseMask, GrabModeAsync, GrabModeAsync,
+	if(XGrabPointer(dpy, root, False, MouseMask, GrabModeAsync, GrabModeAsync,
 				None, cursor[CurResize], CurrentTime) != GrabSuccess)
 		return;
 	XGrabServer(dpy);
@@ -55,10 +55,12 @@ mresize(Client *c)
 		case MotionNotify:
 			XUngrabServer(dpy);
 			mmatch(c, old_cx, old_cy, ev.xmotion.x, ev.xmotion.y);
-			resize(c);
+			XResizeWindow(dpy, c->win, c->r[RFloat].width, c->r[RFloat].height);
 			XGrabServer(dpy);
 			break;
 		case ButtonRelease:
+			resize(c);
+			XUngrabServer(dpy);
 			XUngrabPointer(dpy, CurrentTime);
 			return;
 		}
@@ -75,7 +77,7 @@ mmove(Client *c)
 
 	old_cx = c->r[RFloat].x;
 	old_cy = c->r[RFloat].y;
-	if(XGrabPointer(dpy, c->win, False, MouseMask, GrabModeAsync, GrabModeAsync,
+	if(XGrabPointer(dpy, root, False, MouseMask, GrabModeAsync, GrabModeAsync,
 				None, cursor[CurMove], CurrentTime) != GrabSuccess)
 		return;
 	XQueryPointer(dpy, root, &dummy, &dummy, &x1, &y1, &di, &di, &dui);
@@ -88,10 +90,12 @@ mmove(Client *c)
 			XUngrabServer(dpy);
 			c->r[RFloat].x = old_cx + (ev.xmotion.x - x1);
 			c->r[RFloat].y = old_cy + (ev.xmotion.y - y1);
-			resize(c);
+			XMoveResizeWindow(dpy, c->win, c->r[RFloat].x, c->r[RFloat].y,
+					c->r[RFloat].width, c->r[RFloat].height);
 			XGrabServer(dpy);
 			break;
 		case ButtonRelease:
+			resize(c);
 			XUngrabServer(dpy);
 			XUngrabPointer(dpy, CurrentTime);
 			return;