Lines Matching refs:Uint32
175 Uint32 type;
176 Uint32 timestamp; /**< In milliseconds, populated using SDL_GetTicks() */
184 Uint32 type; /**< ::SDL_DISPLAYEVENT */
185 Uint32 timestamp; /**< In milliseconds, populated using SDL_GetTicks() */
186 Uint32 display; /**< The associated display index */
199 Uint32 type; /**< ::SDL_WINDOWEVENT */
200 Uint32 timestamp; /**< In milliseconds, populated using SDL_GetTicks() */
201 Uint32 windowID; /**< The associated window */
215 Uint32 type; /**< ::SDL_KEYDOWN or ::SDL_KEYUP */
216 Uint32 timestamp; /**< In milliseconds, populated using SDL_GetTicks() */
217 Uint32 windowID; /**< The window with keyboard focus, if any */
231 Uint32 type; /**< ::SDL_TEXTEDITING */
232 …Uint32 timestamp; /**< In milliseconds, populated using SDL_GetTicks() */
233 Uint32 windowID; /**< The window with keyboard focus, if any */
246 Uint32 type; /**< ::SDL_TEXTINPUT */
247 … Uint32 timestamp; /**< In milliseconds, populated using SDL_GetTicks() */
248 Uint32 windowID; /**< The window with keyboard focus, if any */
257 Uint32 type; /**< ::SDL_MOUSEMOTION */
258 Uint32 timestamp; /**< In milliseconds, populated using SDL_GetTicks() */
259 Uint32 windowID; /**< The window with mouse focus, if any */
260 Uint32 which; /**< The mouse instance id, or SDL_TOUCH_MOUSEID */
261 Uint32 state; /**< The current button state */
273 Uint32 type; /**< ::SDL_MOUSEBUTTONDOWN or ::SDL_MOUSEBUTTONUP */
274 Uint32 timestamp; /**< In milliseconds, populated using SDL_GetTicks() */
275 Uint32 windowID; /**< The window with mouse focus, if any */
276 Uint32 which; /**< The mouse instance id, or SDL_TOUCH_MOUSEID */
290 Uint32 type; /**< ::SDL_MOUSEWHEEL */
291 Uint32 timestamp; /**< In milliseconds, populated using SDL_GetTicks() */
292 Uint32 windowID; /**< The window with mouse focus, if any */
293 Uint32 which; /**< The mouse instance id, or SDL_TOUCH_MOUSEID */
296 …Uint32 direction; /**< Set to one of the SDL_MOUSEWHEEL_* defines. When FLIPPED the values in X …
304 Uint32 type; /**< ::SDL_JOYAXISMOTION */
305 Uint32 timestamp; /**< In milliseconds, populated using SDL_GetTicks() */
320 Uint32 type; /**< ::SDL_JOYBALLMOTION */
321 Uint32 timestamp; /**< In milliseconds, populated using SDL_GetTicks() */
336 Uint32 type; /**< ::SDL_JOYHATMOTION */
337 Uint32 timestamp; /**< In milliseconds, populated using SDL_GetTicks() */
356 Uint32 type; /**< ::SDL_JOYBUTTONDOWN or ::SDL_JOYBUTTONUP */
357 Uint32 timestamp; /**< In milliseconds, populated using SDL_GetTicks() */
370 Uint32 type; /**< ::SDL_JOYDEVICEADDED or ::SDL_JOYDEVICEREMOVED */
371 Uint32 timestamp; /**< In milliseconds, populated using SDL_GetTicks() */
381 Uint32 type; /**< ::SDL_CONTROLLERAXISMOTION */
382 Uint32 timestamp; /**< In milliseconds, populated using SDL_GetTicks() */
398 Uint32 type; /**< ::SDL_CONTROLLERBUTTONDOWN or ::SDL_CONTROLLERBUTTONUP */
399 Uint32 timestamp; /**< In milliseconds, populated using SDL_GetTicks() */
413 …Uint32 type; /**< ::SDL_CONTROLLERDEVICEADDED, ::SDL_CONTROLLERDEVICEREMOVED, or ::SDL_CONT…
414 Uint32 timestamp; /**< In milliseconds, populated using SDL_GetTicks() */
423 Uint32 type; /**< ::SDL_AUDIODEVICEADDED, or ::SDL_AUDIODEVICEREMOVED */
424 Uint32 timestamp; /**< In milliseconds, populated using SDL_GetTicks() */
425 …Uint32 which; /**< The audio device index for the ADDED event (valid until next SDL_GetNumAu…
438 Uint32 type; /**< ::SDL_FINGERMOTION or ::SDL_FINGERDOWN or ::SDL_FINGERUP */
439 Uint32 timestamp; /**< In milliseconds, populated using SDL_GetTicks() */
447 Uint32 windowID; /**< The window underneath the finger, if any */
456 Uint32 type; /**< ::SDL_MULTIGESTURE */
457 Uint32 timestamp; /**< In milliseconds, populated using SDL_GetTicks() */
473 Uint32 type; /**< ::SDL_DOLLARGESTURE or ::SDL_DOLLARRECORD */
474 Uint32 timestamp; /**< In milliseconds, populated using SDL_GetTicks() */
477 Uint32 numFingers;
491 …Uint32 type; /**< ::SDL_DROPBEGIN or ::SDL_DROPFILE or ::SDL_DROPTEXT or ::SDL_DROPCOMPLETE…
492 Uint32 timestamp; /**< In milliseconds, populated using SDL_GetTicks() */
494 Uint32 windowID; /**< The window that was dropped on, if any */
503 Uint32 type; /**< ::SDL_SENSORUPDATE */
504 Uint32 timestamp; /**< In milliseconds, populated using SDL_GetTicks() */
514 Uint32 type; /**< ::SDL_QUIT */
515 Uint32 timestamp; /**< In milliseconds, populated using SDL_GetTicks() */
523 Uint32 type; /**< ::SDL_QUIT */
524 Uint32 timestamp; /**< In milliseconds, populated using SDL_GetTicks() */
532 Uint32 type; /**< ::SDL_USEREVENT through ::SDL_LASTEVENT-1 */
533 Uint32 timestamp; /**< In milliseconds, populated using SDL_GetTicks() */
534 Uint32 windowID; /**< The associated window if any */
552 Uint32 type; /**< ::SDL_SYSWMEVENT */
553 Uint32 timestamp; /**< In milliseconds, populated using SDL_GetTicks() */
562 Uint32 type; /**< Event type, shared with all events */
643 Uint32 minType, Uint32 maxType);
649 extern DECLSPEC SDL_bool SDLCALL SDL_HasEvent(Uint32 type);
650 extern DECLSPEC SDL_bool SDLCALL SDL_HasEvents(Uint32 minType, Uint32 maxType);
658 extern DECLSPEC void SDLCALL SDL_FlushEvent(Uint32 type);
659 extern DECLSPEC void SDLCALL SDL_FlushEvents(Uint32 minType, Uint32 maxType);
773 extern DECLSPEC Uint8 SDLCALL SDL_EventState(Uint32 type, int state);
784 extern DECLSPEC Uint32 SDLCALL SDL_RegisterEvents(int numevents);