| Package | Description |
|---|---|
| com.sun.javafx.menu | |
| com.sun.javafx.scene | |
| com.sun.javafx.scene.control.behavior | |
| com.sun.javafx.scene.control.skin | |
| com.sun.javafx.tk.quantum | |
| javafx.scene |
Provides the core set of base
classes for the JavaFX Scene Graph API.
|
| javafx.scene.control |
The JavaFX User Interface Controls (UI Controls or just Controls) are
specialized Nodes in the JavaFX Scenegraph especially suited for reuse in
many different application contexts.
|
| javafx.scene.input |
Provides the set of classes for mouse and keyboard input event handling.
|
| javafx.stage |
Provides the top-level container classes for JavaFX content.
|
| Modifier and Type | Method and Description |
|---|---|
KeyCombination |
MenuItemBase.getAccelerator() |
| Modifier and Type | Method and Description |
|---|---|
ObjectProperty<KeyCombination> |
MenuItemBase.acceleratorProperty() |
| Modifier and Type | Method and Description |
|---|---|
void |
MenuItemBase.setAccelerator(KeyCombination value) |
| Modifier and Type | Field and Description |
|---|---|
private ObservableMap<KeyCombination,java.lang.Runnable> |
KeyboardShortcutsHandler.accelerators |
private KeyboardShortcutsHandler.CopyOnWriteMap<KeyCombination,java.lang.Runnable> |
KeyboardShortcutsHandler.acceleratorsBackingMap |
private ObservableMap<KeyCombination,ObservableList<Mnemonic>> |
KeyboardShortcutsHandler.mnemonics |
| Modifier and Type | Method and Description |
|---|---|
ObservableMap<KeyCombination,java.lang.Runnable> |
KeyboardShortcutsHandler.getAccelerators() |
ObservableMap<KeyCombination,ObservableList<Mnemonic>> |
KeyboardShortcutsHandler.getMnemonics() |
| Modifier and Type | Class and Description |
|---|---|
static class |
TextBinding.MnemonicKeyCombination
A modified version of KeyCharacterCombination, which matches
on the text property of a KeyEvent instead of on the KeyCode.
|
| Modifier and Type | Field and Description |
|---|---|
private KeyCombination |
TextBinding.mnemonicKeyCombination |
| Modifier and Type | Method and Description |
|---|---|
KeyCombination |
TextBinding.getMnemonicKeyCombination()
Returns the mnemonic KeyCombination or
null if there is no
mnemonic. |
| Modifier and Type | Field and Description |
|---|---|
private KeyCombination |
LabeledSkinBase.mnemonicCode |
| Modifier and Type | Field and Description |
|---|---|
private KeyCombination |
WindowStage.savedFullScreenExitKey |
| Modifier and Type | Method and Description |
|---|---|
KeyCombination |
WindowStage.getSavedFullScreenExitKey() |
| Modifier and Type | Method and Description |
|---|---|
private int |
GlassSystemMenu.glassModifiers(KeyCombination kcc) |
| Modifier and Type | Method and Description |
|---|---|
ObservableMap<KeyCombination,java.lang.Runnable> |
Scene.getAccelerators()
Gets the list of accelerators for this
Scene. |
ObservableMap<KeyCombination,ObservableList<Mnemonic>> |
Scene.getMnemonics()
Gets the list of mnemonics for this
Scene. |
| Modifier and Type | Field and Description |
|---|---|
private KeyCombination |
MenuItemBuilder.accelerator
Deprecated.
|
| Modifier and Type | Field and Description |
|---|---|
private ObjectProperty<KeyCombination> |
MenuItem.accelerator
The accelerator property enables accessing the associated action in one keystroke.
|
| Modifier and Type | Method and Description |
|---|---|
KeyCombination |
MenuItem.getAccelerator() |
| Modifier and Type | Method and Description |
|---|---|
ObjectProperty<KeyCombination> |
MenuItem.acceleratorProperty() |
| Modifier and Type | Method and Description |
|---|---|
B |
MenuItemBuilder.accelerator(KeyCombination x)
Deprecated.
Set the value of the
accelerator property for the instance constructed by this builder. |
void |
MenuItem.setAccelerator(KeyCombination value) |
| Modifier and Type | Class and Description |
|---|---|
class |
KeyCharacterCombination
This class represents a key combination in which the main key is specified
by its character.
|
class |
KeyCodeCombination
This class represents a key combination in which the main key is specified
by its
KeyCode. |
| Modifier and Type | Field and Description |
|---|---|
private KeyCombination |
Mnemonic.keyCombination |
private KeyCombination |
MnemonicBuilder.keyCombination
Deprecated.
|
static KeyCombination |
KeyCombination.NO_MATCH
A KeyCombination that will match with no events.
|
| Modifier and Type | Method and Description |
|---|---|
KeyCombination |
Mnemonic.getKeyCombination()
Returns the
KeyCombination |
static KeyCombination |
KeyCombination.keyCombination(java.lang.String name)
Constructs a new
KeyCombination from the specified string. |
static KeyCombination |
KeyCombination.valueOf(java.lang.String value)
Constructs a new
KeyCombination from the specified string. |
| Modifier and Type | Method and Description |
|---|---|
B |
MnemonicBuilder.keyCombination(KeyCombination x)
Deprecated.
Set the value of the
keyCombination property for the instance constructed by this builder. |
void |
Mnemonic.setKeyCombination(KeyCombination keyCombination)
Sets the
KeyCombination |
| Constructor and Description |
|---|
Mnemonic(Node node,
KeyCombination keyCombination)
|
| Modifier and Type | Field and Description |
|---|---|
private static KeyCombination |
PopupWindow.PopupEventRedirector.ESCAPE_KEY_COMBINATION |
| Modifier and Type | Field and Description |
|---|---|
private ObjectProperty<KeyCombination> |
Stage.fullScreenExitCombination |
| Modifier and Type | Method and Description |
|---|---|
KeyCombination |
Stage.getFullScreenExitKeyCombination()
Get the current sequence used to exit Full Screen mode.
|
| Modifier and Type | Method and Description |
|---|---|
ObjectProperty<KeyCombination> |
Stage.fullScreenExitKeyProperty()
Get the property for the Full Screen exit key combination.
|
| Modifier and Type | Method and Description |
|---|---|
void |
Stage.setFullScreenExitKeyCombination(KeyCombination keyCombination)
Specifies the KeyCombination that will allow the user to exit full screen
mode.
|