显示 AWT/Swing 中的 SWT 模式对话框

发布于 2024-11-25 09:38:24 字数 571 浏览 0 评论 0 原文

使用 Albireo,很容易了解如何从 SWT 显示 Swing 对话框:

private AwtEnvironment awtEnv = AwtEnvironment.getInstance(Display.getCurrent);

...
// call from SWT thread
void showSwingMessageDialog(String msg) {
    awtEnv.invokeAndBlockSwt(new Runnable() {
        public void run() {
            Frame parentFrame = awtEnv.createDialogParentFrame();
            JOptionPane.showMessageDialog(parentFrame, msg);
        }
    }
}

我想从 AWT 线程显示 SWT 对话框,即

// call from AWT thread
void showSWTMessageDialog(String msg) {
    ???
}

Using Albireo, it's easy to see how to show a Swing dialog from SWT:

private AwtEnvironment awtEnv = AwtEnvironment.getInstance(Display.getCurrent);

...
// call from SWT thread
void showSwingMessageDialog(String msg) {
    awtEnv.invokeAndBlockSwt(new Runnable() {
        public void run() {
            Frame parentFrame = awtEnv.createDialogParentFrame();
            JOptionPane.showMessageDialog(parentFrame, msg);
        }
    }
}

I want to show an SWT dialog from AWT thread, i.e.

// call from AWT thread
void showSWTMessageDialog(String msg) {
    ???
}

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

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

发布评论

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

评论(1

開玄 2024-12-02 09:38:24

我不确定,我是否很好地理解这个问题,但是当您使用 Albireo/SWT_AWT 桥编写程序时,您通常使用 SWT,当您需要时,您可以使用 Swing 进行一些工作(如 Eclipse wiki 上的这个示例 显示).. 所以如果你有你的父母(很可能Shell 实例)在某些全局属性中,您可以随时随地创建 SWT 对话框。

编辑

要阻止 AWT 线程,您可以调用 SwingUtilities 的 rel="nofollow">invokeAndWait() 方法和 Runnable 实例内部显示 SWT 对话框窗口。

I'm not sure, if I understand this question well, but when you are writing program with Albireo/SWT_AWT bridge, you use SWT normally and when you need, you can use Swing for some work (as this example on eclipse wiki shows).. So if you have your parent (most probably Shell instance) in some global attribute, you can just create SWT dialog whenever and wherever you need..

EDIT

For blocking the AWT thread, you could call invokeAndWait() method of SwingUtilities and inside the Runnable instance show the SWT dialog window..

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