Example usage for com.google.gwt.event.dom.client HasMouseWheelHandlers interface-usage

List of usage examples for com.google.gwt.event.dom.client HasMouseWheelHandlers interface-usage

Introduction

In this page you can find the example usage for com.google.gwt.event.dom.client HasMouseWheelHandlers interface-usage.

Usage

From source file com.fullmetalgalaxy.client.game.tabmenu.WgtIntBox.java

/**
 * @author Vincent
 * 
 * a simple widget that can be used to enter integer value.
 */
public class WgtIntBox extends Composite

From source file com.googlecode.gchart.client.GChart.java

/**
 * A GChart can represent and display a line chart, a bar chart, a pie chart, an
 * area chart, or a chart that contains arbitrary combinations of line, bar,
 * pie, and/or area based curves.
 * 
 * <p>

From source file de.eckhartarnold.client.ImagePanel.java

/**
 * Displays a photo on an absolute panel. 
 * 
 * <p>The image is scaled so as to use as much space of the
 * panel as possible without distorting the aspect ratio of the image. 
 * When the image is exchanged the old image is faded out while

From source file fi.jyu.student.jatahama.onlineinquirytool.client.FileButton.java

public class FileButton extends FileUpload implements HasClickHandlers, HasMouseDownHandlers, HasMouseUpHandlers,
        HasMouseOutHandlers, HasMouseOverHandlers, HasMouseMoveHandlers, HasMouseWheelHandlers {
    @Override
    public HandlerRegistration addMouseDownHandler(MouseDownHandler handler) {
        return addDomHandler(handler, MouseDownEvent.getType());
    }

From source file org.gwtportlets.portlet.client.ui.LayoutPanel.java

/**
 * Container that uses a pluggable layout strategy and constraints to arrange
 * its children.
 */
public class LayoutPanel extends ComplexPanel implements Container, HasClickHandlers, HasMouseDownHandlers,
        HasMouseUpHandlers, HasMouseOutHandlers, HasMouseOverHandlers, HasMouseMoveHandlers, HasMouseWheelHandlers {

From source file tv.dyndns.kishibe.qmaclone.client.ui.MouseEventsCanvas.java

public class MouseEventsCanvas extends GWTCanvas
        implements HasClickHandlers, HasAllMouseHandlers, HasMouseWheelHandlers {
    public MouseEventsCanvas(int width, int height) {
        super(width, height);
    }