Package com.google.gwt.touch.client
Class TouchScroller
java.lang.Object
com.google.gwt.touch.client.TouchScroller
Adds touch based scrolling to a scroll panel.
Touch based scrolling is only supported on devices that support touch events and do not implement native touch based scrolling.
-
Nested Class Summary
Modifier and TypeClassDescription(package private) static class
A point associated with a time. -
Constructor Summary
-
Method Summary
Modifier and TypeMethodDescription(package private) Point
Calculate the end velocity.static TouchScroller
Return a newTouchScroller
.static TouchScroller
createIfSupported
(HasScrolling widget) Return a newTouchScroller
that augments the specified scrollable widget if supported, and null otherwise.(package private) TouchScroller.TemporalPoint
Visible for testing.Get theMomentum
that controls scrolling after the user completes a gesture.(package private) TouchScroller.TemporalPoint
Visible for testing.Get the targetHasScrolling
widget that this scroller affects.protected Touch
getTouchFromEvent
(TouchEvent<?> event) Get touch from event.(package private) boolean
Visible for testing.(package private) boolean
Check if momentum is currently active.static boolean
Runtime check for whether touch scrolling is supported in this browser.(package private) boolean
Visible for testing.protected void
onDragEnd
(TouchEvent<?> event) Called when the object's drag sequence is complete.protected void
onDragMove
(TouchEvent<?> event) Called when the object has been dragged to a new position.protected void
onDragStart
(TouchEvent<?> event) Called when the object has started dragging.protected void
onTouchCancel
(TouchEvent<?> event) Called when the user cancels a touch.protected void
onTouchEnd
(TouchEvent<?> event) Called when the user releases a touch.protected void
onTouchMove
(TouchEvent<?> event) Called when the user moves a touch.protected void
onTouchStart
(TouchEvent<?> event) Called when the user starts a touch.(package private) void
Removes the attach handler.(package private) void
Removes the bust click handler.void
setMomentum
(Momentum momentum) Set theMomentum
that controls scrolling after the user completes a gesture.void
setTargetWidget
(HasScrolling widget) Set the targetHasScrolling
widget that this scroller affects.(package private) void
Sets up the bust click handler.
-
Constructor Details
-
TouchScroller
protected TouchScroller()Construct a newTouchScroller
. This constructor should be called using the static methodcreateIfSupported()
.- See Also:
-
-
Method Details
-
createIfSupported
Return a newTouchScroller
.- Returns:
- a new
TouchScroller
if supported, and null otherwise
-
createIfSupported
Return a newTouchScroller
that augments the specified scrollable widget if supported, and null otherwise.- Parameters:
widget
- the scrollable widget- Returns:
- a new
TouchScroller
if supported, and null otherwise
-
isSupported
public static boolean isSupported()Runtime check for whether touch scrolling is supported in this browser. Returns true if touch events are supported but touch based scrolling is not natively supported.- Returns:
- true if touch scrolling is supported, false if not
-
getMomentum
Get theMomentum
that controls scrolling after the user completes a gesture.- Returns:
- the scrolling
Momentum
, or null if disabled
-
getTargetWidget
Get the targetHasScrolling
widget that this scroller affects.- Returns:
- the target widget
-
setMomentum
Set theMomentum
that controls scrolling after the user completes a gesture.- Parameters:
momentum
- the scrollingMomentum
, or null to disable
-
setTargetWidget
Set the targetHasScrolling
widget that this scroller affects.- Parameters:
widget
- the target widget, or null to disbale
-
getTouchFromEvent
Get touch from event.- Parameters:
event
- the event- Returns:
- the touch object
-
onDragEnd
Called when the object's drag sequence is complete.- Parameters:
event
- the touch event
-
onDragMove
Called when the object has been dragged to a new position.- Parameters:
event
- the touch event
-
onDragStart
Called when the object has started dragging.- Parameters:
event
- the touch event
-
onTouchCancel
Called when the user cancels a touch. This can happen if the user touches the screen with too many fingers.- Parameters:
event
- the touch event
-
onTouchEnd
Called when the user releases a touch.- Parameters:
event
- the touch event
-
onTouchMove
Called when the user moves a touch.- Parameters:
event
- the touch event
-
onTouchStart
Called when the user starts a touch.- Parameters:
event
- the touch event
-
calculateEndVelocity
Calculate the end velocity. Visible for testing.- Parameters:
from
- the starting pointto
- the ending point- Returns:
- the end velocity, or null if it cannot be calculated
-
getLastTouchPosition
TouchScroller.TemporalPoint getLastTouchPosition()Visible for testing. -
getRecentTouchPosition
TouchScroller.TemporalPoint getRecentTouchPosition()Visible for testing. -
isDragging
boolean isDragging()Visible for testing. -
isMomentumActive
boolean isMomentumActive()Check if momentum is currently active. Visible for testing.- Returns:
- true if active, false if not
-
isTouching
boolean isTouching()Visible for testing. -
removeAttachHandler
void removeAttachHandler()Removes the attach handler. Visible for testing. -
removeBustClickHandler
void removeBustClickHandler()Removes the bust click handler. Visible for testing. -
setupBustClickHandler
void setupBustClickHandler()Sets up the bust click handler. Visible for testing.
-