]> git.saurik.com Git - wxWidgets.git/blobdiff - include/wx/gdicmn.h
Fixes for WinCE build caused by my last commit.
[wxWidgets.git] / include / wx / gdicmn.h
index d38fe44b934dbe048d3d3ae411d2cf58c2448482..b6faf8900d20448dea9e64ee4375a89102db7605 100644 (file)
@@ -428,6 +428,20 @@ public:
     }
 
 
     }
 
 
+    // centre this rectangle in the given (usually, but not necessarily,
+    // larger) one
+    wxRect CentreIn(const wxRect& r, int dir = wxBOTH) const
+    {
+        return wxRect(dir & wxHORIZONTAL ? r.x + (r.width - width)/2 : x,
+                      dir & wxVERTICAL ? r.y + (r.height - height)/2 : y,
+                      width, height);
+    }
+
+    wxRect CenterIn(const wxRect& r, int dir = wxBOTH) const
+    {
+        return CentreIn(r, dir);
+    }
+
 public:
     int x, y, width, height;
 };
 public:
     int x, y, width, height;
 };