summaryrefslogtreecommitdiffstats
path: root/examples/gestures
Commit message (Collapse)AuthorAgeFilesLines
* Fixed pinching in the imagegestures example.Denis Dzyubenko2009-11-051-6/+5
| | | | | | | | | When the gesture finishes it might not necessery set the ScaleFactorChanged flag. Also fixed the touch-event based pinch gesture. Reviewed-by: trustme
* Small improvement in the imagegesture example.Denis Dzyubenko2009-11-051-1/+1
| | | | | | | | | We don't actually need to fill the backgroup in the example as it will be done by Qt. And when double-clicked we need to reset the scale factor properly. Reviewed-by: trustme
* Implemented QSwipeGesture recognizer using touch events.Denis Dzyubenko2009-11-051-8/+10
| | | | Reviewed-by: Bradley T. Hughes
* Mac: pinch gesture scales to fast and event below zeroRichard Moe Gustavsen2009-11-042-4/+10
| | | | | | | Make the math correct. Plus, update the imagegesture example. Rev-By: denis
* Compile fix after the last gesture api changeDenis Dzyubenko2009-11-031-3/+3
| | | | Reviewed-by: trustme
* Gesture api review.Denis Dzyubenko2009-11-031-3/+3
| | | | | | Changes to the gesture api after the review. Reviewed-by: Jasmin Blanchette
* Implemented pinch gesture recognizer.Denis Dzyubenko2009-11-031-11/+7
| | | | Reviewed-by: trustme
* Fixed the imagegestures project file.Denis Dzyubenko2009-11-031-3/+3
| | | | Reviewed-by: trustme
* Compile fix.Denis Dzyubenko2009-10-221-3/+3
| | | | | | | QPanGesture was changed to use QPointF instead of QSizeF, also need to change all usages of the pan gesture. Reviewed-by: trustme
* Doc: Documentation for gesture features. Still a moving target.David Boddie2009-10-163-12/+13
| | | | Reviewed-by: Trust Me
* Doc: Moving the Image Gestures example.David Boddie2009-10-167-1/+1
| | | | Reviewed-by: Trust Me
* Doc: Gesture API documentation review and improvements.David Boddie2009-10-165-37/+133
| | | | Reviewed-by: Trust Me
* compile fix with namepaceshjk2009-10-151-0/+2
|
* Mac: implement gestures conforming to the new APIRichard Moe Gustavsen2009-10-131-4/+4
|
* Doc: Gesture API documentation review.David Boddie2009-10-121-0/+2
| | | | Reviewed-by: Trust Me
* A new implementation of the Gesture API.Denis Dzyubenko2009-10-095-273/+64
| | | | | | | Implemented gestures using gesture events and separate QGesture/QGestureRecognizer classes. Reviewed-by: trustme
* doc: Fixed numerous qdoc errors.Martin Smith2009-10-021-1/+1
|
* Fix signal/slot connection bugRichard Moe Gustavsen2009-09-211-7/+2
| | | | | | A signal was renamed. Update the example to reflect this. Rev-By: Trustme. Example fix only.
* Doc: First part of my review of the gestures overview.David Boddie2009-09-091-2/+8
| | | | Reviewed-by: Trust Me
* Update license headers again.Jason McDonald2009-09-095-20/+20
| | | | Reviewed-by: Trust Me
* Added the install path for the gestures imageviewer example.Denis Dzyubenko2009-09-031-6/+6
| | | | Reviewed-by: trustme
* Added a property to QPinchGesture to specify what exactly changed.Denis Dzyubenko2009-09-031-2/+2
| | | | | | | Added QPinchGesture::whatChanged() which specifies which property in the pinch gesture changed - the scale factor or rotation angle or both. Reviewed-by: Bradley T. Hughes
* Improved the gesture api.Denis Dzyubenko2009-09-031-2/+4
| | | | | | | | | | | | | | Made properties in QPanGesture and QPinchGesture more consistent - all of them have value, lastValue and totalValue. Documented that totalValue means the value from the beginning of the gesture, while the 'value' - from the beginning of the current sequence. This is especially useful on Windows when you zoom with two fingers and then release one finger and touch again to continue zooming. Also added a workaround for native Rotate gesture on Windows which contain a 'bad' value in the first WM_GESTURE message in every gesture sequence. Reviewed-by: Bradley T. Hughes
* Update tech preview license header for files that are new in 4.6.Jason McDonald2009-08-315-65/+65
| | | | Reviewed-by: Trust Me
* Gestures: Implement swipe gestureRichard Moe Gustavsen2009-08-271-3/+12
| | | | Note: if this fails building on any platform, talk to Denis!
* Mac: Fix Imageviewer example, and bugfix gesturesRichard Moe Gustavsen2009-08-272-249/+78
| | | | Rev-By: denis
* Cocoa: Implement single touch panRichard Moe Gustavsen2009-08-272-5/+6
|
* Update contact URL in license headers.Jason McDonald2009-08-125-5/+5
| | | | Reviewed-by: Trust Me
* Fixed compilation of the gestures/imagewidget example.Denis Dzyubenko2009-08-063-12/+35
| | | | | | | Also improved an example a bit to optionally support TapAndHold gesture with plain mouse events. Reviewed-by: trustme
* Added the license header to the example.Denis Dzyubenko2009-08-042-0/+82
|
* Removed the QTapAndHoldGestureDenis Dzyubenko2009-08-045-8/+151
| | | | | | | | Moved the gesture implementation to the imageviewer example as it cannot be fully implemented in a crossplatform way - for example on Windows tap and hold is a system gesture that is transparent to the application. Reviewed-by: trustme
* Modify imagewidget example so it works with new APIRichard Moe Gustavsen2009-08-041-31/+15
|
* Show open directory dialog for new gesture exampleRichard Moe Gustavsen2009-07-311-0/+3
| | | | RevBy: denis
* Refactored gesture apiDenis Dzyubenko2009-07-0282-14645/+59
| | | | | | | | | | | | | | | | Rewritten the api almost from scratch, making it simplier and more flexible at the same time. The current implementation will not have complex gseturemanager class inside Qt, but the QGesture base class, which represents both a gesture recognizer and a gesture itself with a set of properties. A set of common gestures that can use used in third-party applications (and in Qt itself internally) is supposed to be found in qstandardgestures.h, and a base class for user-defined gestures is in qgesture.h Gesture implementation for Pan on Windows7 has also been added as a reference implementation for platform gestures.
* Fix license headers after multitouch+gestures merge.Jason McDonald2009-06-2948-240/+240
| | | | | | | Commercial license headers belong in source packages only. The repo must have the pre-release license headers. Reviewed-by: Trust Me
* Merge branch 'master' of git@scm.dev.nokia.troll.no:qt/qtJason McDonald2009-06-291-2/+1
|\
| * Make compile when -no-webkit is passed to configureBill King2009-06-291-2/+1
| |
* | Fix old/missing license headers from multitouch+gestures merge.Jason McDonald2009-06-2952-147/+311
|/ | | | Reviewed-by: Trust Me
* Cleanup includes in public headers.Bradley T. Hughes2009-06-261-0/+1
| | | | We don't want to pull in too much if we can avoid it.
* Don't build the pannablewebview example if webkit is disabledBradley T. Hughes2009-06-261-1/+4
|
* Don't build the gesture browser "example" if webkit or svg are disabledBradley T. Hughes2009-06-231-1/+2
|
* Added gesture enabled browser demo to project file.Denis Dzyubenko2009-05-1211-0/+531
| | | | Added missing files for building the demo.
* Improved finding a scrollable QWebFrame in browser demo.Denis Dzyubenko2009-05-111-0/+7
|
* Added support to pan frames inside browser window.Denis Dzyubenko2009-05-112-9/+16
|
* Added inertial to the browser demo.Denis Dzyubenko2009-05-112-3/+29
|
* Added a gesture-enabled browser demo.Denis Dzyubenko2009-05-1156-0/+12906
|
* Added a dummy button on top of the webview to show how input eventsDenis Dzyubenko2009-05-111-0/+5
| | | | are delayed.
* Added pannablewebview example.Denis Dzyubenko2009-05-113-1/+50
|
* Removed obsolete Qt::AA_EnableGestures attribute from example apps.Denis Dzyubenko2009-05-113-3/+0
|
* fix link error on windowsBradley T. Hughes2009-05-111-1/+1
|