diff options
| author | 2014-09-12 17:44:25 -0400 | |
|---|---|---|
| committer | 2014-09-12 17:44:25 -0400 | |
| commit | cbdf4d4c8e11f8d1503b440eee1ed2d5f144a73f (patch) | |
| tree | c9c95671835d73b5ca7e52029de5bb27832e11a3 /src/common/emu_window.h | |
| parent | Merge pull request #99 from archshift/ext-check (diff) | |
| parent | Added support for multiple input device types for KeyMap and connected Qt. (diff) | |
| download | yuzu-cbdf4d4c8e11f8d1503b440eee1ed2d5f144a73f.tar.gz yuzu-cbdf4d4c8e11f8d1503b440eee1ed2d5f144a73f.tar.xz yuzu-cbdf4d4c8e11f8d1503b440eee1ed2d5f144a73f.zip | |
Merge pull request #105 from kevinhartman/hid
Digital user input and HID module implementation for PAD
Diffstat (limited to 'src/common/emu_window.h')
| -rw-r--r-- | src/common/emu_window.h | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/src/common/emu_window.h b/src/common/emu_window.h index 5e2c33d7a..23f178fdf 100644 --- a/src/common/emu_window.h +++ b/src/common/emu_window.h | |||
| @@ -7,6 +7,8 @@ | |||
| 7 | #include "common/common.h" | 7 | #include "common/common.h" |
| 8 | #include "common/scm_rev.h" | 8 | #include "common/scm_rev.h" |
| 9 | 9 | ||
| 10 | #include "common/key_map.h" | ||
| 11 | |||
| 10 | // Abstraction class used to provide an interface between emulation code and the frontend (e.g. SDL, | 12 | // Abstraction class used to provide an interface between emulation code and the frontend (e.g. SDL, |
| 11 | // QGLWidget, GLFW, etc...) | 13 | // QGLWidget, GLFW, etc...) |
| 12 | class EmuWindow | 14 | class EmuWindow |
| @@ -32,6 +34,12 @@ public: | |||
| 32 | /// Releases (dunno if this is the "right" word) the GLFW context from the caller thread | 34 | /// Releases (dunno if this is the "right" word) the GLFW context from the caller thread |
| 33 | virtual void DoneCurrent() = 0; | 35 | virtual void DoneCurrent() = 0; |
| 34 | 36 | ||
| 37 | /// Signals a key press action to the HID module | ||
| 38 | static void KeyPressed(KeyMap::HostDeviceKey key); | ||
| 39 | |||
| 40 | /// Signals a key release action to the HID module | ||
| 41 | static void KeyReleased(KeyMap::HostDeviceKey key); | ||
| 42 | |||
| 35 | Config GetConfig() const { | 43 | Config GetConfig() const { |
| 36 | return m_config; | 44 | return m_config; |
| 37 | } | 45 | } |