X-Git-Url: https://git.artsoft.org/?a=blobdiff_plain;f=src%2Fevents.h;h=d08656090b58ab566fdff564c25af35ed8a0496d;hb=1465ca1ffdf2104d25b9a46ca9bf8a3f175403fd;hp=31948c112d5c5dca388ec08fc8a9ae6adafe56f2;hpb=a5a03e15b395ba1942c180d1cd0d3a4f43b87f56;p=rocksndiamonds.git diff --git a/src/events.h b/src/events.h index 31948c11..d0865609 100644 --- a/src/events.h +++ b/src/events.h @@ -1,13 +1,12 @@ /*********************************************************** * Rocks'n'Diamonds -- McDuffin Strikes Back! * *----------------------------------------------------------* -* ©1995 Artsoft Development * -* Holger Schemel * -* 33659 Bielefeld-Senne * -* Telefon: (0521) 493245 * -* eMail: aeglos@valinor.owl.de * -* aeglos@uni-paderborn.de * -* q99492@pbhrzx.uni-paderborn.de * +* (c) 1995-98 Artsoft Entertainment * +* Holger Schemel * +* Oststrasse 11a * +* 33604 Bielefeld * +* phone: ++49 +521 290471 * +* email: aeglos@valinor.owl.de * *----------------------------------------------------------* * events.h * ***********************************************************/ @@ -17,19 +16,23 @@ #include "main.h" +int FilterMouseMotionEvents(const Event *); void EventLoop(void); +void HandleOtherEvents(Event *); void ClearEventQueue(void); void SleepWhileUnmapped(void); -void HandleExposeEvent(XExposeEvent *); -void HandleButtonEvent(XButtonEvent *); -void HandleMotionEvent(XMotionEvent *); -void HandleKeyEvent(XKeyEvent *); -void HandleFocusEvent(int); -void HandleNoXEvent(void); +void HandleExposeEvent(ExposeEvent *); +void HandleButtonEvent(ButtonEvent *); +void HandleMotionEvent(MotionEvent *); +void HandleKeyEvent(KeyEvent *); +void HandleFocusEvent(FocusChangeEvent *); +void HandleClientMessageEvent(ClientMessageEvent *event); + +void HandleNoEvent(void); void HandleButton(int, int, int); -void HandleKey(KeySym, int); +void HandleKey(Key, int); void HandleJoystick(); #endif