X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/9fe4c99cc5e3cb63ae2fecfdb9e892781732cad6..c2bbeff0048b6f02bf1ef41edc6c7a3ce148f907:/include/wx/gtk/region.h diff --git a/include/wx/gtk/region.h b/include/wx/gtk/region.h index d98a1f9cff..5adf4edeb9 100644 --- a/include/wx/gtk/region.h +++ b/include/wx/gtk/region.h @@ -71,13 +71,17 @@ 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 ) + : wxGDIObject() + { 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,16 +115,16 @@ public: wxRegionContain Contains(const wxRect& rect) const; public: - wxList *GetRectList() const; GdkRegion *GetRegion() const; protected: + // ref counting code + virtual wxObjectRefData *CreateRefData() const; + virtual wxObjectRefData *CloneRefData(const wxObjectRefData *data) const; + // 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); };