summaryrefslogtreecommitdiffstats
path: root/src/quicktestlib/quicktestevent.cpp
Commit message (Collapse)AuthorAgeFilesLines
* Remove QUICK_TEST_SCENEGRAPH.HEADmasterRobin Burchell2013-06-111-24/+6
| | | | | | | | This is outdated (QSGView and friends are long gone) and not really needed given that Qt 5 has its own copy of this code living in qtdeclarative. Change-Id: I947366ce280a87c59c9e60f6665f8c6ab52b832f Reviewed-by: Matthew Vogt <[email protected]>
* Replaced Nokia copyrights and contact detailsTeemu Kaukoranta2013-05-281-3/+2
| | | | | | | | | | | | | | | | | | | | | | | | | | | Replaced Nokia copyrights with correct Digia copyrights. Text in front of copyright is now retained: ** File is part of Foo, Copyright Nokia... -> ** File is part of Foo, Copyright Digia... Replaced Nokia contact details with Digia's. Removing "All Rights Reserved" no longer leaves an empty line. Used the following command: find . -path '*/3rdparty/*' -prune -o -exec grep -ilI -E '.*Copyright.*Nokia.*|.*Contact.*Nokia.*' {} \; | tee >(xargs sed -i -r '1,50 { /INdT/ !{ s/(^[ \t:#*]*)([a-z ]*)(Copyright.*Nokia.*)/ \1\2Copyright \(C\) 2013 Digia Plc and\/or its subsidiary\(-ies\)\./I } }') >(xargs sed -i -r '1,50 s/(^[ \t:#*]*)(.*info@qt\.nokia\.com.* |.*INSERT EMAIL ADDRESS.*|.*qt-info@nokia\.com.* |.*qt-label1@nokia\.com.*|.*https:\/\/p.rizon.top:443\/http\/qt\.nokia\.com\/contact.* |.*qt-sales@nokia\.com.*) /\1Contact: https:\/\/p.rizon.top:443\/http\/www\.qt-project\.org\/legal/I') >(xargs sed -i -r '1,50{/(^[ \t:#*]*)(all rights reserved.*)/Id}') Change-Id: I09634a31c17fc328d04265bd87e7f4a5ef795760 Reviewed-by: Janne Anttila <[email protected]> Reviewed-by: Sergio Ahumada <[email protected]>
* Fixed licensesTeemu Kaukoranta2013-05-281-15/+16
| | | | | | | | | Updated licenses using replace-licenses.zsh from mkdist repo. Possible copyright and contact changes will come later. Change-Id: Ib9f0616600aa0a3461a1aa08b9da8545a85259e9 Reviewed-by: Sergio Ahumada <[email protected]> Reviewed-by: Janne Anttila <[email protected]>
* Generate real mouse events on mouseMoveMatt Vogt2013-01-081-5/+21
| | | | | | | | | | | | | | Actual mouseMove events are necessary to properly simulate the behavior of complex components such as Flickable. Instead of just manipulating the cursor position, record the current button state so that we can generate move events that are not suppressed. In addition, add a mouseStartDrag() convenience function so that client code does not need to be aware of QML's interpretation of the drag threshold value. Change-Id: I1ded27f976846660a0ec91906d0b2a6372efccd5 Reviewed-by: Robin Burchell <[email protected]>
* Make it possible to use QtQuickTest with QtQuick2Rhys Weatherley2011-02-151-19/+50
|
* Fix style problemRhys Weatherley2010-12-141-1/+1
|
* Simulation of keyboard and mouse eventsRhys Weatherley2010-12-141-0/+227