summaryrefslogtreecommitdiffstats
path: root/tests/auto
Commit message (Collapse)AuthorAgeFilesLines
* Merge branch 'kinetic-declarativeui' of ↵Alan Alpert2009-10-282-1/+28
|\ | | | | | | git@scm.dev.nokia.troll.no:qt/kinetic into kinetic-declarativeui
| * missing commitWarwick Allison2009-10-281-0/+27
| |
| * Mac-safe sanity check.Warwick Allison2009-10-281-1/+1
| | | | | | | | QT-2398 fix
* | Add missing fileAlan Alpert2009-10-281-0/+8
|/ | | | Task-number: QT-2401
* Merge branch 'kinetic-declarativeui' of ↵Aaron Kennedy2009-10-282-4/+44
|\ | | | | | | git@scm.dev.nokia.troll.no:qt/kinetic into kinetic-declarativeui
| * Merge branch 'kinetic-declarativeui' of ↵Warwick Allison2009-10-2832-7/+98
| |\ | | | | | | | | | git@scm.dev.nokia.troll.no:qt/kinetic into kinetic-declarativeui
| * | Test visibility.Warwick Allison2009-10-282-4/+16
| | | | | | | | | | | | Add refs back to JIRA items.
| * | Merge branch 'kinetic-declarativeui' of ↵Warwick Allison2009-10-282-0/+14
| |\ \ | | | | | | | | | | | | git@scm.dev.nokia.troll.no:qt/kinetic into kinetic-declarativeui
| * \ \ Merge branch 'kinetic-declarativeui' of ↵Warwick Allison2009-10-278-2/+102
| |\ \ \ | | | | | | | | | | | | | | | git@scm.dev.nokia.troll.no:qt/kinetic into kinetic-declarativeui
| * | | | Test remote QML contentWarwick Allison2009-10-271-0/+28
| | | | | | | | | | | | | | | | | | | | (test data will appear on qt-test-server.qt-test-net shortly)
* | | | | Make test more robustAaron Kennedy2009-10-281-8/+17
| |_|_|/ |/| | |
* | | | Make more mac friendlyAaron Kennedy2009-10-2829-6/+51
| | | |
* | | | WhoopsAaron Kennedy2009-10-281-1/+0
| | | |
* | | | Ensure all tests appear in pro fileAaron Kennedy2009-10-281-0/+3
| | | |
* | | | Test for QT-2373Aaron Kennedy2009-10-283-0/+44
| |_|/ |/| | | | | | | | Ensure that transient binding errors are not displayed.
* | | Support return values in synthesized methodsAaron Kennedy2009-10-272-0/+14
| |/ |/|
* | Alias cleanup testcaseAaron Kennedy2009-10-272-0/+41
| |
* | Don't crash when requesting an attached object for non-QML objectAaron Kennedy2009-10-273-0/+41
| |
* | Error when a QVariant property is used as a grouped propertyAaron Kennedy2009-10-275-2/+20
|/ | | | This crashed as the metatype of QVariant is -1.
* Merge branch 'kinetic-declarativeui' of ↵Aaron Kennedy2009-10-262-4/+95
|\ | | | | | | git@scm.dev.nokia.troll.no:qt/kinetic into kinetic-declarativeui
| * Add support for value interceptors to the DOM.Michael Brasser2009-10-261-3/+27
| |
| * Merge branch '4.6' of git@scm.dev.nokia.troll.no:qt/qt into ↵Michael Brasser2009-10-261-1/+68
| |\ | | | | | | | | | kinetic-declarativeui
| | * Optimize QGraphicsRotation's use of QMatrix4x4Rhys Weatherley2009-10-261-1/+68
| | | | | | | | | | | | | | | | | | | | | | | | Previous code was creating a full 3D rotation matrix and then projecting back to 2D. This change combines the two steps into one to avoid calculating matrix components that will be dropped. Reviewed-by: Sarah Smith
* | | Merge branch 'qscriptprogram' of ↵Aaron Kennedy2009-10-262-1/+193
|\ \ \ | |/ / |/| | | | | | | | | | | | | | | | | git@scm.dev.nokia.troll.no:qt/khansens-qt-script-program into kinetic-declarativeui Manually merged src/declarative/qml/qmlexpression.cpp src/script/api/qscriptengine.cpp src/script/api/qscriptengine.h
| * | Merge branch '4.6' of scm.dev.nokia.troll.no:qt/qt into qscriptprogramKent Hansen2009-10-2365-1178/+4532
| |\ \ | | |/ | | | | | | | | | | | | Conflicts: src/script/api/qscriptengine.cpp tests/auto/qscriptengineagent/tst_qscriptengineagent.cpp
| * | Refactor QScriptProgram and related APIKent Hansen2009-10-232-10/+122
| | | | | | | | | | | | | | | | | | | | | Get rid of QScriptEngine::compile(); you pass arguments to the QScriptProgram constructor instead. evaluate() will lazily compile the program the first time it is evaluated, then use the cached, compiled form on subsequent calls.
| * | add some autotests for QScriptProgramKent Hansen2009-10-231-0/+81
| | |
* | | Merge branch '4.6' of git@scm.dev.nokia.troll.no:qt/qt into ↵Michael Brasser2009-10-2535-231/+1524
|\ \ \ | | |/ | |/| | | | | | | | | | | | | kinetic-declarativeui Conflicts: tools/qdoc3/cppcodemarker.cpp
| * | Better sql unicode tests (still not working correctly tho).Bill King2009-10-232-11/+9
| | |
| * | Merge branch '4.6' of git@scm.dev.nokia.troll.no:qt/qt into 4.6Kurt Korbatits2009-10-2216-59/+938
| |\ \
| | * | QHttp: Fix bug related to SSL and big POST dataMarkus Goetz2009-10-221-7/+36
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | QHttp is deprecated, but let's be nice and fix this. POST/PUT now properly works over HTTPS without buffering the whole data when it is not needed. Reviewed-by: Peter Hartmann
| | * | QSslSocket: Trigger a SSL transmission when reading from the socket.Markus Goetz2009-10-221-0/+61
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | In certain cases a SSL transfer stalled when a readBufferSize was set. This change triggers a SSL transmission when there is data on the socket waiting to be decrypted. Task-number: QTBUG-3860 Reviewed-by: Thiago
| | * | Implemented gesture event delivery and propagation inside QGraphicsView.Denis Dzyubenko2009-10-221-20/+114
| | | | | | | | | | | | | | | | Reviewed-by: Thomas Zander
| | * | Add QGestureEvent::mapToScene for better graphicsView integrationThomas Zander2009-10-221-0/+26
| | | |
| | * | Fix for the gestures autotest.Denis Dzyubenko2009-10-221-8/+6
| | | | | | | | | | | | | | | | Reviewed-by: trustme
| | * | Improvements for gesture event deliveryDenis Dzyubenko2009-10-221-2/+64
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | When delivering GestureOverride events by default both the event and individual gestures will be ignored. We also store the acceptance state of individual gesture in the event and not in the gesture object, along with its target. Reviewed-by: Thomas Zander
| | * | Improving gesture event delivery for widgets.Denis Dzyubenko2009-10-221-8/+176
| | | | | | | | | | | | | | | | Reviewed-by: trustme
| | * | Fixed gesture event delivery when several gestures are triggered.Denis Dzyubenko2009-10-221-6/+39
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | When there are two different gestures are being triggered and they are supposed to be sent to different widgets, don't stop event "propagation" when the first event is successfully delivered. Reviewed-by: trustme
| | * | Improved gesture event filtering inside QGraphicsView for QGraphicObjectsDenis Dzyubenko2009-10-221-55/+160
| | | | | | | | | | | | | | | | Reviewed-by: trustme
| | * | Extended an autotest for gestures.Denis Dzyubenko2009-10-221-0/+56
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Make sure that when a gesture recognizer explicitely sets the targetObject to a QGraphicsObject, we deliver it only to the object and will not try to propagate. Reviewed-by: trustme
| | * | Description: Auto test fixes for Windows Mobile platformninerider2009-10-221-5/+43
| | | | | | | | | | | | | | | | Reviewed-by: Joerg
| | * | Merge branch 'origin/4.6' into widgets-team/4.6Olivier Goffart2009-10-227-1/+94
| | |\ \
| | | * | QtScript: Compatibility with 4.5Olivier Goffart2009-10-221-0/+24
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | We must register the same type as they were registered in Qt 4.5 Reported on qt4-preview-feedback mailing list. Reviewed-by: Kent Hansen
| | | * | qfiledialog2 added to tests/auto/auto.proJoerg Bornemann2009-10-221-0/+1
| | | | | | | | | | | | | | | | | | | | Reviewed-by: alexis
| | | * | consider message id when comparing messagesOswald Buddenhagen2009-10-221-0/+6
| | | | |
| | | * | id-based: use source strings instead of empty translations only for ↵Oswald Buddenhagen2009-10-221-0/+1
| | | | | | | | | | | | | | | | | | | | unfinished messages
| | | * | QDom autotests: make test fail instead of time outPeter Hartmann2009-10-221-0/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | introduce a QFAIL for now until problem is fixed Reviewed-by: Carlos Duclos
| | | * | Fix a bug in QGraphicsRotation related to 2D projectionsRhys Weatherley2009-10-221-1/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | The projection to 2D needs to be done when the rotation is applied, not after all transformations have been applied. Reviewed-by: trustme
| | * | | Merge branch '4.6' of git@scm.dev.nokia.troll.no:qt/qt into 4.6Marius Bugge Monsen2009-10-215-100/+129
| | |\ \ \
| | * | | | Moved private function to test which graphic items is in front of the otherLeonardo Sobral Cunha2009-10-201-0/+43
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | This function is moved to graphicsitem private because it is needed by multi-touch event handling and is not specific to bsptreeindex. Reviewed-by: bnilsen