aboutsummaryrefslogtreecommitdiffstats
path: root/tests/auto/declarative/declarative.pro
Commit message (Collapse)AuthorAgeFilesLines
* QtDeclarative: Remove obsolete qmetaobjectbuilder-test.Friedemann Kleint2011-11-251-2/+1
| | | | | | | The test now lives in qtbase. Change-Id: I50166795d8cae039272bc9448b9e1fc64248e10f Reviewed-by: Kent Hansen <kent.hansen@nokia.com>
* ConsoleAPI: Use environment variableAurindam Jana2011-11-241-0/+1
| | | | | | | | | Show detailed information, such as file and line number, for console.log, console.debug and print when the environment variable QML_CONSOLE_EXTENDED is set. Change-Id: I8f660f58d0fd08971ce9706b4a418ed60f312980 Reviewed-by: Kai Koehne <kai.koehne@nokia.com>
* Qt.locale() and JS locale type extension.Martin Jones2011-11-221-0/+1
| | | | | | | Task-number: QTBUG-17129 Change-Id: I69cbbe858735b750b4e37ce489f2fa1ad5d8b5d3 Reviewed-by: Martin Jones <martin.jones@nokia.com>
* Fixed QQuickShaderEffect::lookThroughShaderCode(), added autotest.Kim Motoyoshi Kalland2011-11-171-0/+1
| | | | | Change-Id: I1e4a1589e1482c21eedab4cd052c16b6653344fb Reviewed-by: Gunnar Sletta <gunnar.sletta@nokia.com>
* Add QQuickSpriteImage test to pro fileAlan Alpert2011-11-081-0/+1
| | | | | Change-Id: Id375c9ff1e543d69b102fec33d1e672890e87078 Reviewed-by: Martin Jones <martin.jones@nokia.com>
* Re-add anchors autotest for QtQuick 2.0.Michael Brasser2011-10-271-0/+1
| | | | | Change-Id: I4365e0b14b359e2deab96097dba79f31d807809a Reviewed-by: Martin Jones <martin.jones@nokia.com>
* Add MultiPointTouchArea element.Michael Brasser2011-10-251-0/+1
| | | | | Change-Id: I3a4f774cd96ab7f5d08e85c965f59e1416f02e0e Reviewed-by: Martin Jones <martin.jones@nokia.com>
* Rename Qt Quick-specific classes to QQuick*Kent Hansen2011-10-211-27/+27
| | | | | | | | | | | | | | | | | | | | | | The QSG (SceneGraph) prefix is too generic for Qt Quick(2)-specific classes. All the classes and files in the declarative/items directory have been renamed. In particular, for classes that are currently public, the renaming is as follows: QSGView --> QQuickView QSGCanvas --> QQuickCanvas QSGItem --> QQuickItem QSGPaintedItem --> QQuickPaintedItem The header files have been renamed accordingly (e.g. qsgview.h --> qquickview.h). Change-Id: Iac937fff81db20bb639486a793c3aeb5230b038c Reviewed-by: Kent Hansen <kent.hansen@nokia.com>
* Debugger: Remove outdated test stubKai Koehne2011-10-171-1/+0
| | | | | | | This stub is testing the QScriptEngineAgent interface, which is deprecated. Change-Id: I192a7b9aed0fa49f413bd6048e874414dab8256b Reviewed-by: Martin Jones <martin.jones@nokia.com>
* Debugger: Move debugging autotests into own folderKai Koehne2011-10-171-6/+1
| | | | | | | | This mirrors the source tree structure and makes it easier to run them all in one go. Change-Id: Ia191790eaec2c409857c41aff479d2ebd144aaf8 Reviewed-by: Kai Koehne <kai.koehne@nokia.com>
* Add missing autotests to declarative.pro.Michael Brasser2011-10-141-0/+5
| | | | | | Change-Id: Icf43fc3aa69ac80fc077318d903becf3b78cc55b Reviewed-on: http://codereview.qt-project.org/6492 Reviewed-by: Damian Jansen <damian.jansen@nokia.com>
* Tst_qsgitem2 test update inline with refactorDamian Jansen2011-10-141-0/+1
| | | | | | | | | | Change widget to window based code Make compile and pass Add license header Change-Id: Id0826bf644836654de7eff559a8ff40a55d02616 Reviewed-on: http://codereview.qt-project.org/6635 Reviewed-by: Michael Brasser <michael.brasser@nokia.com>
* Don't build empty tests.Jason McDonald2011-10-141-0/+3
| | | | | | | | | | These tests need the xmlpatterns module. If that module is not in the Qt build, then avoid building the test rather than building an empty test. Change-Id: Id0f72cfc9f818096361ecbc439196d2d5c64322e Reviewed-on: http://codereview.qt-project.org/6487 Reviewed-by: Rohan McGovern <rohan.mcgovern@nokia.com>
* Removed references to unused PULSE_TESTS variableRohan McGovern2011-10-121-3/+0
| | | | | | | | | | This has not been used for a very long time (since before QtDeclarative was merged into Qt4). Change-Id: Ie5b4578582d7b04784f11db3d8ce92ba258b782d Reviewed-on: http://codereview.qt-project.org/6484 Sanity-Review: Qt Sanity Bot <qt_sanity_bot@ovi.com> Reviewed-by: Alan Alpert <alan.alpert@nokia.com>
* Rename QDeclarativeV4 -> QV4Aaron Kennedy2011-10-121-1/+1
| | | | | | | Change-Id: Ic35e0ad1663cafe4aa535594dc3999a2d317ce0e Reviewed-on: http://codereview.qt-project.org/6301 Reviewed-by: Aaron Kennedy <aaron.kennedy@nokia.com> Sanity-Review: Aaron Kennedy <aaron.kennedy@nokia.com>
* Add DropArea item and Drag attached property.Andrew den Exter2011-10-101-0/+2
| | | | | | | | | | | | | | | | | | | Refactors drag API to improve compatibility with traditional drag and drop by reusing events and adding drop actions. Event sending is removed from MouseArea, instead the Drag object can be attached to the item that is dragged and it will send drag events when the position of that item is changed or when its active property changes. The DragTarget item is renamed to DropArea and can now communicate supported and suggested actions. Task-number: QTBUG-19747 Change-Id: I46cb77e68cf1ff32bbcbf0945facb593c9c2243c Reviewed-on: http://codereview.qt-project.org/4638 Sanity-Review: Qt Sanity Bot <qt_sanity_bot@ovi.com> Reviewed-by: Martin Jones <martin.jones@nokia.com>
* Add support for filtering VisualDataModels.Andrew den Exter2011-10-061-0/+1
| | | | | | | | | | | | | | | | | Add a VisualDataGroup element which items within a VisualDataModel can be assigned to. Setting the group property of a VisualDataModel or one of its parts models will filter the items visible within a view to just items belonging to that group. By default all items belong to an 'items' group. The VisualDataModel attached object includes properties indicating whether a item is a member of a group and its index in the group. Task-number: QTBUG-21513 QTBUG-21515 Change-Id: If3df6a359a888a6f79923775d2f78076d5e7d2cf Reviewed-on: http://codereview.qt-project.org/4115 Reviewed-by: Qt Sanity Bot <qt_sanity_bot@ovi.com> Reviewed-by: Martin Jones <martin.jones@nokia.com>
* qmlplugindump: Add test for running with -builtins.Christian Kamm2011-10-041-1/+2
| | | | | | | | | | | | | | | The main idea is to check for crashes: When instantiable C++ based QML components have uninitialized QObject * members, qmlplugindump can crash while collecting types to dump. That will make it impossible for users to use qmlplugindump and should be fixed in the responsible classes constructor. On unix it has a crash handler that tries to pinpoint which class and property caused the problem. Change-Id: Ie049cae27d94920f3d8346ca7075eba5a11c2a37 Reviewed-on: http://codereview.qt-project.org/5976 Reviewed-by: Roberto Raggi <roberto.raggi@nokia.com>
* Fix incorrect index when accumulating multiple removes.Andrew den Exter2011-10-041-0/+1
| | | | | | | | | | Don't remove the intersecting count from the current remove twice, and accumulate consecutive not just overlapping removes. Change-Id: I426d764d980ee17ad114aa03ca4089da89c6aed2 Reviewed-on: http://codereview.qt-project.org/5902 Reviewed-by: Qt Sanity Bot <qt_sanity_bot@ovi.com> Reviewed-by: Andrew den Exter <andrew.den-exter@nokia.com>
* tests for canvas and a few bug fixesCharles Yin2011-09-301-1/+1
| | | | | | Change-Id: Icbbc7f2a0fe3b908963ce18afef51e25ea0170a0 Reviewed-on: http://codereview.qt-project.org/5805 Reviewed-by: Charles Yin <charles.yin@nokia.com>
* Remove Symbian-specific code from tests.Jason McDonald2011-09-301-3/+1
| | | | | | | | | | Symbian is not a supported platform for Qt5, so this code is no longer required. Change-Id: I5cb6d3b41fbb9fa5fea6176ad949e4e7be7c30b5 Reviewed-on: http://codereview.qt-project.org/5767 Reviewed-by: Qt Sanity Bot <qt_sanity_bot@ovi.com> Reviewed-by: Rohan McGovern <rohan.mcgovern@nokia.com>
* Enable QSGTextEdit and QSGTextInput failures.Andrew den Exter2011-09-281-2/+2
| | | | | | | | | | | | | | | | Fix compilation errors and skip or expect fail any tests that don't pass. The following tasks have been created for failing tests: QTBUG-21686 QTBUG-21689 QTBUG-21690 QTBUG-21691 QTBUG-21693 Change-Id: I3f5bb275e1a207ebdf86e3d523cdeda1f943eb63 Reviewed-on: http://codereview.qt-project.org/5583 Reviewed-by: Qt Sanity Bot <qt_sanity_bot@ovi.com> Reviewed-by: Michael Brasser <michael.brasser@nokia.com>
* [tests] Fix unit test compilation, now uses QWidget.Toby Tomkins2011-09-231-1/+1
| | | | | | | | | Fixed unit test, also enabled this autotest to run. Change-Id: I92ad1a17d1fa4674a0746767d6a4100b21999a43 Reviewed-on: http://codereview.qt-project.org/5440 Reviewed-by: Qt Sanity Bot <qt_sanity_bot@ovi.com> Reviewed-by: Martin Jones <martin.jones@nokia.com>
* Remove all font examples from qpa platform testsToby Tomkins2011-09-231-1/+1
| | | | | | | | | | | Remove all font examples, and re-enable all platform example tests. Task-number: QTBUG-21415 Change-Id: I87448cedd7f03b9483e8ec4d90474afa4d62b9c2 Reviewed-on: http://codereview.qt-project.org/5417 Reviewed-by: Qt Sanity Bot <qt_sanity_bot@ovi.com> Reviewed-by: Martin Jones <martin.jones@nokia.com>
* Add auto tests for the QML minifier.Roberto Raggi2011-09-191-1/+2
| | | | | | | Change-Id: Iba821eb490ea791e9c375565985af62cef91d1f3 Reviewed-on: http://codereview.qt-project.org/4671 Reviewed-by: Qt Sanity Bot <qt_sanity_bot@ovi.com> Reviewed-by: Kent Hansen <kent.hansen@nokia.com>
* Test fixes and reenables.Michael Brasser2011-09-181-9/+9
| | | | | | | Change-Id: I85e3493855b6fefb682ddb120b15abd003fb00fd Reviewed-on: http://codereview.qt-project.org/5045 Reviewed-by: Qt Sanity Bot <qt_sanity_bot@ovi.com> Reviewed-by: Michael Brasser <michael.brasser@nokia.com>
* Re-enable commented tests.Jędrzej Nowacki2011-09-161-4/+4
| | | | | | | | | | The tests used QWidget class so widgets library have to be added to pro file. QDeclarativestates works fine. Change-Id: I55c0798a37c3a894b774ba71671569fe007a49d7 Reviewed-on: http://codereview.qt-project.org/5104 Reviewed-by: Qt Sanity Bot <qt_sanity_bot@ovi.com> Reviewed-by: Matthew Cattell <matthew.cattell@nokia.com>
* Re-enable commented QJS tests.Jędrzej Nowacki2011-09-161-2/+2
| | | | | | | | | | The tests used QWidget class so widgets library have to be added to pro file. QJSValue test already had it. Change-Id: Ib93b2e9b84dea76f5121378c13cc0e1921a4ebd9 Reviewed-on: http://codereview.qt-project.org/5101 Reviewed-by: Qt Sanity Bot <qt_sanity_bot@ovi.com> Reviewed-by: Matthew Cattell <matthew.cattell@nokia.com>
* commented out broken autotestsMatthew Cattell2011-09-141-21/+21
| | | | Change-Id: I8bc382afc90c0a1bda0aaab6ab5284560fdfa7d4
* Merge branch 'master' into refactorGunnar Sletta2011-09-121-1/+2
|\ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Conflicts: examples/declarative/cppextensions/qwidgets/qwidgets.pro examples/declarative/minehunt/main.cpp examples/declarative/minehunt/minehunt.pro src/declarative/items/context2d/qsgcontext2d.cpp src/declarative/items/qsgflickable.cpp src/declarative/items/qsgtextedit.cpp src/declarative/items/qsgtextinput.cpp src/declarative/particles/qsgangleddirection.cpp src/declarative/particles/qsgcumulativedirection.cpp src/declarative/particles/qsgcumulativedirection_p.h src/declarative/particles/qsgfollowemitter.cpp src/declarative/particles/qsgmodelparticle.cpp src/declarative/particles/qsgparticlesystem.cpp src/qtquick1/util/qdeclarativeview.h tests/auto/declarative/examples/examples.pro tests/auto/declarative/qsgfocusscope/tst_qsgfocusscope.cpp Change-Id: Ib4be2a5e742dee1a399d73da97161736f77448e5
| * Auto Unit test cases for Javascript Debugging.Aurindam Jana2011-09-051-0/+1
| | | | | | | | | | | | | | Change-Id: Iad2deee390deb916854795d27dc38d70891930f6 Reviewed-on: http://codereview.qt.nokia.com/4067 Reviewed-by: Qt Sanity Bot <qt_sanity_bot@ovi.com> Reviewed-by: Kai Koehne <kai.koehne@nokia.com>
| * Debugger: Also fix the name of the qdeclarativedebug autotestKai Koehne2011-09-021-1/+1
| | | | | | | | | | | | | | | | Change-Id: Ia9d31f9228b9d9e63eccaf2577bf24b3929e5fad Reviewed-by: Aurindam Jana <aurindam.jana@nokia.com> Reviewed-on: http://codereview.qt.nokia.com/3936 Reviewed-by: Kai Koehne <kai.koehne@nokia.com> Reviewed-by: Qt Sanity Bot <qt_sanity_bot@ovi.com>
* | fixup tests to build with refactorMatthew Cattell2011-09-091-2/+2
|/ | | | | | Change-Id: Iab4adc9e19fab67402918bb737fff2fce6c292bd Reviewed-on: http://codereview.qt-project.org/4545 Reviewed-by: Samuel Rødal <samuel.rodal@nokia.com>
* Remove V8 submodule from QtDeclarativeKent Hansen2011-08-291-2/+1
| | | | | | | | | | | | | | | | | | | | | | | QtDeclarative should now link against the QtV8 library from qtbase. The patch files have been moved to qtbase as well. Applications that use the QtDeclarative private headers may need to add the following to their .pro file: QT += v8-private This ensures that <private/v8.h> is found, which is (indirectly) included by many QtDeclarative private headers. Task-number: QTBUG-20963 Change-Id: I31e973a6fcc0c416d3b258a61c26564cee3dcd4b Reviewed-on: http://codereview.qt.nokia.com/3093 Reviewed-by: Qt Sanity Bot <qt_sanity_bot@ovi.com> Reviewed-by: Kent Hansen <kent.hansen@nokia.com>
* Deprecate QDeclarativeDebugHelper classKai Koehne2011-08-261-1/+0
| | | | | | | | | | This was a helper class for enable debugging in 4.7. Since Qt 4.8 you should just say CONFIG += declarative_debug Change-Id: I51dabaec36e175a097721570061aad38c3f828d1 Reviewed-on: http://codereview.qt.nokia.com/3507 Reviewed-by: Qt Sanity Bot <qt_sanity_bot@ovi.com> Reviewed-by: Aurindam Jana <aurindam.jana@nokia.com>
* Merge the QJSEngine and QJSValue development branch into master.Simon Hausmann2011-07-291-1/+4
| | | | | | | | | | | | This replaces the dependency to QtScript with two new builtin classes QJSValue and QJSEngine. This is still work in progress, development continues now in the master branch. Change-Id: I7f5487feb45c972f25a22b10cc81b9218b9805de Reviewed-on: http://codereview.qt.nokia.com/2299 Reviewed-by: Qt Sanity Bot <qt_sanity_bot@ovi.com> Reviewed-by: Simon Hausmann <simon.hausmann@nokia.com>
* Fix translation context for QML files.Michael Brasser2011-07-281-0/+1
| | | | | | | | | | | Use the base file name as done in QtQuick 1, rather than using the entire path. This also fixes QTBUG-17255 for QtQuick 2. Change-Id: Ia27f6539f82d6caf6e7060b89ff1996d42ffb9cb Reviewed-on: http://codereview.qt.nokia.com/2246 Reviewed-by: Qt Sanity Bot <qt_sanity_bot@ovi.com> Reviewed-by: Michael Brasser <michael.brasser@nokia.com>
* Extract all QtQuick 1 elements into a separate library/plugin.Martin Jones2011-07-121-27/+1
| | | | | | Change-Id: I41a280de2739ee08202f4be2519e5012870090f2 Reviewed-on: http://codereview.qt.nokia.com/1391 Reviewed-by: Martin Jones <martin.jones@nokia.com>
* Cleanup autotest pro fileAaron Kennedy2011-06-151-98/+109
|
* Update auto testsAaron Kennedy2011-06-141-1/+1
| | | | | Following merge, and after removing all QtScript usage from QDeclarativeEngine.
* Allow methods to be changed by debuggerAaron Kennedy2011-06-081-0/+4
|
* Initial V8 integrationAaron Kennedy2011-06-061-1/+2
|
* qmlvisual is broken and unmaintained. Remove it.Martin Jones2011-05-301-1/+0
| | | | Change-Id: I9d522d3db81586da8f24be2b3becfdbf2968d933
* Add autotests to .pro fileYann Bodson2011-05-171-0/+2
|
* Fix QSGBorderImage and QSGAnimatedImage autotestsYann Bodson2011-05-161-0/+1
|
* tests: mark tst_qsgitem as a private-testRohan McGovern2011-05-121-3/+1
| | | | | | | This test uses private symbols. Reviewed-by: Jason McDonald Change-Id: I026f4d00be5f53203d0b155e08533474cc4d9605
* Initial import from qtquick2.Qt by Nokia2011-04-271-2/+22
| | | | | Branched from the monolithic repo, Qt qtquick2 branch, at commit a4a585d2ee907746682846ae6e8a48e19deef469
* Initial import from the monolithic Qt.Qt by Nokia2011-04-271-0/+82
This is the beginning of revision history for this module. If you want to look at revision history older than this, please refer to the Qt Git wiki for how to use Git history grafting. At the time of writing, this wiki is located here: http://qt.gitorious.org/qt/pages/GitIntroductionWithQt If you have already performed the grafting and you don't see any history beyond this commit, try running "git log" with the "--follow" argument. Branched from the monolithic repo, Qt master branch, at commit 896db169ea224deb96c59ce8af800d019de63f12