List of usage examples for com.google.gwt.event.dom.client DropHandler interface-usage
From source file co.fxl.gui.gwt.GWTTextField.java
class GWTTextField extends GWTTextInput<TextBox, ITextField> implements ITextField, ChangeHandler, DropHandler, KeyUpHandler, MouseUpHandler { private List<IUpdateListener<String>> updateListeners = new LinkedList<IUpdateListener<String>>(); private String lastNotifiedValue = null;
From source file com.eduworks.gwt.client.ui.handler.DragDropHandler.java
public abstract class DragDropHandler implements DropHandler, DragLeaveHandler, DragEnterHandler, DragOverHandler { public List<File> readQueue = new ArrayList<File>(); //private DropPanel w; public DragDropHandler(DropPanel w) {
From source file com.ponysdk.core.terminal.ui.PTTextBox.java
public class PTTextBox extends PTTextBoxBase<TextBox> implements KeyPressHandler, DropHandler { private TextBoxMaskedDecorator maskDecorator; private RegExp regExp; @Override
From source file edu.ucla.loni.pipeline.client.Upload.Handlers.LONIDropHandler.java
/** * Drop Event Handler */ public class LONIDropHandler implements DropHandler { private final Uploader uploader;
From source file net.sf.mmm.client.ui.gwt.widgets.handler.AbstractDragAndDropHandler.java
/**
* This is the abstract base class for an HTML5 drag and drop handler.
*
* @author Joerg Hohwiller (hohwille at users.sourceforge.net)
* @since 1.0.0
*/
From source file org.primordion.xholon.io.XholonGuiClassicTree.java
/**
* A subclass of GWT Tree that knows how to process a right-click on a TreeItem.
* @author <a href="mailto:ken@primordion.com">Ken Webb</a>
* @see <a href="http://www.primordion.com/Xholon">Xholon Project website</a>
* @since 0.9.0 (Created on July 31, 2013)
*/
From source file org.vectomatic.svg.edit.client.load.DndHandler.java
/** * Class to handler drag and drop of external files on the viewport. * @author laaglu */ public class DndHandler implements DragEnterHandler, DragLeaveHandler, DragOverHandler, DropHandler { private ViewportExt viewport;