Uploaded image for project: 'JDK'
  1. JDK
  2. JDK-8117111

Mac: Drag and drop of files not working

XMLWordPrintable

    • Icon: Bug Bug
    • Resolution: Duplicate
    • Icon: P2 P2
    • 7u6
    • fx2.1
    • javafx
    • Mac OS X 10.7.3, JavaFX 2.1 beta b16, Java 1.6.0_29

      Same Bug like RT-18573 ? When the following application is run under Mac OS X, DRAG_DROPPED never appears in the output. The output consists only of DRAG_OVER events:

      public class DnDDemo extends Application {
      /**
      * @param args
      * the command-line arguments
      */
      public static void main(String[] args) {
      Application.launch(args);
      }

      @Override
      public void start(Stage stage) {

      Group root = new Group();
      Scene scene = new Scene(root, 800, 600, Color.BLACK);
      stage.setScene(scene);
      initSceneDragAndDrop(scene);
      stage.show();
      }

      private void initSceneDragAndDrop(Scene scene) {
      scene.setOnDragOver(new EventHandler<DragEvent>() {
      @Override
      public void handle(DragEvent event) {
      Dragboard db = event.getDragboard();
      if (db.hasFiles() || db.hasUrl()) {
      event.acceptTransferModes(TransferMode.ANY);
      }
      System.out.println("DRAG_OVER "+db.hasFiles());
      event.consume();
      }
      });

      scene.setOnDragDropped(new EventHandler<DragEvent>() {
      @Override
      public void handle(DragEvent event) {
      System.out.println("DRAG_DROPPED");
      Dragboard db = event.getDragboard();
      String url = null;
      if (db.hasFiles()) {
      url = db.getFiles().get(0).toURI().toString();
      } else if (db.hasUrl()) {
      url = db.getUrl();
      }
      event.setDropCompleted(url != null);
      event.consume();
      }
      });

      }

            gziemski Gerard Ziemski
            amoncsekjfx Andy Moncsek (Inactive)
            Votes:
            1 Vote for this issue
            Watchers:
            8 Start watching this issue

              Created:
              Updated:
              Resolved:
              Imported: