public class KeyPressEvent extends BrowserEvent<KeyPressHandler> implements Cancellable
jsObj
Constructor and Description |
---|
KeyPressEvent(com.google.gwt.core.client.JavaScriptObject jsObj) |
Modifier and Type | Method and Description |
---|---|
void |
cancel()
Call this method to suppress native behavior in response to the keyPress, and prevent this event from bubbling to
this widget's parent, or true or undefined to bubble.
|
protected void |
dispatch(KeyPressHandler handler) |
static <S extends HasKeyPressHandlers & com.google.gwt.event.shared.HasHandlers> |
fire(S source,
com.google.gwt.core.client.JavaScriptObject jsObj)
Fires a open event on all registered handlers in the handler manager.If no
such handlers exist, this method will do nothing.
|
com.google.gwt.event.shared.GwtEvent.Type<KeyPressHandler> |
getAssociatedType() |
Canvas |
getFiringCanvas()
Returns the
Canvas firing the event. |
java.lang.String |
getKeyName()
Return the name of the key for the event passed in.
|
static com.google.gwt.event.shared.GwtEvent.Type<KeyPressHandler> |
getType()
Gets the type associated with this event.
|
boolean |
isCancelled() |
getX, getY, isAltKeyDown, isCtrlKeyDown, isLeftButtonDown, isRightButtonDown
getFiringInstanceAsJavaScriptObject
assertLive, getSource, isLive, kill, revive
public KeyPressEvent(com.google.gwt.core.client.JavaScriptObject jsObj)
public Canvas getFiringCanvas()
Canvas
firing the event.public static <S extends HasKeyPressHandlers & com.google.gwt.event.shared.HasHandlers> void fire(S source, com.google.gwt.core.client.JavaScriptObject jsObj)
S
- The event sourcesource
- the source of the handlersjsObj
- the native eventpublic static com.google.gwt.event.shared.GwtEvent.Type<KeyPressHandler> getType()
protected void dispatch(KeyPressHandler handler)
dispatch
in class com.google.gwt.event.shared.GwtEvent<KeyPressHandler>
public final com.google.gwt.event.shared.GwtEvent.Type<KeyPressHandler> getAssociatedType()
getAssociatedType
in class com.google.gwt.event.shared.GwtEvent<KeyPressHandler>
public void cancel()
cancel
in interface Cancellable
public boolean isCancelled()
isCancelled
in interface Cancellable
public java.lang.String getKeyName()
Strings to identify the various keys on the keyboard. For alpha keys, the single (uppercase) character value is used, such as "Q" For Numeric keys, the number is used as in a single character string, like "1" Function keys are identified as "f1" - "f12" Non alpha-numeric character keys (such as the key for "[" / "{") are identified by their unmodified character value (the value obtained by hitting the key without holding shift down), by default - exceptions are listed below. Additional key names: - Space - Tab - Enter - Escape - Backspace - Insert - Delete - Arrow_Up - Arrow_Down - Arrow_Left - Arrow_Right - Home - End - Page_Up - Page_Down - Shift - Ctrl - Alt [Note: Some keys may not be available for capture on every platform]
KeyNames