Package com.google.gwt.touch.client
Class TouchScroller
- java.lang.Object
-
- com.google.gwt.touch.client.TouchScroller
-
public class TouchScroller extends java.lang.ObjectAdds 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
Nested Classes Modifier and Type Class Description (package private) static classTouchScroller.TemporalPointA point associated with a time.
-
Constructor Summary
Constructors Modifier Constructor Description protectedTouchScroller()Construct a newTouchScroller.
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description (package private) PointcalculateEndVelocity(TouchScroller.TemporalPoint from, TouchScroller.TemporalPoint to)Calculate the end velocity.static TouchScrollercreateIfSupported()Return a newTouchScroller.static TouchScrollercreateIfSupported(HasScrolling widget)Return a newTouchScrollerthat augments the specified scrollable widget if supported, and null otherwise.(package private) TouchScroller.TemporalPointgetLastTouchPosition()Visible for testing.MomentumgetMomentum()Get theMomentumthat controls scrolling after the user completes a gesture.(package private) TouchScroller.TemporalPointgetRecentTouchPosition()Visible for testing.HasScrollinggetTargetWidget()Get the targetHasScrollingwidget that this scroller affects.protected TouchgetTouchFromEvent(TouchEvent<?> event)Get touch from event.(package private) booleanisDragging()Visible for testing.(package private) booleanisMomentumActive()Check if momentum is currently active.static booleanisSupported()Runtime check for whether touch scrolling is supported in this browser.(package private) booleanisTouching()Visible for testing.protected voidonDragEnd(TouchEvent<?> event)Called when the object's drag sequence is complete.protected voidonDragMove(TouchEvent<?> event)Called when the object has been dragged to a new position.protected voidonDragStart(TouchEvent<?> event)Called when the object has started dragging.protected voidonTouchCancel(TouchEvent<?> event)Called when the user cancels a touch.protected voidonTouchEnd(TouchEvent<?> event)Called when the user releases a touch.protected voidonTouchMove(TouchEvent<?> event)Called when the user moves a touch.protected voidonTouchStart(TouchEvent<?> event)Called when the user starts a touch.(package private) voidremoveAttachHandler()Removes the attach handler.(package private) voidremoveBustClickHandler()Removes the bust click handler.voidsetMomentum(Momentum momentum)Set theMomentumthat controls scrolling after the user completes a gesture.voidsetTargetWidget(HasScrolling widget)Set the targetHasScrollingwidget that this scroller affects.(package private) voidsetupBustClickHandler()Sets up the bust click handler.
-
-
-
Constructor Detail
-
TouchScroller
protected TouchScroller()
Construct a newTouchScroller. This constructor should be called using the static methodcreateIfSupported().- See Also:
createIfSupported()
-
-
Method Detail
-
createIfSupported
public static TouchScroller createIfSupported()
Return a newTouchScroller.- Returns:
- a new
TouchScrollerif supported, and null otherwise
-
createIfSupported
public static TouchScroller createIfSupported(HasScrolling widget)
Return a newTouchScrollerthat augments the specified scrollable widget if supported, and null otherwise.- Parameters:
widget- the scrollable widget- Returns:
- a new
TouchScrollerif 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
public Momentum getMomentum()
Get theMomentumthat controls scrolling after the user completes a gesture.- Returns:
- the scrolling
Momentum, or null if disabled
-
getTargetWidget
public HasScrolling getTargetWidget()
Get the targetHasScrollingwidget that this scroller affects.- Returns:
- the target widget
-
setMomentum
public void setMomentum(Momentum momentum)
Set theMomentumthat controls scrolling after the user completes a gesture.- Parameters:
momentum- the scrollingMomentum, or null to disable
-
setTargetWidget
public void setTargetWidget(HasScrolling widget)
Set the targetHasScrollingwidget that this scroller affects.- Parameters:
widget- the target widget, or null to disbale
-
getTouchFromEvent
protected Touch getTouchFromEvent(TouchEvent<?> event)
Get touch from event.- Parameters:
event- the event- Returns:
- the touch object
-
onDragEnd
protected void onDragEnd(TouchEvent<?> event)
Called when the object's drag sequence is complete.- Parameters:
event- the touch event
-
onDragMove
protected void onDragMove(TouchEvent<?> event)
Called when the object has been dragged to a new position.- Parameters:
event- the touch event
-
onDragStart
protected void onDragStart(TouchEvent<?> event)
Called when the object has started dragging.- Parameters:
event- the touch event
-
onTouchCancel
protected void onTouchCancel(TouchEvent<?> event)
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
protected void onTouchEnd(TouchEvent<?> event)
Called when the user releases a touch.- Parameters:
event- the touch event
-
onTouchMove
protected void onTouchMove(TouchEvent<?> event)
Called when the user moves a touch.- Parameters:
event- the touch event
-
onTouchStart
protected void onTouchStart(TouchEvent<?> event)
Called when the user starts a touch.- Parameters:
event- the touch event
-
calculateEndVelocity
Point calculateEndVelocity(TouchScroller.TemporalPoint from, TouchScroller.TemporalPoint to)
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.
-
-