1 \section{\class{wxRegion
}}\label{wxregion
}
3 A wxRegion represents a simple or complex region on a device context or window. It uses
4 reference counting, so copying and assignment operations are fast.
6 \wxheading{Derived from
}
8 \helpref{wxGDIObject
}{wxgdiobject
}\\
9 \helpref{wxObject
}{wxobject
}
11 \wxheading{Include files
}
17 \helpref{wxRegionIterator
}{wxregioniterator
}
19 \latexignore{\rtfignore{\wxheading{Members
}}}
22 \membersection{wxRegion::wxRegion
}\label{wxregionctor
}
24 \func{}{wxRegion
}{\void}
28 \func{}{wxRegion
}{\param{wxCoord
}{ x
},
\param{wxCoord
}{ y
},
\param{wxCoord
}{ width
},
\param{wxCoord
}{ height
}}
30 Constructs a rectangular region with the given position and size.
32 \func{}{wxRegion
}{\param{const wxPoint\&
}{ topLeft
},
\param{const wxPoint\&
}{ bottomRight
}}
34 Constructs a rectangular region from the top left point and the bottom right point.
36 \func{}{wxRegion
}{\param{const wxRect\&
}{ rect
}}
38 Constructs a rectangular region a wxRect object.
40 \func{}{wxRegion
}{\param{const wxRegion\&
}{ region
}}
42 Constructs a region by copying another region.
44 \func{}{wxRegion
}{\param{size
\_t}{ n
},
\param{const wxPoint
}{*points
},
\param{int
}{fillStyle = wxWINDING
\_RULE}}
46 Constructs a region corresponding to the polygon made of
{\it n
} points in the
47 provided array.
{\it fillStyle
} parameter may have values
48 {\tt wxWINDING
\_RULE} or
{\tt wxODDEVEN
\_RULE}.
50 {\bf NB:
} This constructor is only implemented for Win32 and GTK+ wxWidgets ports.
52 \func{}{wxRegion
}{\param{const wxBitmap\&
}{ bmp
}}
54 \func{}{wxRegion
}{\param{const wxBitmap\&
}{ bmp
},
55 \param{const wxColour\&
}{ transColour
},
56 \param{int
}{ tolerance =
0}}
58 Constructs a region using the non-transparent pixels of a bitmap. See
59 \helpref{Union
}{wxregionunion
} for more details.
63 \membersection{wxRegion::
\destruct{wxRegion
}}\label{wxregiondtor
}
65 \func{}{\destruct{wxRegion
}}{\void}
70 \membersection{wxRegion::Clear
}\label{wxregionclear
}
72 \func{void
}{Clear
}{\void}
74 Clears the current region.
77 \membersection{wxRegion::Contains
}\label{wxregioncontains
}
79 \constfunc{wxRegionContain
}{Contains
}{\param{long\&
}{x
},
\param{long\&
}{y
}}
81 Returns a value indicating whether the given point is contained within the region.
83 \constfunc{wxRegionContain
}{Contains
}{\param{const wxPoint\&
}{ pt
}}
85 Returns a value indicating whether the given point is contained within the region.
87 \constfunc{wxRegionContain
}{Contains
}{\param{long\&
}{x
},
\param{long\&
}{y
},
\param{long\&
}{width
},
\param{long\&
}{height
}}
89 Returns a value indicating whether the given rectangle is contained within the region.
91 \constfunc{wxRegionContain
}{Contains
}{\param{const wxRect\&
}{rect
}}
93 Returns a value indicating whether the given rectangle is contained within the region.
95 \wxheading{Return value
}
97 The return value is one of wxOutRegion, wxPartRegion and wxInRegion.
99 On Windows, only wxOutRegion and wxInRegion are returned; a value wxInRegion then indicates that
100 all or some part of the region is contained in this region.
103 \membersection{wxRegion::ConvertToBitmap
}\label{wxregionconverttobitmap
}
105 \constfunc{wxBitmap
}{ConvertToBitmap
}{}
107 Convert the region to a black and white bitmap with the white pixels
108 being inside the region.
111 \membersection{wxRegion::GetBox
}\label{wxregiongetbox
}
113 \constfunc{void
}{GetBox
}{\param{wxCoord\&
}{x
},
\param{wxCoord\&
}{y
},
\param{wxCoord\&
}{width
},
\param{wxCoord\&
}{height
}}
115 Returns the outer bounds of the region.
117 \constfunc{wxRect
}{GetBox
}{\void}
119 Returns the outer bounds of the region.
122 \membersection{wxRegion::Intersect
}\label{wxregionintersect
}
124 \func{bool
}{Intersect
}{\param{wxCoord
}{ x
},
\param{wxCoord
}{ y
},
\param{wxCoord
}{ width
},
\param{wxCoord
}{ height
}}
126 Finds the intersection of this region and another, rectangular region, specified using position and size.
128 \func{bool
}{Intersect
}{\param{const wxRect\&
}{ rect
}}
130 Finds the intersection of this region and another, rectangular region.
132 \func{bool
}{Intersect
}{\param{const wxRegion\&
}{ region
}}
134 Finds the intersection of this region and another region.
136 \wxheading{Return value
}
138 {\tt true
} if successful,
{\tt false
} otherwise.
142 Creates the intersection of the two regions, that is, the parts which are in both regions. The result
143 is stored in this region.
146 \membersection{wxRegion::IsEmpty
}\label{wxregionisempty
}
148 \constfunc{bool
}{IsEmpty
}{\void}
150 Returns
{\tt true
} if the region is empty,
{\tt false
} otherwise.
153 \membersection{wxRegion::IsEqual
}\label{wxregionisequal
}
155 \constfunc{bool
}{IsEqual
}{\param{const wxRegion\&
}{region
}}
157 Returns
{\tt true
} if the region is equal to, i.e. covers the same area as,
158 another one. Note that if both this region and
\arg{region
} are invalid, they
159 are considered to be equal.
162 \membersection{wxRegion::Subtract
}\label{wxregionsubtract
}
164 \func{bool
}{Subtract
}{\param{const wxRect\&
}{ rect
}}
166 Subtracts a rectangular region from this region.
168 \func{bool
}{Subtract
}{\param{const wxRegion\&
}{ region
}}
170 Subtracts a region from this region.
172 \wxheading{Return value
}
174 {\tt true
} if successful,
{\tt false
} otherwise.
178 This operation combines the parts of 'this' region that are not part of the second region.
179 The result is stored in this region.
182 \membersection{wxRegion::Offset
}\label{wxregionoffset
}
184 \func{bool
}{Offset
}{\param{wxCoord
}{ x
},
\param{wxCoord
}{ y
}}
186 \func{bool
}{Offset
}{\param{const wxPoint\&
}{ pt
}}
188 Moves the region by the specified offsets in horizontal and vertical
191 \wxheading{Return value
}
193 {\tt true
} if successful,
{\tt false
} otherwise (the region is unchanged then).
196 \membersection{wxRegion::Union
}\label{wxregionunion
}
198 \func{bool
}{Union
}{\param{wxCoord
}{ x
},
\param{wxCoord
}{ y
},
\param{wxCoord
}{ width
},
\param{wxCoord
}{ height
}}
200 Finds the union of this region and another, rectangular region, specified using position and size.
202 \func{bool
}{Union
}{\param{const wxRect\&
}{ rect
}}
204 Finds the union of this region and another, rectangular region.
206 \func{bool
}{Union
}{\param{const wxRegion\&
}{ region
}}
208 Finds the union of this region and another region.
210 \func{bool
}{Union
}{\param{const wxBitmap\&
}{ bmp
}}
212 Finds the union of this region and the non-transparent pixels of a
213 bitmap. Bitmap's mask is used to determine transparency. If the bitmap doesn't
214 have a mask, solid rectangle of bitmap's dimensions is used.
216 \func{bool
}{Union
}{\param{const wxBitmap\&
}{ bmp
},
217 \param{const wxColour\&
}{ transColour
},
218 \param{int
}{ tolerance =
0}}
220 Finds the union of this region and the non-transparent pixels of a
221 bitmap. Colour to be treated as transparent is specified in the
222 \arg{transColour
} argument, along with an
223 optional colour tolerance value.
225 \wxheading{Return value
}
227 {\tt true
} if successful,
{\tt false
} otherwise.
231 This operation creates a region that combines all of this region and the second region.
232 The result is stored in this region.
235 \membersection{wxRegion::Xor
}\label{wxregionxor
}
237 \func{bool
}{Xor
}{\param{wxCoord
}{ x
},
\param{wxCoord
}{ y
},
\param{wxCoord
}{ width
},
\param{wxCoord
}{ height
}}
239 Finds the Xor of this region and another, rectangular region, specified using position and size.
241 \func{bool
}{Xor
}{\param{const wxRect\&
}{ rect
}}
243 Finds the Xor of this region and another, rectangular region.
245 \func{bool
}{Xor
}{\param{const wxRegion\&
}{ region
}}
247 Finds the Xor of this region and another region.
249 \wxheading{Return value
}
251 {\tt true
} if successful,
{\tt false
} otherwise.
255 This operation creates a region that combines all of this region and the second region, except
256 for any overlapping areas. The result is stored in this region.
259 \membersection{wxRegion::operator $=$
}\label{wxregionassign
}
261 \func{void
}{operator $=$
}{\param{const wxRegion\&
}{ region
}}
263 Copies
{\it region
} by reference counting.
265 \section{\class{wxRegionIterator
}}\label{wxregioniterator
}
267 This class is used to iterate through the rectangles in a region,
268 typically when examining the damaged regions of a window within an OnPaint call.
270 To use it, construct an iterator object on the stack and loop through the
271 regions, testing the object and incrementing the iterator at the end of the loop.
273 See
\helpref{wxPaintEvent
}{wxpaintevent
} for an example of use.
275 \wxheading{Derived from
}
277 \helpref{wxObject
}{wxobject
}
279 \wxheading{Include files
}
285 \helpref{wxPaintEvent
}{wxpaintevent
}
287 \latexignore{\rtfignore{\wxheading{Members
}}}
290 \membersection{wxRegionIterator::wxRegionIterator
}\label{wxregioniteratorctor
}
292 \func{}{wxRegionIterator
}{\void}
296 \func{}{wxRegionIterator
}{\param{const wxRegion\&
}{ region
}}
298 Creates an iterator object given a region.
301 \membersection{wxRegionIterator::GetX
}\label{wxregioniteratorgetx
}
303 \constfunc{wxCoord
}{GetX
}{\void}
305 Returns the x value for the current region.
308 \membersection{wxRegionIterator::GetY
}\label{wxregioniteratorgety
}
310 \constfunc{wxCoord
}{GetY
}{\void}
312 Returns the y value for the current region.
315 \membersection{wxRegionIterator::GetW
}\label{wxregioniteratorgetw
}
317 \constfunc{wxCoord
}{GetW
}{\void}
319 An alias for GetWidth.
322 \membersection{wxRegionIterator::GetHeight
}\label{wxregioniteratorgetheight
}
324 \constfunc{wxCoord
}{GetHeight
}{\void}
326 Returns the height value for the current region.
329 \membersection{wxRegionIterator::GetH
}\label{wxregioniteratorgeth
}
331 \constfunc{wxCoord
}{GetH
}{\void}
333 An alias for GetHeight.
336 \membersection{wxRegionIterator::GetRect
}\label{wxregioniteratorgetrect
}
338 \constfunc{wxRect
}{GetRect
}{\void}
340 Returns the current rectangle.
343 \membersection{wxRegionIterator::GetWidth
}\label{wxregioniteratorgetwidth
}
345 \constfunc{wxCoord
}{GetWidth
}{\void}
347 Returns the width value for the current region.
350 \membersection{wxRegionIterator::HaveRects
}\label{wxregioniteratorhaverects
}
352 \constfunc{bool
}{HaveRects
}{\void}
354 Returns
{\tt true
} if there are still some rectangles; otherwise returns
{\tt false
}.
357 \membersection{wxRegionIterator::Reset
}\label{wxregioniteratorreset
}
359 \func{void
}{Reset
}{\void}
361 Resets the iterator to the beginning of the rectangles.
363 \func{void
}{Reset
}{\param{const wxRegion\&
}{ region
}}
365 Resets the iterator to the given region.
368 \membersection{wxRegionIterator::operator $++$
}\label{wxregioniteratorinc
}
370 \func{void
}{operator $++$
}{\void}
372 Increment operator. Increments the iterator to the next region.
374 \pythonnote{A wxPython alias for this operator is called
{\tt Next
}.
}
377 \membersection{wxRegionIterator::operator bool
}\label{wxregioniteratorbool
}
379 \constfunc{}{operator bool
}{\void}
381 Returns
{\tt true
} if there are still some rectangles; otherwise returns
{\tt false
}.
383 You can use this to test the iterator object as if it were of type bool.