Example usage for com.google.gwt.user.client Event.NativePreviewHandler interface-usage

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

Introduction

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

Usage

From source file com.wcs.vaadin.userinactivity.client.UserInactivityConnector.java

@Connect(UserInactivityExtension.class)
public class UserInactivityConnector extends AbstractExtensionConnector
        implements CommunicationHandler, ApplicationStoppedHandler, Event.NativePreviewHandler {

    private final UserInactivityServerRpc rpc = RpcProxy.create(UserInactivityServerRpc.class, this);
    private boolean userInitiatedRequest = false;

From source file net.sf.mmm.client.ui.gwt.widgets.handler.AbstractMouseDragHandler.java

/**
 * This is the abstract base class for a handler that allows moving or resizing with the mouse.
 * 
 * @author Joerg Hohwiller (hohwille at users.sourceforge.net)
 * @since 1.0.0
 */

From source file nl.mpi.tg.eg.experiment.client.listener.TouchInputCapture.java

/**
 * @since Oct 23, 2017 2:10:09 PM (creation date)
 * @author Peter Withers <peter.withers@mpi.nl>
 */
public abstract class TouchInputCapture
        implements Event.NativePreviewHandler, MouseDownHandler, MouseMoveHandler, MouseOutHandler,

From source file org.gwtportlets.portlet.client.edit.PageEditor.java

/**
 * Manages editing the layouts for a tree of containers. Extend this and
 * implement savePage. 
 */
public abstract class PageEditor implements Event.NativePreviewHandler, LayoutHandler {

From source file org.rhq.coregui.client.CoreGUI.java

/**
 * The GWT {@link EntryPoint entry point} to the RHQ GUI.
 *
 * @author Greg Hinkle
 * @author Ian Springer
 */

From source file org.rhq.enterprise.gui.coregui.client.CoreGUI.java

/**
 * The GWT {@link EntryPoint entry point} to the RHQ GUI.
 *
 * @author Greg Hinkle
 * @author Ian Springer
 */

From source file org.spiffyui.client.MessageUtil.java

/**
 * The error panel show fatal errors in the UI
 */
class ErrorPanel extends Composite implements Event.NativePreviewHandler {

    private Label m_label;

From source file org.spiffyui.client.widgets.LongMessage.java

/**
 * A class for showing messages that are wordy and take more than 
 * a few seconds to read. 
 */
public class LongMessage extends FlowPanel implements Event.NativePreviewHandler {
    private static final SpiffyUIStrings STRINGS = (SpiffyUIStrings) GWT.create(SpiffyUIStrings.class);

From source file org.spiffyui.client.widgets.TimePickerTextBox.java

/**
 * This widget uses a simple GWT TextBox and attaches the JQuery 
 * time picker.  When the field gets focus the date picker will become
 * visible.
 */
public class TimePickerTextBox extends TextBox implements Event.NativePreviewHandler {