- wxEvent
Constructor.
- CloneMethod
Returns a copy of the event.
- GetEventCategory
Returns a generic category for this event.
- GetEventObject
Returns the object (usually a window) associated with the event, if any.
- GetEventType
Returns the identifier of the given event type, such as wxEVT_BUTTON.
- GetId
Returns the identifier associated with this event, such as a button command id.
- GetSkipped
Returns true if the event handler should be skipped, false otherwise.
- GetTimestamp
Gets the timestamp for the event.
- IsCommandEvent
Returns true if the event is or is derived from wxCommandEvent else it returns false.
- ResumePropagation
Sets the propagation level to the given value (for example returned from an earlier call to wxEvent::StopPropagation).
- SetEventObject
Sets the originating object.
- SetEventType
Sets the event type.
- SetId
Sets the identifier associated with this event, such as a button command id.
- SetTimestamp
Sets the timestamp for the event.
- ShouldPropagate
Test if this event should be propagated or not, i.e. if the propagation level is currently greater than 0.
- Skip
This method can be used inside an event handler to control whether further event handlers bound to this event will be called after the current one returns.
- StopPropagation
Stop the event from propagating to its parent window.