在 Eclipse RCP 中通过拖放在视图之间传输项目?

发布于 2024-12-20 07:28:40 字数 173 浏览 1 评论 0 原文

我的申请中有 2 个视图。在其中一个视图中,我可以看到包含自定义元素(例如 MDocument、MVersion...)的 TreeStructure。

我希望能够将 MVersion 类型的项目从我的视图拖动到另一个视图,但我不知道如何声明传输类型或检查所选项目是否是受支持的类型。

有什么想法吗?

I have 2 views in my application. In one of the views I can see a TreeStructure containing custom defined elements (such as MDocument, MVersion...).

I would like to be able to drag items of type MVersion from my view to the other one but I don't know how to declare the transfer types or to check if the item selected is a supported type.

Any ideas?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

高速公鹿 2024-12-27 07:28:40

最简单的方法是使用 LocalSelectionTransfer。为查看器添加拖放支持后...

您可以设置在 DragSourceListener.dragStart() 方法中拖动的 ISelection

LocalSelectionTransfer.getTransfer().setSelection(selection);

DropTargetListener 中。 drop() 检查类型是否受支持并检索选择:

if (LocalSelectionTransfer.getTransfer().isSupportedType(event.currentDataType))
    ISelection sel = LocalSelectionTransfer.getTransfer().getSelection();
    ...

The easiest way is to use LocalSelectionTransfer. Once you have added drag/drop support to your viewers...

You set the ISelection that is dragged in DragSourceListener.dragStart() method:

LocalSelectionTransfer.getTransfer().setSelection(selection);

In the DropTargetListener.drop() you check if the type is supported and retrieve the selection:

if (LocalSelectionTransfer.getTransfer().isSupportedType(event.currentDataType))
    ISelection sel = LocalSelectionTransfer.getTransfer().getSelection();
    ...
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文