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

QQuickPaintedItem Class

The QQuickPaintedItem class provides a way to use the QPainter API in the QML Scene Graph.

Article lu   fois.

L'auteur

Liens sociaux

Viadeo Twitter Facebook Share on Google+   

QQuickPaintedItem Class

  • Header: QQuickPaintedItem

  • CMake:

    find_package(Qt6 REQUIRED COMPONENTS Quick)

    target_link_libraries(mytarget PRIVATE Qt6::Quick)

  • qmake: QT += quick

  • Inherits: QQuickItem

  • Inherited By:

Detailed Description

The QQuickPaintedItem makes it possible to use the QPainter API with the QML Scene Graph. It sets up a textured rectangle in the Scene Graph and uses a QPainter to paint onto the texture. The render target in Qt 6 is always a QImage. When the render target is a QImage, QPainter first renders into the image then the content is uploaded to the texture. Call update() to trigger a repaint.

To enable QPainter to do anti-aliased rendering, use setAntialiasing().

To write your own painted item, you first create a subclass of QQuickPaintedItem, and then start by implementing its only pure virtual public function: paint(), which implements the actual painting. The painting will be inside the rectangle spanning from 0,0 to width(),height().

It important to understand the performance implications such items can incur. See QQuickPaintedItem::RenderTarget and QQuickPaintedItem::renderTarget.

See Also

Member Type Documentation

 

enum QQuickPaintedItem::PerformanceHint

flags QQuickPaintedItem::PerformanceHints

This enum describes flags that you can enable to improve rendering performance in QQuickPaintedItem. By default, none of these flags are set.

Constant

Value

Description

QQuickPaintedItem::FastFBOResizing

0x1

As of Qt 6.0, this value is ignored.

The PerformanceHints type is a typedef for QFlags<PerformanceHint>. It stores an OR combination of PerformanceHint values.

enum QQuickPaintedItem::RenderTarget

This enum describes QQuickPaintedItem's render targets. The render target is the surface QPainter paints onto before the item is rendered on screen.

Constant

Value

Description

QQuickPaintedItem::Image

0

The default; QPainter paints into a QImage using the raster paint engine. The image's content needs to be uploaded to graphics memory afterward, this operation can potentially be slow if the item is large. This render target allows high quality anti-aliasing and fast item resizing.

QQuickPaintedItem::FramebufferObject

1

As of Qt 6.0, this value is ignored.

QQuickPaintedItem::InvertedYFramebufferObject

2

As of Qt 6.0, this value is ignored.

See Also

See also setRenderTarget()

Property Documentation

 

fillColor : QColor

This property holds the item's background fill color.

By default, the fill color is set to Qt::transparent.

Access functions:

  • fillColor() const

  • void setFillColor(const QColor &)

Notifier signal:

  • void fillColorChanged()

renderTarget : RenderTarget

This property holds the item's render target.

This property defines which render target the QPainter renders into, it can be either QQuickPaintedItem::Image, QQuickPaintedItem::FramebufferObject or QQuickPaintedItem::InvertedYFramebufferObject.

Each has certain benefits, typically performance versus quality. Using a framebuffer object avoids a costly upload of the image contents to the texture in graphics memory, while using an image enables high quality anti-aliasing.

Resizing a framebuffer object is a costly operation, avoid using the QQuickPaintedItem::FramebufferObject render target if the item gets resized often.

By default, the render target is QQuickPaintedItem::Image.

Access functions:

  • renderTarget() const

  • void setRenderTarget( target)

Notifier signal:

  • void renderTargetChanged()

textureSize : QSize

Defines the size of the texture.

Changing the texture's size does not affect the coordinate system used in paint(). A scale factor is instead applied so painting should still happen inside 0,0 to width(),height().

By default, the texture size will have the same size as this item.

If the item is on a window with a device pixel ratio different from 1, this scale factor will be implicitly applied to the texture size.

Access functions:

  • textureSize() const

  • void setTextureSize(const &size)

Notifier signal:

  • void textureSizeChanged()

Member Function Documentation

 

[explicit] QQuickPaintedItem::QQuickPaintedItem(QQuickItem *parent = nullptr)

Constructs a QQuickPaintedItem with the given parent item.

[override virtual] QQuickPaintedItem::~QQuickPaintedItem()

Destroys the QQuickPaintedItem.

bool QQuickPaintedItem::antialiasing() const

Returns true if antialiased painting is enabled; otherwise, false is returned.

By default, antialiasing is not enabled.

See Also

See also setAntialiasing()

[override virtual] bool QQuickPaintedItem::isTextureProvider() const

[override virtual protected] void QQuickPaintedItem::itemChange(QQuickItem::ItemChange change, const QQuickItem::ItemChangeData &value)

bool QQuickPaintedItem::mipmap() const

