wxRegion(long x, long y, long w, long h);
wxRegion(const wxPoint& topLeft, const wxPoint& bottomRight);
wxRegion(const wxRect& rect);
-
-/* TODO: implementation
- wxRegion(WXHRGN hRegion); // Hangs on to this region
-*/
-
wxRegion();
~wxRegion();
long GetWidth() const { return GetW(); }
long GetH() const;
long GetHeight() const { return GetH(); }
+ wxRect GetRect() const { return wxRect(GetX(), GetY(), GetWidth(), GetHeight()); }
private:
long m_current;