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

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

Introduction

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

Prototype

public HandlerRegistration addMouseWheelHandler(MouseWheelHandler handler) 

Source Link

Usage

From source file:com.moesol.gwt.maps.client.MapController.java

License:Open Source License

public void bindHandlers(FocusPanel focusPanel) {
    focusPanel.addMouseMoveHandler(this);
    focusPanel.addMouseDownHandler(this);
    focusPanel.addMouseUpHandler(this);
    focusPanel.addMouseOutHandler(this);
    focusPanel.addMouseWheelHandler(this);
    focusPanel.addKeyDownHandler(this);
    focusPanel.addKeyUpHandler(this);
    focusPanel.addKeyPressHandler(this);
}