diff options
author | Bea Lam <bea.lam@nokia.com> | 2011-06-01 00:41:14 (GMT) |
---|---|---|
committer | Bea Lam <bea.lam@nokia.com> | 2011-06-02 00:13:08 (GMT) |
commit | 7602be09663d37f01cfd640a7f1be959ce4317b7 (patch) | |
tree | dd3f7c2a0777b6de350d8405e7167e7f0c2281fc /src/declarative/graphicsitems | |
parent | 4fd3f754104f56c625f7cbcca13fa12b4f633957 (diff) | |
download | Qt-7602be09663d37f01cfd640a7f1be959ce4317b7.zip Qt-7602be09663d37f01cfd640a7f1be959ce4317b7.tar.gz Qt-7602be09663d37f01cfd640a7f1be959ce4317b7.tar.bz2 |
Fix docs on caching for images loaded by image providers
Also add docs for 'source' and 'asynchronous' properties for
AnimatedImage.
Task-number: QTBUG-19504
Change-Id: Iec72dc7630308a94c37d00c6b008b5949c6fccd4
Reviewed-by: Martin Jones
Diffstat (limited to 'src/declarative/graphicsitems')
-rw-r--r-- | src/declarative/graphicsitems/qdeclarativeanimatedimage.cpp | 26 |
1 files changed, 26 insertions, 0 deletions
diff --git a/src/declarative/graphicsitems/qdeclarativeanimatedimage.cpp b/src/declarative/graphicsitems/qdeclarativeanimatedimage.cpp index b7fcbb5..8787a5e 100644 --- a/src/declarative/graphicsitems/qdeclarativeanimatedimage.cpp +++ b/src/declarative/graphicsitems/qdeclarativeanimatedimage.cpp @@ -87,6 +87,32 @@ QT_BEGIN_NAMESPACE */ /*! + \qmlproperty url AnimatedImage::source + + This property holds the URL that refers to the source image. + + AnimatedImage can handle any image format supported by Qt, loaded from any + URL scheme supported by Qt. + + \sa QDeclarativeImageProvider +*/ + +/*! + \qmlproperty bool AnimatedImage::asynchronous + + Specifies that images on the local filesystem should be loaded + asynchronously in a separate thread. The default value is + false, causing the user interface thread to block while the + image is loaded. Setting \a asynchronous to true is useful where + maintaining a responsive user interface is more desirable + than having images immediately visible. + + Note that this property is only valid for images read from the + local filesystem. Images loaded via a network resource (e.g. HTTP) + are always loaded asynchonously. +*/ + +/*! \qmlproperty bool AnimatedImage::cache \since Quick 1.1 |