Uses of Class
javafx.scene.input.KeyCombination
| Package | Description |
|---|---|
| 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.
|
-
Uses of KeyCombination in javafx.scene
Methods in javafx.scene that return types with arguments of type KeyCombination Modifier and Type Method Description ObservableMap<KeyCombination,Runnable>Scene. getAccelerators()Gets the list of accelerators for thisScene.ObservableMap<KeyCombination,ObservableList<Mnemonic>>Scene. getMnemonics()Gets the list of mnemonics for thisScene. -
Uses of KeyCombination in javafx.scene.control
Methods in javafx.scene.control that return KeyCombination Modifier and Type Method Description KeyCombinationMenuItem. getAccelerator()Gets the value of the property accelerator.Methods in javafx.scene.control that return types with arguments of type KeyCombination Modifier and Type Method Description ObjectProperty<KeyCombination>MenuItem. acceleratorProperty()The accelerator property enables accessing the associated action in one keystroke.Methods in javafx.scene.control with parameters of type KeyCombination Modifier and Type Method Description voidMenuItem. setAccelerator(KeyCombination value)Sets the value of the property accelerator. -
Uses of KeyCombination in javafx.scene.input
Subclasses of KeyCombination in javafx.scene.input Modifier and Type Class Description classKeyCharacterCombinationThis class represents a key combination in which the main key is specified by its character.classKeyCodeCombinationThis class represents a key combination in which the main key is specified by itsKeyCode.Fields in javafx.scene.input declared as KeyCombination Modifier and Type Field Description static KeyCombinationKeyCombination. NO_MATCHA KeyCombination that will match with no events.Methods in javafx.scene.input that return KeyCombination Modifier and Type Method Description KeyCombinationMnemonic. getKeyCombination()Returns theKeyCombinationstatic KeyCombinationKeyCombination. keyCombination(String name)Constructs a newKeyCombinationfrom the specified string.static KeyCombinationKeyCombination. valueOf(String value)Constructs a newKeyCombinationfrom the specified string.Methods in javafx.scene.input with parameters of type KeyCombination Modifier and Type Method Description voidMnemonic. setKeyCombination(KeyCombination keyCombination)Sets theKeyCombinationConstructors in javafx.scene.input with parameters of type KeyCombination Constructor Description Mnemonic(Node node, KeyCombination keyCombination) -
Uses of KeyCombination in javafx.stage
Methods in javafx.stage that return KeyCombination Modifier and Type Method Description KeyCombinationStage. getFullScreenExitKeyCombination()Get the current sequence used to exit Full Screen mode.Methods in javafx.stage that return types with arguments of type KeyCombination Modifier and Type Method Description ObjectProperty<KeyCombination>Stage. fullScreenExitKeyProperty()Get the property for the Full Screen exit key combination.Methods in javafx.stage with parameters of type KeyCombination Modifier and Type Method Description voidStage. setFullScreenExitKeyCombination(KeyCombination keyCombination)Specifies the KeyCombination that will allow the user to exit full screen mode.