我目前正在为eclipse开发一个使用Zest显示树的插件。
我尝试在显示节点的数字中添加自定义MouseListener
,因为我想添加双击功能,但这会覆盖自然存在的功能,允许拖动节点。
我尝试添加基于Draw2D的拖动功能,但它没有用。这是我试过的代码:
private Point location;
public void mousePressed(MouseEvent me) {
location = me.getLocation();
me.consume();
}
public void mouseReleased(MouseEvent me) {
location = null;
me.consume();
}
public void mouseDragged(MouseEvent me) {
if (location == null) {
return;
}
Point moved= me.getLocation();
if (moved == null) {
return;
}
Dimension offset= moved.getDifference(location);
if (offset.width == 0 && offset.height == 0) {
return;
}
location= moved;
UpdateManager uMgr= figure.getUpdateManager();
LayoutManager lMgr= figure.getLayoutManager();
Rectangle bounds= figure.getBounds();
uMgr.addDirtyRegion(figure.getParent(), bounds);
bounds= bounds.getCopy().translate(offset.width, offset.height);
lMgr.setConstraint(figure, bounds);
figure.translate(offset.width, offset.height);
uMgr.addDirtyRegion(figure.getParent(), bounds);
me.consume();
}
任何人都可以为我的代码或解决方法提供修复程序吗?
答案 0 :(得分:3)
在Debug Visualization项目中,我们添加了一个双击监听器,同时拖动支持仍然存在。
// double click on nodes
graphViewer.getGraphControl().addMouseListener(new MouseAdapter() {
@Override
public void mouseDoubleClick(MouseEvent e) {
toggleOpen.run();
}
});
您可以从MouseEvent中读取所选节点(如果我没有记错的话),或者您可以检查当前选择(这是我们在项目中采取的方法)。