List of usage examples for com.google.gwt.event.dom.client HasAllMouseHandlers interface-usage
From source file org.vaadin.addon.gwtgraphics.client.DrawingArea.java
/**
* The following example shows how a DrawingArea instance is created and added
* to a GWT application. A rectangle is added to this DrawingArea instance. When
* the user clicks this rectangle its color changes.
*
* <pre>
From source file org.vaadin.addon.gwtgraphics.client.VectorObject.java
/** * An abstract base class for drawing objects the DrawingArea can contain. * * @author Henri Kerola */ public abstract class VectorObject extends Widget
From source file org.vaadin.gwtgraphics.client.DrawingArea.java
/**
* The following example shows how a DrawingArea instance is created and added
* to a GWT application. A rectangle is added to this DrawingArea instance. When
* the user clicks this rectangle its color changes.
*
* <pre>
From source file org.vaadin.gwtgraphics.client.VectorObject.java
/** * An abstract base class for drawing objects the DrawingArea can contain. * * @author Henri Kerola */ public abstract class VectorObject extends Widget
From source file org.vectomatic.dom.svg.ui.SVGButtonBase.java
/**
* Abstract base class for SVG buttons.
* <p>SVG buttons consists
* in an SVG element and a collection of six predefined faces<p>
* <ul>
* <li>UP</li>
From source file org.vectomatic.dom.svg.ui.SVGImage.java
/**
* A widget which contains a single {@link org.vectomatic.dom.svg.OMSVGSVGElement OMSVGSVGElement}.
* The class bridges event subscription methods and forwards
* them to the underlying {@link org.vectomatic.dom.svg.OMSVGSVGElement OMSVGSVGElement}.
* The class integrates with GWT Widget hierarchy.
* <p>You can define an SVGImage using UiBinder templates.
From source file time.client.widget.FocusFlowPanel.java
/** * A copy of GWT {@link FocusPanel} that uses {@link ComplexPanel} as parent instead of {@link SimplePanel}. * * @author Martin Algesten */ public class FocusFlowPanel extends ComplexPanel
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); }