]> git.saurik.com Git - wxWidgets.git/blobdiff - include/wx/gtk1/region.h
[start of] a wxUniversal implementation of wxToolBar
[wxWidgets.git] / include / wx / gtk1 / region.h
index 63d7f35896f32d307ba63f5921bcd90f01abd16e..c4f58a97d773845bd66ed7f80a0b5643cdc282d3 100644 (file)
@@ -71,13 +71,15 @@ public:
     }
 
     wxRegion( size_t n, const wxPoint *points, int fillStyle = wxODDEVEN_RULE );
-    virtual ~wxRegion();
+    ~wxRegion();
 
-    wxRegion( const wxRegion& r ) { Ref(r); }
-    wxRegion& operator = ( const wxRegion& r ) { Ref(r); return *this; }
+    wxRegion( const wxRegion& region ) { Ref(region); }
+    wxRegion& operator = ( const wxRegion& region ) { Ref(region); return *this; }
+
+    bool Ok() const { return m_refData != NULL; }
 
     bool operator == ( const wxRegion& region );
-    bool operator != ( const wxRegion& region );
+    bool operator != ( const wxRegion& region ) { return !(*this == region); }
 
     void Clear();
 
@@ -111,7 +113,6 @@ public:
     wxRegionContain Contains(const wxRect& rect) const;
 
 public:
-    wxList    *GetRectList() const;
     GdkRegion *GetRegion() const;
 
 protected:
@@ -122,9 +123,6 @@ protected:
     // common part of ctors for a rectangle region
     void InitRect(wxCoord x, wxCoord y, wxCoord w, wxCoord h);
 
-    // helper of Intersect()
-    bool IntersectRegionOnly(const wxRegion& reg);
-
 private:
     DECLARE_DYNAMIC_CLASS(wxRegion);
 };