aboutsummaryrefslogtreecommitdiff
path: root/backends/platform/maemo/maemo.h
diff options
context:
space:
mode:
authorTarek Soliman2012-02-09 01:26:42 -0600
committerTarek Soliman2012-02-12 13:28:13 -0600
commitc2640ed33a1b9c28e58b04877b7c4bf7b5fff570 (patch)
tree86f7356cf37d6fa80984a99bb51fcc78444655f0 /backends/platform/maemo/maemo.h
parentd90d4d10a09e1bab04154aa81162aac9c994f23c (diff)
downloadscummvm-rg350-c2640ed33a1b9c28e58b04877b7c4bf7b5fff570.tar.gz
scummvm-rg350-c2640ed33a1b9c28e58b04877b7c4bf7b5fff570.tar.bz2
scummvm-rg350-c2640ed33a1b9c28e58b04877b7c4bf7b5fff570.zip
MAEMO: Use custom event Click Mode keymap action
Diffstat (limited to 'backends/platform/maemo/maemo.h')
-rw-r--r--backends/platform/maemo/maemo.h5
1 files changed, 4 insertions, 1 deletions
diff --git a/backends/platform/maemo/maemo.h b/backends/platform/maemo/maemo.h
index e94c6c603b..821f3526e8 100644
--- a/backends/platform/maemo/maemo.h
+++ b/backends/platform/maemo/maemo.h
@@ -29,10 +29,12 @@
#include "backends/platform/maemo/maemo-common.h"
namespace Maemo {
+class MaemoSdlEventObserver;
class OSystem_SDL_Maemo : public OSystem_POSIX {
public:
OSystem_SDL_Maemo();
+ ~OSystem_SDL_Maemo();
virtual void initBackend();
virtual void quit();
@@ -46,10 +48,11 @@ public:
private:
virtual void setXWindowName(const char *caption);
+ void initObserver();
const Model detectModel();
Model _model;
-
+ MaemoSdlEventObserver *_eventObserver;
};
} // namespace Maemo