Wiki Page Content

Differences between revisions 12 and 13
Revision 12 as of 2015-02-19 20:19:02
Size: 1772
Comment: Added sign like in SDL_PeepEvents() and fixed typo.
Revision 13 as of 2015-07-31 19:27:19
Size: 1791
Comment: Fixed remark (Feedback 2014-12-01).
Deletions are marked like this. Additions are marked like this.
Line 37: Line 37:
Note: Events pushed onto the queue with [[SDL_PushEvent]]() or [[SDL_PeepEvents]]() do not get passed through the event filter. Note: Events pushed onto the queue with [[SDL_PushEvent]]() get passed through the event filter but events added with [[SDL_PeepEvents]]() do not.

SDL_PushEvent

Use this function to add an event to the event queue.

Syntax

int SDL_PushEvent(SDL_Event* event)

Function Parameters

event

the SDL_Event to be added to the queue

Return Value

Returns 1 on success, 0 if the event was filtered, or a negative error code on failure; call SDL_GetError() for more information. A common reason for error is the event queue being full.

Code Examples

    // Default Usage:
    SDL_Event sdlevent;
    sdlevent.type = SDL_KEYDOWN;
    sdlevent.key.keysym.sym = SDLK_1;

    SDL_PushEvent(&sdlevent);

Remarks

The event queue can actually be used as a two way communication channel. Not only can events be read from the queue, but the user can also push their own events onto it. event is a pointer to the event structure you wish to push onto the queue. The event is copied into the queue, and the caller may dispose of the memory pointed to after SDL_PushEvent() returns.

Note: Pushing device input events onto the queue doesn't modify the state of the device within SDL.

{i} This function is thread-safe, and can be called from other threads safely.

Note: Events pushed onto the queue with SDL_PushEvent() get passed through the event filter but events added with SDL_PeepEvents() do not.

For pushing application-specific events, please use SDL_RegisterEvents() to get an event type that does not conflict with other code that also wants its own custom event types.


CategoryAPI, CategoryEvents

None: SDL_PushEvent (last edited 2015-07-31 19:27:19 by PhilippWiesemann)

(Page Info.)
Feedback
Please include your contact information if you'd like to receive a reply.
Submit