Package | Description |
---|---|
com.sun.javafx.scene | |
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 |
---|---|
EventHandler<? super MouseDragEvent> |
EventHandlerProperties.getOnMouseDragEntered() |
EventHandler<? super MouseDragEvent> |
EventHandlerProperties.getOnMouseDragExited() |
EventHandler<? super MouseDragEvent> |
EventHandlerProperties.getOnMouseDragOver() |
EventHandler<? super MouseDragEvent> |
EventHandlerProperties.getOnMouseDragReleased() |
ObjectProperty<EventHandler<? super MouseDragEvent>> |
EventHandlerProperties.onMouseDragEnteredProperty() |
ObjectProperty<EventHandler<? super MouseDragEvent>> |
EventHandlerProperties.onMouseDragExitedProperty() |
ObjectProperty<EventHandler<? super MouseDragEvent>> |
EventHandlerProperties.onMouseDragOverProperty() |
ObjectProperty<EventHandler<? super MouseDragEvent>> |
EventHandlerProperties.onMouseDragReleasedProperty() |
Modifier and Type | Method and Description |
---|---|
B |
SceneBuilder.onMouseDragEntered(EventHandler<? super MouseDragEvent> x)
Deprecated.
Set the value of the
onMouseDragEntered property for the instance constructed by this builder. |
B |
NodeBuilder.onMouseDragEntered(EventHandler<? super MouseDragEvent> x)
Deprecated.
Set the value of the
onMouseDragEntered property for the instance constructed by this builder. |
B |
SceneBuilder.onMouseDragExited(EventHandler<? super MouseDragEvent> x)
Deprecated.
Set the value of the
onMouseDragExited property for the instance constructed by this builder. |
B |
NodeBuilder.onMouseDragExited(EventHandler<? super MouseDragEvent> x)
Deprecated.
Set the value of the
onMouseDragExited property for the instance constructed by this builder. |
B |
SceneBuilder.onMouseDragOver(EventHandler<? super MouseDragEvent> x)
Deprecated.
Set the value of the
onMouseDragOver property for the instance constructed by this builder. |
B |
NodeBuilder.onMouseDragOver(EventHandler<? super MouseDragEvent> x)
Deprecated.
Set the value of the
onMouseDragOver property for the instance constructed by this builder. |
B |
SceneBuilder.onMouseDragReleased(EventHandler<? super MouseDragEvent> x)
Deprecated.
Set the value of the
onMouseDragReleased property for the instance constructed by this builder. |
B |
NodeBuilder.onMouseDragReleased(EventHandler<? super MouseDragEvent> x)
Deprecated.
Set the value of the
onMouseDragReleased property for the instance constructed by this builder. |
void |
Scene.setOnMouseDragEntered(EventHandler<? super MouseDragEvent> value) |
void |
Node.setOnMouseDragEntered(EventHandler<? super MouseDragEvent> value) |
void |
Scene.setOnMouseDragExited(EventHandler<? super MouseDragEvent> value) |
void |
Node.setOnMouseDragExited(EventHandler<? super MouseDragEvent> value) |
void |
Scene.setOnMouseDragOver(EventHandler<? super MouseDragEvent> value) |
void |
Node.setOnMouseDragOver(EventHandler<? super MouseDragEvent> value) |
void |
Scene.setOnMouseDragReleased(EventHandler<? super MouseDragEvent> value) |
void |
Node.setOnMouseDragReleased(EventHandler<? super MouseDragEvent> value) |
Modifier and Type | Field and Description |
---|---|
static EventType<MouseDragEvent> |
MouseDragEvent.ANY
Common supertype for all mouse event types.
|
static EventType<MouseDragEvent> |
MouseDragEvent.MOUSE_DRAG_ENTERED
This event occurs when the gesture enters a node.
|
static EventType<MouseDragEvent> |
MouseDragEvent.MOUSE_DRAG_ENTERED_TARGET
This event occurs when the gesture enters a node.
|
static EventType<MouseDragEvent> |
MouseDragEvent.MOUSE_DRAG_EXITED
This event occurs when the gesture exits a node.
|
static EventType<MouseDragEvent> |
MouseDragEvent.MOUSE_DRAG_EXITED_TARGET
This event occurs when the gesture exits a node.
|
static EventType<MouseDragEvent> |
MouseDragEvent.MOUSE_DRAG_OVER
This event occurs when the gesture progresses within this node.
|
static EventType<MouseDragEvent> |
MouseDragEvent.MOUSE_DRAG_RELEASED
This event occurs when the gesture ends (by releasing mouse button)
on this node.
|
Modifier and Type | Method and Description |
---|---|
MouseDragEvent |
MouseDragEvent.copyFor(Object newSource,
EventTarget newTarget) |
MouseDragEvent |
MouseDragEvent.copyFor(Object newSource,
EventTarget newTarget,
EventType<? extends MouseEvent> type) |
static MouseDragEvent |
MouseEvent.copyForMouseDragEvent(MouseEvent e,
Object source,
EventTarget target,
EventType<MouseDragEvent> type,
Object gestureSource,
PickResult pickResult)
Creates a copy of this mouse event of MouseDragEvent type
|
Modifier and Type | Method and Description |
---|---|
EventType<MouseDragEvent> |
MouseDragEvent.getEventType() |
Modifier and Type | Method and Description |
---|---|
static MouseDragEvent |
MouseEvent.copyForMouseDragEvent(MouseEvent e,
Object source,
EventTarget target,
EventType<MouseDragEvent> type,
Object gestureSource,
PickResult pickResult)
Creates a copy of this mouse event of MouseDragEvent type
|
Constructor and Description |
---|
MouseDragEvent(EventType<MouseDragEvent> eventType,
double x,
double y,
double screenX,
double screenY,
MouseButton button,
int clickCount,
boolean shiftDown,
boolean controlDown,
boolean altDown,
boolean metaDown,
boolean primaryButtonDown,
boolean middleButtonDown,
boolean secondaryButtonDown,
boolean synthesized,
boolean popupTrigger,
PickResult pickResult,
Object gestureSource)
Constructs new MouseDragEvent event with null source and target.
|
MouseDragEvent(Object source,
EventTarget target,
EventType<MouseDragEvent> eventType,
double x,
double y,
double screenX,
double screenY,
MouseButton button,
int clickCount,
boolean shiftDown,
boolean controlDown,
boolean altDown,
boolean metaDown,
boolean primaryButtonDown,
boolean middleButtonDown,
boolean secondaryButtonDown,
boolean synthesized,
boolean popupTrigger,
PickResult pickResult,
Object gestureSource)
Constructs new MouseDragEvent event.
|
Copyright © 2020. All rights reserved.