View Source wxEvent (wx v2.4.3)
An event is a structure holding information about an event passed to a callback or member function.
wxEvent
used to be a multipurpose event object, and is an abstract base class for
other event classes (see below).
For more information about events, see the overview_events overview.
See:
wxWidgets docs: wxEvent
Summary
Functions
Returns the identifier associated with this event, such as a button command id.
Returns true if the event handler should be skipped, false otherwise.
Gets the timestamp for the event.
Returns true if the event is or is derived from wxCommandEvent
else it returns false.
Sets the propagation level to the given value (for example returned from an earlier call
to stopPropagation/1
).
Test if this event should be propagated or not, i.e. if the propagation level is currently greater than 0.
Equivalent to skip(This, [])
.
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.
Stop the event from propagating to its parent window.
Types
-type wxEvent() :: wx:wx_object().
Functions
Returns the identifier associated with this event, such as a button command id.
Returns true if the event handler should be skipped, false otherwise.
Gets the timestamp for the event.
The timestamp is the time in milliseconds since some fixed moment (not necessarily the standard Unix Epoch, so only differences between the timestamps and not their absolute values usually make sense).
Warning:
wxWidgets returns a non-NULL timestamp only for mouse and key events (see wxMouseEvent
and wxKeyEvent
).
Returns true if the event is or is derived from wxCommandEvent
else it returns false.
Note: exists only for optimization purposes.
-spec resumePropagation(This, PropagationLevel) -> ok when This :: wxEvent(), PropagationLevel :: integer().
Sets the propagation level to the given value (for example returned from an earlier call
to stopPropagation/1
).
Test if this event should be propagated or not, i.e. if the propagation level is currently greater than 0.
-spec skip(This) -> ok when This :: wxEvent().
Equivalent to skip(This, [])
.
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.
Without skip/2
(or equivalently if Skip(false) is used), the event will not be processed any
more. If Skip(true) is called, the event processing system continues searching for a
further handler function for this event, even though it has been processed already in the
current handler.
In general, it is recommended to skip all non-command events to allow the default handling to take place. The command events are, however, normally not skipped as usually a single command such as a button click or menu item selection must only be processed by one handler.
Stop the event from propagating to its parent window.
Returns the old propagation level value which may be later passed to resumePropagation/2
to allow
propagating the event again.