]> git.saurik.com Git - wxWidgets.git/commitdiff
Add wx.Rect.InsideRect
authorRobin Dunn <robin@alldunn.com>
Wed, 9 Aug 2006 18:50:06 +0000 (18:50 +0000)
committerRobin Dunn <robin@alldunn.com>
Wed, 9 Aug 2006 18:50:06 +0000 (18:50 +0000)
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@40533 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

wxPython/src/_gdicmn.i

index ba3aaa69705a4c1f1e0201506c25acdf85e93906..20c67d6bf7fc6aab4e1436444ba9dcb0a41251f2 100644 (file)
@@ -648,6 +648,12 @@ bottom, otherwise it is moved to the left or top respectively.", "",
     %Rename(InsideXY, bool, Inside(int x, int y) const);
     bool Inside(const wxPoint& pt) const;
 
+    DocDeclStrName(
+        bool, Inside(const wxRect& rect) const,
+        "Returns ``True`` if the given rectangle is completely inside this
+rectangle or touches its boundary.", "",
+        InsideRect);
+    
     DocDeclStr(    
         bool, Intersects(const wxRect& rect) const,
         "Returns True if the rectangles have a non empty intersection.", "");