Returns true if mipmaps are enabled; otherwise, false is returned.

By default, mipmapping is not enabled.

See Also

See also setMipmap()

bool QQuickPaintedItem::opaquePainting() const

Returns true if this item is opaque; otherwise, false is returned.

By default, painted items are not opaque.

See Also

See also setOpaquePainting()

[pure virtual] void QQuickPaintedItem::paint(QPainter *painter)

This function, which is usually called by the QML Scene Graph, paints the contents of an item in local coordinates.

The underlying texture will have a size defined by textureSize when set, or the item's size, multiplied by the window's device pixel ratio.

The function is called after the item has been filled with the fillColor.

Reimplement this function in a QQuickPaintedItem subclass to provide the item's painting implementation, using painter.

The QML Scene Graph uses two separate threads, the main thread does things such as processing events or updating animations while a second thread does the actual issuing of graphics resource updates and the recording of draw calls. As a consequence, paint() is not called from the main GUI thread but from the GL enabled renderer thread. At the moment paint() is called, the GUI thread is blocked and this is therefore thread-safe.

Extreme caution must be used when creating QObjects, emitting signals, starting timers and similar inside this function as these will have affinity to the rendering thread.

See Also

See also width(), height(), textureSize

QQuickPaintedItem::PerformanceHints QQuickPaintedItem::performanceHints() const

Returns the performance hints.

By default, no performance hint is enabled.

See Also

[override virtual protected] void QQuickPaintedItem::releaseResources()

void QQuickPaintedItem::setAntialiasing(bool enable)

If enable is true, antialiased painting is enabled.

By default, antialiasing is not enabled.

See Also

See also antialiasing()

void QQuickPaintedItem::setMipmap(bool enable)

If enable is true, mipmapping is enabled on the associated texture.

Mipmapping increases rendering speed and reduces aliasing artifacts when the item is scaled down.

By default, mipmapping is not enabled.

See Also

See also mipmap()

void QQuickPaintedItem::setOpaquePainting(bool opaque)

If opaque is true, the item is opaque; otherwise, it is considered as translucent.

Opaque items are not blended with the rest of the scene, you should set this to true if the content of the item is opaque to speed up rendering.

By default, painted items are not opaque.

See Also

See also opaquePainting()

void QQuickPaintedItem::setPerformanceHint(QQuickPaintedItem::PerformanceHint hint, bool enabled = true)

Sets the given performance hint on the item if enabled is true; otherwise clears the performance hint.

By default, no performance hint is enabled/

See Also

void QQuickPaintedItem::setPerformanceHints(QQuickPaintedItem::PerformanceHints hints)

Sets the performance hints to hints

By default, no performance hint is enabled/

See Also

[override virtual] QSGTextureProvider *QQuickPaintedItem::textureProvider() const

void QQuickPaintedItem::update(const QRect &rect = QRect())

Schedules a redraw of the area covered by rect in this item. You can call this function whenever your item needs to be redrawn, such as if it changes appearance or size.

This function does not cause an immediate paint; instead it schedules a paint request that is processed by the QML Scene Graph when the next frame is rendered. The item will only be redrawn if it is visible.

See Also

See also paint()

[override virtual protected] QSGNode *QQuickPaintedItem::updatePaintNode(QSGNode *oldNode, QQuickItem::UpdatePaintNodeData *data)

Obsolete Members for QQuickPaintedItem

The following members of class QQuickPaintedItem are deprecated. We strongly advise against using them in new code.

Obsolete Property Documentation

 
contentsScale : qreal

This property is deprecated. We strongly advise against using it in new code.

Obsolete method for scaling the contents.

This function is provided for compatibility, use size() in combination with textureSize() to decide the size of what you are drawing.

Access functions:

  • qreal contentsScale() const

  • void setContentsScale(qreal)

Notifier signal:

  • void contentsScaleChanged()

See Also

See also width(), height(), textureSize()

contentsSize : QSize

This property is deprecated. We strongly advise against using it in new code.

Obsolete method for setting the contents size.

This function is provided for compatibility, use size in combination with textureSize to decide the size of what you are drawing.

Access functions:

  • contentsSize() const

  • void setContentsSize(const QSize &)

Notifier signal:

  • void contentsSizeChanged()

See Also

See also width(), height(), textureSize()

Obsolete Member Function Documentation

 
QRectF QQuickPaintedItem::contentsBoundingRect() const

This function is deprecated. We strongly advise against using it in new code.

This function is provided for compatibility, use size in combination with textureSize to decide the size of what you are drawing.

See Also

See also width(), height(), textureSize()

void QQuickPaintedItem::resetContentsSize()

This function is deprecated. We strongly advise against using it in new code.

This convenience function is equivalent to calling setContentsSize(QSize()).

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