如何实现 SWT 浏览器小部件的放置目标

发布于 2024-12-11 21:22:02 字数 430 浏览 0 评论 0原文

如何实现 SWT 浏览器小部件的放置目标?采取 浏览器实例作为 DropTarget 构造函数的参数不会导致 任何已注册的放置侦听器的通知。

    Browser browser = new Browser(parent, SWT.NONE); 
    int operations = DND.DROP_MOVE | DND.DROP_COPY | DND.DROP_DEFAULT; 
    DropTarget target = new DropTarget(browser, operations); 
    target.setTransfer(...) 
    DropTargetListener listener = ...; 
    target.addDropListener(listener); 

谢谢, 亨利

How to implement a drop target for the SWT browser widget? Taking a
Browser instance as parameter to the DropTarget constructor causes no
notification of any registered drop listeners.

    Browser browser = new Browser(parent, SWT.NONE); 
    int operations = DND.DROP_MOVE | DND.DROP_COPY | DND.DROP_DEFAULT; 
    DropTarget target = new DropTarget(browser, operations); 
    target.setTransfer(...) 
    DropTargetListener listener = ...; 
    target.addDropListener(listener); 

Thanks,
Henry

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

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

发布评论

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

评论(1

凉城已无爱 2024-12-18 21:22:02

我认为这不容易实现,因为浏览器也是本机小部件的集合,请参阅:http://dev.eclipse.org/mhonarc/lists/platform-swt-dev/msg04523.html

我想到了两种解决方法

  • : HTML5,有 DND 支持
  • 黑客解决方案:在 MouseOver 上创建一个透明的、显示不可见的外壳,该外壳直接位于浏览器上方并接受 Drop。

I think that's not easily possible since the Browser are a collection of native widgets as well, see this: http://dev.eclipse.org/mhonarc/lists/platform-swt-dev/msg04523.html

Two workarounds come to my mind:

  • Do it in HTML5, there is DND support
  • The hacky solution: on MouseOver create a transparent, display an invisible shell that sits directly over the browser and takes the Drop.
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文