Simple DND (Drag and Drop) Example : Drag Drop « SWT JFace Eclipse « Java

Home
Java
1.2D Graphics GUI
2.3D
3.Advanced Graphics
4.Ant
5.Apache Common
6.Chart
7.Class
8.Collections Data Structure
9.Data Type
10.Database SQL JDBC
11.Design Pattern
12.Development Class
13.EJB3
14.Email
15.Event
16.File Input Output
17.Game
18.Generics
19.GWT
20.Hibernate
21.I18N
22.J2EE
23.J2ME
24.JavaFX
25.JDK 6
26.JDK 7
27.JNDI LDAP
28.JPA
29.JSP
30.JSTL
31.Language Basics
32.Network Protocol
33.PDF RTF
34.Reflection
35.Regular Expressions
36.Scripting
37.Security
38.Servlets
39.Spring
40.Swing Components
41.Swing JFC
42.SWT JFace Eclipse
43.Threads
44.Tiny Application
45.Velocity
46.Web Services SOA
47.XML
Java » SWT JFace Eclipse » Drag Drop 




Simple DND (Drag and Drop) Example
Simple DND (Drag and Drop) Example


import org.eclipse.swt.SWT;
import org.eclipse.swt.dnd.DND;
import org.eclipse.swt.dnd.DragSource;
import org.eclipse.swt.dnd.DragSourceAdapter;
import org.eclipse.swt.dnd.DragSourceEvent;
import org.eclipse.swt.dnd.DropTarget;
import org.eclipse.swt.dnd.DropTargetAdapter;
import org.eclipse.swt.dnd.DropTargetEvent;
import org.eclipse.swt.dnd.TextTransfer;
import org.eclipse.swt.dnd.Transfer;
import org.eclipse.swt.layout.FillLayout;
import org.eclipse.swt.widgets.Button;
import org.eclipse.swt.widgets.Display;
import org.eclipse.swt.widgets.Shell;
import org.eclipse.swt.widgets.Tree;
import org.eclipse.swt.widgets.TreeItem;

public class SimpleDNDExample {

  public static void main(String[] args) {
    Shell shell = new Shell();
    shell.setLayout(new FillLayout());

    // Create the tree and some tree items
    final Tree tree = new Tree(shell, SWT.NONE);
    TreeItem item1 = new TreeItem(tree, SWT.NONE);
    item1.setText("Item 1");
    TreeItem item2 = new TreeItem(tree, SWT.NONE);
    item2.setText("Item 2");
    TreeItem item3 = new TreeItem(tree, SWT.NONE);
    item3.setText("Item 3");
    TreeItem item4 = new TreeItem(tree, SWT.NONE);
    item4.setText("Item 4");

    // Create the drag source on the tree
    DragSource ds = new DragSource(tree, DND.DROP_MOVE);
    ds.setTransfer(new Transfer[] { TextTransfer.getInstance() });
    ds.addDragListener(new DragSourceAdapter() {
      public void dragSetData(DragSourceEvent event) {
        // Set the data to be the first selected item's text
        event.data = tree.getSelection()[0].getText();
      }
    });

    // Create the button
    final Button button = new Button(shell, SWT.FLAT);
    button.setText("Button");
    button.setAlignment(SWT.CENTER);

    // Create the drop target on the button
    DropTarget dt = new DropTarget(button, DND.DROP_MOVE);
    dt.setTransfer(new Transfer[] { TextTransfer.getInstance() });
    dt.addDropListener(new DropTargetAdapter() {
      public void drop(DropTargetEvent event) {
        // Set the buttons text to be the text being dropped
        button.setText((Stringevent.data);
      }
    });

    shell.pack();
    shell.open();
    Display display = Display.getDefault();
    while (!shell.isDisposed())
      if (!display.readAndDispatch())
        display.sleep();
    display.dispose();
  }

}



           
       














Related examples in the same category
1.SWT DND (Drag and Drop) comprehensive Example SWT DND (Drag and Drop) comprehensive Example
2.Word JumblesWord Jumbles
3.Illustrates draggingIllustrates dragging
4.SWT DnD (Drag and drop) Composite
5.Drag and Drop: determine native data types available (motif only)
6.Drag and Drop: determine data types available (win32 only)Drag and Drop: determine data types available (win32 only)
7.Drag and Drop example snippet: define a default operation (in this example, Copy)Drag and Drop example snippet: define a default operation (in this example, Copy)
8.Drag and Drop example snippet: define my own data transfer typeDrag and Drop example snippet: define my own data transfer type
9.Drag and Drop example snippet: drag leaf items in a treeDrag and Drop example snippet: drag leaf items in a tree
10.Drag and Drop example snippet: drag text between two labelsDrag and Drop example snippet: drag text between two labels
java2s.com  | Contact Us | Privacy Policy
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.