Inside --> Contains

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@41234 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Robin Dunn 2006-09-14 20:28:28 +00:00
parent 16ec1954b1
commit 8546a54961

View File

@ -644,15 +644,20 @@ bottom, otherwise it is moved to the left or top respectively.", "",
}
DocStr( Inside, "Return True if the point is (not strcitly) inside the rect.", "");
%Rename(InsideXY, bool, Inside(int x, int y) const);
bool Inside(const wxPoint& pt) const;
DocStr( Contains, "Return True if the point is inside the rect.", "");
%Rename(ContainsXY, bool, Contains(int x, int y) const);
bool Contains(const wxPoint& pt) const;
DocDeclStrName(
bool, Inside(const wxRect& rect) const,
bool, Contains(const wxRect& rect) const,
"Returns ``True`` if the given rectangle is completely inside this
rectangle or touches its boundary.", "",
InsideRect);
ContainsRect);
%pythoncode {
Inside = wx._deprecated(Contains, "Use `Contains` instead.")
InsideXY = wx._deprecated(ContainsXY, "Use `ContainsXY` instead.")
InsideRect = wx._deprecated(ContainsRect, "Use `ContainsRect` instead.")
}
DocDeclStr(
bool, Intersects(const wxRect& rect) const,