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.
|
Modifier and Type | Field and Description |
---|---|
private TouchPoint[] |
Scene.touchPoints |
Modifier and Type | Method and Description |
---|---|
private void |
Scene.processTouchEvent(TouchEvent e,
TouchPoint[] touchPoints) |
Modifier and Type | Field and Description |
---|---|
private TouchPoint |
TouchEvent.touchPoint |
Modifier and Type | Field and Description |
---|---|
private java.util.List<TouchPoint> |
TouchEvent.touchPoints |
Modifier and Type | Method and Description |
---|---|
TouchPoint |
TouchEvent.getTouchPoint()
Gets the touch point of this event.
|
Modifier and Type | Method and Description |
---|---|
java.util.List<TouchPoint> |
TouchEvent.getTouchPoints()
Gets all the touch points represented by this set of touch events,
including the touch point of this event.
|
Constructor and Description |
---|
TouchEvent(EventType<TouchEvent> eventType,
TouchPoint touchPoint,
java.util.List<TouchPoint> touchPoints,
int eventSetId,
boolean shiftDown,
boolean controlDown,
boolean altDown,
boolean metaDown)
Constructs new TouchEvent event with null source and target.
|
TouchEvent(java.lang.Object source,
EventTarget target,
EventType<TouchEvent> eventType,
TouchPoint touchPoint,
java.util.List<TouchPoint> touchPoints,
int eventSetId,
boolean shiftDown,
boolean controlDown,
boolean altDown,
boolean metaDown)
Constructs new TouchEvent event.
|
Constructor and Description |
---|
TouchEvent(EventType<TouchEvent> eventType,
TouchPoint touchPoint,
java.util.List<TouchPoint> touchPoints,
int eventSetId,
boolean shiftDown,
boolean controlDown,
boolean altDown,
boolean metaDown)
Constructs new TouchEvent event with null source and target.
|
TouchEvent(java.lang.Object source,
EventTarget target,
EventType<TouchEvent> eventType,
TouchPoint touchPoint,
java.util.List<TouchPoint> touchPoints,
int eventSetId,
boolean shiftDown,
boolean controlDown,
boolean altDown,
boolean metaDown)
Constructs new TouchEvent event.
|