1 /////////////////////////////////////////////////////////////////////////////
3 // Purpose: wxRegion class
8 // Copyright: (c) AUTHOR
9 // Licence: wxWindows licence
10 /////////////////////////////////////////////////////////////////////////////
16 #pragma interface "region.h"
20 #include "wx/gdiobj.h"
21 #include "wx/gdicmn.h"
23 class WXDLLEXPORT wxRect
;
24 class WXDLLEXPORT wxPoint
;
26 enum wxRegionContain
{
27 wxOutRegion
= 0, wxPartRegion
= 1, wxInRegion
= 2
30 // So far, for internal use only
32 wxRGN_AND
, // Creates the intersection of the two combined regions.
33 wxRGN_COPY
, // Creates a copy of the region identified by hrgnSrc1.
34 wxRGN_DIFF
, // Combines the parts of hrgnSrc1 that are not part of hrgnSrc2.
35 wxRGN_OR
, // Creates the union of two combined regions.
36 wxRGN_XOR
// Creates the union of two combined regions except for any overlapping areas.
39 class WXDLLEXPORT wxRegion
: public wxGDIObject
{
40 DECLARE_DYNAMIC_CLASS(wxRegion
);
41 friend class WXDLLEXPORT wxRegionIterator
;
43 wxRegion(long x
, long y
, long w
, long h
);
44 wxRegion(const wxPoint
& topLeft
, const wxPoint
& bottomRight
);
45 wxRegion(const wxRect
& rect
);
46 wxRegion( WXHRGN hRegion
);
51 inline wxRegion(const wxRegion
& r
)
53 inline wxRegion
& operator = (const wxRegion
& r
)
54 { Ref(r
); return (*this); }
57 // Clear current region
60 // Union rectangle or region with this.
61 inline bool Union(long x
, long y
, long width
, long height
) { return Combine(x
, y
, width
, height
, wxRGN_OR
); }
62 inline bool Union(const wxRect
& rect
) { return Combine(rect
, wxRGN_OR
); }
63 inline bool Union(const wxRegion
& region
) { return Combine(region
, wxRGN_OR
); }
65 // Intersect rectangle or region with this.
66 inline bool Intersect(long x
, long y
, long width
, long height
) { return Combine(x
, y
, width
, height
, wxRGN_AND
); }
67 inline bool Intersect(const wxRect
& rect
) { return Combine(rect
, wxRGN_AND
); }
68 inline bool Intersect(const wxRegion
& region
) { return Combine(region
, wxRGN_AND
); }
70 // Subtract rectangle or region from this:
71 // Combines the parts of 'this' that are not part of the second region.
72 inline bool Subtract(long x
, long y
, long width
, long height
) { return Combine(x
, y
, width
, height
, wxRGN_DIFF
); }
73 inline bool Subtract(const wxRect
& rect
) { return Combine(rect
, wxRGN_DIFF
); }
74 inline bool Subtract(const wxRegion
& region
) { return Combine(region
, wxRGN_DIFF
); }
76 // XOR: the union of two combined regions except for any overlapping areas.
77 inline bool Xor(long x
, long y
, long width
, long height
) { return Combine(x
, y
, width
, height
, wxRGN_XOR
); }
78 inline bool Xor(const wxRect
& rect
) { return Combine(rect
, wxRGN_XOR
); }
79 inline bool Xor(const wxRegion
& region
) { return Combine(region
, wxRGN_XOR
); }
81 //# Information on region
82 // Outer bounds of region
83 void GetBox(wxCoord
& x
, wxCoord
& y
, wxCoord
&w
, wxCoord
&h
) const;
84 wxRect
GetBox() const ;
88 inline bool IsEmpty() const { return Empty(); }
91 // Does the region contain the point (x,y)?
92 wxRegionContain
Contains(long x
, long y
) const;
93 // Does the region contain the point pt?
94 wxRegionContain
Contains(const wxPoint
& pt
) const;
95 // Does the region contain the rectangle (x, y, w, h)?
96 wxRegionContain
Contains(long x
, long y
, long w
, long h
) const;
97 // Does the region contain the rectangle rect?
98 wxRegionContain
Contains(const wxRect
& rect
) const;
101 bool Combine(long x
, long y
, long width
, long height
, wxRegionOp op
);
102 bool Combine(const wxRegion
& region
, wxRegionOp op
);
103 bool Combine(const wxRect
& rect
, wxRegionOp op
);
104 const WXHRGN
GetWXHRGN() const ;
107 class WXDLLEXPORT wxRegionIterator
: public wxObject
{
108 DECLARE_DYNAMIC_CLASS(wxRegionIterator
);
111 wxRegionIterator(const wxRegion
& region
);
114 void Reset() { m_current
= 0; }
115 void Reset(const wxRegion
& region
);
117 operator bool () const { return m_current
< m_numRects
; }
118 bool HaveRects() const { return m_current
< m_numRects
; }
121 void operator ++ (int);
126 long GetWidth() const { return GetW(); }
128 long GetHeight() const { return GetH(); }
129 wxRect
GetRect() const { return wxRect(GetX(), GetY(), GetWidth(), GetHeight()); }