]>
git.saurik.com Git - wxWidgets.git/blob - interface/region.h
1 /////////////////////////////////////////////////////////////////////////////
3 // Purpose: interface of wxRegionIterator
4 // Author: wxWidgets team
6 // Licence: wxWindows license
7 /////////////////////////////////////////////////////////////////////////////
10 @class wxRegionIterator
13 This class is used to iterate through the rectangles in a region,
14 typically when examining the damaged regions of a window within an OnPaint call.
16 To use it, construct an iterator object on the stack and loop through the
17 regions, testing the object and incrementing the iterator at the end of the
20 See wxPaintEvent for an example of use.
27 class wxRegionIterator
: public wxObject
32 Creates an iterator object given a region.
35 wxRegionIterator(const wxRegion
& region
);
39 An alias for GetHeight.
44 Returns the height value for the current region.
46 wxCoord
GetHeight() const;
49 Returns the current rectangle.
51 wxRect
GetRect() const;
54 An alias for GetWidth.
59 Returns the width value for the current region.
61 wxCoord
GetWidth() const;
64 Returns the x value for the current region.
69 Returns the y value for the current region.
74 Returns @true if there are still some rectangles; otherwise returns @false.
76 bool HaveRects() const;
80 Resets the iterator to the given region.
83 void Reset(const wxRegion
& region
);
87 Increment operator. Increments the iterator to the next region.
92 Returns @true if there are still some rectangles; otherwise returns @false.
93 You can use this to test the iterator object as if it were of type bool.
95 operator bool() const;
102 @ingroup group_class_gdi
105 A wxRegion represents a simple or complex region on a device context or window.
107 This class uses @ref overview_trefcount "reference counting and copy-on-write"
108 internally so that assignments between two instances of this class are very
109 cheap. You can therefore use actual objects instead of pointers without
110 efficiency problems. If an instance of this class is changed it will create
111 its own data internally so that other instances, which previously shared the
112 data using the reference counting, are not affected.
117 @see wxRegionIterator
119 class wxRegion
: public wxGDIObject
124 Constructs a region using the non-transparent pixels of a bitmap. See
125 Union() for more details.
128 wxRegion(wxCoord x
, wxCoord y
, wxCoord width
, wxCoord height
);
129 wxRegion(const wxPoint
& topLeft
, const wxPoint
& bottomRight
);
130 wxRegion(const wxRect
& rect
);
131 wxRegion(const wxRegion
& region
);
132 wxRegion(size_t n
, const wxPoint points
,
133 int fillStyle
= wxWINDING_RULE
);
134 wxRegion(const wxBitmap
& bmp
);
135 wxRegion(const wxBitmap
& bmp
, const wxColour
& transColour
,
141 See @ref overview_refcountdestruct "reference-counted object destruction" for
147 Clears the current region.
153 Returns a value indicating whether the given rectangle is contained within the
156 @returns The return value is one of wxOutRegion, wxPartRegion and
159 wxRegionContain
Contains(long& x
, long& y
) const;
160 const wxRegionContain
Contains(const wxPoint
& pt
) const;
161 const wxRegionContain
Contains(long& x
, long& y
,
164 const wxRegionContain
Contains(const wxRect
& rect
) const;
168 Convert the region to a black and white bitmap with the white pixels
169 being inside the region.
171 wxBitmap
ConvertToBitmap() const;
175 Returns the outer bounds of the region.
177 void GetBox(wxCoord
& x
, wxCoord
& y
, wxCoord
& width
,
178 wxCoord
& height
) const;
179 const wxRect
GetBox() const;
184 Finds the intersection of this region and another region.
186 @returns @true if successful, @false otherwise.
188 @remarks Creates the intersection of the two regions, that is, the parts
189 which are in both regions. The result is stored in this
192 bool Intersect(wxCoord x
, wxCoord y
, wxCoord width
,
194 bool Intersect(const wxRect
& rect
);
195 bool Intersect(const wxRegion
& region
);
199 Returns @true if the region is empty, @false otherwise.
201 bool IsEmpty() const;
204 Returns @true if the region is equal to, i.e. covers the same area as,
205 another one. Note that if both this region and @a region are invalid, they
206 are considered to be equal.
208 bool IsEqual(const wxRegion
& region
) const;
212 Moves the region by the specified offsets in horizontal and vertical
215 @returns @true if successful, @false otherwise (the region is unchanged
218 bool Offset(wxCoord x
, wxCoord y
);
219 bool Offset(const wxPoint
& pt
);
224 Subtracts a region from this region.
226 @returns @true if successful, @false otherwise.
228 @remarks This operation combines the parts of 'this' region that are not
229 part of the second region. The result is stored in this
232 bool Subtract(const wxRect
& rect
);
233 bool Subtract(const wxRegion
& region
);
238 Finds the union of this region and the non-transparent pixels of a
239 bitmap. Colour to be treated as transparent is specified in the
240 @a transColour argument, along with an
241 optional colour tolerance value.
243 @returns @true if successful, @false otherwise.
245 @remarks This operation creates a region that combines all of this region
246 and the second region. The result is stored in this
249 bool Union(wxCoord x
, wxCoord y
, wxCoord width
, wxCoord height
);
250 bool Union(const wxRect
& rect
);
251 bool Union(const wxRegion
& region
);
252 bool Union(const wxBitmap
& bmp
);
253 bool Union(const wxBitmap
& bmp
, const wxColour
& transColour
,
259 Finds the Xor of this region and another region.
261 @returns @true if successful, @false otherwise.
263 @remarks This operation creates a region that combines all of this region
264 and the second region, except for any overlapping
265 areas. The result is stored in this region.
267 bool Xor(wxCoord x
, wxCoord y
, wxCoord width
, wxCoord height
);
268 bool Xor(const wxRect
& rect
);
269 bool Xor(const wxRegion
& region
);
273 Assignment operator, using @ref overview_trefcount "reference counting".
275 void operator =(const wxRegion
& region
);