napari.utils.events.Event#
- class napari.utils.events.Event(type_name: str, native: Any = None, **kwargs: Any)[source]#
Bases:
object
Class describing events that occur and can be reacted to with callbacks. Each event instance contains information about a single event that has occurred such as a key press, mouse motion, timer activation, etc.
Subclasses:
KeyEvent
,MouseEvent
,TouchEvent
,StylusEvent
The creation of events and passing of events to the appropriate callback functions is the responsibility of
EventEmitter
instances.Note that each event object has an attribute for each of the input arguments listed below.
- Parameters:
Methods
Attributes
This boolean property indicates whether the event will be delivered to event callbacks.
This boolean property indicates whether the event has already been acted on by an event handler.
native
The object that the event applies to (i.e. the source of the event).
List of objects that the event applies to (i.e. are or have been a source of the event).
type
Details
- property blocked: bool#
This boolean property indicates whether the event will be delivered to event callbacks. If it is set to True, then no further callbacks will receive the event. When possible, it is recommended to use Event.handled rather than Event.blocked.
- property handled: bool#
This boolean property indicates whether the event has already been acted on by an event handler. Since many handlers may have access to the same events, it is recommended that each check whether the event has already been handled as well as set handled=True if it decides to act on the event.