about summary refs log tree commit diff stats
diff options
context:
space:
mode:
authorarg@mig29 <unknown>2006-10-30 11:58:05 +0100
committerarg@mig29 <unknown>2006-10-30 11:58:05 +0100
commitb6614261ea48c9711cefd79601e09fa764ee3075 (patch)
treee45411abe4b58a8acea5e7f5d1a0b9b4ea855a06
parent91e569ca37ac441930f041057d2934f02bf263a2 (diff)
downloaddwm-b6614261ea48c9711cefd79601e09fa764ee3075.tar.gz
added screen-border snapping in floating mode, feels quite well
-rw-r--r--config.arg.h1
-rw-r--r--config.default.h1
-rw-r--r--event.c8
3 files changed, 10 insertions, 0 deletions
diff --git a/config.arg.h b/config.arg.h
index 84f37a7..30bfaf9 100644
--- a/config.arg.h
+++ b/config.arg.h
@@ -19,6 +19,7 @@ const char *tags[] = { "dev", "work", "net", "fnord", NULL };
 
 #define MASTER			600 /* per thousand */
 #define MODKEY			Mod1Mask
+#define SNAP			20 /* pixel */
 
 #define KEYS \
 static Key key[] = { \
diff --git a/config.default.h b/config.default.h
index fb452f2..0a595a2 100644
--- a/config.default.h
+++ b/config.default.h
@@ -19,6 +19,7 @@ const char *tags[] = { "1", "2", "3", "4", "5", NULL };
 
 #define MASTER			600 /* per thousand */
 #define MODKEY			Mod1Mask
+#define SNAP			20 /* pixel */
 
 #define KEYS \
 static Key key[] = { \
diff --git a/event.c b/event.c
index bf88819..d0f446f 100644
--- a/event.c
+++ b/event.c
@@ -48,6 +48,14 @@ movemouse(Client *c) {
 			XSync(dpy, False);
 			c->x = ocx + (ev.xmotion.x - x1);
 			c->y = ocy + (ev.xmotion.y - y1);
+			if(abs(c->x) < sx + SNAP)
+				c->x = sx;
+			if(abs(c->y) < sy + bh + SNAP)
+				c->y = sy + bh;
+			if(abs(c->x + c->w) > sx + sw - SNAP)
+				c->x = sw - c->w - 2 * BORDERPX;
+			if(abs(c->y + c->h) > sy + sh - SNAP)
+				c->y = sh - c->h - 2 * BORDERPX;
 			resize(c, False, TopLeft);
 			break;
 		}
213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271