List of usage examples for com.google.gwt.event.dom.client HasDragOverHandlers interface-usage
From source file com.ephesoft.gxt.core.client.DragDropFlowPanel.java
public class DragDropFlowPanel extends FlowPanel implements HasDropHandlers, HasDragOverHandlers, HasDragLeaveHandlers { private static DragImage lastDraggedOverimage; private int lastDraggedOverimageIndex;
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 {