]>
Commit | Line | Data |
---|---|---|
23324ae1 FM |
1 | ///////////////////////////////////////////////////////////////////////////// |
2 | // Name: region.h | |
e54c96f1 | 3 | // Purpose: interface of wxRegionIterator |
23324ae1 FM |
4 | // Author: wxWidgets team |
5 | // RCS-ID: $Id$ | |
526954c5 | 6 | // Licence: wxWindows licence |
23324ae1 FM |
7 | ///////////////////////////////////////////////////////////////////////////// |
8 | ||
bbc5b7f8 BP |
9 | /** |
10 | Types of results returned from a call to wxRegion::Contains(). | |
11 | */ | |
12 | enum wxRegionContain | |
13 | { | |
14 | /** The specified value is not contained within this region. */ | |
15 | wxOutRegion = 0, | |
16 | ||
17 | /** | |
18 | The specified value is partially contained within this region. | |
19 | ||
20 | On Windows, this result is not supported. ::wxInRegion will be returned | |
21 | instead. | |
22 | */ | |
23 | wxPartRegion = 1, | |
24 | ||
25 | /** | |
26 | The specified value is fully contained within this region. | |
27 | ||
28 | On Windows, this result will be returned even if only part of the specified | |
29 | value is contained in this region. | |
30 | */ | |
31 | wxInRegion = 2 | |
32 | }; | |
33 | ||
23324ae1 FM |
34 | /** |
35 | @class wxRegionIterator | |
7c913512 | 36 | |
23324ae1 FM |
37 | This class is used to iterate through the rectangles in a region, |
38 | typically when examining the damaged regions of a window within an OnPaint call. | |
7c913512 | 39 | |
23324ae1 FM |
40 | To use it, construct an iterator object on the stack and loop through the |
41 | regions, testing the object and incrementing the iterator at the end of the | |
42 | loop. | |
7c913512 | 43 | |
23324ae1 | 44 | See wxPaintEvent for an example of use. |
7c913512 | 45 | |
23324ae1 | 46 | @library{wxcore} |
de022e4f RR |
47 | @category{gdi} |
48 | ||
49 | @stdobjects | |
50 | ::wxNullRegion | |
7c913512 | 51 | |
e54c96f1 | 52 | @see wxPaintEvent |
23324ae1 FM |
53 | */ |
54 | class wxRegionIterator : public wxObject | |
55 | { | |
56 | public: | |
23324ae1 | 57 | /** |
bbc5b7f8 | 58 | Default constructor. |
23324ae1 FM |
59 | */ |
60 | wxRegionIterator(); | |
bbc5b7f8 BP |
61 | /** |
62 | Creates an iterator object given a region. | |
63 | */ | |
7c913512 | 64 | wxRegionIterator(const wxRegion& region); |
23324ae1 FM |
65 | |
66 | /** | |
bbc5b7f8 | 67 | An alias for GetHeight(). |
23324ae1 | 68 | */ |
328f5751 | 69 | wxCoord GetH() const; |
23324ae1 FM |
70 | |
71 | /** | |
72 | Returns the height value for the current region. | |
73 | */ | |
328f5751 | 74 | wxCoord GetHeight() const; |
23324ae1 FM |
75 | |
76 | /** | |
77 | Returns the current rectangle. | |
78 | */ | |
328f5751 | 79 | wxRect GetRect() const; |
23324ae1 FM |
80 | |
81 | /** | |
bbc5b7f8 | 82 | An alias for GetWidth(). |
23324ae1 | 83 | */ |
328f5751 | 84 | wxCoord GetW() const; |
23324ae1 FM |
85 | |
86 | /** | |
87 | Returns the width value for the current region. | |
88 | */ | |
328f5751 | 89 | wxCoord GetWidth() const; |
23324ae1 FM |
90 | |
91 | /** | |
92 | Returns the x value for the current region. | |
93 | */ | |
328f5751 | 94 | wxCoord GetX() const; |
23324ae1 FM |
95 | |
96 | /** | |
97 | Returns the y value for the current region. | |
98 | */ | |
328f5751 | 99 | wxCoord GetY() const; |
23324ae1 FM |
100 | |
101 | /** | |
102 | Returns @true if there are still some rectangles; otherwise returns @false. | |
103 | */ | |
328f5751 | 104 | bool HaveRects() const; |
23324ae1 | 105 | |
23324ae1 | 106 | /** |
bbc5b7f8 | 107 | Resets the iterator to the beginning of the rectangles. |
23324ae1 FM |
108 | */ |
109 | void Reset(); | |
bbc5b7f8 BP |
110 | |
111 | /** | |
112 | Resets the iterator to the given region. | |
113 | */ | |
7c913512 | 114 | void Reset(const wxRegion& region); |
23324ae1 FM |
115 | |
116 | /** | |
117 | Increment operator. Increments the iterator to the next region. | |
bbc5b7f8 BP |
118 | |
119 | @beginWxPythonOnly | |
120 | A wxPython alias for this operator is called Next. | |
121 | @endWxPythonOnly | |
23324ae1 | 122 | */ |
11e3af6e | 123 | wxRegionIterator& operator ++(); |
23324ae1 FM |
124 | |
125 | /** | |
126 | Returns @true if there are still some rectangles; otherwise returns @false. | |
bbc5b7f8 BP |
127 | |
128 | You can use this to test the iterator object as if it were of type @c bool. | |
23324ae1 | 129 | */ |
328f5751 | 130 | operator bool() const; |
23324ae1 FM |
131 | }; |
132 | ||
133 | ||
e54c96f1 | 134 | |
23324ae1 FM |
135 | /** |
136 | @class wxRegion | |
7c913512 | 137 | |
23324ae1 | 138 | A wxRegion represents a simple or complex region on a device context or window. |
7c913512 | 139 | |
bbc5b7f8 | 140 | This class uses @ref overview_refcount "reference counting and copy-on-write" |
23324ae1 FM |
141 | internally so that assignments between two instances of this class are very |
142 | cheap. You can therefore use actual objects instead of pointers without | |
143 | efficiency problems. If an instance of this class is changed it will create | |
144 | its own data internally so that other instances, which previously shared the | |
145 | data using the reference counting, are not affected. | |
7c913512 | 146 | |
bbc5b7f8 BP |
147 | @stdobjects |
148 | - ::wxNullRegion | |
149 | ||
23324ae1 | 150 | @library{wxcore} |
c0cc7004 | 151 | @category{data,gdi} |
7c913512 | 152 | |
e54c96f1 | 153 | @see wxRegionIterator |
23324ae1 FM |
154 | */ |
155 | class wxRegion : public wxGDIObject | |
156 | { | |
157 | public: | |
23324ae1 | 158 | /** |
bbc5b7f8 | 159 | Default constructor. |
23324ae1 FM |
160 | */ |
161 | wxRegion(); | |
bbc5b7f8 BP |
162 | /** |
163 | Constructs a rectangular region with the given position and size. | |
164 | */ | |
7c913512 | 165 | wxRegion(wxCoord x, wxCoord y, wxCoord width, wxCoord height); |
bbc5b7f8 BP |
166 | /** |
167 | Constructs a rectangular region from the top left point and the bottom right | |
168 | point. | |
169 | */ | |
7c913512 | 170 | wxRegion(const wxPoint& topLeft, const wxPoint& bottomRight); |
bbc5b7f8 BP |
171 | /** |
172 | Constructs a rectangular region a wxRect object. | |
173 | */ | |
7c913512 | 174 | wxRegion(const wxRect& rect); |
bbc5b7f8 BP |
175 | /** |
176 | Copy constructor, uses @ref overview_refcount. | |
177 | */ | |
7c913512 | 178 | wxRegion(const wxRegion& region); |
bbc5b7f8 BP |
179 | /** |
180 | Constructs a region corresponding to the polygon made of @a n points | |
181 | in the provided array. | |
182 | @a fillStyle parameter may have values @c wxWINDING_RULE or @c wxODDEVEN_RULE. | |
183 | */ | |
ccf39540 | 184 | wxRegion(size_t n, const wxPoint* points, wxPolygonFillMode fillStyle = wxODDEVEN_RULE); |
bbc5b7f8 BP |
185 | /** |
186 | Constructs a region using a bitmap. See Union() for more details. | |
187 | */ | |
7c913512 | 188 | wxRegion(const wxBitmap& bmp); |
bbc5b7f8 BP |
189 | /** |
190 | Constructs a region using the non-transparent pixels of a bitmap. See | |
191 | Union() for more details. | |
192 | */ | |
7c913512 FM |
193 | wxRegion(const wxBitmap& bmp, const wxColour& transColour, |
194 | int tolerance = 0); | |
23324ae1 FM |
195 | |
196 | /** | |
197 | Destructor. | |
bbc5b7f8 | 198 | See @ref overview_refcount_destruct "reference-counted object destruction" for |
23324ae1 FM |
199 | more info. |
200 | */ | |
adaaa686 | 201 | virtual ~wxRegion(); |
23324ae1 FM |
202 | |
203 | /** | |
204 | Clears the current region. | |
205 | */ | |
adaaa686 | 206 | virtual void Clear(); |
23324ae1 | 207 | |
bbc5b7f8 BP |
208 | /** |
209 | Returns a value indicating whether the given point is contained within the region. | |
210 | ||
211 | @return The return value is one of @c wxOutRegion and @c wxInRegion. | |
212 | */ | |
11e3af6e | 213 | wxRegionContain Contains(wxCoord x, wxCoord y) const; |
bbc5b7f8 BP |
214 | /** |
215 | Returns a value indicating whether the given point is contained within the region. | |
216 | ||
217 | @return The return value is one of @c wxOutRegion and @c wxInRegion. | |
218 | */ | |
219 | wxRegionContain Contains(const wxPoint& pt) const; | |
23324ae1 FM |
220 | /** |
221 | Returns a value indicating whether the given rectangle is contained within the | |
222 | region. | |
3c4f71cc | 223 | |
bbc5b7f8 BP |
224 | @return One of ::wxOutRegion, ::wxPartRegion or ::wxInRegion. |
225 | ||
226 | @note On Windows, only ::wxOutRegion and ::wxInRegion are returned; a value | |
227 | ::wxInRegion then indicates that all or some part of the region is | |
228 | contained in this region. | |
23324ae1 | 229 | */ |
11e3af6e | 230 | wxRegionContain Contains(wxCoord x, wxCoord y, wxCoord width, wxCoord height) const; |
bbc5b7f8 BP |
231 | /** |
232 | Returns a value indicating whether the given rectangle is contained within the | |
233 | region. | |
234 | ||
235 | @return One of ::wxOutRegion, ::wxPartRegion or ::wxInRegion. | |
236 | ||
237 | @note On Windows, only ::wxOutRegion and ::wxInRegion are returned; a value | |
238 | ::wxInRegion then indicates that all or some part of the region is | |
239 | contained in this region. | |
240 | */ | |
241 | wxRegionContain Contains(const wxRect& rect) const; | |
23324ae1 FM |
242 | |
243 | /** | |
244 | Convert the region to a black and white bitmap with the white pixels | |
245 | being inside the region. | |
246 | */ | |
328f5751 | 247 | wxBitmap ConvertToBitmap() const; |
23324ae1 FM |
248 | |
249 | //@{ | |
250 | /** | |
251 | Returns the outer bounds of the region. | |
252 | */ | |
253 | void GetBox(wxCoord& x, wxCoord& y, wxCoord& width, | |
328f5751 | 254 | wxCoord& height) const; |
11e3af6e | 255 | wxRect GetBox() const; |
23324ae1 FM |
256 | //@} |
257 | ||
23324ae1 | 258 | /** |
bbc5b7f8 BP |
259 | Finds the intersection of this region and another, rectangular region, |
260 | specified using position and size. | |
3c4f71cc | 261 | |
d29a9a8a | 262 | @return @true if successful, @false otherwise. |
3c4f71cc | 263 | |
23324ae1 | 264 | @remarks Creates the intersection of the two regions, that is, the parts |
4cc4bfaf FM |
265 | which are in both regions. The result is stored in this |
266 | region. | |
23324ae1 FM |
267 | */ |
268 | bool Intersect(wxCoord x, wxCoord y, wxCoord width, | |
269 | wxCoord height); | |
bbc5b7f8 BP |
270 | /** |
271 | Finds the intersection of this region and another, rectangular region. | |
272 | ||
273 | @return @true if successful, @false otherwise. | |
274 | ||
275 | @remarks Creates the intersection of the two regions, that is, the parts | |
276 | which are in both regions. The result is stored in this | |
277 | region. | |
278 | */ | |
7c913512 | 279 | bool Intersect(const wxRect& rect); |
bbc5b7f8 BP |
280 | /** |
281 | Finds the intersection of this region and another region. | |
282 | ||
283 | @return @true if successful, @false otherwise. | |
284 | ||
285 | @remarks Creates the intersection of the two regions, that is, the parts | |
286 | which are in both regions. The result is stored in this | |
287 | region. | |
288 | */ | |
7c913512 | 289 | bool Intersect(const wxRegion& region); |
23324ae1 FM |
290 | |
291 | /** | |
292 | Returns @true if the region is empty, @false otherwise. | |
293 | */ | |
adaaa686 | 294 | virtual bool IsEmpty() const; |
23324ae1 FM |
295 | |
296 | /** | |
297 | Returns @true if the region is equal to, i.e. covers the same area as, | |
bbc5b7f8 BP |
298 | another one. |
299 | ||
300 | @note If both this region and @a region are invalid, they are | |
301 | considered to be equal. | |
23324ae1 | 302 | */ |
328f5751 | 303 | bool IsEqual(const wxRegion& region) const; |
23324ae1 FM |
304 | |
305 | //@{ | |
306 | /** | |
307 | Moves the region by the specified offsets in horizontal and vertical | |
308 | directions. | |
3c4f71cc | 309 | |
d29a9a8a | 310 | @return @true if successful, @false otherwise (the region is unchanged |
4cc4bfaf | 311 | then). |
23324ae1 FM |
312 | */ |
313 | bool Offset(wxCoord x, wxCoord y); | |
7c913512 | 314 | bool Offset(const wxPoint& pt); |
23324ae1 FM |
315 | //@} |
316 | ||
23324ae1 | 317 | /** |
bbc5b7f8 | 318 | Subtracts a rectangular region from this region. |
3c4f71cc | 319 | |
d29a9a8a | 320 | @return @true if successful, @false otherwise. |
3c4f71cc | 321 | |
23324ae1 | 322 | @remarks This operation combines the parts of 'this' region that are not |
4cc4bfaf FM |
323 | part of the second region. The result is stored in this |
324 | region. | |
23324ae1 FM |
325 | */ |
326 | bool Subtract(const wxRect& rect); | |
bbc5b7f8 BP |
327 | /** |
328 | Subtracts a region from this region. | |
329 | ||
330 | @return @true if successful, @false otherwise. | |
331 | ||
332 | @remarks This operation combines the parts of 'this' region that are not | |
333 | part of the second region. The result is stored in this | |
334 | region. | |
335 | */ | |
7c913512 | 336 | bool Subtract(const wxRegion& region); |
23324ae1 | 337 | |
23324ae1 | 338 | /** |
bbc5b7f8 BP |
339 | Finds the union of this region and another, rectangular region, specified using |
340 | position and size. | |
3c4f71cc | 341 | |
d29a9a8a | 342 | @return @true if successful, @false otherwise. |
3c4f71cc | 343 | |
23324ae1 | 344 | @remarks This operation creates a region that combines all of this region |
4cc4bfaf FM |
345 | and the second region. The result is stored in this |
346 | region. | |
23324ae1 FM |
347 | */ |
348 | bool Union(wxCoord x, wxCoord y, wxCoord width, wxCoord height); | |
bbc5b7f8 BP |
349 | /** |
350 | Finds the union of this region and another, rectangular region. | |
351 | ||
352 | @return @true if successful, @false otherwise. | |
353 | ||
354 | @remarks This operation creates a region that combines all of this region | |
355 | and the second region. The result is stored in this | |
356 | region. | |
357 | */ | |
7c913512 | 358 | bool Union(const wxRect& rect); |
bbc5b7f8 BP |
359 | /** |
360 | Finds the union of this region and another region. | |
361 | ||
362 | @return @true if successful, @false otherwise. | |
363 | ||
364 | @remarks This operation creates a region that combines all of this region | |
365 | and the second region. The result is stored in this | |
366 | region. | |
367 | */ | |
7c913512 | 368 | bool Union(const wxRegion& region); |
bbc5b7f8 BP |
369 | /** |
370 | Finds the union of this region and the non-transparent pixels of a | |
371 | bitmap. The bitmap's mask is used to determine transparency. If the | |
372 | bitmap doesn't have a mask, the bitmap's full dimensions are used. | |
373 | ||
374 | @return @true if successful, @false otherwise. | |
375 | ||
376 | @remarks This operation creates a region that combines all of this region | |
377 | and the second region. The result is stored in this | |
378 | region. | |
379 | */ | |
7c913512 | 380 | bool Union(const wxBitmap& bmp); |
bbc5b7f8 BP |
381 | /** |
382 | Finds the union of this region and the non-transparent pixels of a | |
383 | bitmap. Colour to be treated as transparent is specified in the | |
384 | @a transColour argument, along with an optional colour tolerance value. | |
385 | ||
386 | @return @true if successful, @false otherwise. | |
387 | ||
388 | @remarks This operation creates a region that combines all of this region | |
389 | and the second region. The result is stored in this | |
390 | region. | |
391 | */ | |
7c913512 FM |
392 | bool Union(const wxBitmap& bmp, const wxColour& transColour, |
393 | int tolerance = 0); | |
23324ae1 | 394 | |
23324ae1 | 395 | /** |
bbc5b7f8 BP |
396 | Finds the Xor of this region and another, rectangular region, specified using |
397 | position and size. | |
3c4f71cc | 398 | |
d29a9a8a | 399 | @return @true if successful, @false otherwise. |
3c4f71cc | 400 | |
23324ae1 | 401 | @remarks This operation creates a region that combines all of this region |
4cc4bfaf FM |
402 | and the second region, except for any overlapping |
403 | areas. The result is stored in this region. | |
23324ae1 FM |
404 | */ |
405 | bool Xor(wxCoord x, wxCoord y, wxCoord width, wxCoord height); | |
bbc5b7f8 BP |
406 | /** |
407 | Finds the Xor of this region and another, rectangular region. | |
408 | ||
409 | @return @true if successful, @false otherwise. | |
410 | ||
411 | @remarks This operation creates a region that combines all of this region | |
412 | and the second region, except for any overlapping | |
413 | areas. The result is stored in this region. | |
414 | */ | |
7c913512 | 415 | bool Xor(const wxRect& rect); |
bbc5b7f8 BP |
416 | /** |
417 | Finds the Xor of this region and another region. | |
418 | ||
419 | @return @true if successful, @false otherwise. | |
420 | ||
421 | @remarks This operation creates a region that combines all of this region | |
422 | and the second region, except for any overlapping | |
423 | areas. The result is stored in this region. | |
424 | */ | |
7c913512 | 425 | bool Xor(const wxRegion& region); |
23324ae1 FM |
426 | |
427 | /** | |
bbc5b7f8 | 428 | Assignment operator, using @ref overview_refcount. |
23324ae1 | 429 | */ |
43c48e1e | 430 | wxRegion& operator=(const wxRegion& region); |
23324ae1 | 431 | }; |
e54c96f1 | 432 | |
bbc5b7f8 BP |
433 | /** |
434 | An empty region. | |
435 | */ | |
436 | wxRegion wxNullRegion; |