QExposeEvent Class
The QExposeEvent class contains event parameters for expose events. More...
Header: | #include <QExposeEvent> |
CMake: | find_package(Qt6 COMPONENT Gui) target_link_libraries(mytarget PUBLIC Qt::Gui) |
qmake: | QT += gui |
Since: | Qt 5.0 |
Inherits: | QEvent |
Public Functions
QExposeEvent(const QRegion &exposeRegion) | |
const QRegion & | region() const |
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 QWindow::exposeEvent() receives expose events.
Member Function Documentation
QExposeEvent::QExposeEvent(const QRegion &exposeRegion)
Constructs an expose event for the given exposeRegion which must be in local coordinates.
const QRegion &QExposeEvent::region() const
Returns the window area that has been exposed. The region is given in local coordinates.