summaryrefslogtreecommitdiffstats
path: root/src/declarative/qml/qdeclarativeimageprovider.cpp
Commit message (Collapse)AuthorAgeFilesLines
* Don't truncate image:// url strings prematurelyBea Lam2010-12-201-4/+12
| | | | | | | | Url fragments and queries were being removed from the image ids passed to QDeclarativeImageProvider. Task-number: QTBUG-16195 Reviewed-by: Martin Jones
* QDeclarativeImageProvider: Do not keep the global declarative mutex locked ↵Olivier Goffart2010-08-191-1/+3
| | | | | | | | | | | | | | | | when processing. The point is to be able to process images in a thread. If the mutex is locked, this is useless. Use case is a slow QDeclarativeImageProvider that generates thumbmails from large files. Even with the asynchronous attribute set to true, the gui thread would be blocked by the mutex. By using QSharedPointer, I also fix the leak of the providers (which were not deleted) Reviewed-by: Martin Jones
* Merge commit 'remotes/origin/4.7' into qt47s2Thomas Zander2010-08-111-1/+1
|\ | | | | | | | | | | | | | | Conflicts: doc/src/examples/simpletreemodel.qdoc doc/src/examples/spinboxdelegate.qdoc doc/src/index.qdoc src/declarative/qml/qdeclarativeimageprovider.cpp
| * Merge branch '4.7' of scm.dev.nokia.troll.no:qt/oslo-staging-1 into 4.7Jerome Pasion2010-08-091-1/+1
| |\
| | * doc: Fixed some qdoc errors.Martin Smith2010-08-091-1/+1
| | |
| * | Correcting spelling mistakes in documentation. Part of fix for QTBUG-11938.Jerome Pasion2010-08-091-1/+1
| |/ | | | | | | | | Reviewer: David Boddie Task number: QTBUG-11938
* | Doc: Fixed qdoc warnings.David Boddie2010-08-051-4/+4
|/ | | | Reviewed-by: Trust Me
* various doc fixesBea Lam2010-07-271-3/+0
|
* improvements to docs and examplesBea Lam2010-07-141-4/+12
|
* Extend QDeclarativeImageProvider to support QPixmap loading andBea Lam2010-07-081-13/+151
| | | | | | | | | | synchronous loading of QImages. (QPixmaps can only be created in the main thread so they will always be loaded synchronously). This changes request() to requestImage() and adds requestPixmap() for pixmap support. Task-number: QTBUG-11989
* Docs - add more links to relevant examplesBea Lam2010-06-301-1/+1
| | | | Task-number: QTBUG-11754
* More class documentation fixes for declarative.Michael Brasser2010-04-161-7/+15
|
* Source resizing for QDeclarativeImageProvider too.Warwick Allison2010-03-281-1/+5
| | | | (fixes test too)
* doc: Fixed several qdoc errors.Martin Smith2010-03-091-0/+4
|
* Change class prefix to from QmlXXX to QDeclarativeXXX, QmlGraphicsXXX to ↵Warwick Allison2010-02-241-0/+68
QDeclarativeXXX.