]> git.saurik.com Git - wxWidgets.git/blobdiff - include/wx/mac/carbon/region.h
wxHelpController now wxCHMHelpController on Windows
[wxWidgets.git] / include / wx / mac / carbon / region.h
index 923a0014ad02b7315760d6affa8b687f83dea63f..33440ec1a6730dd628a4cb1d6c47dee1bf87faf1 100644 (file)
@@ -37,7 +37,7 @@ wxRGN_XOR           // Creates the union of two combined regions except for any
 };
 
 class WXDLLEXPORT wxRegion : public wxGDIObject {
-DECLARE_DYNAMIC_CLASS(wxRegion);
+DECLARE_DYNAMIC_CLASS(wxRegion)
     friend class WXDLLEXPORT wxRegionIterator;
 public:
     wxRegion(long x, long y, long w, long h);
@@ -69,6 +69,9 @@ public:
     // Clear current region
     void Clear();
 
+    // Move the region
+    bool Offset(wxCoord x, wxCoord y);
+
     // Union rectangle or region with this.
     bool Union(long x, long y, long width, long height)
         { return Combine(x, y, width, height, wxRGN_OR); }