Package | Description |
---|---|
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 | Field and Description |
---|---|
private EventHandlerProperties.EventHandlerProperty<RotateEvent> |
EventHandlerProperties.onRotate |
private EventHandlerProperties.EventHandlerProperty<RotateEvent> |
EventHandlerProperties.onRotationFinished |
private EventHandlerProperties.EventHandlerProperty<RotateEvent> |
EventHandlerProperties.onRotationStarted |
Modifier and Type | Method and Description |
---|---|
EventHandler<? super RotateEvent> |
EventHandlerProperties.getOnRotate() |
EventHandler<? super RotateEvent> |
EventHandlerProperties.getOnRotationFinished() |
EventHandler<? super RotateEvent> |
EventHandlerProperties.getOnRotationStarted() |
ObjectProperty<EventHandler<? super RotateEvent>> |
EventHandlerProperties.onRotateProperty() |
ObjectProperty<EventHandler<? super RotateEvent>> |
EventHandlerProperties.onRotationFinishedProperty() |
ObjectProperty<EventHandler<? super RotateEvent>> |
EventHandlerProperties.onRotationStartedProperty() |
Modifier and Type | Method and Description |
---|---|
void |
TKSceneListener.rotateEvent(EventType<RotateEvent> eventType,
double angle,
double totalAngle,
double x,
double y,
double screenX,
double screenY,
boolean _shiftDown,
boolean _controlDown,
boolean _altDown,
boolean _metaDown,
boolean _direct,
boolean _inertia) |
Modifier and Type | Field and Description |
---|---|
private EventHandler<? super RotateEvent> |
SceneBuilder.onRotate
Deprecated.
|
private EventHandler<? super RotateEvent> |
NodeBuilder.onRotate
Deprecated.
|
private ObjectProperty<EventHandler<? super RotateEvent>> |
Scene.onRotate
Defines a function to be called when user performs a rotating action.
|
private EventHandler<? super RotateEvent> |
SceneBuilder.onRotationFinished
Deprecated.
|
private EventHandler<? super RotateEvent> |
NodeBuilder.onRotationFinished
Deprecated.
|
private ObjectProperty<EventHandler<? super RotateEvent>> |
Scene.onRotationFinished
Defines a function to be called when a rotating gesture ends.
|
private EventHandler<? super RotateEvent> |
SceneBuilder.onRotationStarted
Deprecated.
|
private EventHandler<? super RotateEvent> |
NodeBuilder.onRotationStarted
Deprecated.
|
private ObjectProperty<EventHandler<? super RotateEvent>> |
Scene.onRotationStarted
Defines a function to be called when a rotating gesture is detected.
|
Modifier and Type | Method and Description |
---|---|
B |
SceneBuilder.onRotate(EventHandler<? super RotateEvent> x)
Deprecated.
Set the value of the
onRotate property for the instance constructed by this builder. |
B |
NodeBuilder.onRotate(EventHandler<? super RotateEvent> x)
Deprecated.
Set the value of the
onRotate property for the instance constructed by this builder. |
B |
SceneBuilder.onRotationFinished(EventHandler<? super RotateEvent> x)
Deprecated.
Set the value of the
onRotationFinished property for the instance constructed by this builder. |
B |
NodeBuilder.onRotationFinished(EventHandler<? super RotateEvent> x)
Deprecated.
Set the value of the
onRotationFinished property for the instance constructed by this builder. |
B |
SceneBuilder.onRotationStarted(EventHandler<? super RotateEvent> x)
Deprecated.
Set the value of the
onRotationStarted property for the instance constructed by this builder. |
B |
NodeBuilder.onRotationStarted(EventHandler<? super RotateEvent> x)
Deprecated.
Set the value of the
onRotationStarted property for the instance constructed by this builder. |
void |
Scene.ScenePeerListener.rotateEvent(EventType<RotateEvent> eventType,
double angle,
double totalAngle,
double x,
double y,
double screenX,
double screenY,
boolean _shiftDown,
boolean _controlDown,
boolean _altDown,
boolean _metaDown,
boolean _direct,
boolean _inertia) |
void |
Scene.setOnRotate(EventHandler<? super RotateEvent> value) |
void |
Node.setOnRotate(EventHandler<? super RotateEvent> value) |
void |
Scene.setOnRotationFinished(EventHandler<? super RotateEvent> value) |
void |
Node.setOnRotationFinished(EventHandler<? super RotateEvent> value) |
void |
Scene.setOnRotationStarted(EventHandler<? super RotateEvent> value) |
void |
Node.setOnRotationStarted(EventHandler<? super RotateEvent> value) |
Modifier and Type | Field and Description |
---|---|
static EventType<RotateEvent> |
RotateEvent.ANY
Common supertype for all rotate event types.
|
static EventType<RotateEvent> |
RotateEvent.ROTATE
This event occurs when user performs a rotating gesture such as
dragging two fingers around each other.
|
static EventType<RotateEvent> |
RotateEvent.ROTATION_FINISHED
This event occurs when a rotating gesture ends.
|
static EventType<RotateEvent> |
RotateEvent.ROTATION_STARTED
This event occurs when a rotating gesture is detected.
|
Modifier and Type | Method and Description |
---|---|
RotateEvent |
RotateEvent.copyFor(java.lang.Object newSource,
EventTarget newTarget) |
RotateEvent |
RotateEvent.copyFor(java.lang.Object newSource,
EventTarget newTarget,
EventType<RotateEvent> type)
Creates a copy of the given event with the given fields substituted.
|
Modifier and Type | Method and Description |
---|---|
EventType<RotateEvent> |
RotateEvent.getEventType() |
Modifier and Type | Method and Description |
---|---|
RotateEvent |
RotateEvent.copyFor(java.lang.Object newSource,
EventTarget newTarget,
EventType<RotateEvent> type)
Creates a copy of the given event with the given fields substituted.
|
Constructor and Description |
---|
RotateEvent(EventType<RotateEvent> eventType,
double x,
double y,
double screenX,
double screenY,
boolean shiftDown,
boolean controlDown,
boolean altDown,
boolean metaDown,
boolean direct,
boolean inertia,
double angle,
double totalAngle,
PickResult pickResult)
Constructs new RotateEvent event with null source and target
|
RotateEvent(java.lang.Object source,
EventTarget target,
EventType<RotateEvent> eventType,
double x,
double y,
double screenX,
double screenY,
boolean shiftDown,
boolean controlDown,
boolean altDown,
boolean metaDown,
boolean direct,
boolean inertia,
double angle,
double totalAngle,
PickResult pickResult)
Constructs new RotateEvent event.
|