public interface HasMouseStillDownHandlers
extends com.google.gwt.event.shared.HasHandlers
| Modifier and Type | Method and Description |
|---|---|
com.google.gwt.event.shared.HandlerRegistration |
addMouseStillDownHandler(MouseStillDownHandler handler)
Executed repeatedly (every
mouseStillDownDelay by
default) when the system is idle - i.e. |
com.google.gwt.event.shared.HandlerRegistration addMouseStillDownHandler(MouseStillDownHandler handler)
mouseStillDownDelay by
default) when the system is idle - i.e. not busy running other scripts - and the left mouse button is held down after
having been pressed in the object. This event is not native to JavaScript, but is provided by the ISC system. Note:
The event handling system waits mouseStillDownInitialDelay before calling mouseStillDown for the first time on the widget. Subsequently the method is
called every mouseStillDownDelay. Both attributes are
configurable per widget instance.
This method is called only when the left mouse is held down.
handler - the mouseStillDown handlerHandlerRegistration used to remove this handler