summaryrefslogtreecommitdiffstats
path: root/tests/auto/declarative
Commit message (Collapse)AuthorAgeFilesLines
* Don't overflow the unreferenced cost counterAaron Kennedy2010-09-021-0/+27
| | | | QTBUG-13345
* Support JS "in" operator on QML objectsAaron Kennedy2010-09-012-0/+18
| | | | QTBUG-12837
* Only emit change signal when variant properties actually changeAaron Kennedy2010-09-012-1/+28
| | | | QTBUG-12601
* Prevent calling deleteLater() from QMLAaron Kennedy2010-08-312-0/+24
| | | | QTBUG-13045
* Ignore non-scriptable properties in QMLAaron Kennedy2010-08-3110-6/+61
| | | | QTBUG-13043
* Don't double call classBegin()Aaron Kennedy2010-08-315-1/+41
| | | | QTBUG-13114
* Merge branch '4.7' of scm.dev.nokia.troll.no:qt/qt-qml into 4.7Aaron Kennedy2010-08-317-7/+131
|\
| * Revert "Add 'cached' property to Image."Yann Bodson2010-08-311-20/+9
| | | | | | | | | | | | This will have to go in 4.8. This reverts commit 3928cb20ecc63ed21cdb122388b200c9ab8e7cad.
| * Add 'cached' property to Image.Yann Bodson2010-08-311-9/+20
| | | | | | | | | | Task-number: QTBUG-7300 Reviewed-by: Aaron Kennedy
| * Ensure Flickable visibleArea is updated when view height changesMartin Jones2010-08-312-0/+49
| | | | | | | | Task-number: QTBUG-13095
| * Fix VisualDataModel model update handling when rootIndex is specified.Martin Jones2010-08-272-6/+71
| | | | | | | | Task-number: QTBUG-13038
| * Improve test reliability when running in parallel with other tests.Martin Jones2010-08-271-0/+9
| |
| * Improve stability of test on loaded hw.Martin Jones2010-08-271-0/+1
| |
| * Improve stability of test on loaded hw.Martin Jones2010-08-271-1/+1
| |
* | Simplify type management codeAaron Kennedy2010-08-273-4/+4
|/
* Handle layoutChanged() properly in QML views.Martin Jones2010-08-261-1/+1
| | | | | | Update all visible items when layoutChanged() is emitted. Task-number: QTBUG-13146
* Fix ListView and GridView tests following off-by-one fixes.Martin Jones2010-08-262-3/+3
| | | | | | Our tests were verifying incorrect positions... Task-number: QTBUG-12822
* Fix ListView.view attached property with VisualItemModelMartin Jones2010-08-262-3/+4
| | | | | | | | We assumed that the attached object was created at the same time as the item. Task-number: QTBUG-13166 Reviewed-by: Aaron Kennedy
* Add test for VisualItemModel layoutChanged() handlingMartin Jones2010-08-252-0/+50
| | | | Task-number: QTBUG-13146
* Fix responseText to check the charset encoding field and also to notBea Lam2010-08-253-12/+32
| | | | | | | | assume that the data is xml. The change also follows the w3c spec more closely (e.g. check the mime type field as well for encoding, for both responseText and responseXML). Task-number: QTBUG-13117
* Setting one dimension of the sourceSize should set the other dimension.Yann Bodson2010-08-252-9/+9
| | | | | | The implicit width and height should also be set to the sourceSize. Task-number: 13002
* Merge branch '4.7' of scm.dev.nokia.troll.no:qt/qt-qml into 4.7Martin Jones2010-08-242-1/+28
|\
| * Fix PathView when setting an empty model that is later filled.Michael Brasser2010-08-242-1/+28
| | | | | | | | | | Task-number: QTBUG-13017 Reviewed-by: Martin Jones
* | Merge branch '4.7' of scm.dev.nokia.troll.no:qt/qt-qml into 4.7Martin Jones2010-08-231-1/+1
|\ \ | |/
| * QDeclarativeDebug: stream all the context, including the internals ones.Olivier Goffart2010-08-201-1/+1
| | | | | | | | | | | | | | Some public context are within the internal context, so we need to stream them to get every objects Reviewed-by: Lasse Holmstedt
* | Merge branch '4.7' of scm.dev.nokia.troll.no:qt/qt-qml into 4.7Martin Jones2010-08-2010-20/+101
|\ \ | |/
| * Merge branch '4.7' of scm.dev.nokia.troll.no:qt/oslo-staging-2 into ↵Qt Continuous Integration System2010-08-191-8/+97
| |\ | | | | | | | | | | | | | | | | | | | | | | | | | | | 4.7-integration * '4.7' of scm.dev.nokia.troll.no:qt/oslo-staging-2: Fixes a regression preventing loading images without extensions Made GL pixmap backend respect Qt::NoOpaqueDetection flag.. QTextCodec: fix wodring of a comment QDeclarativeImageProvider: Do not keep the global declarative mutex locked when processing.
| | * QDeclarativeImageProvider: Do not keep the global declarative mutex locked ↵Olivier Goffart2010-08-191-8/+97
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | 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
| * | Fix Image element svg autotestJoona Petrell2010-08-199-12/+4
| |/ | | | | | | | | | | | | | | | | | | 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
* | Merge branch '4.7' of scm.dev.nokia.troll.no:qt/qt-qml into 4.7Martin Jones2010-08-191-0/+16
|\ \ | |/
| * Repaint TextInput when password character changes in password modeJoona Petrell2010-08-171-0/+16
| | | | | | | | | | Task-number: QTBUG-12838 Reviewed-by: Martin Jones
* | Make QML tests compile on OpenSolarisMartin Jones2010-08-194-20/+20
|/ | | | Task-number: QTBUG-13003
* Add missing auto test files.Martin Jones2010-08-162-0/+31
|
* Handle QGraphicsWidgets in FlickableMartin Jones2010-08-161-0/+37
| | | | | Task-number: QTBUG-12830 Reviewed-by: Michael Brasser
* More positioners with QGraphicsWidgets fixes.Martin Jones2010-08-161-0/+44
| | | | | Task-number: QTBUG-12416 Reviewed-by: Michael Brasser
* Merge branch '4.7' of scm.dev.nokia.troll.no:qt/qt-qml into 4.7Martin Jones2010-08-163-0/+85
|\
| * Add autotest that checks that copy and cut don't work when echomode is set ↵Joona Petrell2010-08-131-0/+24
| | | | | | | | | | | | | | to hide text/password mode Task-number: QTBUG-12086 Reviewed-by: Michael Brasser
| * Clear previous animation data for non-triggering animations.Michael Brasser2010-08-132-0/+61
| | | | | | | | | | | | | | We need to clear the data from the last run if the animation doesn't match any of the state actions (or if there are no actions). Task-number: QTBUG-12805
* | emit countChanged where appropriate in RepeaterMartin Jones2010-08-161-0/+3
|/ | | | | Task-number: QTBUG-12905 Reviewed-by: Bea Lam
* Merge branch '4.7' of scm.dev.nokia.troll.no:qt/oslo-staging-1 into ↵Qt Continuous Integration System2010-08-121-15/+15
|\ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | 4.7-integration * '4.7' of scm.dev.nokia.troll.no:qt/oslo-staging-1: Fix some #ifdefs to compile for a specific combination of featuress that was previously unsupported update Russian translations for Qt and tools Updated Slovenian translations for Qt 4.7 doc: The QML Qt element was missing from the documentation. 64-bit versions of PREMUL, BYTE_MUL and INTERPOLATE_PIXEL_256 QXmlStreamReader: avoid unnecessary detaching QSslCertificate: support expiration dates > 2049 Doc: Fixing typo Doc: Fixing bug involving header misplacement in Creator style qdoc: Added list of all members (including inherited) page to QML elements. qdoc: Ensured that text is encoded correctly. qdoc: Fixed non-well-formed markup. Doc: Fixed typo in a shortcut string. Remove useless QString::clear() from QSharedData example snippet. Move note on connectToBus() not actually being able to reconnect to Doc: Added more license information.
| * Merge branch '4.7' of git@scm.dev.nokia.troll.no:qt/oslo-staging-1 into 4.7Martin Smith2010-08-111-3/+4
| |\
| * | qdoc: Added list of all members (including inherited) page to QML elements.Martin Smith2010-08-111-15/+15
| | |
* | | Only modify pixmap cache reply when protected by a mutexAaron Kennedy2010-08-121-0/+10
| |/ |/| | | | | QTBUG-12729
* | Merge branch '4.7' of scm.dev.nokia.troll.no:qt/qt-qml into 4.7-integrationQt Continuous Integration System2010-08-111-3/+4
|\ \ | |/ |/| | | | | * '4.7' of scm.dev.nokia.troll.no:qt/qt-qml: Don't destroy ListModel child list nodes.
| * Merge branch '4.7' of scm.dev.nokia.troll.no:qt/qt-qml into 4.7Martin Jones2010-08-112-0/+27
| |\
| * | Don't destroy ListModel child list nodes.Martin Jones2010-08-111-3/+4
| | | | | | | | | | | | | | | | | | | | | These are owned by the root and must not be destroyed by child lists. Task-number: QTBUG-12771 Reviewed-by: Bea Lam
* | | Merge branch '4.7' of scm.dev.nokia.troll.no:qt/oslo-staging-1 into ↵Qt Continuous Integration System2010-08-101-1/+1
|\ \ \ | |_|/ |/| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | 4.7-integration * '4.7' of scm.dev.nokia.troll.no:qt/oslo-staging-1: (32 commits) Fix memory leak in QtScript variable object doc: Changed some titles so lists of contents sort better. QSslSocket: fix security vulnerability with wildcard IP addresses doc: Some reorganization of top page topic hierarchy. Mac: Fix crash when using style to draw on other things than widgets Doc: Adding radius support for CSS3 and webkit Correct spelling (UNKOWN -> UNKNOWN) to fix recent test regression add performance comparisons to qregexp benchmark configure: fix error message when calling config.status Fix invalid memory write during recursive timer activation Added comment about calendarPopup in setCalendarWidget function documentation. doc: Fixed some qdoc errors. Correcting spelling mistakes in documentation. Part of fix for QTBUG-11938. CreateFileMapping returns NULL on error , only tested with INVALID_HANDLE_VALUE. XmlListModel doc fixes Mention QML_IMPORT_TRACE in Modules docs Merge sections about when property and default state Explain Flipable example further PathView required some diagonal movement before a drag was initiated. doc: Fixed some qdoc errors. ...
| * | Correct spelling (UNKOWN -> UNKNOWN) to fix recent test regressionBradley T. Hughes2010-08-101-1/+1
| |/ | | | | | | | | | | | | Commit eea84818e98af917d3cf2bf04ea17a416ef9d55e corrected some spelling mistakes, one of which this test was relying on. Reviewed-by: trustme
* | Don't double-add item change listeners.Michael Brasser2010-08-102-0/+27
|/ | | | | | | | When a Repeater was used as the child of an Item binding to childrenRect, the item change listener was being added twice for the items created by the Repeater. Task-number: QTBUG-12722
* Top-level QML item should not have special focus handling.Michael Brasser2010-08-061-1/+1
| | | | | | | | It's the scene itself that acts as a focus scope, not the top-level item. Task-number: QTBUG-12682 Reviewed-by: Aaron Kennedy