aboutsummaryrefslogtreecommitdiff
path: root/gui/dialog.cpp
diff options
context:
space:
mode:
authorEugene Sandulenko2014-04-28 20:50:12 +0300
committerEugene Sandulenko2014-04-28 20:50:12 +0300
commit09bbcced02f62c7805891a305851182ce1128077 (patch)
treeb68396dc9bcb866a9a2ef67a5feeb640acdc910b /gui/dialog.cpp
parent31b094892aae7572cd027efd53ad63a635ffeb04 (diff)
parent5c12e09ed1e2c2b83d74d824a941220b8faa11c9 (diff)
downloadscummvm-rg350-09bbcced02f62c7805891a305851182ce1128077.tar.gz
scummvm-rg350-09bbcced02f62c7805891a305851182ce1128077.tar.bz2
scummvm-rg350-09bbcced02f62c7805891a305851182ce1128077.zip
Merge pull request #455 from Zerophase/master
GUI: Add Tab cycling to TabWidget
Diffstat (limited to 'gui/dialog.cpp')
-rw-r--r--gui/dialog.cpp13
1 files changed, 12 insertions, 1 deletions
diff --git a/gui/dialog.cpp b/gui/dialog.cpp
index ec392a877a..fa4e508494 100644
--- a/gui/dialog.cpp
+++ b/gui/dialog.cpp
@@ -250,7 +250,18 @@ void Dialog::handleKeyDown(Common::KeyState state) {
close();
}
- // TODO: tab/shift-tab should focus the next/previous focusable widget
+ if (state.keycode == Common::KEYCODE_TAB) {
+ // TODO: Maybe add Tab behaviours for all widgets too.
+ // searches through widgets on screen for tab widget
+ Widget *w = _firstWidget;
+ while (w) {
+ if (w->_type == kTabWidget)
+ if (w->handleKeyDown(state))
+ return;
+
+ w = w->_next;
+ }
+ }
}
void Dialog::handleKeyUp(Common::KeyState state) {