summaryrefslogtreecommitdiffstats
path: root/src/testlib/qtesttouch.h
Commit message (Collapse)AuthorAgeFilesLines
* Update license headers again.Jason McDonald2009-09-091-4/+4
| | | | Reviewed-by: Trust Me
* Update tech preview license header for files that are new in 4.6.Jason McDonald2009-08-311-13/+13
| | | | Reviewed-by: Trust Me
* Update contact URL in license headers.Jason McDonald2009-08-121-1/+1
| | | | Reviewed-by: Trust Me
* Fix old/missing license headers from multitouch+gestures merge.Jason McDonald2009-06-291-2/+2
| | | | Reviewed-by: Trust Me
* Fixed link error of some test tools due to multiply definedRohan McGovern2009-06-271-0/+1
| | | | QTest::touchEvent().
* Add QTouchEvent::DeviceType and deviceType()Bradley T. Hughes2009-06-241-7/+11
| | | | | | | | | This enum indicates what kind of device generated the touch event (TouchScreen or TouchPad). We use this information to control how touch events are sent, specifically we restrict touch events to a single widget/QGraphicsItem on touch-pads, since there is no direct relationship between the physical touch location on the pad and the on- using the touch-pad).
* compile after small API changesBradley T. Hughes2009-06-181-3/+2
|
* remove duplicated code and API (merge QTouchEvent and QGraphicsSceneTouchEvent)Bradley T. Hughes2009-06-111-3/+3
| | | | | | | | | the API for these 2 classes is identical, the implementation is almost identical, they share the same data structures, so bite the bullet and merge them. this means we go back to using screenPos() instead of globalPos() again
* s,RawKeyEvent,RawTouchEvent,gBradley T. Hughes2009-06-081-2/+2
| | | | how embarassing :/
* Fix linking on WindowsBradley T. Hughes2009-06-081-1/+2
| | | | Need to move the extern declaration out of the QtTest namespace
* Compile after API updatesBradley T. Hughes2009-06-051-38/+20
|
* Improved touch event emulation code in testlib.Denis Dzyubenko2009-06-031-26/+24
| | | | | | | | * Added a context for the touch positions in press(), move(), release() functions. * Sending RawTouch events to QApplication object if the target widget is not specified.
* Moved the QTest::touchEvent() implementation to testlib.Denis Dzyubenko2009-06-031-0/+168
Modified it the same time to remove refcount and static variable.