Example usage for com.google.gwt.event.dom.client TouchCancelHandler interface-usage

List of usage examples for com.google.gwt.event.dom.client TouchCancelHandler interface-usage

Introduction

In this page you can find the example usage for com.google.gwt.event.dom.client TouchCancelHandler interface-usage.

Usage

From source file com.allen_sauer.gwt.dnd.client.MouseDragHandler.java

/**
 * Implementation helper class which handles mouse events for all draggable widgets for a given
 * {@link DragController}.
 */
class MouseDragHandler implements MouseMoveHandler, MouseDownHandler, MouseUpHandler, TouchStartHandler,
        TouchMoveHandler, TouchEndHandler, TouchCancelHandler {

From source file com.appkit.interactions.client.dnd.MouseDragHandler.java

/**
 * Implementation helper class which handles mouse events for all draggable widgets for a given
 * {@link com.appkit.interactions.client.dnd.DragController}.
 */
class MouseDragHandler implements MouseMoveHandler, MouseDownHandler, MouseUpHandler, TouchStartHandler,
        TouchMoveHandler, TouchEndHandler, TouchCancelHandler {

From source file com.appkit.ui.client.events.touch.TouchHandler.java

/**
 * Handler for all touch events
 *
 * @author Daniel Kurka
 */
public interface TouchHandler extends TouchStartHandler, TouchMoveHandler, TouchEndHandler, TouchCancelHandler {

From source file com.fullmetalgalaxy.client.widget.WgtScroll.java

/**
 * @author Vincent Legendre
 *
 */
public class WgtScroll extends Composite
        implements SourcesScrollEvents, MouseDownHandler, MouseMoveHandler, MouseUpHandler, MouseOutHandler,

From source file com.googlecode.mgwt.dom.client.event.touch.TouchHandler.java

/**
 * Handler for all touch events
 *
 * @author Daniel Kurka
 */
public interface TouchHandler extends TouchStartHandler, TouchMoveHandler, TouchEndHandler, TouchCancelHandler {

From source file com.lushprojects.circuitjs1.client.Scrollbar.java

public class Scrollbar extends Composite implements ClickHandler, MouseDownHandler, MouseMoveHandler,
        MouseUpHandler, MouseOutHandler, MouseOverHandler, MouseWheelHandler, TouchStartHandler, TouchCancelHandler,
        TouchEndHandler, TouchMoveHandler {

    static int HORIZONTAL = 1;
    static int HMARGIN = 2;

From source file com.milmaps.client.MapTouchController.java

public class MapTouchController implements TouchStartHandler, TouchMoveHandler, TouchEndHandler, TouchCancelHandler,
        GestureStartHandler, GestureChangeHandler, GestureEndHandler {

    private final MapView m_mapView;
    private DragTracker m_dragTracker;
    private FeatureReader m_reader;

From source file com.sencha.gxt.core.client.gestures.TouchEventToGestureAdapter.java

/**
 * Adapter to add gesture support to an existing widget without extending it.
 *
 * @TODO support pointer here
 */
public class TouchEventToGestureAdapter

From source file info.magnolia.ui.vaadin.gwt.client.touchwidget.TouchCancelHandlerProxy.java

/**
 * Proxy handler that delegates events to {@link TouchCancelHandler}.
 */
public class TouchCancelHandlerProxy implements com.google.gwt.event.dom.client.TouchCancelHandler {

    private TouchCancelHandler delegateHandler;

From source file nl.mpi.tg.eg.experiment.client.listener.TouchInputCapture.java

/**
 * @since Oct 23, 2017 2:10:09 PM (creation date)
 * @author Peter Withers <peter.withers@mpi.nl>
 */
public abstract class TouchInputCapture
        implements Event.NativePreviewHandler, MouseDownHandler, MouseMoveHandler, MouseOutHandler,