Package org.eclipse.jface.action
Class LegacyActionTools
- java.lang.Object
-
- org.eclipse.jface.action.LegacyActionTools
-
public final class LegacyActionTools extends java.lang.ObjectSome static utility methods for handling labels on actions. This includes mnemonics and accelerators.
Clients may neither instantiate this class nor extend.
- Since:
- 3.2
-
-
Field Summary
Fields Modifier and Type Field Description static charMNEMONIC_NONEThe constant to use if there is no mnemonic for this location.
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static java.lang.StringconvertAccelerator(int keyCode)Converts an accelerator key code to a string representation.static intconvertAccelerator(java.lang.String acceleratorText)Parses the given accelerator text, and converts it to an accelerator key code.static java.lang.StringescapeMnemonics(java.lang.String text)Convenience method for escaping all mnemonics in the given string.static java.lang.StringextractAcceleratorText(java.lang.String text)Extracts the accelerator text from the given text.static charextractMnemonic(java.lang.String text)Extracts the mnemonic text from the given string.static intfindKeyCode(java.lang.String token)Maps a standard keyboard key name to an SWT key code.static java.lang.StringfindKeyString(int keyCode)Maps an SWT key code to a standard keyboard key name.static intfindModifier(java.lang.String token)Maps standard keyboard modifier key names to the corresponding SWT modifier bit.static java.lang.StringfindModifierString(int keyCode)Returns a string representation of an SWT modifier bit (SWT.CTRL, SWT.ALT, SWT.SHIFT, and SWT.COMMAND).static java.lang.StringremoveAcceleratorText(java.lang.String text)Convenience method for removing any optional accelerator text from the given string.static java.lang.StringremoveMnemonics(java.lang.String text)Convenience method for removing any mnemonics from the given string.
-
-
-
Field Detail
-
MNEMONIC_NONE
public static final char MNEMONIC_NONE
The constant to use if there is no mnemonic for this location.- See Also:
- Constant Field Values
-
-
Method Detail
-
convertAccelerator
public static java.lang.String convertAccelerator(int keyCode)
Converts an accelerator key code to a string representation.- Parameters:
keyCode- the key code to be translated- Returns:
- a string representation of the key code
-
convertAccelerator
public static int convertAccelerator(java.lang.String acceleratorText)
Parses the given accelerator text, and converts it to an accelerator key code.- Parameters:
acceleratorText- the accelerator text- Returns:
- the SWT key code, or 0 if there is no accelerator
-
extractAcceleratorText
public static java.lang.String extractAcceleratorText(java.lang.String text)
Extracts the accelerator text from the given text. Returnsnullif there is no accelerator text, and the empty string if there is no text after the accelerator delimiter (last tab or last '@' if there's no tab).- Parameters:
text- the text for the action; may benull.- Returns:
- the accelerator text, or
null
-
extractMnemonic
public static char extractMnemonic(java.lang.String text)
Extracts the mnemonic text from the given string.- Parameters:
text- The text from which the mnemonic should be extracted; may benull- Returns:
- The text of the mnemonic; will be
MNEMONIC_NONEif there is no mnemonic;
-
findKeyCode
public static int findKeyCode(java.lang.String token)
Maps a standard keyboard key name to an SWT key code. Key names are converted to upper case before comparison. If the key name is a single letter, for example "S", its character code is returned.The following key names are known (case is ignored):
"BACKSPACE""TAB""RETURN""ENTER""ESC""ESCAPE""DELETE""SPACE""ARROW_UP","ARROW_DOWN","ARROW_LEFT", and"ARROW_RIGHT""PAGE_UP"and"PAGE_DOWN""HOME""END""INSERT""F1","F2"through"F12"
- Parameters:
token- the key name- Returns:
- the SWT key code,
-1if no match was found - See Also:
SWT
-
findKeyString
public static java.lang.String findKeyString(int keyCode)
Maps an SWT key code to a standard keyboard key name. The key code is stripped of modifiers (SWT.CTRL, SWT.ALT, SWT.SHIFT, and SWT.COMMAND). If the key code is not an SWT code (for example if it a key code for the key 'S'), a string containing a character representation of the key code is returned.- Parameters:
keyCode- the key code to be translated- Returns:
- the string representation of the key code
- Since:
- 2.0
- See Also:
SWT
-
findModifier
public static int findModifier(java.lang.String token)
Maps standard keyboard modifier key names to the corresponding SWT modifier bit. The following modifier key names are recognized (case is ignored):"CTRL","SHIFT","ALT", and"COMMAND". The given modifier key name is converted to upper case before comparison.- Parameters:
token- the modifier key name- Returns:
- the SWT modifier bit, or
0if no match was found - See Also:
SWT
-
findModifierString
public static java.lang.String findModifierString(int keyCode)
Returns a string representation of an SWT modifier bit (SWT.CTRL, SWT.ALT, SWT.SHIFT, and SWT.COMMAND). Returnsnullif the key code is not an SWT modifier bit.- Parameters:
keyCode- the SWT modifier bit to be translated- Returns:
- the string representation of the SWT modifier bit, or
nullif the key code was not an SWT modifier bit - See Also:
SWT
-
removeAcceleratorText
public static java.lang.String removeAcceleratorText(java.lang.String text)
Convenience method for removing any optional accelerator text from the given string. The accelerator text appears at the end of the text, and is separated from the main part by the last tab character'\t'(or the last'@'if there is no tab).- Parameters:
text- the text- Returns:
- the text sans accelerator
-
removeMnemonics
public static java.lang.String removeMnemonics(java.lang.String text)
Convenience method for removing any mnemonics from the given string. For example,removeMnemonics("&Open")will return"Open".- Parameters:
text- the text- Returns:
- the text sans mnemonics, or empty string
-
escapeMnemonics
public static java.lang.String escapeMnemonics(java.lang.String text)
Convenience method for escaping all mnemonics in the given string. For example,escapeMnemonics("a & b & c")will return"a && b && c".- Parameters:
text- the text- Returns:
- the text with mnemonics escaped
- Since:
- 3.6
-
-