QQuickImageResponse¶
The
QQuickImageResponse
class provides an interface for asynchronous image loading inQQuickAsyncImageProvider
. More…
New in version 5.6.
Detailed Description¶
The purpose of an image response is to provide a way for image provider jobs to be executed in an asynchronous way.
Responses are deleted via
deleteLater
once thefinished()
signal has been emitted. If you are usingQRunnable
as base for yourQQuickImageResponse
ensure automatic deletion is disabled.See the Image Response Provider Example for a complete implementation.
See also
- class PySide2.QtQuick.QQuickImageResponse¶
Constructs the image response
- PySide2.QtQuick.QQuickImageResponse.cancel()¶
This method is used to communicate that the response is no longer required by the engine.
It may be reimplemented to cancel a request in the provider side, however, it is not mandatory.
A cancelled
QQuickImageResponse
still needs to emitfinished()
so that the engine may clean up theQQuickImageResponse
.Note
finished()
should not be emitted until the response is complete, regardless of whether or not was called. If it is called prematurely, the engine may destroy the response while it is still active, leading to a crash.
- PySide2.QtQuick.QQuickImageResponse.errorString()¶
- Return type:
str
Returns the error string for the job execution. An empty string means no error.
- PySide2.QtQuick.QQuickImageResponse.finished()¶
- PySide2.QtQuick.QQuickImageResponse.textureFactory()¶
- Return type:
Returns the texture factory for the job. You can use
textureFactoryForImage
if your provider works withQImage
. The engine takes ownership of the returnedQQuickTextureFactory
.Note
This method will be called only when needed. For example, it may not be called if there is an error or the job is cancelled. Therefore, allocate the
QQuickTextureFactory
instance only in this method or otherwise ensure its deletion.
© 2022 The Qt Company Ltd. Documentation contributions included herein are the copyrights of their respective owners. The documentation provided herein is licensed under the terms of the GNU Free Documentation License version 1.3 as published by the Free Software Foundation. Qt and respective logos are trademarks of The Qt Company Ltd. in Finland and/or other countries worldwide. All other trademarks are property of their respective owners.