X-Git-Url: https://git.dogcows.com/gitweb?a=blobdiff_plain;f=openbox%2Fgeom.h;h=7c5ee32e31047643cbe0544072f0f419d3874967;hb=a93b00a5e93281c7c2c31112f0b6b827d605a19d;hp=c71dbc239a79d2af83b21793d63e85ff612526a6;hpb=7a6a516b8e3d8ad6b15379eabf6652a6f43eab27;p=chaz%2Fopenbox diff --git a/openbox/geom.h b/openbox/geom.h index c71dbc23..7c5ee32e 100644 --- a/openbox/geom.h +++ b/openbox/geom.h @@ -20,6 +20,23 @@ #ifndef __geom_h #define __geom_h +#include + +typedef struct _GravityCoord { + gint pos; + gboolean center; + gboolean opposite; +} GravityCoord; + +typedef struct _GravityPoint { + GravityCoord x; + GravityCoord y; +} GravityPoint; + +#define GRAVITY_COORD_SET(c, p, cen, opp) \ + (c).pos = (p), (c).center = (cen), (c).opposite = (opp) + + typedef struct _Point { int x; int y; @@ -142,7 +159,7 @@ typedef struct _StrutPartial { (s1).bottom_start == (s2).bottom_start && \ (s1).bottom_end == (s2).bottom_end) -#define RANGE_INTERSECT(r1x, r1w, r2x, r2w) \ +#define RANGES_INTERSECT(r1x, r1w, r2x, r2w) \ (r1x < r2x + r2w && r1x + r1w > r2x) #endif