symmetry..tho it's not used right now
authorDana Jansens <danakj@orodu.net>
Wed, 1 Aug 2007 23:09:42 +0000 (19:09 -0400)
committerDana Jansens <danakj@orodu.net>
Thu, 2 Aug 2007 03:19:39 +0000 (23:19 -0400)
openbox/frame.c
openbox/frame.h

index cefa389..0f9e581 100644 (file)
@@ -1539,6 +1539,13 @@ void frame_rect_to_frame(ObFrame *self, Rect *r)
     frame_client_gravity(self, &r->x, &r->y);
 }
 
+void frame_rect_to_client(ObFrame *self, Rect *r)
+{
+    r->width -= self->size.left + self->size.right;
+    r->height -= self->size.top + self->size.bottom;
+    frame_frame_gravity(self, &r->x, &r->y);
+}
+
 static void flash_done(gpointer data)
 {
     ObFrame *self = data;
index edf75b0..7fed639 100644 (file)
@@ -237,6 +237,10 @@ void frame_frame_gravity(ObFrame *self, gint *x, gint *y);
   for the frame, given its current decorations sizes */
 void frame_rect_to_frame(ObFrame *self, Rect *r);
 
+/*! Convert a rectangle in frame coordinates/sizes to what it would be for the
+  client, given its current decorations sizes */
+void frame_rect_to_client(ObFrame *self, Rect *r);
+
 void frame_flash_start(ObFrame *self);
 void frame_flash_stop(ObFrame *self);