Protocol
MouseDownHandler
public protocol MouseDownHandler : EventHandler
A type conforming to MouseDownHandler is capable of receiving
mouse down events through the onMouseDown method.
Before receiving events, it must be registered with the dispatcher via the registerMouseDownHandler method. Similarly, it should be unregistered before deinitialization via the unregisterMouseDownHandler method available through the dispatcher.
Relationships
Conforms To
EventHandlerAn
Eventhandleris a type capable of being registered with theDispatcherto receive events of a certain type.
Requirements
onMouseDown(globalLocation:)
func onMouseDown(globalLocation:Point)