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

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

Introduction

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

Usage

From source file org.vectomatic.dnd.DropPanel.java

/**
 * A widget which accepts file drag and drop.
 * <i>Note: users must add a handler for ALL four main
 * events (dragenter, dragleave, dragover and drop) to prevent
 * the default browser behavior from applying, otherwise dropping
 * will result in the browser opening a new page with the dropped

From source file org.vectomatic.svg.edit.client.gxt.widget.ViewportExt.java

/**
 * A viewport class with support for drag and drop of external files.
 * @author laaglu
 */
public class ViewportExt extends Viewport
        implements HasDropHandlers, HasDragEnterHandlers, HasDragLeaveHandlers, HasDragOverHandlers {