Uses of Class
com.google.gwt.dom.client.Touch
-
Packages that use Touch Package Description com.google.gwt.dom.client Classes for low-level DOM programming.com.google.gwt.event.dom.client Types related to DOM events.com.google.gwt.touch.client -
-
Uses of Touch in com.google.gwt.dom.client
Methods in com.google.gwt.dom.client that return types with arguments of type Touch Modifier and Type Method Description JsArray<Touch>
DOMImpl. getChangedTouches(NativeEvent evt)
JsArray<Touch>
NativeEvent. getChangedTouches()
Get an array of touches which have changed since the last touch event.JsArray<Touch>
DOMImpl. getTargetTouches(NativeEvent evt)
JsArray<Touch>
NativeEvent. getTargetTouches()
Get an array of touches which have changed since the last touch event.JsArray<Touch>
DOMImpl. getTouches(NativeEvent evt)
JsArray<Touch>
NativeEvent. getTouches()
Get an array of touches which have changed since the last touch event.Methods in com.google.gwt.dom.client with parameters of type Touch Modifier and Type Method Description int
DOMImpl. touchGetClientX(Touch touch)
int
DOMImpl. touchGetClientY(Touch touch)
int
DOMImpl. touchGetIdentifier(Touch touch)
int
DOMImpl. touchGetPageX(Touch touch)
int
DOMImpl. touchGetPageY(Touch touch)
int
DOMImpl. touchGetScreenX(Touch touch)
int
DOMImpl. touchGetScreenY(Touch touch)
EventTarget
DOMImpl. touchGetTarget(Touch touch)
-
Uses of Touch in com.google.gwt.event.dom.client
Methods in com.google.gwt.event.dom.client that return types with arguments of type Touch Modifier and Type Method Description JsArray<Touch>
TouchEvent. getChangedTouches()
Get an array oftouches
which have changed since the last touch event fired.JsArray<Touch>
TouchEvent. getTargetTouches()
Get an array oftouches
all touch which originated at the same target as the current touch event.JsArray<Touch>
TouchEvent. getTouches()
Get an array of all currenttouches
. -
Uses of Touch in com.google.gwt.touch.client
Methods in com.google.gwt.touch.client that return Touch Modifier and Type Method Description protected Touch
TouchScroller. getTouchFromEvent(TouchEvent<?> event)
Get touch from event.
-