public class KeyDownEvent extends AbstractSmartEvent<KeyDownHandler> implements Cancellable
GwtEvent.Type<H>
jsObj
Constructor and Description |
---|
KeyDownEvent(JavaScriptObject jsObj) |
Modifier and Type | Method and Description |
---|---|
void |
cancel()
Call this method to attempt to cancel the event.
|
protected void |
dispatch(KeyDownHandler handler) |
static <S extends HasKeyDownHandlers & HasHandlers> |
fire(S source,
JavaScriptObject jsObj)
Fires a open event on all registered handlers in the handler manager.If no
such handlers exist, this method will do nothing.
|
GwtEvent.Type<KeyDownHandler> |
getAssociatedType() |
DynamicForm |
getForm()
Pointer to the item's form
|
FormItem |
getItem()
Item over which the keydown occurred
|
java.lang.String |
getKeyName()
Name of the key pressed (Example:
"A" , "Enter" ) |
static GwtEvent.Type<KeyDownHandler> |
getType()
Gets the type associated with this event.
|
boolean |
isAltKeyDown()
Helper method pointing to
EventHandler.altKeyDown() . |
boolean |
isCancelled() |
boolean |
isCtrlKeyDown()
Helper method pointing to
EventHandler.ctrlKeyDown()
Return true if the control key is being held down. |
boolean |
isShiftKeyDown()
Helper method pointing to
EventHandler.shiftKeyDown() |
assertLive, getSource, isLive, kill, revive
setSource, toDebugString, toString
public KeyDownEvent(JavaScriptObject jsObj)
public static <S extends HasKeyDownHandlers & HasHandlers> void fire(S source, JavaScriptObject jsObj)
S
- The event sourcesource
- the source of the handlersjsObj
- the native eventpublic static GwtEvent.Type<KeyDownHandler> getType()
protected void dispatch(KeyDownHandler handler)
dispatch
in class GwtEvent<KeyDownHandler>
public final GwtEvent.Type<KeyDownHandler> getAssociatedType()
getAssociatedType
in class GwtEvent<KeyDownHandler>
public void cancel()
FormItem.change()
or FormItem.transformInput()
instead.cancel
in interface Cancellable
public boolean isCancelled()
isCancelled
in interface Cancellable
public FormItem getItem()
public DynamicForm getForm()
public java.lang.String getKeyName()
"A"
, "Enter"
)"A"
, "Enter"
)public final boolean isAltKeyDown()
EventHandler.altKeyDown()
.
Return true if the alt key is being held down.public final boolean isCtrlKeyDown()
EventHandler.ctrlKeyDown()
Return true if the control key is being held down.public final boolean isShiftKeyDown()
EventHandler.shiftKeyDown()