summaryrefslogtreecommitdiffstats
path: root/tests/auto/declarative/qmlecmascript
Commit message (Collapse)AuthorAgeFilesLines
* Change class prefix to from QmlXXX to QDeclarativeXXX, QmlGraphicsXXX to ↵Warwick Allison2010-02-2472-3178/+0
| | | | QDeclarativeXXX.
* Merge branch 'master' of scm.dev.nokia.troll.no:qt/qt-qmlWarwick Allison2010-02-231-3/+7
|\ | | | | | | | | | | Conflicts: src/declarative/util/qmlanimation.cpp src/declarative/util/qmlxmllistmodel.cpp
| * QmlExpression API reviewAaron Kennedy2010-02-231-3/+7
| |
* | Remove QML_DEFINE_... macros, now use QML_REGISTER_... macros calls.Warwick Allison2010-02-233-6/+14
|/ | | | Task-number: QT-2798
* Replace QmlList* and QList* support with a single QmlListProperty typeAaron Kennedy2010-02-223-34/+11
| | | | | | | | As a value type QmlListProperty doesn't consume any memory in the object. It also has a companion QmlListReference class that is part of the public API for C++ developers to interact with that also manages memory issues that existed with previous solutions (if the containing QObject was destroyed it left a dangling pointer).
* Merge branch 'master' of scm.dev.nokia.troll.no:qt/qtMartin Jones2010-02-183-3/+3
|\ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Conflicts: mkspecs/linux-g++-x11egl/qplatformdefs.h src/declarative/qml/qmldom.h src/declarative/util/qmlview.cpp src/declarative/util/qmlview.h tools/qdoc3/cppcodemarker.cpp tools/qmldebugger/standalone/canvasframerate.cpp tools/qmldebugger/standalone/engine.cpp tools/qmldebugger/standalone/expressionquerywidget.cpp tools/qmldebugger/standalone/expressionquerywidget.h tools/qmldebugger/standalone/objectpropertiesview.cpp tools/qmldebugger/standalone/objectpropertiesview.h tools/qmldebugger/standalone/objecttree.cpp tools/qmldebugger/standalone/qmldebugger.cpp tools/qmldebugger/standalone/watchtable.cpp tools/qmldebugger/standalone/watchtable.h
| * Merge branch 'master' of scm.dev.nokia.troll.no:qt/oslo-staging-1 into ↵Qt Continuous Integration System2010-02-163-3/+3
| |\ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | master-integration * 'master' of scm.dev.nokia.troll.no:qt/oslo-staging-1: (42 commits) doc: Fixed some qdoc errors. doc: Fixed some qdoc errors. Fix copyright year. Fix broken license headers. doc: Fixed some qdoc errors. Reusing sheets on Mac OS X 10.5 & above shows painting artifacts. doc: Fixed some qdoc errors. QNetworkAccessManager: add method to send custom requests doc: Fixed some qdoc errors. Optimization: Avoid calling out to public API function Mac: submenu shows up at the wrong position Add operator< and qHash for QSharedPointer and fix operator-. Don't use QSystemLocale if QT_NO_SYSTEMLOCALE (like QWS) Don't use QSystemLocale if QT_NO_SYSTEMLOCALE (like QWS) Optimized QLocale to access system locale on demand. Fix QRegion under Mac OS X. update according to Thiago's comments. Changes: add functionality for dbus auto start to qt Add license header to this file readdir64 is not available on HP-UX ...
| | * Fix copyright year.Jason McDonald2010-02-163-3/+3
| | | | | | | | | | | | Reviewed-by: Trust Me
* | | Merge branch 'master' of scm.dev.nokia.troll.no:qt/qt-qml into ↵Qt Continuous Integration System2010-02-171-5/+4
|\ \ \ | |/ / |/| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | master-integration * 'master' of scm.dev.nokia.troll.no:qt/qt-qml: (47 commits) Add missing NOTIFY signals to various QML item class properties Fix currentIndex after itemsMoved() qmlviewer: build on symbian Revert "Replace QList<>* support with QmlListProperty" Declare QmlXmlListModelRole meta type before any code uses it. Make compile on Symbian (call Q_DECLARE_METATYPE earlier) Conditionally link webkit on wince Revert "Run dos2unix on these files." Expose LayoutItem documentation Fix palette on the N900 Fix QTBUG-8090, improve original patch effectiveness. Replace QList<>* support with QmlListProperty Run dos2unix on these files. Remove standalone QmlDebugger. It is now only available through the Mobility 404 Fix crash in QmlMetaProperty that could occur when using value-type QML binding optimizer crash QML binding optimizer crash Fix crash in QML binding optimizer Don't delete binding directly ...
| * | Make tst_qmlecmascript::dynamicDestruction stableAaron Kennedy2010-02-151-5/+4
| |/
* | Fix qml test breakage of 12180c397a2007970978033928b4b5b12efad7c6Friedemann Kleint2010-02-161-6/+6
|/ | | | Fix messages in test data.
* Improve stability of tst_qmlecmascript::dynamicDestructionAaron Kennedy2010-02-112-3/+7
| | | | Tweak timing to be more forgiving to system load.
* Missing fileAaron Kennedy2010-02-101-0/+25
|
* TestAaron Kennedy2010-02-101-0/+17
|
* Revert "Replace QList<>* support with QmlListProperty"Martin Jones2010-02-102-5/+5
| | | | This reverts commit d914555badcd4761864657e1e335e657b791453f.
* Replace QList<>* support with QmlListPropertyAaron Kennedy2010-02-092-5/+5
|
* Allow objects to be shared between QmlEnginesAaron Kennedy2010-02-082-0/+29
| | | | QTBUG-7957
* Re-add accidentally deleted fileAaron Kennedy2010-02-041-0/+6
|
* Merge branch 'kinetic-declarativeui' of scm.dev.nokia.troll.no:qt/kinetic ↵Bea Lam2010-02-033-0/+44
|\ | | | | | | into kinetic-declarativeui
| * Missing filesAaron Kennedy2010-02-033-0/+44
| |
* | Disallow ids that start with uppercase letters and update docs andBea Lam2010-02-0314-53/+48
|/ | | | | | examples accordingly. Task-number: QT-2786
* Convert lists to variants on assignment.Aaron Kennedy2010-01-282-1/+21
| | | | QTBUG-5675
* Support builtin string converters in every contextAaron Kennedy2010-01-283-2/+298
| | | | QTBUG-6919
* Assigning undefined resets QObject propertiesAaron Kennedy2010-01-283-1/+50
|
* Test QML doesn't hijack JS ObjectAaron Kennedy2010-01-252-0/+25
| | | | QTBUG-5759
* Implement custom QML slot invokation logicAaron Kennedy2010-01-154-3/+453
| | | | | | | | Previously QML was inefficiently forwarding the task of invoking Qt slots to QScript. QML does not implement the more advanced argument coercian of QScript and does not support method overloading. These two features are only needed to support legacy C++ classes (of which QML has none), and are not worth the perf cost to support.
* missed fileWarwick Allison2010-01-111-0/+7
|
* Merge branch 'kinetic-declarativeui' of ↵Warwick Allison2010-01-111-1/+8
|\ | | | | | | git@scm.dev.nokia.troll.no:qt/kinetic into kinetic-declarativeui
| * Use QMetaObject::disconnectOne() in QMLAaron Kennedy2010-01-111-1/+8
| | | | | | | | QTBUG-6781
* | Merge branch 'kinetic-declarativeui' of ↵Warwick Allison2010-01-111-0/+9
|\ \ | |/ | | | | git@scm.dev.nokia.troll.no:qt/kinetic into kinetic-declarativeui
| * Don't double function'ize dynamic QML functionsAaron Kennedy2010-01-111-0/+9
| |
* | Don't use a virtual signal - moc complains.Warwick Allison2010-01-111-1/+2
|/
* QTBUG-6507 appears fixed (don't know when)Warwick Allison2010-01-112-4/+17
|
* Another dynamic method autotestAaron Kennedy2010-01-093-0/+26
|
* Merge branch 'kinetic-declarativeui' of scm.dev.nokia.troll.no:qt/kinetic ↵Aaron Kennedy2009-12-183-0/+22
|\ | | | | | | into kinetic-declarativeui
| * Add autotest for d169873541ca6f6725e9ce5bfbbf9941f1823a1f.Michael Brasser2009-12-173-0/+22
| |
* | Fix deferred property bugsAaron Kennedy2009-12-183-4/+19
|/ | | | | Previously deferred properties would fail if any of the sub objects used bindings or QmlParserStatus. Whoops.
* QTBUG-6781 testcaseAaron Kennedy2009-12-142-0/+32
|
* Throw error when attempting to write to a non-existant property via script.Michael Brasser2009-12-113-0/+6
|
* Throw error when attempting to write to a read-only property via script.Michael Brasser2009-12-113-1/+7
|
* Missed fileWarwick Allison2009-12-071-0/+8
|
* test bugWarwick Allison2009-12-041-0/+13
|
* Support array-literal Script::source valuesAaron Kennedy2009-11-297-0/+112
|
* Use console.log, not print.Warwick Allison2009-11-232-2/+2
|
* Rename QML Object to QtObjectAaron Kennedy2009-11-1911-19/+19
|
* Output error when a binding returns undefinedAaron Kennedy2009-11-112-3/+24
|
* Self-test: Check that errors are caughtWarwick Allison2009-11-091-0/+1
| | | | (currently segfaults due to QTBUG-5577)
* Remove "to" limit on minor version.Warwick Allison2009-11-051-6/+6
| | | | | | QML_DEFINE_TYPE etc. now define just the initial support version, with support in all future versions being thus implied. QTBUG-5421
* Merge branch 'kinetic-declarativeui' of ↵Warwick Allison2009-10-303-0/+31
|\ | | | | | | | | | | | | | | | | git@scm.dev.nokia.troll.no:qt/kinetic into kinetic-declarativeui Conflicts: src/declarative/qml/qmlcomponentjs.cpp src/declarative/qml/qmlcomponentjs_p.h src/declarative/qml/qmlcomponentjs_p_p.h
| * Add attached properties typeinfoAaron Kennedy2009-10-291-0/+1
| |