Package | Description |
---|---|
com.sun.javafx.scene.input | |
com.sun.javafx.tk | |
com.sun.javafx.tk.quantum | |
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 |
---|---|
static void |
DragboardHelper.setDataAccessRestriction(Dragboard dragboard,
boolean restricted) |
void |
DragboardHelper.DragboardAccessor.setDataAccessRestriction(Dragboard dragboard,
boolean restricted) |
Modifier and Type | Method and Description |
---|---|
abstract void |
Toolkit.startDrag(TKScene scene,
Set<TransferMode> tm,
TKDragSourceListener l,
Dragboard dragboard)
This function is called when a drag originates within a JavaFX application.
|
void |
DummyToolkit.startDrag(TKScene scene,
Set<TransferMode> tms,
TKDragSourceListener l,
Dragboard dragboard) |
void |
Toolkit.stopDrag(Dragboard dragboard) |
Modifier and Type | Method and Description |
---|---|
void |
QuantumToolkit.startDrag(TKScene scene,
Set<TransferMode> tm,
TKDragSourceListener l,
Dragboard dragboard) |
Modifier and Type | Method and Description |
---|---|
Dragboard |
Scene.startDragAndDrop(TransferMode... transferModes)
Confirms a potential drag and drop gesture that is recognized over this
Scene . |
Dragboard |
Node.startDragAndDrop(TransferMode... transferModes)
Confirms a potential drag and drop gesture that is recognized over this
Node . |
Modifier and Type | Method and Description |
---|---|
Dragboard |
DragEvent.getDragboard()
A dragboard that is available to transfer data.
|
static Dragboard |
Dragboard.impl_createDragboard(TKClipboard peer)
Deprecated.
This is an internal API that is not intended for use and will be removed in the next version
|
Constructor and Description |
---|
DragEvent(EventType<DragEvent> eventType,
Dragboard dragboard,
double x,
double y,
double screenX,
double screenY,
TransferMode transferMode,
Object gestureSource,
Object gestureTarget,
PickResult pickResult)
Constructs new DragEvent event with empty source and target.
|
DragEvent(Object source,
EventTarget target,
EventType<DragEvent> eventType,
Dragboard dragboard,
double x,
double y,
double screenX,
double screenY,
TransferMode transferMode,
Object gestureSource,
Object gestureTarget,
PickResult pickResult)
Constructs new DragEvent event.
|
Copyright © 2020. All rights reserved.