summaryrefslogtreecommitdiff
path: root/openbox/geom.h
diff options
context:
space:
mode:
authorDana Jansens <danakj@orodu.net>2003-08-25 08:37:29 +0000
committerDana Jansens <danakj@orodu.net>2003-08-25 08:37:29 +0000
commit584656d96a23ee5f0717b75c165f124c6aafd13d (patch)
tree8aa1e2ba9d3bb16f6909f17ec09a23502315dfdb /openbox/geom.h
parent7e7efa5c1a5457bd1cda4ecd7eda1ea3eddef12d (diff)
add STRUT_EQUAL
Diffstat (limited to 'openbox/geom.h')
-rw-r--r--openbox/geom.h14
1 files changed, 14 insertions, 0 deletions
diff --git a/openbox/geom.h b/openbox/geom.h
index 6e46522c..ed24f62b 100644
--- a/openbox/geom.h
+++ b/openbox/geom.h
@@ -78,4 +78,18 @@ typedef struct _StrutPartial {
(s1).top = MAX((s1).top, (s2).top), \
(s1).bottom = MAX((s1).bottom, (s2).bottom)
+#define STRUT_EQUAL(s1, s2) \
+ ((s1).left == (s2).left && \
+ (s1).top == (s2).top && \
+ (s1).right == (s2).right && \
+ (s1).bottom == (s2).bottom && \
+ (s1).left_start == (s2).left_start && \
+ (s1).left_end == (s2).left_end && \
+ (s1).top_start == (s2).top_start && \
+ (s1).top_end == (s2).top_end && \
+ (s1).right_start == (s2).right_start && \
+ (s1).right_end == (s2).right_end && \
+ (s1).bottom_start == (s2).bottom_start && \
+ (s1).bottom_end == (s2).bottom_end)
+
#endif