aboutsummaryrefslogtreecommitdiff
path: root/common
diff options
context:
space:
mode:
authorEugene Sandulenko2009-05-10 22:05:04 +0000
committerEugene Sandulenko2009-05-10 22:05:04 +0000
commit665e472ef0bf9cd38c92ebe58975cbda74241a07 (patch)
tree38fb4c993d827b9250441b315ae2940e73298eeb /common
parent7604301c30553828cae69ea69acf8fde057ac5c2 (diff)
downloadscummvm-rg350-665e472ef0bf9cd38c92ebe58975cbda74241a07.tar.gz
scummvm-rg350-665e472ef0bf9cd38c92ebe58975cbda74241a07.tar.bz2
scummvm-rg350-665e472ef0bf9cd38c92ebe58975cbda74241a07.zip
Keymapper:
- Introduced new OSystem method getHardwareKeySet() with default implementation - Moved global keymap creation to base/main.cpp - Moved GUI keymap creation to gui/GuiManager.cpp - Added various safeguard checks to various keymapper methods Now it is really possible to add keymapper to all backends. svn-id: r40439
Diffstat (limited to 'common')
-rw-r--r--common/system.h10
1 files changed, 10 insertions, 0 deletions
diff --git a/common/system.h b/common/system.h
index fc5535a4dc..cadc035501 100644
--- a/common/system.h
+++ b/common/system.h
@@ -48,6 +48,7 @@ namespace Common {
class TimerManager;
class SeekableReadStream;
class WriteStream;
+ class HardwareKeySet;
}
class FilesystemFactory;
@@ -744,6 +745,15 @@ public:
*/
virtual Common::EventManager *getEventManager() = 0;
+ /**
+ * Register hardware keys with keymapper
+ *
+ * @return HardwareKeySet with all keys and recommended mappings
+ *
+ * See keymapper documentation for further reference.
+ */
+ virtual Common::HardwareKeySet *getHardwareKeySet() { return 0; }
+
//@}