Project

General

Profile

Download (1.63 KB) Statistics
| Branch: | Tag: | Revision:
1
/**
2
* Copyright (C) 2017 EDIT
3
* European Distributed Institute of Taxonomy
4
* http://www.e-taxonomy.eu
5
*
6
* The contents of this file are subject to the Mozilla Public License Version 1.1
7
* See LICENSE.TXT at the top of this package for the full license terms.
8
*/
9
package eu.etaxonomy.taxeditor.featuretree.e4;
10

    
11
import org.eclipse.jface.viewers.IStructuredSelection;
12
import org.eclipse.jface.viewers.TreeViewer;
13
import org.eclipse.swt.dnd.DragSourceAdapter;
14
import org.eclipse.swt.dnd.DragSourceEvent;
15

    
16
import eu.etaxonomy.cdm.model.term.FeatureNode;
17
import eu.etaxonomy.taxeditor.featuretree.FeatureNodeTransfer;
18

    
19
public class FeatureNodeDragListener extends DragSourceAdapter {
20

    
21
	private final TreeViewer viewer;
22

    
23
	public FeatureNodeDragListener(TreeViewer viewer) {
24
		this.viewer = viewer;
25
	}
26

    
27
    /**
28
     * Method declared on DragSourceListener
29
     */
30
    @Override
31
    public void dragSetData(DragSourceEvent event) {
32
        IStructuredSelection selection = (IStructuredSelection) viewer.getSelection();
33
        if(selection!=null && !selection.isEmpty()){
34
            FeatureNode[] featureNodes = (FeatureNode[]) selection.toList().toArray(new FeatureNode[selection.size()]);
35
            if (FeatureNodeTransfer.getInstance().isSupportedType(event.dataType)) {
36
                event.data = featureNodes;
37
            }
38
        }
39
    }
40

    
41
	/**
42
	 * Method declared on DragSourceListener
43
	 */
44
	@Override
45
	public void dragStart(DragSourceEvent event) {
46
        event.doit = !viewer.getSelection().isEmpty()
47
                && ((IStructuredSelection) viewer.getSelection()).toList()
48
                .stream().allMatch(element -> element instanceof FeatureNode);
49
	}
50

    
51
}
(1-1/5)