|
NAMESDLmm::EventHandler - The base class used for custom Event handlers.SYNOPSIS#include <sdlmm_eventhandler.h> Public Methodsvirtual bool HandleEvent (SDL_Event &event) Catch-all event handler. Keyboard Events
Mouse Events
Joystick Events
Window / Display Events
Other Events
DETAILED DESCRIPTIONThe base class used for custom Event handlers.The event handling in SDLmm is rather different to that of SDL in that it uses classes derived from the EventHandler. This allows for clean, type-safe code much closer to the spirit of C++ than the use of a union with a type field. To handle one or more events, you simply build a class derived from this, reimplementing the only functions for the events you need to handle. See also:
MEMBER FUNCTION DOCUMENTATIONbool SDLmm::EventHandler::HandleActiveEvent (bool gain, Uint8 state) [inline, virtual]Application visibility event callback.This callback is called when an event of type SDL_ACTIVEEVENT is reported. When the mouse leaves or enters the window area a SDL_APPMOUSEFOCUS type activation event occurs, if the mouse entered the window then gain will be true, otherwise gain will be false. A SDL_APPINPUTFOCUS type activation event occurs when the application loses or gains keyboard focus. This usually occurs when another application is made active. Finally, a SDL_APPACTIVE type event occurs when the application is either minimised/iconified (gain=false) or restored. Parameters:
Returns:
bool SDLmm::EventHandler::HandleEvent (SDL_Event & event) [inline, virtual]Catch-all event handler.This method is called if none of the event specific callbacks handled event (i.e they returned false). Note:
Parameters:
Returns:
bool SDLmm::EventHandler::HandleJoyAxisEvent (Uint8 joystick, Uint8 axis, Sint16 value) [inline, virtual]Joystick axis motion event callback.This is used when an event of type SDL_JOYAXISMOTION is reported. A SDL_JOYAXISMOTION event occurs when ever a user moves an axis on the joystick. Parameters:
ams value is the current position of the axis.
Returns:
bool SDLmm::EventHandler::HandleJoyBallEvent (Uint8 joystick, Uint8 ball, Sint16 xrel, Sint16 yrel) [inline, virtual]Joystick trackball motion event callback.Thyis is used when an event of type SDL_JOYBALLMOTION is reported. A SDL_JOYBALLMOTION event occurs when a user moves a trackball on the joystick. The field joystick is the index of the joystick that reported the event and ball is the index of the trackball (for a more detailed explaination see the Joystick section in the SDL documentation). Trackballs only return relative motion, this is the change in position on the ball since it was last polled (last cycle of the event loop) and it is stored in xrel and yrel. Parameters:
Returns:
bool SDLmm::EventHandler::HandleJoyButtonEvent (Uint8 joystick, Uint8 button, bool pressed) [inline, virtual]Joystick button event callback.This is used when an event of type SDL_JOYBUTTONDOWN or SDL_JOYBUTTONUP is reported. These events occurs when ever a user presses or releases a button on a joystick. Note:
Parameters:
Returns:
bool SDLmm::EventHandler::HandleJoyButtonPressEvent (Uint8 joystick, Uint8 button) [inline, virtual]Joystick button press event callback.This is used when an event of type SDL_JOYBUTTONDOWN is reported. A SDL_JOYBUTTONDOWN event occurs when ever a user presses a button on a joystick. Note:
Parameters:
Returns:
bool SDLmm::EventHandler::HandleJoyButtonReleaseEvent (Uint8 joystick, Uint8 button) [inline, virtual]Joystick button release event callback.This is used when an event of type SDL_JOYBUTTONUP is reported. A SDL_JOYBUTTONUP event occurs when ever a user releases a button on a joystick. Note:
Parameters:
Returns:
bool SDLmm::EventHandler::HandleJoyHatEvent (Uint8 joystick, Uint8 hat, Uint8 value) [inline, virtual]Joystick hat position change event callback.This is used when an event of type SDL_JOYHATMOTION is reported. A SDL_JOYHATMOTION event occurs when ever a user moves a hat on the joystick. The field joystick is the index of the joystick that reported the event and hat is the index of the hat (for a more detailed exlaination see the Joystick section in the SDL documentation). value is the current position of the hat. It is a logically OR'd combination of the following values (whose meanings should be pretty obvious):
The following defines are also provided:
Parameters:
Returns:
bool SDLmm::EventHandler::HandleKeyPressEvent (SDL_keysym & keysym) [inline, virtual]Keyboard press event callback.This callback is used when an event of type SDL_KEYDOWN is reported. A keyboard press event occurs when a key is pressed. Note:
Parameters:
Returns:
bool SDLmm::EventHandler::HandleKeyReleaseEvent (SDL_keysym & keysym) [inline, virtual]Keyboard release event callback.This callback is used when an event of type SDL_KEYUP is reported. A keyboard press event occurs when a key is released. Parameters:
Note:
Returns:
bool SDLmm::EventHandler::HandleKeyboardEvent (SDL_keysym & keysym, bool pressed) [inline, virtual]Keyboard event callback.This callback is used when an event of type SDL_KEYDOWN or SDL_KEYUP is reported. These occur when keys are pressed or released. Note:
Parameters:
Returns:
bool SDLmm::EventHandler::HandleMouseButtonEvent (Uint8 button, Uint16 x, Uint16 y, bool pressed) [inline, virtual]Mouse button event callback.This is used when an event of type SDL_MOUSEBUTTONDOWN or SDL_MOUSEBUTTONUP is reported. When a mouse button press is detected the number of the button pressed (from 1 to 255, with 1 usually being the left button and 2 the right) is placed into button. The position of the mouse when this event occured is stored in x and y. Note:
Parameters:
Returns:
bool SDLmm::EventHandler::HandleMouseButtonPressEvent (Uint8 button, Uint16 x, Uint16 y) [inline, virtual]Mouse button press event callback.This is used when an event of type SDL_MOUSEBUTTONDOWN is reported. When a mouse button press is detected the number of the button pressed (from 1 to 255, with 1 usually being the left button and 2 the right) is placed into button. The position of the mouse when this event occured is stored in x and y. Note:
Parameters:
Returns:
bool SDLmm::EventHandler::HandleMouseButtonReleaseEvent (Uint8 button, Uint16 x, Uint16 y) [inline, virtual]Mouse button release event callback.This is used when an event of type SDL_MOUSEBUTTONUP is reported. When a mouse button release is detected the number of the button release (from 1 to 255, with 1 usually being the left button and 2 the right) is placed into button. The position of the mouse when this event occured is stored in x and y. Note:
Parameters:
Returns:
bool SDLmm::EventHandler::HandleMouseMotionEvent (Uint8 state, Uint16 x, Uint16 y, Sint16 xrel, Sint16 yrel) [inline, virtual]Mouse motion event callback.This is used when an event of type SDL_MOUSEMOTION is reported. Simply put, a SDL_MOUSEMOTION type event occurs when a user moves the mouse within the application window or when SDL_WarpMouse is called. Both the absolute (x and y) and relative (xrel and yrel) coordinates are reported along with the current button states (state). The button state can be interpreted using the SDL_BUTTON macro (see GetMouseState()). If the cursor is hidden (Display::HideCursor()) and the input is grabbed (Display::GrabInput(SDL_GRAB_ON)) then the mouse will give relative motion events even when the cursor reaches the edge of the screen. This is currently only implemented on Windows and Linux/Unix-a-likes. Parameters:
Returns:
bool SDLmm::EventHandler::HandleQuitEvent () [inline, virtual]Quit requested event callback.This is used whan an event of type SDL_QUIT is reported. The SDL_QUIT event is very important. If you filter out or ignore a quit event it is impossible for the user to close the window. On the other hand, if you do accept a quit event, the application window will be closed, and screen updates will still report success, even though the application will no longer be visible. Note:
Returns:
bool SDLmm::EventHandler::HandleResizeEvent (int w, int h) [inline, virtual]Window resize event callback.This is used when an event of type SDL_VIDEORESIZE is reported. When SDL_RESIZABLE is passed as a flag to Display::SetVideoMode() the user is allowed to resize the applications window. When the window is resized an SDL_VIDEORESIZE is reported, with the new window width and height values stored in w and h, respectively. When an SDL_VIDEORESIZE is recieved the window should be resized to the new dimensions using Display::SetVideoMode(); Parameters:
Returns:
bool SDLmm::EventHandler::HandleSysWMEvent () [inline, virtual]Platform-dependent window manager event callback.The system window manager event contains a pointer to system-specific information about unknown window manager events. If you enable this event using Event::EventState(), it will be generated whenever unhandled events are received from the window manager. This can be used, for example, to implement cut-and-paste in your application. If you want to obtain system-specific information about the window manager, you can fill the version member of a SDL_SysWMinfo structure (details can be found in SDL_syswm.h, which must be included) using the SDL_VERSION() macro found in SDL_version.h, and pass it to the function: int SDL_GetWMInfo(SDL_SysWMinfo *info); Returns:
bool SDLmm::EventHandler::HandleUserEvent (Uint8 type, int code, void * data1, void * data2) [inline, virtual]This event is unique - it is never created by SDL but only by the user. The event can be pushed onto the event queue using Event::Push(). The contents of data1 and data2 are completely up to the programmer. The only requirement is that type is a value from SDL_USEREVENT to SDL_NUMEVENTS-1 (inclusive).Parameters:
Returns:
AUTHORGenerated automatically by Doxygen for SDLmm from the source code.
Visit the GSP FreeBSD Man Page Interface. |