QQuickPaintedItem Class

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

头: #include <QQuickPaintedItem>
qmake: QT += quick
继承: QQuickItem

公共类型

enum PerformanceHint { FastFBOResizing }
flags PerformanceHints
enum RenderTarget { Image, FramebufferObject, InvertedYFramebufferObject }

特性

公共函数

QQuickPaintedItem (QQuickItem * parent = Q_NULLPTR)
virtual ~QQuickPaintedItem ()
bool 抗锯齿 () const
QColor fillColor () const
bool mipmap () const
bool opaquePainting () const
virtual void paint (QPainter * painter ) = 0
PerformanceHints performanceHints () const
RenderTarget renderTarget () const
void setAntialiasing (bool enable )
void setFillColor ( const QColor & )
void setMipmap (bool enable )
void setOpaquePainting (bool opaque )
void setPerformanceHint (PerformanceHint hint , bool enabled = true)
void setPerformanceHints (PerformanceHints hints )
void setRenderTarget (RenderTarget target )
void setTextureSize (const QSize & size )
QSize textureSize () const
void update (const QRect & rect = QRect())

重实现公共函数

virtual bool isTextureProvider () const
virtual QSGTextureProvider * textureProvider () const

信号

void fillColorChanged ()
void renderTargetChanged ()
void textureSizeChanged ()

重实现保护函数

virtual void itemChange ( ItemChange , const ItemChangeData & )
virtual void releaseResources ()
virtual QSGNode * updatePaintNode (QSGNode * oldNode , UpdatePaintNodeData * data )

额外继承成员

详细描述

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

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 can be either a QImage or, when OpenGL is in use, a QOpenGLFramebufferObject . When the render target is a QImage , QPainter first renders into the image then the content is uploaded to the texture. When a QOpenGLFramebufferObject is used, QPainter paints directly onto 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 .

成员类型文档编制

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.

常量 描述
QQuickPaintedItem::FastFBOResizing 0x1 Resizing an FBO can be a costly operation on a few OpenGL driver implementations. To work around this, one can set this flag to let the QQuickPaintedItem allocate one large framebuffer object and instead draw into a subregion of it. This saves the resize at the cost of using more memory. Please note that this is not a common problem.

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

enum QQuickPaintedItem:: RenderTarget

此枚举描述 QQuickPaintedItem 's render targets. The render target is the surface QPainter paints onto before the item is rendered on screen.

常量 描述
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 QPainter paints into a QOpenGLFramebufferObject using the GL paint engine. Painting can be faster as no texture upload is required, but anti-aliasing quality is not as good as if using an image. This render target allows faster rendering in some cases, but you should avoid using it if the item is resized often.
QQuickPaintedItem::InvertedYFramebufferObject 2 Exactly as for FramebufferObject above, except once the painting is done, prior to rendering the painted image is flipped about the x-axis so that the top-most pixels are now at the bottom. Since this is done with the OpenGL texture coordinates it is a much faster way to achieve this effect than using a painter transform.

另请参阅 setRenderTarget ().

特性文档编制

fillColor : QColor

This property holds the item's background fill color.

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

访问函数:

QColor fillColor () const
void setFillColor ( const QColor & )

通知程序信号:

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 .

注意: Some Qt Quick backends may not support all render target options. For example, it is likely that non-OpenGL backends will lack support for QQuickPaintedItem::FramebufferObject and QQuickPaintedItem::InvertedYFramebufferObject . Requesting these will then be ignored.

访问函数:

RenderTarget renderTarget () const
void setRenderTarget (RenderTarget target )

通知程序信号:

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.

访问函数:

QSize textureSize () const
void setTextureSize (const QSize & size )

通知程序信号:

void textureSizeChanged ()

成员函数文档编制

QQuickPaintedItem:: QQuickPaintedItem ( QQuickItem * parent = Q_NULLPTR)

构造 QQuickPaintedItem 采用给定 parent 项。

[virtual] QQuickPaintedItem:: ~QQuickPaintedItem ()

销毁 QQuickPaintedItem .

bool QQuickPaintedItem:: 抗锯齿 () const

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

By default, antialiasing is not enabled.

另请参阅 setAntialiasing ().

[virtual] bool QQuickPaintedItem:: isTextureProvider () const

重实现自 QQuickItem::isTextureProvider ().

[virtual protected] void QQuickPaintedItem:: itemChange ( ItemChange , const ItemChangeData & )

bool QQuickPaintedItem:: mipmap () const

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

By default, mipmapping is not enabled.

另请参阅 setMipmap ().

bool QQuickPaintedItem:: opaquePainting () const

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

By default, painted items are not opaque.

另请参阅 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 OpenGL rendering. 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.

另请参阅 width (), height (),和 textureSize .

PerformanceHints QQuickPaintedItem:: performanceHints () const

Returns the performance hints.

By default, no performance hint is enabled.

另请参阅 setPerformanceHint () 和 setPerformanceHints ().

[virtual protected] void QQuickPaintedItem:: releaseResources ()

重实现自 QQuickItem::releaseResources ().

void QQuickPaintedItem:: setAntialiasing ( bool enable )

enable is true, antialiased painting is enabled.

By default, antialiasing is not enabled.

另请参阅 抗锯齿 ().

void QQuickPaintedItem:: setMipmap ( bool enable )

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.

另请参阅 mipmap ().

void QQuickPaintedItem:: setOpaquePainting ( bool opaque )

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.

另请参阅 opaquePainting ().

void QQuickPaintedItem:: setPerformanceHint ( 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/

另请参阅 setPerformanceHints () 和 performanceHints ().

void QQuickPaintedItem:: setPerformanceHints ( PerformanceHints hints )

Sets the performance hints to hints

By default, no performance hint is enabled/

另请参阅 setPerformanceHint () 和 performanceHints ().

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

重实现自 QQuickItem::textureProvider ().

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

调度重新绘制的区域涵盖通过 rect 在此项。可以调用此函数,每当项需要重新绘制时 (譬如:若它改变外观或大小)。

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.

另请参阅 paint ().

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

重实现自 QQuickItem::updatePaintNode ().