blob: 8cd3507566953e0a073b154a7617216d0b1435c9 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
|
/*
@ITMillApache2LicenseForJavaFiles@
*/
/**
*
*/
package com.vaadin.terminal.gwt.client.ui.dd;
import com.google.gwt.user.client.ui.Widget;
import com.vaadin.terminal.gwt.client.UIDL;
import com.vaadin.terminal.gwt.client.ui.VTree;
import com.vaadin.terminal.gwt.client.ui.VTree.TreeNode;
final public class VTargetInSubtree extends VAcceptCriterion {
@Override
protected boolean accept(VDragEvent drag, UIDL configuration) {
VTree tree = (VTree) VDragAndDropManager.get().getCurrentDropHandler()
.getPaintable();
TreeNode treeNode = tree.getNodeByKey((String) drag.getDropDetails()
.get("itemIdOver"));
if (treeNode != null) {
Widget parent2 = treeNode;
int depth = configuration.getIntAttribute("depth");
if (depth < 0) {
depth = Integer.MAX_VALUE;
}
final String searchedKey = configuration.getStringAttribute("key");
for (int i = 0; i <= depth && parent2 instanceof TreeNode; i++) {
if (searchedKey.equals(((TreeNode) parent2).key)) {
return true;
}
// panel -> next level node
parent2 = parent2.getParent().getParent();
}
}
return false;
}
}
|