summaryrefslogtreecommitdiffstats
path: root/tests/auto/declarative/qdeclarativeimage/data
Commit message (Collapse)AuthorAgeFilesLines
* Properly protect access to pixmap reader thread with mutexChris Adams2011-11-151-0/+44
| | | | | | | | | | | | Previously, access to the data from the reader thread wasn't guarded properly, causing a crash when the reader thread was deleted prior to QDeclarativePixmapData (which then attempted to dereference the thread pointer to cancel the request), or in the case where a QDeclarativePixmapData was deleted after its QDeclarativePixmapReply was removed from the jobs queue but prior to processing. Reviewed-by: Martin Jones Task-number: QTBUG-22125
* Image w/ PreserveAspectFit has its width changed once more than needed.Martin Jones2011-04-071-0/+4
| | | | | | | | Avoid an extra setImplicitWidth/setImplicitHeight on image load. Change-Id: I8bec1c97244068000c7a7f5fb3e937f80f3b36f5 Task-number: QTBUG-18573 Reviewed-by: Michael Brasser
* Image.PreserveAspectFit has unexpected effect on Image's sourceSizeMartin Jones2011-03-171-0/+30
| | | | | | | | | | | The sourceSize should always be the size of the image, unless set otherwise. When calculating the size of an image with Image.PreserveAspectFit set the natural image size should be used for the calculation if no size has been set explicitly. Change-Id: I104b7d1c3c16aa5b4fc98b1f9078ed8ae997cf69 Task-number: QTBUG-16389 Reviewed-by: Joona Petrell
* Update test bitmaps for QDeclarativeImage::svg() autotest on WindowsJoona Petrell2010-12-202-0/+0
| | | | | Task-number: Reviewed-by: Martin Jones
* Update test bitmaps for QDeclarativeImage::svg() autotest on LinuxJoona Petrell2010-12-172-0/+0
| | | | | Task-number: Reviewed-by: Martin Jones
* Image bounding rect should always include the area being paintedJoona Petrell2010-11-051-0/+0
| | | | | | | | This didn't always happend with fillMode PreserveAspectCrop, resulting in drawing artifacts. Task-number: QT-3933 Reviewed-by: Martin Jones
* Replace all occurances of "Qt 4.7" with "QtQuick 1.0"Aaron Kennedy2010-09-292-2/+2
| | | | | Task-number: QTBUG-13799 Reviewed-by: Martin Jones
* Fix Image element svg autotestJoona Petrell2010-08-198-0/+0
| | | | | | | | | | Also, reduced some platform-specific test as the test case is not meant to test regression in the painting routines, but that Image's svg support works. Task-number: Reviewed-by: Martin Jones
* Fix test for N900 (ARM-specific SVG results).Warwick Allison2010-07-023-0/+0
|
* Make autotests work with qreal == float (in addition to double).Warwick Allison2010-07-022-0/+0
| | | | Task-number: QTBUG-11853
* QDeclarativeImage should stretch in one direction when tiling in the other.Yann Bodson2010-04-192-0/+16
| | | | | Task-number: QTBUG-6716 Reviewed-by: Michael Brasser
* Image with PreserveAspect enabled with either width or height defined should ↵Joona Petrell2010-04-141-0/+6
| | | | | | | implicitly update the undefined axis to follow the aspect ratio Task-number: Reviewed-by: Martin Jones
* Fix svg and big image auto tests on win32.Martin Jones2010-03-292-0/+0
|
* Fix qdeclarativeimage autotest on the mac.Yann Bodson2010-03-282-0/+0
|
* Control of image rendered size (esp. SVG).Warwick Allison2010-03-265-0/+55
| | | | | | | Add Translate transform. Image::sourceWidth and Image::sourceHeight read/write properties. Task-number: QTBUG-8984
* Add an "asynchonous" property to Image.Martin Jones2010-02-241-0/+0
| | | | | Allows loading/decoding local images in an asynchronous thread (already the case for network images).
* Change class prefix to from QmlXXX to QDeclarativeXXX, QmlGraphicsXXX to ↵Warwick Allison2010-02-241-0/+0
QDeclarativeXXX.