]> git.saurik.com Git - wxWidgets.git/blobdiff - include/wx/msw/region.h
Corrected memory.cpp checkpoint bug; added Tex2RTF
[wxWidgets.git] / include / wx / msw / region.h
index 0ac45586ec450220bb15f7a9995d7754fbc8f2cc..4be8411eb56ae1cac1a3060e4f04b1f5c04b23c7 100644 (file)
@@ -101,6 +101,9 @@ public:
        bool Combine(long x, long y, long width, long height, wxRegionOp op);
        bool Combine(const wxRegion& region, wxRegionOp op);
        bool Combine(const wxRect& rect, wxRegionOp op);
+
+    // Get internal region handle
+    WXHRGN GetHRGN() const;
 };
 
 class WXDLLEXPORT wxRegionIterator : public wxObject {
@@ -125,6 +128,7 @@ public:
        long GetWidth(void) const { return GetW(); }
        long GetH(void) const;
        long GetHeight(void) const { return GetH(); }
+    wxRect GetRect() const { return wxRect(GetX(), GetY(), GetWidth(), GetHeight()); }
 
 private:
        long     m_current;