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

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

Introduction

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

Prototype

public HandlerRegistration addTouchCancelHandler(TouchCancelHandler 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);
}