Uses of Class
ca.corbett.extras.io.KeyStrokeManager
Packages that use KeyStrokeManager
Package
Description
Contains utility classes for dealing with input and output operations.
Contains the PropertiesDialog abstract class and its two supported implementations.
-
Uses of KeyStrokeManager in ca.corbett.extras
Fields in ca.corbett.extras declared as KeyStrokeManagerModifier and TypeFieldDescriptionprotected final KeyStrokeManagerTextInputDialog.keyStrokeManager -
Uses of KeyStrokeManager in ca.corbett.extras.io
Methods in ca.corbett.extras.io that return KeyStrokeManagerModifier and TypeMethodDescriptionKeyStrokeManager.clear()Removes all registered keyboard shortcuts and their associated actions.KeyStrokeManager.reassignHandler(Action action, String newKeyStroke) If the given action is registered, reassigns its keyboard shortcut to the newKeyStroke.KeyStrokeManager.reassignHandler(Action action, KeyStroke newKeyStroke) If the given action is registered, reassigns its keyboard shortcut to the newKeyStroke.KeyStrokeManager.registerHandler(String keyStroke, KeyAction action) A convenience method to allow registration of simple KeyActions without having to create a whole Action object.KeyStrokeManager.registerHandler(String keyStroke, Action action) Registers a keyboard shortcut with an action.KeyStrokeManager.registerHandler(KeyStroke keyStroke, KeyAction action) A convenience method to allow registration of simple KeyActions without having to create a whole Action object.KeyStrokeManager.registerHandler(KeyStroke keyStroke, Action action) Registers a keyboard shortcut with an action.KeyStrokeManager.setEnabled(boolean enabled) Can be used to enable or disable this KeyStrokeManager.KeyStrokeManager.setWarnIfMultipleHandlers(boolean warnIfMultipleHandlers) Sets whether this KeyStrokeManager should warn when multiple handlers are registered for the same keystroke.KeyStrokeManager.unregisterHandler(String keyStroke) Unregisters any handlers associated with the given KeyStroke, removing their keyboard shortcuts.KeyStrokeManager.unregisterHandler(Action action) Unregisters the given action, removing its keyboard shortcut.KeyStrokeManager.unregisterHandler(KeyStroke keyStroke) Unregisters any handlers associated with the given KeyStroke, removing their keyboard shortcuts. -
Uses of KeyStrokeManager in ca.corbett.extras.properties.dialog
Fields in ca.corbett.extras.properties.dialog declared as KeyStrokeManagerModifier and TypeFieldDescriptionprotected final KeyStrokeManagerPropertiesDialog.keyStrokeManager