summaryrefslogtreecommitdiffstats
path: root/tests/manual/keypadnavigation
Commit message (Collapse)AuthorAgeFilesLines
* Update copyright year to 2011.Jason McDonald2011-01-101-1/+1
| | | | Reviewed-by: Trust Me
* Update copyright year to 2010Jason McDonald2010-01-061-1/+1
| | | | Reviewed-by: Trust Me
* Put the dialog buttons into a scrollarea.Alessandro Portale2009-11-171-64/+89
| | | | | | Now, they fit into a smallscreen. Reviewed-By: TrustMe
* Build without QT_KEYPAD_NAVIGATIONAlessandro Portale2009-11-172-2/+10
| | | | | | | | There is actually not much of a point to run a keypadnavigation test without QT_KEYPAD_NAVIGATION being enabled. But let's at least build the app. Reviewed-By: TrustMe
* Shorter button texts.Alessandro Portale2009-09-291-8/+8
| | | | | | They do not fit into landscape smallscreen. Reviewed-By: TrustMe
* Added standard dialogs to keypad navigation test.Alessandro Portale2009-09-292-28/+191
| | | | | | | QFileDialog::getOpenFileName(), QFileDialog::getSaveFileName(), QFileDialog::getExistingDirectory(), etc... Reviewed-By: TrustMe
* Add missing license headerRhys Weatherley2009-09-211-0/+41
|
* Making Keypad Navigation more usableAlessandro Portale2009-09-193-0/+1297
All changes of this commit are #ifdef'ed in QT_KEYPAD_NAVIGATION. Most desktop Qts won't notice any change. Navigating between QWidgets was not alwys a pleasure on keypad devices. This commit fixes the navigation behavior for some widgets, mostly itemviews. Furthermore, it adds a 'directional' navigation mode. Until now, the existing keypad navigation used the tab order do go back and forth between widgets. The new mode is supposed to provide a more intuitive navigation. It is the new default mode on Symbian. Screens (and their resolutions) become bigger, and also low resolution screens can be used in landscape mode. That's why the directional mode was requested. Another popular request was to put some more convenience into QSlider: If a (horizontal) slider has focus and the user presses left/right, the value of the slider may directing change without being selected (edit mode). This commit also adds the manual test 'keypadnavigation'. Reviewed-by: Shane Kearns