Added some missing methods to wxRect wrappers

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/branches/WX_2_4_BRANCH@19217 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Robin Dunn
2003-02-14 19:29:48 +00:00
parent 7d940904da
commit 405c7870da

View File

@@ -272,8 +272,13 @@ public:
void SetTop(int top);
void SetBottom(int bottom);
void Deflate(int dx, int dy);
void Inflate(int dx, int dy);
bool Inside(int cx, int cy);
%name(InsideXY)bool Inside(int cx, int cy);
bool Inside(const wxPoint& pt);
bool Intersects(const wxRect& rect);
%name(OffsetXY) void Offset(int dx, int dy);
void Offset(const wxPoint& pt);
int x, y, width, height;