Uses of Class
javafx.scene.input.KeyEvent
Packages that use KeyEvent
Package
Description
Provides the core set of base
classes for the JavaFX Scene Graph API.
Provides the set of classes for mouse and keyboard input event handling.
-
Uses of KeyEvent in javafx.scene
Methods in javafx.scene that return types with arguments of type KeyEventModifier and TypeMethodDescriptionfinal EventHandler<? super KeyEvent>
Node.getOnKeyPressed()
Gets the value of the property onKeyPressed.final EventHandler<? super KeyEvent>
Scene.getOnKeyPressed()
Gets the value of the property onKeyPressed.final EventHandler<? super KeyEvent>
Node.getOnKeyReleased()
Gets the value of the property onKeyReleased.final EventHandler<? super KeyEvent>
Scene.getOnKeyReleased()
Gets the value of the property onKeyReleased.final EventHandler<? super KeyEvent>
Node.getOnKeyTyped()
Gets the value of the property onKeyTyped.final EventHandler<? super KeyEvent>
Scene.getOnKeyTyped()
Gets the value of the property onKeyTyped.final ObjectProperty<EventHandler<? super KeyEvent>>
Node.onKeyPressedProperty()
Defines a function to be called when thisNode
or its childNode
has input focus and a key has been pressed.final ObjectProperty<EventHandler<? super KeyEvent>>
Scene.onKeyPressedProperty()
Defines a function to be called when someNode
of thisScene
has input focus and a key has been pressed.final ObjectProperty<EventHandler<? super KeyEvent>>
Node.onKeyReleasedProperty()
Defines a function to be called when thisNode
or its childNode
has input focus and a key has been released.final ObjectProperty<EventHandler<? super KeyEvent>>
Scene.onKeyReleasedProperty()
Defines a function to be called when someNode
of thisScene
has input focus and a key has been released.final ObjectProperty<EventHandler<? super KeyEvent>>
Node.onKeyTypedProperty()
Defines a function to be called when thisNode
or its childNode
has input focus and a key has been typed.final ObjectProperty<EventHandler<? super KeyEvent>>
Scene.onKeyTypedProperty()
Defines a function to be called when someNode
of thisScene
has input focus and a key has been typed.Method parameters in javafx.scene with type arguments of type KeyEventModifier and TypeMethodDescriptionfinal void
Node.setOnKeyPressed
(EventHandler<? super KeyEvent> value) Sets the value of the property onKeyPressed.final void
Scene.setOnKeyPressed
(EventHandler<? super KeyEvent> value) Sets the value of the property onKeyPressed.final void
Node.setOnKeyReleased
(EventHandler<? super KeyEvent> value) Sets the value of the property onKeyReleased.final void
Scene.setOnKeyReleased
(EventHandler<? super KeyEvent> value) Sets the value of the property onKeyReleased.final void
Node.setOnKeyTyped
(EventHandler<? super KeyEvent> value) Sets the value of the property onKeyTyped.final void
Scene.setOnKeyTyped
(EventHandler<? super KeyEvent> value) Sets the value of the property onKeyTyped. -
Uses of KeyEvent in javafx.scene.input
Fields in javafx.scene.input with type parameters of type KeyEventModifier and TypeFieldDescriptionKeyEvent.ANY
Common supertype for all key event types.KeyEvent.KEY_PRESSED
This event occurs when a key has been pressed.KeyEvent.KEY_RELEASED
This event occurs when a key has been released.KeyEvent.KEY_TYPED
This event occurs when a character-generating key was typed (pressed and released).Methods in javafx.scene.input that return KeyEventModifier and TypeMethodDescriptionKeyEvent.copyFor
(Object newSource, EventTarget newTarget) KeyEvent.copyFor
(Object source, EventTarget target, EventType<KeyEvent> type) Creates a copy of the given event with the given fields substituted.Methods in javafx.scene.input that return types with arguments of type KeyEventMethods in javafx.scene.input with parameters of type KeyEventModifier and TypeMethodDescriptionboolean
Tests whether this key combination matches the key combination in the givenKeyEvent
.boolean
Tests whether this key combination matches the key combination in the givenKeyEvent
.boolean
Tests whether this key combination matches the combination in the givenKeyEvent
.Method parameters in javafx.scene.input with type arguments of type KeyEventModifier and TypeMethodDescriptionKeyEvent.copyFor
(Object source, EventTarget target, EventType<KeyEvent> type) Creates a copy of the given event with the given fields substituted.Constructor parameters in javafx.scene.input with type arguments of type KeyEventModifierConstructorDescriptionKeyEvent
(Object source, EventTarget target, EventType<KeyEvent> eventType, String character, String text, KeyCode code, boolean shiftDown, boolean controlDown, boolean altDown, boolean metaDown) Constructs a newKeyEvent
event from the specified parameters.KeyEvent
(EventType<KeyEvent> eventType, String character, String text, KeyCode code, boolean shiftDown, boolean controlDown, boolean altDown, boolean metaDown) Constructs a newKeyEvent
event from the specified parameters, with anull
source and target.