aboutsummaryrefslogtreecommitdiff
path: root/backends/platform/sdl/sdl.h
diff options
context:
space:
mode:
authorJohannes Schickel2010-10-13 15:42:16 +0000
committerJohannes Schickel2010-10-13 15:42:16 +0000
commita2b96a2516cd87203b22f7496a8d5a6b65749da3 (patch)
tree11617735d666c73cebd6979f7df32e01fb09fea1 /backends/platform/sdl/sdl.h
parent75e8452b6e6a2bf4fb2f588aa00b428a60d873b5 (diff)
downloadscummvm-rg350-a2b96a2516cd87203b22f7496a8d5a6b65749da3.tar.gz
scummvm-rg350-a2b96a2516cd87203b22f7496a8d5a6b65749da3.tar.bz2
scummvm-rg350-a2b96a2516cd87203b22f7496a8d5a6b65749da3.zip
OPENGL: Replace SdlEventManager by SdlEventSource.
Formerly SdlEventManager was a subclass of DefaultEventManager but did not really have anything in common with the idea of our EventManager interface. Now I made a new object SdlEventSource which only subclasses EventSource and which is responsible for obtaining events from SDL (and processing them). svn-id: r53433
Diffstat (limited to 'backends/platform/sdl/sdl.h')
-rw-r--r--backends/platform/sdl/sdl.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/backends/platform/sdl/sdl.h b/backends/platform/sdl/sdl.h
index 17d4dc4ed9..9ef2573dad 100644
--- a/backends/platform/sdl/sdl.h
+++ b/backends/platform/sdl/sdl.h
@@ -34,11 +34,12 @@
#include "backends/modular-backend.h"
#include "backends/mixer/sdl/sdl-mixer.h"
+#include "backends/events/sdl/sdl-events.h"
/**
* Base OSystem class for all SDL ports.
*/
-class OSystem_SDL : public ModularBackend {
+class OSystem_SDL : public ModularBackend, public SdlEventSource {
public:
OSystem_SDL();
virtual ~OSystem_SDL();
@@ -66,7 +67,6 @@ public:
virtual void addSysArchivesToSearchSet(Common::SearchSet &s, int priority = 0);
virtual Common::SeekableReadStream *createConfigReadStream();
virtual Common::WriteStream *createConfigWriteStream();
- virtual bool pollEvent(Common::Event &event);
virtual uint32 getMillis();
virtual void delayMillis(uint msecs);
virtual void getTimeAndDate(TimeDate &td) const;