Spec-Zone .ru
спецификации, руководства, описания, API
|
Package | Description |
---|---|
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.
|
javafx.scene.web |
This package provides means for loading and displaying Web content.
|
Modifier and Type | Field and Description |
---|---|
private TouchEvent |
Scene.nextTouchEvent |
Modifier and Type | Field and Description |
---|---|
private ObjectProperty<EventHandler<? super TouchEvent>> |
Scene.onTouchMoved
Defines a function to be called when a touch point is moved.
|
private EventHandler<? super TouchEvent> |
SceneBuilder.onTouchMoved |
private EventHandler<? super TouchEvent> |
NodeBuilder.onTouchMoved |
private ObjectProperty<EventHandler<? super TouchEvent>> |
Scene.onTouchPressed
Defines a function to be called when a new touch point is pressed.
|
private EventHandler<? super TouchEvent> |
SceneBuilder.onTouchPressed |
private EventHandler<? super TouchEvent> |
NodeBuilder.onTouchPressed |
private ObjectProperty<EventHandler<? super TouchEvent>> |
Scene.onTouchReleased
Defines a function to be called when a new touch point is pressed.
|
private EventHandler<? super TouchEvent> |
SceneBuilder.onTouchReleased |
private EventHandler<? super TouchEvent> |
NodeBuilder.onTouchReleased |
private ObjectProperty<EventHandler<? super TouchEvent>> |
Scene.onTouchStationary
Defines a function to be called when a touch point stays pressed and
still.
|
private EventHandler<? super TouchEvent> |
SceneBuilder.onTouchStationary |
private EventHandler<? super TouchEvent> |
NodeBuilder.onTouchStationary |
Modifier and Type | Method and Description |
---|---|
EventHandler<? super TouchEvent> |
Scene.getOnTouchMoved()
Gets the value of the property onTouchMoved.
|
EventHandler<? super TouchEvent> |
Node.getOnTouchMoved()
Gets the value of the property onTouchMoved.
|
EventHandler<? super TouchEvent> |
Scene.getOnTouchPressed()
Gets the value of the property onTouchPressed.
|
EventHandler<? super TouchEvent> |
Node.getOnTouchPressed()
Gets the value of the property onTouchPressed.
|
EventHandler<? super TouchEvent> |
Scene.getOnTouchReleased()
Gets the value of the property onTouchReleased.
|
EventHandler<? super TouchEvent> |
Node.getOnTouchReleased()
Gets the value of the property onTouchReleased.
|
EventHandler<? super TouchEvent> |
Scene.getOnTouchStationary()
Gets the value of the property onTouchStationary.
|
EventHandler<? super TouchEvent> |
Node.getOnTouchStationary()
Gets the value of the property onTouchStationary.
|
ObjectProperty<EventHandler<? super TouchEvent>> |
Scene.onTouchMovedProperty()
Defines a function to be called when a touch point is moved.
|
ObjectProperty<EventHandler<? super TouchEvent>> |
Node.onTouchMovedProperty()
Defines a function to be called when a touch point is moved.
|
ObjectProperty<EventHandler<? super TouchEvent>> |
Scene.onTouchPressedProperty()
Defines a function to be called when a new touch point is pressed.
|
ObjectProperty<EventHandler<? super TouchEvent>> |
Node.onTouchPressedProperty()
Defines a function to be called when a new touch point is pressed.
|
ObjectProperty<EventHandler<? super TouchEvent>> |
Scene.onTouchReleasedProperty()
Defines a function to be called when a new touch point is pressed.
|
ObjectProperty<EventHandler<? super TouchEvent>> |
Node.onTouchReleasedProperty()
Defines a function to be called when a touch point is released.
|
ObjectProperty<EventHandler<? super TouchEvent>> |
Scene.onTouchStationaryProperty()
Defines a function to be called when a touch point stays pressed and
still.
|
ObjectProperty<EventHandler<? super TouchEvent>> |
Node.onTouchStationaryProperty()
Defines a function to be called when a touch point stays pressed and
still.
|
Modifier and Type | Method and Description |
---|---|
private void |
Scene.processTouchEvent(TouchEvent e,
TouchPoint[] touchPoints) |
Modifier and Type | Method and Description |
---|---|
B |
SceneBuilder.onTouchMoved(EventHandler<? super TouchEvent> x)
Set the value of the
onTouchMoved property for the instance constructed by this builder. |
B |
NodeBuilder.onTouchMoved(EventHandler<? super TouchEvent> x)
Set the value of the
onTouchMoved property for the instance constructed by this builder. |
B |
SceneBuilder.onTouchPressed(EventHandler<? super TouchEvent> x)
Set the value of the
onTouchPressed property for the instance constructed by this builder. |
B |
NodeBuilder.onTouchPressed(EventHandler<? super TouchEvent> x)
Set the value of the
onTouchPressed property for the instance constructed by this builder. |
B |
SceneBuilder.onTouchReleased(EventHandler<? super TouchEvent> x)
Set the value of the
onTouchReleased property for the instance constructed by this builder. |
B |
NodeBuilder.onTouchReleased(EventHandler<? super TouchEvent> x)
Set the value of the
onTouchReleased property for the instance constructed by this builder. |
B |
SceneBuilder.onTouchStationary(EventHandler<? super TouchEvent> x)
Set the value of the
onTouchStationary property for the instance constructed by this builder. |
B |
NodeBuilder.onTouchStationary(EventHandler<? super TouchEvent> x)
Set the value of the
onTouchStationary property for the instance constructed by this builder. |
void |
Scene.setOnTouchMoved(EventHandler<? super TouchEvent> value)
Sets the value of the property onTouchMoved.
|
void |
Node.setOnTouchMoved(EventHandler<? super TouchEvent> value)
Sets the value of the property onTouchMoved.
|
void |
Scene.setOnTouchPressed(EventHandler<? super TouchEvent> value)
Sets the value of the property onTouchPressed.
|
void |
Node.setOnTouchPressed(EventHandler<? super TouchEvent> value)
Sets the value of the property onTouchPressed.
|
void |
Scene.setOnTouchReleased(EventHandler<? super TouchEvent> value)
Sets the value of the property onTouchReleased.
|
void |
Node.setOnTouchReleased(EventHandler<? super TouchEvent> value)
Sets the value of the property onTouchReleased.
|
void |
Scene.setOnTouchStationary(EventHandler<? super TouchEvent> value)
Sets the value of the property onTouchStationary.
|
void |
Node.setOnTouchStationary(EventHandler<? super TouchEvent> value)
Sets the value of the property onTouchStationary.
|
Modifier and Type | Field and Description |
---|---|
static EventType<TouchEvent> |
TouchEvent.ANY
Common supertype for all touch event types.
|
static EventType<TouchEvent> |
TouchEvent.TOUCH_MOVED
This event occurs when the touch point is moved.
|
static EventType<TouchEvent> |
TouchEvent.TOUCH_PRESSED
This event occurs when the touch point is pressed (touched for the
first time).
|
static EventType<TouchEvent> |
TouchEvent.TOUCH_RELEASED
This event occurs when the touch point is released.
|
static EventType<TouchEvent> |
TouchEvent.TOUCH_STATIONARY
This event occurs when the touch point is pressed and still (doesn't
move).
|
Modifier and Type | Method and Description |
---|---|
static TouchEvent |
TouchEvent.impl_touchEvent(EventType<? extends TouchEvent> eventType,
TouchPoint touchPoint,
java.util.List<TouchPoint> touchPoints,
int eventSetId,
boolean shiftDown,
boolean controlDown,
boolean altDown,
boolean metaDown)
Deprecated.
This is an internal API that is not intended for use and will be removed in the next version
|
Modifier and Type | Method and Description |
---|---|
private static void |
TouchEvent.recomputeToSource(TouchEvent event,
java.lang.Object oldSource,
java.lang.Object newSource)
Recomputes touch event for the given event source object.
|
Modifier and Type | Method and Description |
---|---|
static TouchEvent |
TouchEvent.impl_touchEvent(EventType<? extends TouchEvent> eventType,
TouchPoint touchPoint,
java.util.List<TouchPoint> touchPoints,
int eventSetId,
boolean shiftDown,
boolean controlDown,
boolean altDown,
boolean metaDown)
Deprecated.
This is an internal API that is not intended for use and will be removed in the next version
|
Constructor and Description |
---|
TouchEvent(EventType<? extends TouchEvent> eventType) |
TouchEvent(EventType<? extends TouchEvent> eventType,
TouchPoint touchPoint,
java.util.List<TouchPoint> touchPoints,
int eventSetId,
boolean shiftDown,
boolean controlDown,
boolean altDown,
boolean metaDown) |
Modifier and Type | Method and Description |
---|---|
private void |
WebView.processTouchEvent(TouchEvent event) |
Copyright (c) 2008, 2012, Oracle and/or its affiliates. All rights reserved. Use is subject to