1 /////////////////////////////////////////////////////////////////////////////
3 // Purpose: wxRegion class
4 // Author: Stefan Csomor
8 // Copyright: (c) Stefan Csomor
9 // Licence: wxWindows licence
10 /////////////////////////////////////////////////////////////////////////////
12 #ifndef _WX_MAC_CARBON_REGION_H_
13 #define _WX_MAC_CARBON_REGION_H_
17 class WXDLLEXPORT wxRegion
: public wxRegionWithCombine
20 wxRegion(long x
, long y
, long w
, long h
);
21 wxRegion(const wxPoint
& topLeft
, const wxPoint
& bottomRight
);
22 wxRegion(const wxRect
& rect
);
23 wxRegion( WXHRGN hRegion
);
24 wxRegion(size_t n
, const wxPoint
*points
, int fillStyle
= wxODDEVEN_RULE
);
26 wxRegion(const wxBitmap
& bmp
)
30 wxRegion(const wxBitmap
& bmp
,
31 const wxColour
& transColour
, int tolerance
= 0)
33 Union(bmp
, transColour
, tolerance
);
38 // wxRegionBase methods
40 virtual bool IsEmpty() const;
43 const WXHRGN
GetWXHRGN() const ;
46 virtual bool DoIsEqual(const wxRegion
& region
) const;
47 virtual bool DoGetBox(wxCoord
& x
, wxCoord
& y
, wxCoord
& w
, wxCoord
& h
) const;
48 virtual wxRegionContain
DoContainsPoint(wxCoord x
, wxCoord y
) const;
49 virtual wxRegionContain
DoContainsRect(const wxRect
& rect
) const;
51 virtual bool DoOffset(wxCoord x
, wxCoord y
);
52 virtual bool DoCombine(const wxRegion
& region
, wxRegionOp op
);
55 DECLARE_DYNAMIC_CLASS(wxRegion
)
56 friend class WXDLLEXPORT wxRegionIterator
;
59 class WXDLLEXPORT wxRegionIterator
: public wxObject
63 wxRegionIterator(const wxRegion
& region
);
64 wxRegionIterator(const wxRegionIterator
& iterator
);
65 virtual ~wxRegionIterator();
67 wxRegionIterator
& operator=(const wxRegionIterator
& iterator
);
69 void Reset() { m_current
= 0; }
70 void Reset(const wxRegion
& region
);
72 operator bool () const { return m_current
< m_numRects
; }
73 bool HaveRects() const { return m_current
< m_numRects
; }
75 wxRegionIterator
& operator++();
76 wxRegionIterator
operator++(int);
81 long GetWidth() const { return GetW(); }
83 long GetHeight() const { return GetH(); }
84 wxRect
GetRect() const { return wxRect(GetX(), GetY(), GetWidth(), GetHeight()); }
87 void SetRects(long numRects
, wxRect
*rects
);
94 DECLARE_DYNAMIC_CLASS(wxRegionIterator
)
97 #endif // _WX_MAC_CARBON_REGION_H_