从 OSF/Motif 迁移Xt 到 GTK+

发布于 2024-09-13 17:51:41 字数 214 浏览 7 评论 0原文

我有一个名为 XClient 的类,它是用 Xt(X Tools Intrinsic 库)编写的,用于设置多插槽连接。该 XClient 类旨在供 OSF/Motif GUI 扩展 XClient(以便 GUI 可以在套接字上进行通信)。

我正在尝试迁移到 GTK+ 环境,出于可移植性原因,该环境不使用 Xt 库。是否仍然可以创建一个包装器以允许 GTK+ 使用 Xt 库调用,或者这是不行的吗?

I have a class called XClient written with the Xt (X Tools Intrinsic library) to setup a multisocketed connection. This XClient class was meant for OSF/Motif GUIs to extend XClient (so the GUI could talk on sockets).

I am trying to migrate into a GTK+ environment which does NOT use the Xt library for portability reasons. Is it still possible to create a wrapper to allow GTK+ use Xt library calls or is that a no no?

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

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

发布评论

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

评论(2

栀梦 2024-09-20 17:51:41

我不希望 Xt 和 GTK+ 能够很好地工作,或者根本不能在同一进程中工作。他们都试图“拥有”X 显示、主事件循环等。

I wouldn't expect Xt and GTK+ to work well or at all in the same process. They are both trying to "own" the X display, the main event loop, etc.

素年丶 2024-09-20 17:51:41

您应该能够通过调用 XtAppInitialize() 来独立于 GTK 运行 Xt,这将打开它自己与 X 服务器的连接,从而将两者视为独立的客户端。

您可以通过在单独的线程中调用 XtAppMainLoop() 来处理单独的事件循环。请注意,不要尝试从该线程以外的任何地方对其执行任何操作,因为我不确定 Xt 是否是线程安全的。 (现在可能是这样了;我已经有近 20 年没有与 Xt 分开了,而且那时候也不是。)

You should be able to run Xt independently of GTK by calling XtAppInitialize(), which will open its own connection to the X server, which will treat both as independent clients.

You can deal with having a separate event loop by putting the call to XtAppMainLoop() in a separate thread. Just be careful that you don't try to do anything with it from anywhere other than that one thread, because I'm not sure Xt is thread safe. (It may be by now; I haven't had Xt apart in almost 20 years, and it wasn't back then.)

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