X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/e1208c3103734c8581c9854c344b97323e381897..c15521c67eb8aba1994240262ba973aa11ef0086:/include/wx/gtk/region.h diff --git a/include/wx/gtk/region.h b/include/wx/gtk/region.h index 7369192305..c4f58a97d7 100644 --- a/include/wx/gtk/region.h +++ b/include/wx/gtk/region.h @@ -30,13 +30,13 @@ class wxRegion; enum wxRegionContain { - wxOutRegion = 0, - wxPartRegion = 1, + wxOutRegion = 0, + wxPartRegion = 1, wxInRegion = 2 }; // So far, for internal use only -enum wxRegionOp +enum wxRegionOp { wxRGN_AND, // Creates the intersection of the two combined regions. wxRGN_COPY, // Creates a copy of the region identified by hrgnSrc1. @@ -45,29 +45,46 @@ enum wxRegionOp wxRGN_XOR // Creates the union of two combined regions except for any overlapping areas. }; -//----------------------------------------------------------------------------- +// ---------------------------------------------------------------------------- // wxRegion -//----------------------------------------------------------------------------- +// ---------------------------------------------------------------------------- class wxRegion : public wxGDIObject { public: - wxRegion( wxCoord x, wxCoord y, wxCoord w, wxCoord h ); - wxRegion( const wxPoint& topLeft, const wxPoint& bottomRight ); - wxRegion( const wxRect& rect ); - wxRegion(); + wxRegion() { } + + wxRegion( wxCoord x, wxCoord y, wxCoord w, wxCoord h ) + { + InitRect(x, y, w, h); + } + + wxRegion( const wxPoint& topLeft, const wxPoint& bottomRight ) + { + InitRect(topLeft.x, topLeft.y, + bottomRight.x - topLeft.x, bottomRight.y - topLeft.y); + } + + wxRegion( const wxRect& rect ) + { + InitRect(rect.x, rect.y, rect.width, rect.height); + } + + wxRegion( size_t n, const wxPoint *points, int fillStyle = wxODDEVEN_RULE ); ~wxRegion(); - inline wxRegion( const wxRegion& r ): wxGDIObject() - { Ref(r); } - inline 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(); + bool Offset( wxCoord x, wxCoord y ); + bool Union( wxCoord x, wxCoord y, wxCoord width, wxCoord height ); bool Union( const wxRect& rect ); bool Union( const wxRegion& region ); @@ -96,13 +113,24 @@ 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); + private: - DECLARE_DYNAMIC_CLASS(wxRegion); + DECLARE_DYNAMIC_CLASS(wxRegion); }; +// ---------------------------------------------------------------------------- +// wxRegionIterator: decomposes a region into rectangles +// ---------------------------------------------------------------------------- + class wxRegionIterator: public wxObject { public: @@ -124,7 +152,7 @@ public: wxCoord GetWidth() const { return GetW(); } wxCoord GetH() const; wxCoord GetHeight() const { return GetH(); } - wxRect GetRect() const { return wxRect(GetX(), GetY(), GetWidth(), GetHeight()); } + wxRect GetRect() const; private: size_t m_current;