Serializable
The
MenuShortcut
class represents a keyboard accelerator for a MenuItem.
Menu shortcuts are created using virtual keycodes, not characters. For example, a menu shortcut for Ctrl-a (assuming that Control is the accelerator key) would be created with code like the following:
MenuShortcut ms = new MenuShortcut(KeyEvent.VK_A, false);
or alternatively
MenuShortcut ms = new MenuShortcut(KeyEvent.getExtendedKeyCodeForChar('A'), false);
Menu shortcuts may also be constructed for a wider set of keycodes using the java.awt.event.KeyEvent.getExtendedKeyCodeForChar
call. For example, a menu shortcut for "Ctrl+cyrillic ef" is created by
MenuShortcut ms = new MenuShortcut(KeyEvent.getExtendedKeyCodeForChar('Ñ'), false);
Note that shortcuts created with a keycode or an extended keycode defined as a constant in KeyEvent
work regardless of the current keyboard layout. However, a shortcut made of an extended keycode not listed in KeyEvent
only work if the current keyboard layout produces a corresponding letter.
The accelerator key is platform-dependent and may be obtained via Toolkit.getMenuShortcutKeyMaskEx()
.
Constructors
Constructs a new MenuShortcut for the specified virtual keycode.
Constructs a new MenuShortcut for the specified virtual keycode.
boolean
Returns whether this MenuShortcut is the same as another: equality is defined to mean that both MenuShortcuts use the same key and both either use or don't use the SHIFT key.
boolean
Returns whether this MenuShortcut is the same as another: equality is defined to mean that both MenuShortcuts use the same key and both either use or don't use the SHIFT key.
int
Returns the raw keycode of this MenuShortcut.
int
Returns the hashcode for this MenuShortcut.
Returns the parameter string representing the state of this MenuShortcut.
Returns an internationalized description of the MenuShortcut.
boolean
Returns whether this MenuShortcut must be invoked using the SHIFT key.
public MenuShortcut(int key)
Constructs a new MenuShortcut for the specified virtual keycode.
public MenuShortcut(int key, boolean useShiftModifier)
Constructs a new MenuShortcut for the specified virtual keycode.
public int getKey()
Returns the raw keycode of this MenuShortcut.
public boolean usesShiftModifier()
Returns whether this MenuShortcut must be invoked using the SHIFT key.
true
if this MenuShortcut must be invoked using the SHIFT key, false
otherwise.
Returns whether this MenuShortcut is the same as another: equality is defined to mean that both MenuShortcuts use the same key and both either use or don't use the SHIFT key.
public int hashCode()
Returns the hashcode for this MenuShortcut.
Returns an internationalized description of the MenuShortcut.
()
Returns the parameter string representing the state of this MenuShortcut. This string is useful for debugging.
RetroSearch is an open source project built by @garambo | Open a GitHub Issue
Search and Browse the WWW like it's 1997 | Search results from DuckDuckGo
HTML:
3.2
| Encoding:
UTF-8
| Version:
0.7.4