QExposeEvent#
The QExposeEvent
class contains event parameters for expose events. More…
Synopsis#
Functions#
def
region
()
Detailed Description#
Expose events are sent to windows when they move between the un-exposed and exposed states.
An exposed window is potentially visible to the user. If the window is moved off screen, is made totally obscured by another window, is minimized, or similar, an expose event is sent to the window, and isExposed() might change to false.
Expose events should not be used to paint. Handle QPaintEvent
instead.
The event handler exposeEvent()
receives expose events.
- class PySide6.QtGui.QExposeEvent(arg__1)#
PySide6.QtGui.QExposeEvent(m_region)
- Parameters
arg__1 –
PySide6.QtGui.QExposeEvent
m_region –
PySide6.QtGui.QRegion
Constructs an expose event for the given exposeRegion
which must be in local coordinates.
Constructs an expose event for the given exposeRegion
which must be in local coordinates.
- PySide6.QtGui.QExposeEvent.region()#
- Return type
Note
This function is deprecated.
Use QPaintEvent
instead.
Returns the window area that has been exposed. The region is given in local coordinates.