]> git.saurik.com Git - wxWidgets.git/blobdiff - include/wx/x11/region.h
move misc surface helpers to wxIDirectFBSurface class
[wxWidgets.git] / include / wx / x11 / region.h
index b2e66e71c2d1aa63248fb3bb7bdcd4fcdf9c9ab0..24f8b4c825c21f241a5a3d06f79221a9964bc90a 100644 (file)
@@ -26,13 +26,6 @@ class WXDLLIMPEXP_CORE wxRegion;
 // constants
 //-----------------------------------------------------------------------------
 
-enum wxRegionContain
-{
-    wxOutRegion = 0,
-    wxPartRegion = 1,
-    wxInRegion = 2
-};
-
 // So far, for internal use only
 enum wxRegionOp
 {
@@ -80,15 +73,12 @@ public:
         Union(bmp, transColour, tolerance);
     }
 
-    ~wxRegion();
-
-    wxRegion( const wxRegion& region ) { Ref(region); }
-    wxRegion& operator = ( const wxRegion& region ) { Ref(region); return *this; }
+    virtual ~wxRegion();
 
     bool Ok() const { return m_refData != NULL; }
 
-    bool operator == ( const wxRegion& region );
-    bool operator != ( const wxRegion& region ) { return !(*this == region); }
+    bool operator == ( const wxRegion& region ) const;
+    bool operator != ( const wxRegion& region ) const { return !(*this == region); }
 
     void Clear();