Changeset 769 for trunk/src/gui/kernel/qkeymapper_x11.cpp
- Timestamp:
- Aug 2, 2010, 9:27:30 PM (15 years ago)
- Location:
- trunk
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk
- Property svn:mergeinfo changed
/branches/vendor/nokia/qt/4.6.3 (added) merged: 768 /branches/vendor/nokia/qt/current merged: 767 /branches/vendor/nokia/qt/4.6.2 removed
- Property svn:mergeinfo changed
-
trunk/src/gui/kernel/qkeymapper_x11.cpp
r651 r769 361 361 if (code && code < 0xfffe) 362 362 code = QChar(code).toUpper().unicode(); 363 364 if (code == Qt::Key_Tab && (baseModifiers & Qt::ShiftModifier)) { 365 // map shift+tab to shift+backtab 366 code = Qt::Key_Backtab; 367 text = QString(); 368 } 369 363 370 if (code == baseCode) 364 371 continue; … … 449 456 if (code && code < 0xfffe) 450 457 code = QChar(code).toUpper().unicode(); 458 459 if (code == Qt::Key_Tab && (baseModifiers & Qt::ShiftModifier)) { 460 // map shift+tab to shift+backtab 461 code = Qt::Key_Backtab; 462 text = QString(); 463 } 464 451 465 if (code == baseCode) 452 466 continue; … … 1060 1074 XF86XK_AudioRecord, Qt::Key_MediaRecord, 1061 1075 XF86XK_Mail, Qt::Key_LaunchMail, 1062 XF86XK_MyComputer, Qt::Key_Launch0, 1063 XF86XK_Calculator, Qt::Key_ Calculator,1076 XF86XK_MyComputer, Qt::Key_Launch0, // ### Qt 5: remap properly 1077 XF86XK_Calculator, Qt::Key_Launch1, 1064 1078 XF86XK_Memo, Qt::Key_Memo, 1065 1079 XF86XK_ToDoList, Qt::Key_ToDoList, … … 1159 1173 XF86XK_Suspend, Qt::Key_Suspend, 1160 1174 XF86XK_Hibernate, Qt::Key_Hibernate, 1161 XF86XK_Launch0, Qt::Key_Launch2, 1175 XF86XK_Launch0, Qt::Key_Launch2, // ### Qt 5: remap properly 1162 1176 XF86XK_Launch1, Qt::Key_Launch3, 1163 1177 XF86XK_Launch2, Qt::Key_Launch4,
Note:
See TracChangeset
for help on using the changeset viewer.