Example usage for com.google.gwt.user.client.ui FocusPanel addGestureEndHandler

List of usage examples for com.google.gwt.user.client.ui FocusPanel addGestureEndHandler

Introduction

In this page you can find the example usage for com.google.gwt.user.client.ui FocusPanel addGestureEndHandler.

Prototype

public HandlerRegistration addGestureEndHandler(GestureEndHandler handler) 

Source Link

Usage

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

License:Open Source License

public void bindHandlers(FocusPanel touchPanel) {
    touchPanel.addTouchStartHandler(this);
    touchPanel.addTouchMoveHandler(this);
    touchPanel.addTouchEndHandler(this);
    touchPanel.addTouchCancelHandler(this);
    touchPanel.addGestureStartHandler(this);
    touchPanel.addGestureChangeHandler(this);
    touchPanel.addGestureEndHandler(this);
}