]> Dogcows Code - chaz/openbox/commitdiff
add STRUT_EQUAL
authorDana Jansens <danakj@orodu.net>
Mon, 25 Aug 2003 08:37:29 +0000 (08:37 +0000)
committerDana Jansens <danakj@orodu.net>
Mon, 25 Aug 2003 08:37:29 +0000 (08:37 +0000)
openbox/geom.h

index 6e46522c6a340541c76ca2afafcd242e5b93406a..ed24f62bd89509a6743904316284947f410e2201 100644 (file)
@@ -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
This page took 0.025528 seconds and 4 git commands to generate.