SDL_events.h
上传用户:sun1608
上传日期:2007-02-02
资源大小:6116k
文件大小:12k
源码类别:

流媒体/Mpeg4/MP4

开发平台:

Visual C++

  1. /*
  2.     SDL - Simple DirectMedia Layer
  3.     Copyright (C) 1997, 1998, 1999, 2000, 2001, 2002  Sam Lantinga
  4.     This library is free software; you can redistribute it and/or
  5.     modify it under the terms of the GNU Library General Public
  6.     License as published by the Free Software Foundation; either
  7.     version 2 of the License, or (at your option) any later version.
  8.     This library is distributed in the hope that it will be useful,
  9.     but WITHOUT ANY WARRANTY; without even the implied warranty of
  10.     MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
  11.     Library General Public License for more details.
  12.     You should have received a copy of the GNU Library General Public
  13.     License along with this library; if not, write to the Free
  14.     Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
  15.     Sam Lantinga
  16.     slouken@libsdl.org
  17. */
  18. #ifdef SAVE_RCSID
  19. static char rcsid =
  20.  "@(#) $Id: SDL_events.h,v 1.4 2002/04/22 21:38:01 wmay Exp $";
  21. #endif
  22. /* Include file for SDL event handling */
  23. #ifndef _SDL_events_h
  24. #define _SDL_events_h
  25. #include "SDL_types.h"
  26. #include "SDL_active.h"
  27. #include "SDL_keyboard.h"
  28. #include "SDL_mouse.h"
  29. #include "SDL_joystick.h"
  30. #include "SDL_quit.h"
  31. #include "begin_code.h"
  32. /* Set up for C function definitions, even when using C++ */
  33. #ifdef __cplusplus
  34. extern "C" {
  35. #endif
  36. /* Event enumerations */
  37. enum { SDL_NOEVENT = 0, /* Unused (do not remove) */
  38.        SDL_ACTIVEEVENT, /* Application loses/gains visibility */
  39.        SDL_KEYDOWN, /* Keys pressed */
  40.        SDL_KEYUP, /* Keys released */
  41.        SDL_MOUSEMOTION, /* Mouse moved */
  42.        SDL_MOUSEBUTTONDOWN, /* Mouse button pressed */
  43.        SDL_MOUSEBUTTONUP, /* Mouse button released */
  44.        SDL_JOYAXISMOTION, /* Joystick axis motion */
  45.        SDL_JOYBALLMOTION, /* Joystick trackball motion */
  46.        SDL_JOYHATMOTION, /* Joystick hat position change */
  47.        SDL_JOYBUTTONDOWN, /* Joystick button pressed */
  48.        SDL_JOYBUTTONUP, /* Joystick button released */
  49.        SDL_QUIT, /* User-requested quit */
  50.        SDL_SYSWMEVENT, /* System specific event */
  51.        SDL_EVENT_RESERVEDA, /* Reserved for future use.. */
  52.        SDL_EVENT_RESERVEDB, /* Reserved for future use.. */
  53.        SDL_VIDEORESIZE, /* User resized video mode */
  54.        SDL_VIDEOEXPOSE, /* Screen needs to be redrawn */
  55.        SDL_EVENT_RESERVED2, /* Reserved for future use.. */
  56.        SDL_EVENT_RESERVED3, /* Reserved for future use.. */
  57.        SDL_EVENT_RESERVED4, /* Reserved for future use.. */
  58.        SDL_EVENT_RESERVED5, /* Reserved for future use.. */
  59.        SDL_EVENT_RESERVED6, /* Reserved for future use.. */
  60.        SDL_EVENT_RESERVED7, /* Reserved for future use.. */
  61.        /* Events SDL_USEREVENT through SDL_MAXEVENTS-1 are for your use */
  62.        SDL_USEREVENT = 24,
  63.        /* This last event is only for bounding internal arrays
  64.   It is the number of bits in the event mask datatype -- Uint32
  65.         */
  66.        SDL_NUMEVENTS = 32
  67. };
  68. /* Predefined event masks */
  69. #define SDL_EVENTMASK(X) (1<<(X))
  70. enum {
  71. SDL_ACTIVEEVENTMASK = SDL_EVENTMASK(SDL_ACTIVEEVENT),
  72. SDL_KEYDOWNMASK = SDL_EVENTMASK(SDL_KEYDOWN),
  73. SDL_KEYUPMASK = SDL_EVENTMASK(SDL_KEYUP),
  74. SDL_MOUSEMOTIONMASK = SDL_EVENTMASK(SDL_MOUSEMOTION),
  75. SDL_MOUSEBUTTONDOWNMASK = SDL_EVENTMASK(SDL_MOUSEBUTTONDOWN),
  76. SDL_MOUSEBUTTONUPMASK = SDL_EVENTMASK(SDL_MOUSEBUTTONUP),
  77. SDL_MOUSEEVENTMASK = SDL_EVENTMASK(SDL_MOUSEMOTION)|
  78.                           SDL_EVENTMASK(SDL_MOUSEBUTTONDOWN)|
  79.                           SDL_EVENTMASK(SDL_MOUSEBUTTONUP),
  80. SDL_JOYAXISMOTIONMASK = SDL_EVENTMASK(SDL_JOYAXISMOTION),
  81. SDL_JOYBALLMOTIONMASK = SDL_EVENTMASK(SDL_JOYBALLMOTION),
  82. SDL_JOYHATMOTIONMASK = SDL_EVENTMASK(SDL_JOYHATMOTION),
  83. SDL_JOYBUTTONDOWNMASK = SDL_EVENTMASK(SDL_JOYBUTTONDOWN),
  84. SDL_JOYBUTTONUPMASK = SDL_EVENTMASK(SDL_JOYBUTTONUP),
  85. SDL_JOYEVENTMASK = SDL_EVENTMASK(SDL_JOYAXISMOTION)|
  86.                           SDL_EVENTMASK(SDL_JOYBALLMOTION)|
  87.                           SDL_EVENTMASK(SDL_JOYHATMOTION)|
  88.                           SDL_EVENTMASK(SDL_JOYBUTTONDOWN)|
  89.                           SDL_EVENTMASK(SDL_JOYBUTTONUP),
  90. SDL_VIDEORESIZEMASK = SDL_EVENTMASK(SDL_VIDEORESIZE),
  91. SDL_VIDEOEXPOSEMASK = SDL_EVENTMASK(SDL_VIDEOEXPOSE),
  92. SDL_QUITMASK = SDL_EVENTMASK(SDL_QUIT),
  93. SDL_SYSWMEVENTMASK = SDL_EVENTMASK(SDL_SYSWMEVENT)
  94. };
  95. #define SDL_ALLEVENTS 0xFFFFFFFF
  96. /* Application visibility event structure */
  97. typedef struct {
  98. Uint8 type; /* SDL_ACTIVEEVENT */
  99. Uint8 gain; /* Whether given states were gained or lost (1/0) */
  100. Uint8 state; /* A mask of the focus states */
  101. } SDL_ActiveEvent;
  102. /* Keyboard event structure */
  103. typedef struct {
  104. Uint8 type; /* SDL_KEYDOWN or SDL_KEYUP */
  105. Uint8 which; /* The keyboard device index */
  106. Uint8 state; /* SDL_PRESSED or SDL_RELEASED */
  107. SDL_keysym keysym;
  108. } SDL_KeyboardEvent;
  109. /* Mouse motion event structure */
  110. typedef struct {
  111. Uint8 type; /* SDL_MOUSEMOTION */
  112. Uint8 which; /* The mouse device index */
  113. Uint8 state; /* The current button state */
  114. Uint16 x, y; /* The X/Y coordinates of the mouse */
  115. Sint16 xrel; /* The relative motion in the X direction */
  116. Sint16 yrel; /* The relative motion in the Y direction */
  117. } SDL_MouseMotionEvent;
  118. /* Mouse button event structure */
  119. typedef struct {
  120. Uint8 type; /* SDL_MOUSEBUTTONDOWN or SDL_MOUSEBUTTONUP */
  121. Uint8 which; /* The mouse device index */
  122. Uint8 button; /* The mouse button index */
  123. Uint8 state; /* SDL_PRESSED or SDL_RELEASED */
  124. Uint16 x, y; /* The X/Y coordinates of the mouse at press time */
  125. } SDL_MouseButtonEvent;
  126. /* Joystick axis motion event structure */
  127. typedef struct {
  128. Uint8 type; /* SDL_JOYAXISMOTION */
  129. Uint8 which; /* The joystick device index */
  130. Uint8 axis; /* The joystick axis index */
  131. Sint16 value; /* The axis value (range: -32768 to 32767) */
  132. } SDL_JoyAxisEvent;
  133. /* Joystick trackball motion event structure */
  134. typedef struct {
  135. Uint8 type; /* SDL_JOYBALLMOTION */
  136. Uint8 which; /* The joystick device index */
  137. Uint8 ball; /* The joystick trackball index */
  138. Sint16 xrel; /* The relative motion in the X direction */
  139. Sint16 yrel; /* The relative motion in the Y direction */
  140. } SDL_JoyBallEvent;
  141. /* Joystick hat position change event structure */
  142. typedef struct {
  143. Uint8 type; /* SDL_JOYHATMOTION */
  144. Uint8 which; /* The joystick device index */
  145. Uint8 hat; /* The joystick hat index */
  146. Uint8 value; /* The hat position value:
  147. 8   1   2
  148. 7   0   3
  149. 6   5   4
  150.    Note that zero means the POV is centered.
  151. */
  152. } SDL_JoyHatEvent;
  153. /* Joystick button event structure */
  154. typedef struct {
  155. Uint8 type; /* SDL_JOYBUTTONDOWN or SDL_JOYBUTTONUP */
  156. Uint8 which; /* The joystick device index */
  157. Uint8 button; /* The joystick button index */
  158. Uint8 state; /* SDL_PRESSED or SDL_RELEASED */
  159. } SDL_JoyButtonEvent;
  160. /* The "window resized" event
  161.    When you get this event, you are responsible for setting a new video
  162.    mode with the new width and height.
  163.  */
  164. typedef struct {
  165. Uint8 type; /* SDL_VIDEORESIZE */
  166. int w; /* New width */
  167. int h; /* New height */
  168. } SDL_ResizeEvent;
  169. /* The "screen redraw" event */
  170. typedef struct {
  171. Uint8 type; /* SDL_VIDEOEXPOSE */
  172. } SDL_ExposeEvent;
  173. /* The "quit requested" event */
  174. typedef struct {
  175. Uint8 type; /* SDL_QUIT */
  176. } SDL_QuitEvent;
  177. /* A user-defined event type */
  178. typedef struct {
  179. Uint8 type; /* SDL_USEREVENT through SDL_NUMEVENTS-1 */
  180. int code; /* User defined event code */
  181. void *data1; /* User defined data pointer */
  182. void *data2; /* User defined data pointer */
  183. } SDL_UserEvent;
  184. /* If you want to use this event, you should include SDL_syswm.h */
  185. struct SDL_SysWMmsg;
  186. typedef struct SDL_SysWMmsg SDL_SysWMmsg;
  187. typedef struct {
  188. Uint8 type;
  189. SDL_SysWMmsg *msg;
  190. } SDL_SysWMEvent;
  191. /* General event structure */
  192. typedef union {
  193. Uint8 type;
  194. SDL_ActiveEvent active;
  195. SDL_KeyboardEvent key;
  196. SDL_MouseMotionEvent motion;
  197. SDL_MouseButtonEvent button;
  198. SDL_JoyAxisEvent jaxis;
  199. SDL_JoyBallEvent jball;
  200. SDL_JoyHatEvent jhat;
  201. SDL_JoyButtonEvent jbutton;
  202. SDL_ResizeEvent resize;
  203. SDL_ExposeEvent expose;
  204. SDL_QuitEvent quit;
  205. SDL_UserEvent user;
  206. SDL_SysWMEvent syswm;
  207. } SDL_Event;
  208. /* Function prototypes */
  209. /* Pumps the event loop, gathering events from the input devices.
  210.    This function updates the event queue and internal input device state.
  211.    This should only be run in the thread that sets the video mode.
  212. */
  213. extern DECLSPEC void SDLCALL SDL_PumpEvents(void);
  214. /* Checks the event queue for messages and optionally returns them.
  215.    If 'action' is SDL_ADDEVENT, up to 'numevents' events will be added to
  216.    the back of the event queue.
  217.    If 'action' is SDL_PEEKEVENT, up to 'numevents' events at the front
  218.    of the event queue, matching 'mask', will be returned and will not
  219.    be removed from the queue.
  220.    If 'action' is SDL_GETEVENT, up to 'numevents' events at the front 
  221.    of the event queue, matching 'mask', will be returned and will be
  222.    removed from the queue.
  223.    This function returns the number of events actually stored, or -1
  224.    if there was an error.  This function is thread-safe.
  225. */
  226. typedef enum {
  227. SDL_ADDEVENT,
  228. SDL_PEEKEVENT,
  229. SDL_GETEVENT
  230. } SDL_eventaction;
  231. /* */
  232. extern DECLSPEC int SDLCALL SDL_PeepEvents(SDL_Event *events, int numevents,
  233. SDL_eventaction action, Uint32 mask);
  234. /* Polls for currently pending events, and returns 1 if there are any pending
  235.    events, or 0 if there are none available.  If 'event' is not NULL, the next
  236.    event is removed from the queue and stored in that area.
  237.  */
  238. extern DECLSPEC int SDLCALL SDL_PollEvent(SDL_Event *event);
  239. /* Waits indefinitely for the next available event, returning 1, or 0 if there
  240.    was an error while waiting for events.  If 'event' is not NULL, the next
  241.    event is removed from the queue and stored in that area.
  242.  */
  243. extern DECLSPEC int SDLCALL SDL_WaitEvent(SDL_Event *event);
  244. /* Add an event to the event queue.
  245.    This function returns 0 if the event queue was full, or -1
  246.    if there was some other error.  Returns 1 on success.
  247.  */
  248. extern DECLSPEC int SDLCALL SDL_PushEvent(SDL_Event *event);
  249. /*
  250.   This function sets up a filter to process all events before they
  251.   change internal state and are posted to the internal event queue.
  252.   The filter is protypted as:
  253. */
  254. typedef int (*SDL_EventFilter)(const SDL_Event *event);
  255. /*
  256.   If the filter returns 1, then the event will be added to the internal queue.
  257.   If it returns 0, then the event will be dropped from the queue, but the 
  258.   internal state will still be updated.  This allows selective filtering of
  259.   dynamically arriving events.
  260.   WARNING:  Be very careful of what you do in the event filter function, as 
  261.             it may run in a different thread!
  262.   There is one caveat when dealing with the SDL_QUITEVENT event type.  The
  263.   event filter is only called when the window manager desires to close the
  264.   application window.  If the event filter returns 1, then the window will
  265.   be closed, otherwise the window will remain open if possible.
  266.   If the quit event is generated by an interrupt signal, it will bypass the
  267.   internal queue and be delivered to the application at the next event poll.
  268. */
  269. extern DECLSPEC void SDLCALL SDL_SetEventFilter(SDL_EventFilter filter);
  270. /*
  271.   Return the current event filter - can be used to "chain" filters.
  272.   If there is no event filter set, this function returns NULL.
  273. */
  274. extern DECLSPEC SDL_EventFilter SDLCALL SDL_GetEventFilter(void);
  275. /*
  276.   This function allows you to set the state of processing certain events.
  277.   If 'state' is set to SDL_IGNORE, that event will be automatically dropped
  278.   from the event queue and will not event be filtered.
  279.   If 'state' is set to SDL_ENABLE, that event will be processed normally.
  280.   If 'state' is set to SDL_QUERY, SDL_EventState() will return the 
  281.   current processing state of the specified event.
  282. */
  283. #define SDL_QUERY -1
  284. #define SDL_IGNORE  0
  285. #define SDL_DISABLE  0
  286. #define SDL_ENABLE  1
  287. extern DECLSPEC Uint8 SDLCALL SDL_EventState(Uint8 type, int state);
  288. /* Ends C function definitions when using C++ */
  289. #ifdef __cplusplus
  290. }
  291. #endif
  292. #include "close_code.h"
  293. #endif /* _SDL_events_h */