00001 //--- < EDSDL.H > ---------------| ViewGraph - A Flexible Graph view Framework | 00002 // 00003 // SDL event driver. 00004 // 00005 // $Author: botik32 $ 00006 // $Revision: 1.2 $ 00007 // $Date: 2004/04/30 15:39:46 $ 00008 //-----------------------------------------------------------------------------/ 00009 00010 #ifndef EDSDL_H 00011 #define EDSDL_H 00012 00013 #include <SDL/SDL.h> 00014 #include <cZUI/drivers/eventdriver.h> 00015 00016 class SDLEventDriver : public EventDriver 00017 { 00018 public: 00019 static Event* handle_event( SDL_Event * ); 00020 static Event* handle_event( SDL_Event *, 00021 int scx, int scy, int scw, int sch ); 00022 }; 00023 00024 #endif 00025 00026 /// $Log: edsdl.h,v $ 00027 /// Revision 1.2 2004/04/30 15:39:46 botik32 00028 /// Added handy cZUI header to avoid including a lot of files 00029 /// in the client 00030 /// 00031 /// Revision 1.1.1.1 2004/03/26 10:50:26 botik32 00032 /// Initial release 00033 /// 00034 /// Revision 1.1.1.1 2004/03/26 08:53:33 botik 00035 /// initial import 00036 /// 00037 /// 00038 /// Revision 1.2 2003/11/28 20:16:35 botik 00039 /// fixed a problem with sdl includes under windows 00040 /// 00041 /// Revision 1.1 2003/11/17 16:54:27 botik 00042 /// Initial import 00043 /// 00044