Interface KeyPressHandler
- All Superinterfaces:
 EventHandler
- 
Method Summary
Modifier and TypeMethodDescriptionvoidonKeyPress(KeyPressEvent event) Executed when a key is pressed and released on a focusable widget (canFocus: true). 
- 
Method Details
- 
onKeyPress
Executed when a key is pressed and released on a focusable widget (canFocus: true).Use
EventHandler.getKey()to find out the String of the key that was pressed, and useEventHandler.shiftKeyDown()and related functions to determine whether modifier keys were down.- Parameters:
 event- the event
 
 -