]> git.saurik.com Git - wxWidgets.git/blobdiff - include/wx/mac/region.h
added wxLog::Suspend/Resume and wxYield() uses them now so that it won't flush
[wxWidgets.git] / include / wx / mac / region.h
index 04d143c2e92ac6a747d91e0638fa598dcc2fba5b..bbe826196dd735bf3be4a03cb58364f6427a2133 100644 (file)
@@ -43,6 +43,7 @@ public:
     wxRegion(long x, long y, long w, long h);
     wxRegion(const wxPoint& topLeft, const wxPoint& bottomRight);
     wxRegion(const wxRect& rect);
+       wxRegion( WXHRGN hRegion );
        wxRegion();
        ~wxRegion();
 
@@ -100,6 +101,7 @@ 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);
+       const WXHRGN GetWXHRGN() const ;
 };
 
 class WXDLLEXPORT wxRegionIterator : public wxObject {
@@ -125,7 +127,6 @@ public:
        long GetH() const;
        long GetHeight() const { return GetH(); }
     wxRect GetRect() const { return wxRect(GetX(), GetY(), GetWidth(), GetHeight()); }
-
 private:
        long     m_current;
        long     m_numRects;