Example usage for com.google.gwt.user.client EventListener interface-usage

List of usage examples for com.google.gwt.user.client EventListener interface-usage

Introduction

In this page you can find the example usage for com.google.gwt.user.client EventListener interface-usage.

Usage

From source file asquare.gwt.tk.client.ui.behavior.ControllerSupport.java

/**
 * An interface implemented by widgets which support event handling via
 * controllers.
 */
public interface ControllerSupport extends EventListener {
    /**

From source file ca.wimsc.client.common.widgets.google.TouchHandler.java

/**
 * Class that handles all touch events and uses them to interpret higher level
 * gestures and behaviors.
 *
 * Examples of higher level gestures this class is intended to support - click,
 * double click, long click - dragging, swiping, zooming

From source file com.alkacon.forms.client.widgets.A_EditWidget.java

/**
 * Abstract editing widget class.<p>
 */
public abstract class A_EditWidget extends UIObject implements I_EditWidget, EventListener {

    /** The handler manager. */

From source file com.cgxlib.xq.client.plugins.events.EventsListener.java

/**
 * This class implements an event queue instance for one Element. The queue instance is configured
 * as the default event listener in GWT.
 * <p/>
 * The reference to this queue is stored as a unique variable in the element's DOM.
 * <p/>

From source file com.ephesoft.dcma.gwt.core.client.util.EscapeNativeEventListener.java

/**
 * Escape the native events associated with DOM element. This listener will escape all the events whose bits will be sinked for the DOM
 * element.
 * 
 * 
 * @author Ephesoft

From source file com.gwtmobile.ui.client.event.DragController.java

public abstract class DragController implements EventListener {

    private List<DragEventsHandler> _dragEventHandlers = new ArrayList<DragEventsHandler>();
    private List<SwipeEventsHandler> _swipeEventHandlers = new ArrayList<SwipeEventsHandler>();
    protected DragEventsHandler _capturingDragEventsHandler = null;
    protected SwipeEventsHandler _capturingSwipeEventsHandler = null;

From source file com.haulmont.cuba.web.toolkit.ui.client.fieldgrouplayout.CubaFieldGroupLayoutComponentSlot.java

/**
 * Component slot with horizontal layout for caption and component
 */
public class CubaFieldGroupLayoutComponentSlot extends CubaGridLayoutSlot implements CaptionHolder, EventListener {

    protected static final String INDICATORS_CLASSNAME = "caption-indicators";

From source file com.haulmont.cuba.web.widgets.client.fieldgrouplayout.CubaFieldGroupLayoutComponentSlot.java

/**
 * Component slot with horizontal layout for caption and component
 */
public class CubaFieldGroupLayoutComponentSlot extends CubaGridLayoutSlot implements CaptionHolder, EventListener {

    protected static final String INDICATORS_CLASSNAME = "caption-indicators";

From source file com.kafecho.stweetmap.client.StatusMessageView.java

/**
 * Graphical representation of a {@link StatusMessage}
 * @author Guillaume Belrose
 */
public class StatusMessageView extends Composite implements StatusMessageListener, EventListener {

From source file com.qualogy.qafe.gwt.client.component.LabeledPasswordFieldWidget.java

/**
 * This class is a SimplePanel, but implements all the interfaces of the 
 * TextBox class,so that it can be used a special kind of textbox.
 * @author rjankie
 *
 */