1 /////////////////////////////////////////////////////////////////////////////
3 // Purpose: wxRegion class
4 // Author: Vaclav Slavik
7 // Copyright: (c) 2001-2002 SciTech Software, Inc. (www.scitechsoft.com)
8 // Licence: wxWindows licence
9 /////////////////////////////////////////////////////////////////////////////
15 #include "wx/gdiobj.h"
16 #include "wx/gdicmn.h"
18 class WXDLLEXPORT wxRect
;
19 class WXDLLEXPORT wxPoint
;
29 class WXDLLEXPORT wxRegion
: public wxGDIObject
31 DECLARE_DYNAMIC_CLASS(wxRegion
);
32 friend class WXDLLEXPORT wxRegionIterator
;
35 wxRegion(wxCoord x
, wxCoord y
, wxCoord w
, wxCoord h
);
36 wxRegion(const wxPoint
& topLeft
, const wxPoint
& bottomRight
);
37 wxRegion(const wxRect
& rect
);
38 wxRegion(const MGLRegion
& region
);
39 wxRegion( const wxBitmap
& bmp
)
43 wxRegion( const wxBitmap
& bmp
,
44 const wxColour
& transColour
, int tolerance
= 0)
46 Union(bmp
, transColour
, tolerance
);
53 inline wxRegion(const wxRegion
& r
)
55 inline wxRegion
& operator = (const wxRegion
& r
)
56 { Ref(r
); return (*this); }
59 // Clear current region
62 bool Offset(wxCoord x
, wxCoord y
);
64 // Union rectangle or region with this.
65 bool Union(wxCoord x
, wxCoord y
, wxCoord width
, wxCoord height
);
66 bool Union(const wxRect
& rect
) { return Union(rect
.x
, rect
.y
, rect
.width
, rect
.height
); }
67 bool Union(const wxRegion
& region
);
69 // Intersect rectangle or region with this.
70 bool Intersect(wxCoord x
, wxCoord y
, wxCoord width
, wxCoord height
);
71 bool Intersect(const wxRect
& rect
) { return Intersect(rect
.x
, rect
.y
, rect
.width
, rect
.height
); }
72 bool Intersect(const wxRegion
& region
);
74 // Subtract rectangle or region from this:
75 // Combines the parts of 'this' that are not part of the second region.
76 bool Subtract(wxCoord x
, wxCoord y
, wxCoord width
, wxCoord height
);
77 bool Subtract(const wxRect
& rect
) { return Subtract(rect
.x
, rect
.y
, rect
.width
, rect
.height
); }
78 bool Subtract(const wxRegion
& region
);
80 // XOR: the union of two combined regions except for any overlapping areas.
81 bool Xor(wxCoord x
, wxCoord y
, wxCoord width
, wxCoord height
);
82 bool Xor(const wxRect
& rect
) { return Xor(rect
.x
, rect
.y
, rect
.width
, rect
.height
); }
83 bool Xor(const wxRegion
& region
);
85 //# Information on region
86 // Outer bounds of region
87 void GetBox(wxCoord
& x
, wxCoord
& y
, wxCoord
&w
, wxCoord
&h
) const;
88 wxRect
GetBox(void) const ;
91 bool Empty(void) const;
92 inline bool IsEmpty(void) const { return Empty(); }
95 // Does the region contain the point (x,y)?
96 wxRegionContain
Contains(wxCoord x
, wxCoord y
) const;
97 // Does the region contain the point pt?
98 wxRegionContain
Contains(const wxPoint
& pt
) const;
99 // Does the region contain the rectangle (x, y, w, h)?
100 wxRegionContain
Contains(wxCoord x
, wxCoord y
, wxCoord w
, wxCoord h
) const;
101 // Does the region contain the rectangle rect?
102 wxRegionContain
Contains(const wxRect
& rect
) const;
104 // Convert the region to a B&W bitmap with the white pixels being inside
106 wxBitmap
ConvertToBitmap() const;
108 // Use the non-transparent pixels of a wxBitmap for the region to combine
109 // with this region. First version takes transparency from bitmap's mask,
110 // second lets the user specify the colour to be treated as transparent
111 // along with an optional tolerance value.
112 // NOTE: implemented in common/rgncmn.cpp
113 bool Union(const wxBitmap
& bmp
);
114 bool Union(const wxBitmap
& bmp
,
115 const wxColour
& transColour
, int tolerance
= 0);
118 // implementation from now on:
119 const MGLRegion
& GetMGLRegion() const;
123 virtual wxObjectRefData
*CreateRefData() const;
124 virtual wxObjectRefData
*CloneRefData(const wxObjectRefData
*data
) const;
128 WX_DECLARE_EXPORTED_LIST(wxRect
, wxRegionRectList
);
130 class WXDLLEXPORT wxRegionIterator
: public wxObject
132 DECLARE_DYNAMIC_CLASS(wxRegionIterator
);
134 wxRegionIterator(void);
135 wxRegionIterator(const wxRegion
& region
);
136 ~wxRegionIterator(void);
138 void Reset(void) { m_currentNode
= NULL
; }
139 void Reset(const wxRegion
& region
);
142 operator bool (void) const { return (m_currentNode
!= NULL
); }
145 bool HaveRects(void) const { return (m_currentNode
!= NULL
); }
147 void operator ++ (void);
148 void operator ++ (int);
150 wxCoord
GetX(void) const;
151 wxCoord
GetY(void) const;
152 wxCoord
GetW(void) const;
153 wxCoord
GetWidth(void) const { return GetW(); }
154 wxCoord
GetH(void) const;
155 wxCoord
GetHeight(void) const { return GetH(); }
156 wxRect
GetRect() const { return wxRect(GetX(), GetY(), GetWidth(), GetHeight()); }
159 wxRegionRectList m_rects
;
160 wxRegionRectList::Node
*m_currentNode
;