diff options
author | Alejandro Marzini | 2010-06-29 01:08:36 +0000 |
---|---|---|
committer | Alejandro Marzini | 2010-06-29 01:08:36 +0000 |
commit | fd77e4b09c8ca80c8e449ad7266afaa494f98500 (patch) | |
tree | 232ce052cfecd5f4d32d15dabc6fc2d2e46e7a43 /backends/events/sdl | |
parent | 494755cc36d4bd6bac46c63b6624fe5a294c493a (diff) | |
download | scummvm-rg350-fd77e4b09c8ca80c8e449ad7266afaa494f98500.tar.gz scummvm-rg350-fd77e4b09c8ca80c8e449ad7266afaa494f98500.tar.bz2 scummvm-rg350-fd77e4b09c8ca80c8e449ad7266afaa494f98500.zip |
Modularized Linuxmoto port.
svn-id: r50474
Diffstat (limited to 'backends/events/sdl')
-rw-r--r-- | backends/events/sdl/sdl-events.h | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/backends/events/sdl/sdl-events.h b/backends/events/sdl/sdl-events.h index 7a399cc186..0f6cb998a8 100644 --- a/backends/events/sdl/sdl-events.h +++ b/backends/events/sdl/sdl-events.h @@ -43,6 +43,8 @@ public: virtual void resetKeyboadEmulation(int16 x_max, int16 y_max); + virtual void toggleMouseGrab(); + protected: virtual void preprocessEvents(SDL_Event *event) {} @@ -77,8 +79,7 @@ protected: virtual bool handleJoyButtonUp(SDL_Event &ev, Common::Event &event); virtual bool handleJoyAxisMotion(SDL_Event &ev, Common::Event &event); - virtual void fillMouseEvent(Common::Event &event, int x, int y); // overloaded by CE backend - virtual void toggleMouseGrab(); + virtual void fillMouseEvent(Common::Event &event, int x, int y); virtual void handleKbdMouse(); virtual bool remapKey(SDL_Event &ev, Common::Event &event); |