Uses of Class
org.apache.pivot.wtk.Keyboard.KeyLocation

Packages that use Keyboard.KeyLocation
org.apache.pivot.wtk Contains classes that define the structure and behavior of WTK user interface components. 
org.apache.pivot.wtk.content Contains classes representing component data, such as list items or table rows. 
org.apache.pivot.wtk.skin Contains common skins and abstract base classes for theme-specific skins. 
org.apache.pivot.wtk.skin.terra Defines skin classes for the "Terra" theme. 
 

Uses of Keyboard.KeyLocation in org.apache.pivot.wtk
 

Methods in org.apache.pivot.wtk that return Keyboard.KeyLocation
static Keyboard.KeyLocation Keyboard.KeyLocation.valueOf(String name)
          Returns the enum constant of this type with the specified name.
static Keyboard.KeyLocation[] Keyboard.KeyLocation.values()
          Returns an array containing the constants of this enum type, in the order they are declared.
 

Methods in org.apache.pivot.wtk with parameters of type Keyboard.KeyLocation
 boolean ComponentKeyListener.keyPressed(Component component, int keyCode, Keyboard.KeyLocation keyLocation)
          Called when a key has been pressed.
 boolean ComponentKeyListener.Adapter.keyPressed(Component component, int keyCode, Keyboard.KeyLocation keyLocation)
           
protected  boolean Component.keyPressed(int keyCode, Keyboard.KeyLocation keyLocation)
           
 void Application.UnprocessedKeyHandler.keyPressed(int keyCode, Keyboard.KeyLocation keyLocation)
           
 boolean ComponentKeyListener.keyReleased(Component component, int keyCode, Keyboard.KeyLocation keyLocation)
          Called when a key has been released.
 boolean ComponentKeyListener.Adapter.keyReleased(Component component, int keyCode, Keyboard.KeyLocation keyLocation)
           
protected  boolean Component.keyReleased(int keyCode, Keyboard.KeyLocation keyLocation)
           
 boolean Window.keyReleased(int keyCode, Keyboard.KeyLocation keyLocation)
           
 void Application.UnprocessedKeyHandler.keyReleased(int keyCode, Keyboard.KeyLocation keyLocation)
           
 

Uses of Keyboard.KeyLocation in org.apache.pivot.wtk.content
 

Methods in org.apache.pivot.wtk.content with parameters of type Keyboard.KeyLocation
 boolean TableViewRowEditor.keyPressed(int keyCode, Keyboard.KeyLocation keyLocation)
           
 boolean ListViewItemEditor.keyPressed(int keyCode, Keyboard.KeyLocation keyLocation)
           
 boolean TreeViewNodeEditor.keyPressed(int keyCode, Keyboard.KeyLocation keyLocation)
           
 

Uses of Keyboard.KeyLocation in org.apache.pivot.wtk.skin
 

Methods in org.apache.pivot.wtk.skin with parameters of type Keyboard.KeyLocation
 boolean TextAreaSkin.keyPressed(Component component, int keyCode, Keyboard.KeyLocation keyLocation)
           
 boolean PushButtonSkin.keyPressed(Component component, int keyCode, Keyboard.KeyLocation keyLocation)
          SPACE Repaints the component to reflect the pressed state.
 boolean CalendarButtonSkin.keyPressed(Component component, int keyCode, Keyboard.KeyLocation keyLocation)
          SPACE Repaints the component to reflect the pressed state.
 boolean ScrollPaneSkin.keyPressed(Component component, int keyCode, Keyboard.KeyLocation keyLocation)
          Key presses have no effect if the event has already been consumed.
 boolean MenuButtonSkin.keyPressed(Component component, int keyCode, Keyboard.KeyLocation keyLocation)
          SPACE Repaints the component to reflect the pressed state.
 boolean ComponentSkin.keyPressed(Component component, int keyCode, Keyboard.KeyLocation keyLocation)
          TAB Transfers focus forwards
TAB + SHIFT Transfers focus backwards
 boolean ListButtonSkin.keyPressed(Component component, int keyCode, Keyboard.KeyLocation keyLocation)
          SPACE Repaints the component to reflect the pressed state and opens the popup.
UP Selects the previous enabled list item.
DOWN Selects the next enabled list item.
 boolean TextPaneSkin.keyPressed(Component component, int keyCode, Keyboard.KeyLocation keyLocation)
           
 boolean ColorChooserButtonSkin.keyPressed(Component component, int keyCode, Keyboard.KeyLocation keyLocation)
          SPACE Repaints the component to reflect the pressed state.
 boolean CheckboxSkin.keyReleased(Component component, int keyCode, Keyboard.KeyLocation keyLocation)
          SPACE 'presses' the button.
 boolean RadioButtonSkin.keyReleased(Component component, int keyCode, Keyboard.KeyLocation keyLocation)
          SPACE 'presses' the button.
 boolean PushButtonSkin.keyReleased(Component component, int keyCode, Keyboard.KeyLocation keyLocation)
          SPACE 'presses' the button.
 boolean CalendarButtonSkin.keyReleased(Component component, int keyCode, Keyboard.KeyLocation keyLocation)
          SPACE 'presses' the button.
 boolean MenuButtonSkin.keyReleased(Component component, int keyCode, Keyboard.KeyLocation keyLocation)
          SPACE 'presses' the button.
 boolean ComponentSkin.keyReleased(Component component, int keyCode, Keyboard.KeyLocation keyLocation)
           
 boolean ListButtonSkin.keyReleased(Component component, int keyCode, Keyboard.KeyLocation keyLocation)
          SPACE 'presses' the button.
 boolean ColorChooserButtonSkin.keyReleased(Component component, int keyCode, Keyboard.KeyLocation keyLocation)
          SPACE 'presses' the button.
 

