Package | Description |
---|---|
com.sun.javafx.robot.impl | |
com.sun.javafx.scene | |
com.sun.javafx.tk | |
javafx.scene |
Provides the core set of base
classes for the JavaFX Scene Graph API.
|
javafx.scene.input |
Provides the set of classes for mouse and keyboard input event handling.
|
Modifier and Type | Method and Description |
---|---|
abstract ScrollEvent |
FXRobotHelper.FXRobotInputAccessor.createScrollEvent(EventType<? extends ScrollEvent> eventType,
int scrollX,
int scrollY,
ScrollEvent.HorizontalTextScrollUnits xTextUnits,
int xText,
ScrollEvent.VerticalTextScrollUnits yTextUnits,
int yText,
int x,
int y,
int screenX,
int screenY,
boolean shiftDown,
boolean controlDown,
boolean altDown,
boolean metaDown) |
Modifier and Type | Method and Description |
---|---|
abstract void |
FXRobotHelper.FXRobotSceneAccessor.processScrollEvent(Scene scene,
ScrollEvent scrollEvent) |
Modifier and Type | Method and Description |
---|---|
abstract ScrollEvent |
FXRobotHelper.FXRobotInputAccessor.createScrollEvent(EventType<? extends ScrollEvent> eventType,
int scrollX,
int scrollY,
ScrollEvent.HorizontalTextScrollUnits xTextUnits,
int xText,
ScrollEvent.VerticalTextScrollUnits yTextUnits,
int yText,
int x,
int y,
int screenX,
int screenY,
boolean shiftDown,
boolean controlDown,
boolean altDown,
boolean metaDown) |
Modifier and Type | Method and Description |
---|---|
EventHandler<? super ScrollEvent> |
EventHandlerProperties.getOnScroll() |
EventHandler<? super ScrollEvent> |
EventHandlerProperties.getOnScrollFinished() |
EventHandler<? super ScrollEvent> |
EventHandlerProperties.getOnScrollStarted() |
ObjectProperty<EventHandler<? super ScrollEvent>> |
EventHandlerProperties.onScrollFinishedProperty() |
ObjectProperty<EventHandler<? super ScrollEvent>> |
EventHandlerProperties.onScrollProperty() |
ObjectProperty<EventHandler<? super ScrollEvent>> |
EventHandlerProperties.onScrollStartedProperty() |
Modifier and Type | Method and Description |
---|---|
void |
TKSceneListener.scrollEvent(EventType<ScrollEvent> eventType,
double scrollX,
double scrollY,
double totalScrollX,
double totalScrollY,
double xMultiplier,
double yMultiplier,
int touchCount,
int scrollTextX,
int scrollTextY,
int defaultTextX,
int defaultTextY,
double x,
double y,
double screenX,
double screenY,
boolean _shiftDown,
boolean _controlDown,
boolean _altDown,
boolean _metaDown,
boolean _direct,
boolean _inertia) |
Modifier and Type | Method and Description |
---|---|
B |
SceneBuilder.onScroll(EventHandler<? super ScrollEvent> x)
Deprecated.
Set the value of the
onScroll property for the instance constructed by this builder. |
B |
NodeBuilder.onScroll(EventHandler<? super ScrollEvent> x)
Deprecated.
Set the value of the
onScroll property for the instance constructed by this builder. |
B |
SceneBuilder.onScrollFinished(EventHandler<? super ScrollEvent> x)
Deprecated.
Set the value of the
onScrollFinished property for the instance constructed by this builder. |
B |
NodeBuilder.onScrollFinished(EventHandler<? super ScrollEvent> x)
Deprecated.
Set the value of the
onScrollFinished property for the instance constructed by this builder. |
B |
SceneBuilder.onScrollStarted(EventHandler<? super ScrollEvent> x)
Deprecated.
Set the value of the
onScrollStarted property for the instance constructed by this builder. |
B |
NodeBuilder.onScrollStarted(EventHandler<? super ScrollEvent> x)
Deprecated.
Set the value of the
onScrollStarted property for the instance constructed by this builder. |
void |
Scene.setOnScroll(EventHandler<? super ScrollEvent> value) |
void |
Node.setOnScroll(EventHandler<? super ScrollEvent> value) |
void |
Scene.setOnScrollFinished(EventHandler<? super ScrollEvent> value) |
void |
Node.setOnScrollFinished(EventHandler<? super ScrollEvent> value) |
void |
Scene.setOnScrollStarted(EventHandler<? super ScrollEvent> value) |
void |
Node.setOnScrollStarted(EventHandler<? super ScrollEvent> value) |
Modifier and Type | Field and Description |
---|---|
static EventType<ScrollEvent> |
ScrollEvent.ANY
Common supertype for all scroll event types.
|
static EventType<ScrollEvent> |
ScrollEvent.SCROLL
This event occurs when user performs a scrolling action such as
rotating mouse wheel or dragging a finger over touch screen.
|
static EventType<ScrollEvent> |
ScrollEvent.SCROLL_FINISHED
This event occurs when a scrolling gesture ends.
|
static EventType<ScrollEvent> |
ScrollEvent.SCROLL_STARTED
This event occurs when a scrolling gesture is detected.
|
Modifier and Type | Method and Description |
---|---|
ScrollEvent |
ScrollEvent.copyFor(Object newSource,
EventTarget newTarget) |
ScrollEvent |
ScrollEvent.copyFor(Object newSource,
EventTarget newTarget,
EventType<ScrollEvent> type)
Creates a copy of the given event with the given fields substituted.
|
Modifier and Type | Method and Description |
---|---|
EventType<ScrollEvent> |
ScrollEvent.getEventType() |
Modifier and Type | Method and Description |
---|---|
ScrollEvent |
ScrollEvent.copyFor(Object newSource,
EventTarget newTarget,
EventType<ScrollEvent> type)
Creates a copy of the given event with the given fields substituted.
|
Constructor and Description |
---|
ScrollEvent(EventType<ScrollEvent> eventType,
double x,
double y,
double screenX,
double screenY,
boolean shiftDown,
boolean controlDown,
boolean altDown,
boolean metaDown,
boolean direct,
boolean inertia,
double deltaX,
double deltaY,
double totalDeltaX,
double totalDeltaY,
double multiplierX,
double multiplierY,
ScrollEvent.HorizontalTextScrollUnits textDeltaXUnits,
double textDeltaX,
ScrollEvent.VerticalTextScrollUnits textDeltaYUnits,
double textDeltaY,
int touchCount,
PickResult pickResult)
Constructs new ScrollEvent event with null source and target
|
ScrollEvent(EventType<ScrollEvent> eventType,
double x,
double y,
double screenX,
double screenY,
boolean shiftDown,
boolean controlDown,
boolean altDown,
boolean metaDown,
boolean direct,
boolean inertia,
double deltaX,
double deltaY,
double totalDeltaX,
double totalDeltaY,
ScrollEvent.HorizontalTextScrollUnits textDeltaXUnits,
double textDeltaX,
ScrollEvent.VerticalTextScrollUnits textDeltaYUnits,
double textDeltaY,
int touchCount,
PickResult pickResult)
Constructs new ScrollEvent event with null source and target
|
ScrollEvent(Object source,
EventTarget target,
EventType<ScrollEvent> eventType,
double x,
double y,
double screenX,
double screenY,
boolean shiftDown,
boolean controlDown,
boolean altDown,
boolean metaDown,
boolean direct,
boolean inertia,
double deltaX,
double deltaY,
double totalDeltaX,
double totalDeltaY,
ScrollEvent.HorizontalTextScrollUnits textDeltaXUnits,
double textDeltaX,
ScrollEvent.VerticalTextScrollUnits textDeltaYUnits,
double textDeltaY,
int touchCount,
PickResult pickResult)
Constructs new ScrollEvent event.
|
Copyright © 2020. All rights reserved.