Uses of Class
javafx.scene.input.ContextMenuEvent
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 ContextMenuEvent in javafx.scene
Modifier and TypeMethodDescriptionfinal EventHandler<? super ContextMenuEvent>
Node.getOnContextMenuRequested()
Gets the value of theonContextMenuRequested
property.final EventHandler<? super ContextMenuEvent>
Scene.getOnContextMenuRequested()
Gets the value of theonContextMenuRequested
property.final ObjectProperty<EventHandler<? super ContextMenuEvent>>
Defines a function to be called when a context menu has been requested on thisNode
.final ObjectProperty<EventHandler<? super ContextMenuEvent>>
Scene.onContextMenuRequestedProperty()
Defines a function to be called when a mouse button has been clicked (pressed and released) on thisScene
.Modifier and TypeMethodDescriptionfinal void
Node.setOnContextMenuRequested
(EventHandler<? super ContextMenuEvent> value) Sets the value of theonContextMenuRequested
property.final void
Scene.setOnContextMenuRequested
(EventHandler<? super ContextMenuEvent> value) Sets the value of theonContextMenuRequested
property. -
Uses of ContextMenuEvent in javafx.scene.input
Modifier and TypeFieldDescriptionstatic final EventType<ContextMenuEvent>
ContextMenuEvent.ANY
Common supertype for all context menu event types.static final EventType<ContextMenuEvent>
ContextMenuEvent.CONTEXT_MENU_REQUESTED
This event occurs when a context menu is requested.Modifier and TypeMethodDescriptionContextMenuEvent.copyFor
(Object newSource, EventTarget newTarget) ModifierConstructorDescriptionContextMenuEvent
(Object source, EventTarget target, EventType<ContextMenuEvent> eventType, double x, double y, double screenX, double screenY, boolean keyboardTrigger, PickResult pickResult) Constructs new ContextMenu event.ContextMenuEvent
(EventType<ContextMenuEvent> eventType, double x, double y, double screenX, double screenY, boolean keyboardTrigger, PickResult pickResult) Constructs new ContextMenu event with empty source and target.