Package xnap.gui.event

Examples of xnap.gui.event.MouseDragAdapter


     * Constructs a new DragFilesSupport.
     */
    public DragFilesSupport(Component c, FileCollector fc)
    {
  this.fc = fc;
  DragGestureRecognizer dgr = new MouseDragAdapter
      (dragSource, c, DnDConstants.ACTION_MOVE, this);
  // FIX ME: what does the next line do?
  // according to the java source, nothing
  //dgr.setSourceActions(dgr.getSourceActions() & ~InputEvent.BUTTON3_MASK);
    }
View Full Code Here

TOP

Related Classes of xnap.gui.event.MouseDragAdapter

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.