aboutsummaryrefslogtreecommitdiff
path: root/tests/ut_mswiperecognizer
AgeCommit message (Collapse)Author
2010-12-08Fixes: NB#182815 - Pannable widget is not transparent wrt. passing focus to ↵Michal Guminiak
child widgets RevBy: Jarno Malmari, Michael Hasselmann, Dominik Kapusta Details: This patch completely removes mouse event replaying functionality in the pannable widget and moves necessary pieces to mscene. This should allow better focus handling in the scene and also should remove all crashes related to mouse event being bounced between pannable widgets when two of them are placed on the scene. It also introduces one new method, an overloaded version of grabGesture, which can be used to control the cancel event handling in libmeegotouch applications. See documentation of MWidget::grabGesture for details.
2010-08-30New: styling of the pan, tap&hold and swipe recognizersMichal Guminiak
RevBy: Tomas Junnonen Details: The gesture recognizers contained some hardcoded values of threshold and timeout values. This patch moves these values to style sheets. Default values are defined in MTheme. Requires newest meegotouchtheme.
2010-08-27Changes: a few new unittests for recognizersMichal Guminiak
RevBy: Marcin, Paweł Details: functional coverage of tests for recognizers is improved.
2010-08-04New: A redefined swipe recognizer, which allows one-finger swipes.Michal Guminiak
RevBy: Dominik, Michael Hasselmann Details: The swipe gesture recognizer available in Qt's sources was not really working in our environment, because for example it recognizes only "three-finger swipe" gesture. This implementation is based on the Qt's sources and the "flick" gesture ideas from input method project.