summaryrefslogtreecommitdiffstats
path: root/src/gui/kernel/qgesturemanager_p.h
Commit message (Collapse)AuthorAgeFilesLines
* More improvement to gesture propagation (still no graphicsview).Denis Dzyubenko2009-05-181-1/+3
|
* implemented gestures support in graphicsview for QGraphicsItems andDenis Dzyubenko2009-05-181-4/+3
| | | | | | QGraphicsProxyWidgets. This is still work-in-progress.
* Don't export private class QGestureManagerDenis Dzyubenko2009-05-181-1/+1
|
* Improved gesture propagation.Denis Dzyubenko2009-05-111-1/+2
| | | | | | | | | | | Each gesture can now be accepted separately and not accepted gestures will be propagated to parent widget that are subscribed to them. Added an internal flag to specify that gesture is a "singleshot" - aka if the gesture is not continious and will not have a GestureStarted state, but only GestureFinished. Asynchronous gestures still need to fixed, as well as QGraphicsView.
* Improved gesture target widget detection.Denis Dzyubenko2009-05-111-4/+2
| | | | | | | | | | | | Gesture is now associated with a target widget and whenever several gesture events occur at the same time if they are supposed to be handled by different widgets, each widget will receive only gestures related to itself. For example this makes possible to use gesture framework with multitouch when user interacts with two widgets at the same time. GraphicsView implements is not implemented yet.
* Oops, we should replay mouse events to the same widget that was supposedDenis Dzyubenko2009-05-111-0/+2
| | | | to receive them.
* Generalized gesture filtering code to allow handling not only mouseDenis Dzyubenko2009-05-111-1/+1
| | | | events in gesture recognizers.
* Removed all weird qHash usage for gesture identification.Denis Dzyubenko2009-05-111-1/+11
|
* Added a QApplication::eventDeliveryDelayForGestures property thatDenis Dzyubenko2009-05-111-1/+4
| | | | | specifies a timout for mouse event delivery to allow the gesture framework to successfully recognizer a gesture.
* Implemented delaying and replaying mouse events when gesture is aboutDenis Dzyubenko2009-05-111-0/+3
| | | | to start.
* Store the QGestureManager in QApplicationPrivateBradley T. Hughes2009-05-111-1/+1
| | | | | ... since we don't want these to persist after QApplication has been destroyed
* Modifications after the api review by Brad.Denis Dzyubenko2009-05-111-1/+3
| | | | | | | | | | | | Gesture types are now separated to internal ones, which are listed as enums (though they might be converted to strings internally), and third party gestures which are referenced by strings. From now on QGesture objects derive from QObject, which means third party gesture recognizer developers can use QObjects property system to store custom data inside QGesture without need to subclass it. Some functions were renamed to show their purpose more clear.
* Fixes: Add missing functions for a adding custom gesture recognizers.Denis Dzyubenko2009-05-111-0/+3
|
* Fixes: Compilation fixesDenis Dzyubenko2009-05-111-0/+1
|
* Merge of the maemo-gestures branch onto qt/4.5.0Denis Dzyubenko2009-05-111-0/+102
This is a squashed merge of all of the changes in the maemo-gestures branch on-top of the qt/4.5.0 branch.