summaryrefslogtreecommitdiffstats
path: root/src/gui/kernel/qgesturerecognizer.cpp
Commit message (Collapse)AuthorAgeFilesLines
* Added missing \since 4.6 doc tagDenis Dzyubenko2009-05-111-0/+2
|
* Generalized gesture filtering code to allow handling not only mouseDenis Dzyubenko2009-05-111-4/+7
| | | | events in gesture recognizers.
* Added Qt::GestureUpdated state for the gesture.Denis Dzyubenko2009-05-111-9/+10
| | | | So in total there are three main states - Started, Updated, Finished.
* Gesture manager takes ownership of the provided gesture recognizers.Denis Dzyubenko2009-05-111-3/+3
|
* Extended the gesture documentation.Denis Dzyubenko2009-05-111-0/+79
| | | | Also made some small fixes that noticed while was writing a doc.
* Modifications after the api review by Brad.Denis Dzyubenko2009-05-111-0/+71
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.