Class KeyDownEvent
java.lang.Object
com.google.web.bindery.event.shared.Event<H>
com.google.gwt.event.shared.GwtEvent<H>
com.smartgwt.client.event.AbstractSmartEvent<KeyDownHandler>
com.smartgwt.client.widgets.form.fields.events.KeyDownEvent
- All Implemented Interfaces:
Cancellable
-
Nested Class Summary
Nested classes/interfaces inherited from class com.google.gwt.event.shared.GwtEvent
GwtEvent.Type<H extends Object>
-
Field Summary
Fields inherited from class com.smartgwt.client.event.AbstractSmartEvent
jsObj
-
Constructor Summary
-
Method Summary
Modifier and TypeMethodDescriptionvoid
cancel()
Call this method to attempt to cancel the event.protected void
dispatch
(KeyDownHandler handler) static <S extends HasKeyDownHandlers & HasHandlers>
voidfire
(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.final GwtEvent.Type<KeyDownHandler>
Returns theFormItem
firing the event.getForm()
Pointer to the item's formgetItem()
Item over which the keydown occurredName of the key pressed (Example:"A"
,"Enter"
)static GwtEvent.Type<KeyDownHandler>
getType()
Gets the type associated with this event.final boolean
Helper method pointing toEventHandler.altKeyDown()
.boolean
final boolean
Helper method pointing toEventHandler.ctrlKeyDown()
Return true if the control key is being held down.final boolean
Helper method pointing toEventHandler.shiftKeyDown()
Methods inherited from class com.smartgwt.client.event.AbstractSmartEvent
getFiringInstanceAsJavaScriptObject
Methods inherited from class com.google.gwt.event.shared.GwtEvent
assertLive, getSource, isLive, kill, revive
Methods inherited from class com.google.web.bindery.event.shared.Event
setSource, toDebugString, toString
-
Constructor Details
-
KeyDownEvent
-
-
Method Details
-
getFiringItem
Returns theFormItem
firing the event.- Returns:
- FormItem firing the event
-
fire
public static <S extends HasKeyDownHandlers & HasHandlers> void 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.- Type Parameters:
S
- The event source- Parameters:
source
- the source of the handlersjsObj
- the native event
-
getType
Gets the type associated with this event.- Returns:
- returns the handler type
-
dispatch
- Specified by:
dispatch
in classGwtEvent<KeyDownHandler>
-
getAssociatedType
- Specified by:
getAssociatedType
in classGwtEvent<KeyDownHandler>
-
cancel
public void cancel()Call this method to attempt to cancel the event. Note for general purpose APIs for managing whether user input is allowed, useFormItem.change()
orFormItem.transformInput()
instead.- Specified by:
cancel
in interfaceCancellable
-
isCancelled
public boolean isCancelled()- Specified by:
isCancelled
in interfaceCancellable
- Returns:
- true if cancelled
-
getItem
Item over which the keydown occurred- Returns:
- Item over which the keydown occurred
-
getForm
Pointer to the item's form- Returns:
- Pointer to the item's form
-
getKeyName
Name of the key pressed (Example:"A"
,"Enter"
)- Returns:
- Name of the key pressed (Example:
"A"
,"Enter"
)
-
isAltKeyDown
public final boolean isAltKeyDown()Helper method pointing toEventHandler.altKeyDown()
. Return true if the alt key is being held down. -
isCtrlKeyDown
public final boolean isCtrlKeyDown()Helper method pointing toEventHandler.ctrlKeyDown()
Return true if the control key is being held down. -
isShiftKeyDown
public final boolean isShiftKeyDown()Helper method pointing toEventHandler.shiftKeyDown()
- Returns:
- true if the shift key is being held down.
-