Uses of Keyboard.KeyLocation in org.apache.pivot.wtk.skin.terra
 

Methods in org.apache.pivot.wtk.skin.terra with parameters of type Keyboard.KeyLocation
 boolean TerraSliderSkin.ThumbSkin.keyPressed(Component component, int keyCode, Keyboard.KeyLocation keyLocation)
          LEFT or DOWN Decrement the slider's value.
RIGHT or UP Increment the slider's value.
 boolean TerraSheetSkin.keyPressed(Component component, int keyCode, Keyboard.KeyLocation keyLocation)
          ENTER Close the sheet with a 'result' of true.
ESCAPE Close the sheet with a 'result' of false.
 boolean TerraFileBrowserSkin.keyPressed(Component component, int keyCode, Keyboard.KeyLocation keyLocation)
          ENTER Change into the selected directory if TerraFileBrowserSkin.keyboardFolderTraversalEnabled is true.
DELETE or BACKSPACE Change into the parent of the current directory.
F5 Refresh the file list.
 boolean TerraMenuSkin.keyPressed(Component component, int keyCode, Keyboard.KeyLocation keyLocation)
          UP Select the previous enabled menu item.
DOWN Select the next enabled menu item.
LEFT Close the current sub-menu.
RIGHT Open the sub-menu of the current menu item.
ENTER 'presses' the active menu item if it does not have a sub-menu.
 boolean TerraMenuPopupSkin.keyPressed(Component component, int keyCode, Keyboard.KeyLocation keyLocation)
          ESCAPE Close the menu popup.
 boolean TerraTextInputSkin.keyPressed(Component component, int keyCode, Keyboard.KeyLocation keyLocation)
          DELETE Delete the character after the caret or the entire selection if there is one.
BACKSPACE Delete the character before the caret or the entire selection if there is one.
 boolean TerraListViewSkin.keyPressed(Component component, int keyCode, Keyboard.KeyLocation keyLocation)
          UP Selects the previous enabled list item when select mode is not ListView.SelectMode.NONE
DOWN Selects the next enabled list item when select mode is not ListView.SelectMode.NONE
 boolean TerraSuggestionPopupSkin.keyPressed(Component component, int keyCode, Keyboard.KeyLocation keyLocation)
          ENTER Close the suggestion popup with a 'result' of true.
TAB Close the suggestion popup with a 'result' of true, and transfer focus forwards from the TextInput.
TAB + SHIFT Close the suggestion popup with a 'result' of true, and transfer focus backwards from the TextInput.
ESCAPE Close the suggestion popup with a 'result' of false.
 boolean TerraFrameSkin.keyPressed(Component component, int keyCode, Keyboard.KeyLocation keyLocation)
           
 boolean TerraAccordionSkin.keyPressed(Component component, int keyCode, Keyboard.KeyLocation keyLocation)
          Key presses have no effect if the event has already been consumed.
 boolean TerraTabPaneSkin.keyPressed(Component component, int keyCode, Keyboard.KeyLocation keyLocation)
          Key presses have no effect if the event has already been consumed.
 boolean TerraSpinnerSkin.SpinnerContentSkin.keyPressed(Component component, int keyCode, Keyboard.KeyLocation keyLocation)
          UP Select the previous spinner item.
DOWN Select the next spinner item.
 boolean TerraCalendarSkin.DateButtonSkin.keyPressed(Component component, int keyCode, Keyboard.KeyLocation keyLocation)
          ENTER 'presses' the button.
UP, DOWN, LEFT & RIGHT Navigate around the date grid.
 boolean TerraTableViewSkin.keyPressed(Component component, int keyCode, Keyboard.KeyLocation keyLocation)
          UP Selects the previous enabled row when select mode is not TableView.SelectMode.NONE
DOWN Selects the next enabled row when select mode is not TableView.SelectMode.NONE
 boolean TerraDialogSkin.keyPressed(Component component, int keyCode, Keyboard.KeyLocation keyLocation)
          ENTER Close the dialog with a 'result' of true.
ESCAPE Close the dialog with a 'result' of false.
 boolean TerraTreeViewSkin.keyPressed(Component component, int keyCode, Keyboard.KeyLocation keyLocation)
          UP Selects the previous enabled node when select mode is not TreeView.SelectMode.NONE
DOWN Selects the next enabled node when select mode is not TreeView.SelectMode.NONE
 boolean TerraFileBrowserSkin.keyReleased(Component component, int keyCode, Keyboard.KeyLocation keyLocation)
          CommandModifier + F Transfers focus to the search TextInput.
 boolean TerraMenuSkin.keyReleased(Component component, int keyCode, Keyboard.KeyLocation keyLocation)
          SPACE 'presses' the active menu item if it does not have a sub-menu.
 boolean TerraListViewSkin.keyReleased(Component component, int keyCode, Keyboard.KeyLocation keyLocation)
          SPACE Toggles check mark selection when select mode is ListView.SelectMode.SINGLE
 boolean TerraCalendarSkin.DateButtonSkin.keyReleased(Component component, int keyCode, Keyboard.KeyLocation keyLocation)
          SPACE 'presses' the button.
 boolean TerraTreeViewSkin.keyReleased(Component component, int keyCode, Keyboard.KeyLocation keyLocation)
          SPACE toggles check mark selection when select mode is TreeView.SelectMode.SINGLE