diff options
author | Eugene Sandulenko | 2014-04-28 20:50:12 +0300 |
---|---|---|
committer | Eugene Sandulenko | 2014-04-28 20:50:12 +0300 |
commit | 09bbcced02f62c7805891a305851182ce1128077 (patch) | |
tree | b68396dc9bcb866a9a2ef67a5feeb640acdc910b /gui/dialog.cpp | |
parent | 31b094892aae7572cd027efd53ad63a635ffeb04 (diff) | |
parent | 5c12e09ed1e2c2b83d74d824a941220b8faa11c9 (diff) | |
download | scummvm-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.cpp | 13 |
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) { |