IdentifiantMot de passe
Loading...
Mot de passe oublié ?Je m'inscris ! (gratuit)

QPaintDeviceWindow Class

Convenience subclass of QWindow that is also a QPaintDevice.

This class was introduced in Qt 5.4.

Article lu   fois.

L'auteur

Liens sociaux

Viadeo Twitter Facebook Share on Google+   

QPaintDeviceWindow Class

  • Header: QPaintDeviceWindow

  • Since: Qt 5.4

  • CMake:

    find_package(Qt6 REQUIRED COMPONENTS Gui)

    target_link_libraries(mytarget PRIVATE Qt6::Gui)

  • qmake: QT += gui

  • Inherits: QWindow and QPaintDevice

  • Inherited By: QOpenGLWindow and QRasterWindow

Detailed Description

QPaintDeviceWindow is like a regular QWindow, with the added functionality of being a paint device too. Whenever the content needs to be updated, the virtual paintEvent() function is called. Subclasses, that reimplement this function, can then simply open a QPainter on the window.

This class cannot directly be used in applications. It rather serves as a base for subclasses like QOpenGLWindow.

See Also

See also QOpenGLWindow

Member Function Documentation

 

[override virtual protected] void QPaintDeviceWindow::paintEvent(QPaintEvent *event)

Reimplements: QWindow::paintEvent(QPaintEvent *ev).

Handles paint events passed in the event parameter.

The default implementation does nothing. Reimplement this function to perform painting. If necessary, the dirty area is retrievable from the event.

void QPaintDeviceWindow::update(const QRect &rect)

Marks the rect of the window as dirty and schedules a repaint.

Subsequent calls to this function before the next paint event will get ignored, but rect is added to the region to update.

For non-exposed windows the update is deferred until the window becomes exposed again.

void QPaintDeviceWindow::update(const QRegion &region)

Marks the region of the window as dirty and schedules a repaint.

Subsequent calls to this function before the next paint event will get ignored, but region is added to the region to update.

For non-exposed windows the update is deferred until the window becomes exposed again.

void QPaintDeviceWindow::update()

Marks the entire window as dirty and schedules a repaint.

Subsequent calls to this function before the next paint event will get ignored.

For non-exposed windows the update is deferred until the window becomes exposed again.

Vous avez aimé ce tutoriel ? Alors partagez-le en cliquant sur les boutons suivants : Viadeo Twitter Facebook Share on Google+