Linux and UNIX Man Pages

Linux & Unix Commands - Search Man Pages

sdl_seteventfilter(3) [opensolaris man page]

SDL_SetEventFilter(3)						 SDL API Reference					     SDL_SetEventFilter(3)

NAME
SDL_SetEventFilter - Sets up a filter to process all events before they are posted to the event queue. SYNOPSIS
#include "SDL.h" void SDL_SetEventFilter(SDL_EventFilter filter); DESCRIPTION
This function sets up a filter to process all events before they are posted to the event queue. This is a very powerful and flexible fea- ture. The filter is prototyped as: typedef int (*SDL_EventFilter)(const SDL_Event *event); If the filter returns 1, then the event will be added to the internal queue. If it returns 0, then the event will be dropped from the queue. This allows selective filtering of dynamically. There is one caveat when dealing with the SDL_QUITEVENT event type. The event filter is only called when the window manager desires to close the application window. If the event filter returns 1, then the window will be closed, otherwise the window will remain open if pos- sible. If the quit event is generated by an interrupt signal, it will bypass the internal queue and be delivered to the application at the next event poll. Note: Events pushed onto the queue with SDL_PushEvent or SDL_PeepEvents do not get passed through the event filter. Note: Be Careful! The event filter function may run in a different thread so be careful what you do within it. SEE ALSO
SDL_Event, SDL_GetEventFilter, SDL_PushEvent SDL
Tue 11 Sep 2001, 22:59 SDL_SetEventFilter(3)

Check Out this Related Man Page

SDL_SetEventFilter(3)						 SDL API Reference					     SDL_SetEventFilter(3)

NAME
SDL_SetEventFilter - Sets up a filter to process all events before they are posted to the event queue. SYNOPSIS
#include "SDL.h" void SDL_SetEventFilter(SDL_EventFilter filter); DESCRIPTION
This function sets up a filter to process all events before they are posted to the event queue. This is a very powerful and flexible fea- ture. The filter is prototyped as: typedef int (*SDL_EventFilter)(const SDL_Event *event); If the filter returns 1, then the event will be added to the internal queue. If it returns 0, then the event will be dropped from the queue. This allows selective filtering of dynamically. There is one caveat when dealing with the SDL_QUITEVENT event type. The event filter is only called when the window manager desires to close the application window. If the event filter returns 1, then the window will be closed, otherwise the window will remain open if pos- sible. If the quit event is generated by an interrupt signal, it will bypass the internal queue and be delivered to the application at the next event poll. Note: Events pushed onto the queue with SDL_PushEvent or SDL_PeepEvents do not get passed through the event filter. Note: Be Careful! The event filter function may run in a different thread so be careful what you do within it. SEE ALSO
SDL_Event, SDL_GetEventFilter, SDL_PushEvent SDL
Tue 11 Sep 2001, 22:59 SDL_SetEventFilter(3)
Man Page

2 More Discussions You Might Find Interesting

1. AIX

AIX filter Issues

Hi, I want to print from AIX 5.3/6.1 using 'pr' preprocessing filter and 'PCL' print file type. Steps: 1. Smitty 2. Print Spooling 3. Create a print queue(remote->Generic) 4. change the attributes for that print queue. 5. Change print file type to PCL and... (1 Reply)
Discussion started by: meeraramanathan
1 Replies

2. UNIX for Advanced & Expert Users

Adduser

hi, when i want to "adduser newuser" i receved this warning : event type "audit_buf" is a fixed event and may not be manipulated help me please (2 Replies)
Discussion started by: rezasadeghi
2 Replies