public final class SwipeEvent extends GestureEvent
Unlike some other gestures, the swipe gesture is not continual - the whole gesture produces only one event. The event is delivered to the top-most node picked on the gesture coordinates.
The swipe gesture has four types according to the movement direction.
The gesture can be performed by any number of touch points, the number
is provided by getTouchCount()
method.
Note that swipe and scroll gestures are not exclusive. A single touch screen action can result in both gestures being delivered.
Note that the capability to produce swipes is dependent on the used input devices and underlying platform's capabilities and settings (especially without touch-screen user's possibilities of producing swipes are significantly reduced).
As all gestures, swipe can be direct (performed directly at the concrete coordinates as on touch screen - the center of the gesture is used as gesture coordinates) or indirect (performed indirectly as on track pad - the mouse cursor location is usually used as the gesture coordinates in this case).
Modifier and Type | Field and Description |
---|---|
static EventType<SwipeEvent> |
ANY
Common supertype for all swipe event types.
|
static EventType<SwipeEvent> |
SWIPE_DOWN
This event occurs when user performs downward swipe gesture.
|
static EventType<SwipeEvent> |
SWIPE_LEFT
This event occurs when user performs leftward swipe gesture.
|
static EventType<SwipeEvent> |
SWIPE_RIGHT
This event occurs when user performs rightward swipe gesture.
|
static EventType<SwipeEvent> |
SWIPE_UP
This event occurs when user performs upward swipe gesture.
|
consumed, eventType, NULL_SOURCE_TARGET, target
source
Constructor and Description |
---|
SwipeEvent(EventType<SwipeEvent> eventType,
double x,
double y,
double screenX,
double screenY,
boolean shiftDown,
boolean controlDown,
boolean altDown,
boolean metaDown,
boolean direct,
int touchCount,
PickResult pickResult)
Constructs new SwipeEvent event with null source and target.
|
SwipeEvent(Object source,
EventTarget target,
EventType<SwipeEvent> eventType,
double x,
double y,
double screenX,
double screenY,
boolean shiftDown,
boolean controlDown,
boolean altDown,
boolean metaDown,
boolean direct,
int touchCount,
PickResult pickResult)
Constructs new SwipeEvent event.
|
Modifier and Type | Method and Description |
---|---|
SwipeEvent |
copyFor(Object newSource,
EventTarget newTarget)
Creates and returns a copy of this event with the specified event source
and target.
|
SwipeEvent |
copyFor(Object newSource,
EventTarget newTarget,
EventType<SwipeEvent> type)
Creates a copy of the given event with the given fields substituted.
|
EventType<SwipeEvent> |
getEventType()
Gets the event type of this event.
|
int |
getTouchCount()
Gets number of touch points that caused this event.
|
String |
toString()
Returns a string representation of this
SwipeEvent object. |
getPickResult, getSceneX, getSceneY, getScreenX, getScreenY, getX, getY, getZ, isAltDown, isControlDown, isDirect, isInertia, isMetaDown, isShiftDown, isShortcutDown
getSource
public static final EventType<SwipeEvent> ANY
public static final EventType<SwipeEvent> SWIPE_LEFT
public static final EventType<SwipeEvent> SWIPE_RIGHT
public static final EventType<SwipeEvent> SWIPE_UP
public static final EventType<SwipeEvent> SWIPE_DOWN
public SwipeEvent(Object source, EventTarget target, EventType<SwipeEvent> eventType, double x, double y, double screenX, double screenY, boolean shiftDown, boolean controlDown, boolean altDown, boolean metaDown, boolean direct, int touchCount, PickResult pickResult)
source
- the source of the event. Can be null.target
- the target of the event. Can be null.eventType
- The type of the event.x
- The x with respect to the scene.y
- The y with respect to the scene.screenX
- The x coordinate relative to screen.screenY
- The y coordinate relative to screen.shiftDown
- true if shift modifier was pressed.controlDown
- true if control modifier was pressed.altDown
- true if alt modifier was pressed.metaDown
- true if meta modifier was pressed.direct
- true if the event was caused by direct input device. See GestureEvent.isDirect()
touchCount
- number of touch pointspickResult
- pick result. Can be null, in this case a 2D pick result
without any further values is constructed
based on the scene coordinates and the targetpublic SwipeEvent(EventType<SwipeEvent> eventType, double x, double y, double screenX, double screenY, boolean shiftDown, boolean controlDown, boolean altDown, boolean metaDown, boolean direct, int touchCount, PickResult pickResult)
eventType
- The type of the event.x
- The x with respect to the scene.y
- The y with respect to the scene.screenX
- The x coordinate relative to screen.screenY
- The y coordinate relative to screen.shiftDown
- true if shift modifier was pressed.controlDown
- true if control modifier was pressed.altDown
- true if alt modifier was pressed.metaDown
- true if meta modifier was pressed.direct
- true if the event was caused by direct input device. See GestureEvent.isDirect()
touchCount
- number of touch pointspickResult
- pick result. Can be null, in this case a 2D pick result
without any further values is constructed
based on the scene coordinatespublic int getTouchCount()
public String toString()
SwipeEvent
object.toString
in class GestureEvent
SwipeEvent
object.public SwipeEvent copyFor(Object newSource, EventTarget newTarget)
Event
null
, it is
replaced by the NULL_SOURCE_TARGET
value.copyFor
in class GestureEvent
newSource
- the new source of the copied eventnewTarget
- the new target of the copied eventpublic SwipeEvent copyFor(Object newSource, EventTarget newTarget, EventType<SwipeEvent> type)
source
- the new source of the copied eventtarget
- the new target of the copied eventeventType
- the new eventTypepublic EventType<SwipeEvent> getEventType()
Event
Event
class can have different event types. These event types further specify
what kind of event occurred.getEventType
in class GestureEvent
Copyright (c) 2008, 2015, Oracle and/or its affiliates. All rights reserved.