summaryrefslogtreecommitdiff
path: root/openbox/geom.h
diff options
context:
space:
mode:
authorDana Jansens <danakj@orodu.net>2007-05-22 02:14:49 +0000
committerDana Jansens <danakj@orodu.net>2007-05-22 02:14:49 +0000
commit8f87a8af62c092617e7b5f4733d18ed11109f2ac (patch)
tree491353bc3bd3cf4ba2dedb263eeeb311c43f260d /openbox/geom.h
parent4c25342316a3d55f7c2e44b879c38bfca8b69053 (diff)
only send configure notify when they requested a move, or if we are actually changing anything.
that is: if they only request a resize and nothing changes, don't do anything and dont send a configurenotify. this fixes the emacs event storm also some new macros for rects
Diffstat (limited to 'openbox/geom.h')
-rw-r--r--openbox/geom.h5
1 files changed, 5 insertions, 0 deletions
diff --git a/openbox/geom.h b/openbox/geom.h
index 39832e94..67a82cde 100644
--- a/openbox/geom.h
+++ b/openbox/geom.h
@@ -57,6 +57,11 @@ typedef struct _Rect {
#define RECT_EQUAL(r1, r2) ((r1).x == (r2).x && (r1).y == (r2).y && \
(r1).width == (r2).width && \
(r1).height == (r2).height)
+#define RECT_EQUAL_DIMS(r, x, y, w, h) \
+ ((r).x == (x) && (r).y == (y) && (r).width == (w) && (r).height == (h))
+
+#define RECT_TO_DIMS(r, x, y, w, h) \
+ (x) = (r).x, (y) = (r).y, (w) = (r).width, (h) = (r).height
#define RECT_CONTAINS(r, px, py) \
((px) >= (r).x && (px) < (r).x + (r).width && \