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

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

Introduction

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

Prototype

public HandlerRegistration addGestureStartHandler(GestureStartHandler 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);
}