Pick the monitor most relevant to a rectangle more cleverly.
[dana/openbox.git] / openbox / geom.h
index 6a1725e..8ac0e55 100644 (file)
@@ -24,6 +24,7 @@
 
 typedef struct _GravityCoord {
     gint pos;
+    gint denom;
     gboolean center;
     gboolean opposite;
 } GravityCoord;
@@ -64,6 +65,8 @@ typedef struct _Rect {
 #define RECT_RIGHT(r) ((r).x + (r).width - 1)
 #define RECT_BOTTOM(r) ((r).y + (r).height - 1)
 
+#define RECT_AREA(r) ((r).width * (r).height)
+
 #define RECT_SET_POINT(r, nx, ny) \
     (r).x = (nx), (r).y = (ny)
 #define RECT_SET_SIZE(r, w, h) \