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

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

Introduction

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

Prototype

public HandlerRegistration addGestureChangeHandler(GestureChangeHandler 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);
}