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

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

Introduction

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

Usage

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 org.geomajas.gwt.client.controller.Controller.java

/**
 * <p>
 * General interface for a controller set on a map. It should implement all of the available mouse and touch handling
 * events, although each face provides abstract implementations which are perfectly suitable to start working from.
 * </p>
 *