wx.Region¶
A wx.Region represents a simple or complex region on a device context or window.
This class uses reference counting and copy-on-write internally so that assignments between two instances of this class are very cheap. You can therefore use actual objects instead of pointers without efficiency problems. If an instance of this class is changed it will create its own data internally so that other instances, which previously shared the data using the reference counting, are not affected.
See also
Class Hierarchy¶
Methods Summary¶
Default constructor. |
|
Clears the current region. |
|
Returns a value indicating whether the given point is contained within the region. |
|
Convert the region to a black and white bitmap with the white pixels being inside the region. |
|
Returns the outer bounds of the region. |
|
Finds the intersection of this region and another, rectangular region, specified using position and size. |
|
Returns |
|
Returns |
|
Moves the region by the specified offsets in horizontal and vertical directions. |
|
Subtracts a rectangular region from this region. |
|
Finds the union of this region and another, rectangular region, specified using position and size. |
|
Finds the Xor of this region and another, rectangular region, specified using position and size. |
|
Returns a rectangle iterator conforming to the Python iterator |
Properties Summary¶
See |
Class API¶
- class wx.Region(GDIObject)¶
Possible constructors:
Region() -> None Region(x, y, width, height) -> None Region(topLeft, bottomRight) -> None Region(rect) -> None Region(region) -> None Region(bmp) -> None Region(bmp, transColour, tolerance=0) -> None Region(points, fillStyle=ODDEVEN_RULE) -> None
A Region represents a simple or complex region on a device context or window.
Methods¶
- __init__(self, *args, **kw)¶
-
__init__ (self)
Default constructor.
This constructor creates an invalid, or null, object, i.e. calling IsOk() on it returns
False
andIsEmpty
returnsTrue
.- Return type:
None
__init__ (self, x, y, width, height)
Constructs a rectangular region with the given position and size.
- Parameters:
x (int)
y (int)
width (int)
height (int)
- Return type:
None
__init__ (self, topLeft, bottomRight)
Constructs a rectangular region from the top left point and the bottom right point.
__init__ (self, rect)
Constructs a rectangular region a wx.Rect object.
- Parameters:
rect (wx.Rect)
- Return type:
None
__init__ (self, region)
Copy constructor, uses Reference Counting.
- Parameters:
region (wx.Region)
- Return type:
None
__init__ (self, bmp)
Constructs a region using a bitmap.
See
Union
for more details.- Parameters:
bmp (wx.Bitmap)
- Return type:
None
__init__ (self, bmp, transColour, tolerance=0)
Constructs a region using the non-transparent pixels of a bitmap.
See
Union
for more details.__init__ (self, points, fillStyle=ODDEVEN_RULE)
Constructs a region corresponding to the polygon made from the points in the provided sequence.
- Return type:
None
- Clear(self)¶
Clears the current region.
The object becomes invalid, or null, after being cleared.
- Return type:
None
- Contains(self, *args, **kw)¶
-
Contains (self, x, y)
Returns a value indicating whether the given point is contained within the region.
This method always returns
OutRegion
for an invalid region but may, nevertheless, be safely called in this case.- Parameters:
x (int)
y (int)
- Return type:
- Returns:
The return value is one of
OutRegion
andInRegion
.
Contains (self, pt)
Returns a value indicating whether the given point is contained within the region.
This method always returns
OutRegion
for an invalid region but may, nevertheless, be safely called in this case.- Parameters:
pt (wx.Point)
- Return type:
- Returns:
The return value is one of
OutRegion
andInRegion
.
Contains (self, x, y, width, height)
Returns a value indicating whether the given rectangle is contained within the region.
This method always returns
OutRegion
for an invalid region but may, nevertheless, be safely called in this case.- Parameters:
x (int)
y (int)
width (int)
height (int)
- Return type:
- Returns:
One of
wx.OutRegion
,wx.PartRegion
orwx.InRegion
.
Note
On Windows, only
wx.OutRegion
andwx.InRegion
are returned; a valuewx.InRegion
then indicates that all or some part of the region is contained in this region.Contains (self, rect)
Returns a value indicating whether the given rectangle is contained within the region.
This method always returns
OutRegion
for an invalid region but may, nevertheless, be safely called in this case.- Parameters:
rect (wx.Rect)
- Return type:
- Returns:
One of
wx.OutRegion
,wx.PartRegion
orwx.InRegion
.
Note
On Windows, only
wx.OutRegion
andwx.InRegion
are returned; a valuewx.InRegion
then indicates that all or some part of the region is contained in this region.
- ConvertToBitmap(self)¶
Convert the region to a black and white bitmap with the white pixels being inside the region.
This method can’t be used for invalid region.
- Return type:
- GetBox(self)¶
Returns the outer bounds of the region.
This method returns 0-sized bounding box for invalid regions.
- Return type:
- Intersect(self, *args, **kw)¶
-
Intersect (self, x, y, width, height)
Finds the intersection of this region and another, rectangular region, specified using position and size.
This method always fails, i.e. returns
False
, if this region is invalid but may nevertheless be safely used even in this case.- Parameters:
x (int)
y (int)
width (int)
height (int)
- Return type:
bool
- Returns:
True
if successful,False
otherwise.
Note
Creates the intersection of the two regions, that is, the parts which are in both regions. The result is stored in this region.
Intersect (self, rect)
Finds the intersection of this region and another, rectangular region.
This method always fails, i.e. returns
False
, if this region is invalid but may nevertheless be safely used even in this case.- Parameters:
rect (wx.Rect)
- Return type:
bool
- Returns:
True
if successful,False
otherwise.
Note
Creates the intersection of the two regions, that is, the parts which are in both regions. The result is stored in this region.
Intersect (self, region)
Finds the intersection of this region and another region.
This method always fails, i.e. returns
False
, if this region is invalid but may nevertheless be safely used even in this case.- Parameters:
region (wx.Region)
- Return type:
bool
- Returns:
True
if successful,False
otherwise.
Note
Creates the intersection of the two regions, that is, the parts which are in both regions. The result is stored in this region.
- IsEmpty(self)¶
Returns
True
if the region is empty,False
otherwise.Always returns
True
if the region is invalid.- Return type:
bool
- IsEqual(self, region)¶
Returns
True
if the region is equal to, i.e. covers the same area as, another one.If both this region and region are both invalid, they are considered to be equal.
- Parameters:
region (wx.Region)
- Return type:
bool
- Offset(self, *args, **kw)¶
Moves the region by the specified offsets in horizontal and vertical directions.
This method can’t be called if the region is invalid as it doesn’t make sense to offset it then. Attempts to do it will result in assert failure.
- Returns:
True
if successful,False
otherwise (the region is unchanged then).
Offset (self, x, y)
- Parameters:
x (int)
y (int)
- Return type:
bool
Offset (self, pt)
- Parameters:
pt (wx.Point)
- Return type:
bool
- Subtract(self, *args, **kw)¶
-
Subtract (self, rect)
Subtracts a rectangular region from this region.
This method always fails, i.e. returns
False
, if this region is invalid but may nevertheless be safely used even in this case.- Parameters:
rect (wx.Rect)
- Return type:
bool
- Returns:
True
if successful,False
otherwise.
Note
This operation combines the parts of ‘this’ region that are not part of the second region. The result is stored in this region.
Subtract (self, region)
Subtracts a region from this region.
This method always fails, i.e. returns
False
, if this region is invalid but may nevertheless be safely used even in this case.- Parameters:
region (wx.Region)
- Return type:
bool
- Returns:
True
if successful,False
otherwise.
Note
This operation combines the parts of ‘this’ region that are not part of the second region. The result is stored in this region.
- Union(self, *args, **kw)¶
-
Union (self, x, y, width, height)
Finds the union of this region and another, rectangular region, specified using position and size.
This method can be used even if this region is invalid and has the natural behaviour in this case, i.e. makes this region equal to the given rectangle.
- Parameters:
x (int)
y (int)
width (int)
height (int)
- Return type:
bool
- Returns:
True
if successful,False
otherwise.
Note
This operation creates a region that combines all of this region and the second region. The result is stored in this region.
Union (self, rect)
Finds the union of this region and another, rectangular region.
This method can be used even if this region is invalid and has the natural behaviour in this case, i.e. makes this region equal to the given rectangle.
- Parameters:
rect (wx.Rect)
- Return type:
bool
- Returns:
True
if successful,False
otherwise.
Note
This operation creates a region that combines all of this region and the second region. The result is stored in this region.
Union (self, region)
Finds the union of this region and another region.
This method can be used even if this region is invalid and has the natural behaviour in this case, i.e. makes this region equal to the given region.
- Parameters:
region (wx.Region)
- Return type:
bool
- Returns:
True
if successful,False
otherwise.
Note
This operation creates a region that combines all of this region and the second region. The result is stored in this region.
Union (self, bmp)
Finds the union of this region and the non-transparent pixels of a bitmap.
The bitmap’s mask is used to determine transparency. If the bitmap doesn’t have a mask, the bitmap’s full dimensions are used.
- Parameters:
bmp (wx.Bitmap)
- Return type:
bool
- Returns:
True
if successful,False
otherwise.
Note
This operation creates a region that combines all of this region and the second region. The result is stored in this region.
Union (self, bmp, transColour, tolerance=0)
Finds the union of this region and the non-transparent pixels of a bitmap.
Colour to be treated as transparent is specified in the transColour argument, along with an optional colour tolerance value.
- Parameters:
- Return type:
bool
- Returns:
True
if successful,False
otherwise.
Note
This operation creates a region that combines all of this region and the second region. The result is stored in this region.
- Xor(self, *args, **kw)¶
-
Xor (self, x, y, width, height)
Finds the Xor of this region and another, rectangular region, specified using position and size.
This method can be used even if this region is invalid and has the natural behaviour in this case, i.e. makes this region equal to the given rectangle.
- Parameters:
x (int)
y (int)
width (int)
height (int)
- Return type:
bool
- Returns:
True
if successful,False
otherwise.
Note
This operation creates a region that combines all of this region and the second region, except for any overlapping areas. The result is stored in this region.
Xor (self, rect)
Finds the Xor of this region and another, rectangular region.
This method can be used even if this region is invalid and has the natural behaviour in this case, i.e. makes this region equal to the given rectangle.
- Parameters:
rect (wx.Rect)
- Return type:
bool
- Returns:
True
if successful,False
otherwise.
Note
This operation creates a region that combines all of this region and the second region, except for any overlapping areas. The result is stored in this region.
Xor (self, region)
Finds the Xor of this region and another region.
This method can be used even if this region is invalid and has the natural behaviour in this case, i.e. makes this region equal to the given region.
- Parameters:
region (wx.Region)
- Return type:
bool
- Returns:
True
if successful,False
otherwise.
Note
This operation creates a region that combines all of this region and the second region, except for any overlapping areas. The result is stored in this region.
- __iter__(self)¶
Returns a rectangle iterator conforming to the Python iterator protocol.
Properties¶