Package | Description |
---|---|
com.sun.javafx.event | |
com.sun.javafx.scene | |
com.sun.javafx.stage | |
javafx.event |
Provides basic framework for FX events, their delivery and handling.
|
javafx.scene |
Provides the core set of base
classes for the JavaFX Scene Graph API.
|
javafx.stage |
Provides the top-level container classes for JavaFX content.
|
Modifier and Type | Class and Description |
---|---|
class |
BasicEventDispatcher
Event dispatcher which introduces event dispatch phase specific methods -
dispatchCapturingEvent and dispatchBubblingEvent . |
class |
CompositeEventDispatcher
An
EventDispatcher which represents a chain of event dispatchers, but
can still be set or replaced as a single entity. |
class |
EventHandlerManager
An
EventDispatcher which allows user event handler / filter
registration and when used in an event dispatch chain it forwards received
events to the appropriate registered handlers / filters. |
class |
EventRedirector
This event dispatcher redirects received events to the registered child
dispatchers before dispatching them to the rest of the dispatch chain.
|
Modifier and Type | Method and Description |
---|---|
void |
EventRedirector.addEventDispatcher(EventDispatcher eventDispatcher) |
EventDispatchTree |
EventDispatchTreeImpl.append(EventDispatcher eventDispatcher) |
EventDispatchTree |
EventDispatchTree.append(EventDispatcher eventDispatcher) |
EventDispatchChain |
EventDispatchChainImpl.append(EventDispatcher eventDispatcher) |
EventDispatchTree |
EventDispatchTreeImpl.prepend(EventDispatcher eventDispatcher) |
EventDispatchTree |
EventDispatchTree.prepend(EventDispatcher eventDispatcher) |
EventDispatchChain |
EventDispatchChainImpl.prepend(EventDispatcher eventDispatcher) |
void |
EventRedirector.removeEventDispatcher(EventDispatcher eventDispatcher) |
Modifier and Type | Class and Description |
---|---|
class |
EnteredExitedHandler
EventDispatcher which translates event types for events which have
normal event types with target specific sub-types. |
class |
KeyboardShortcutsHandler |
class |
NodeEventDispatcher
An
EventDispatcher for Node . |
class |
SceneEventDispatcher
An
EventDispatcher for Scene . |
Modifier and Type | Class and Description |
---|---|
class |
WindowCloseRequestHandler |
class |
WindowEventDispatcher
An
EventDispatcher for Window . |
Modifier and Type | Method and Description |
---|---|
EventDispatchChain |
EventDispatchChain.append(EventDispatcher eventDispatcher)
Appends the specified
EventDispatcher to this chain. |
EventDispatchChain |
EventDispatchChain.prepend(EventDispatcher eventDispatcher)
Prepends the specified
EventDispatcher to this chain. |
Modifier and Type | Method and Description |
---|---|
EventDispatcher |
Scene.getEventDispatcher() |
EventDispatcher |
Node.getEventDispatcher() |
Modifier and Type | Method and Description |
---|---|
ObjectProperty<EventDispatcher> |
Scene.eventDispatcherProperty() |
ObjectProperty<EventDispatcher> |
Node.eventDispatcherProperty() |
Modifier and Type | Method and Description |
---|---|
B |
SceneBuilder.eventDispatcher(EventDispatcher x)
Deprecated.
Set the value of the
eventDispatcher property for the instance constructed by this builder. |
B |
NodeBuilder.eventDispatcher(EventDispatcher x)
Deprecated.
Set the value of the
eventDispatcher property for the instance constructed by this builder. |
void |
Scene.setEventDispatcher(EventDispatcher value) |
void |
Node.setEventDispatcher(EventDispatcher value) |
Modifier and Type | Method and Description |
---|---|
EventDispatcher |
Window.getEventDispatcher() |
Modifier and Type | Method and Description |
---|---|
ObjectProperty<EventDispatcher> |
Window.eventDispatcherProperty() |
Modifier and Type | Method and Description |
---|---|
B |
WindowBuilder.eventDispatcher(EventDispatcher x)
Deprecated.
Set the value of the
eventDispatcher property for the instance constructed by this builder. |
void |
Window.setEventDispatcher(EventDispatcher value) |
Copyright © 2020. All rights reserved.