enum HE_ReturnValueType { HE_NotHandled = 0, HE_Handled = 1, HE_NoDefaultAction = 2, HE_Completed = (HE_Handled | HE_NoDefaultAction) };
An enumeration that defines bits in the returning value from HandleEvent method. The returning value is a bit mask and the bits indicate the handling status of the message. Users can call this handler to inform GFxPlayer of mouse and keyboard input, as well as stage and other events.
Members |
Description |
HE_NotHandled = 0 |
The message was not handled; further processing might be necessary. |
HE_Handled = 1 |
The message was handled; further processing still might be necessary. |
HE_NoDefaultAction = 2 |
Regardless to the status (handled/not handled), this bit indicates that no further processing is necessary. |
HE_Completed = (HE_Handled | HE_NoDefaultAction) |
A combination of HE_Handled and HE_NoDefaultAction, and means that message is handled and no further processing is necessary. |
GFx_Player.h