]> git.saurik.com Git - wxWidgets.git/blobdiff - include/wx/motif/region.h
Augmented version to b5
[wxWidgets.git] / include / wx / motif / region.h
index 99a2ef63f913fc6ba998af743e8011405728abbb..969a44f6545e7dd57838e0f49cf41633eb56fbe4 100644 (file)
@@ -18,6 +18,7 @@
 
 #include "wx/list.h"
 #include "wx/gdiobj.h"
+#include "wx/gdicmn.h"
 
 class WXDLLEXPORT wxRect;
 class WXDLLEXPORT wxPoint;
@@ -83,7 +84,8 @@ public:
 
        // Is region empty?
        bool Empty() const;
-    inline bool IsEmpty() const { return Empty(); }
+        inline bool IsEmpty() const { return Empty(); }
+        bool Ok() const { return (m_refData != NULL) ; }
 
        //# Tests
        // Does the region contain the point (x,y)?
@@ -99,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 the internal Region handle
+    WXRegion GetXRegion() const;
 };
 
 class WXDLLEXPORT wxRegionIterator : public wxObject {
@@ -123,6 +128,7 @@ public:
        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;