summaryrefslogtreecommitdiff
path: root/src/common/emu_window.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/common/emu_window.h')
-rw-r--r--src/common/emu_window.h8
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...)
12class EmuWindow 14class 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 }