在 GTK 应用程序中包含控制台应用程序

发布于 2024-12-14 11:00:18 字数 206 浏览 0 评论 0原文

我想创建一个类似于 gvim 的应用程序,以便我拥有包含控制台应用程序的 gtk 应用程序(在我的例子中,它是 vim 或任何其他控制台文本编辑器)

执行此操作的最佳方法是什么? 如果有办法的话,我如何从 GUI 与这个控制台编辑器进行通信?

我应该可以在 Linux 上运行,但如果它也可以在 Windows 和其他系统上运行,我将非常感激,

谢谢

I'd like to create an application similar to gvim, so that I'll have gtk application with console application included (in my case, it's vim or any other console text editor)

What is the best way to do this?
If there is a way, how can I comunicate with this console editor from GUI?

I should be runnable on linux, but I'd really appreciate if it works on windows and other systems as well

Thank you

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

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

发布评论

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

评论(1

醉城メ夜风 2024-12-21 11:00:18

gvim 不是 vim 的 gtk 包装器。它是使用 gtk+ 小部件而不是 stdin 和 stdout 的 vim 版本。

您可以通过修改其他程序的源代码来添加平滑的 gtk+ 支持,但您必须从头开始实现 GUI。

或者,您可以在 gtk 程序中嵌入 VTE 终端小部件。但我不认为这就是你要找的。

gvim isn't a gtk wrapper for vim. It is a version of vim that uses gtk+ widgets instead of stdin and stdout.

You can add smooth gtk+ support to other programs by modifying their source code, but you'll have to implement the gui from scratch.

Alternatively, you could embed a VTE terminal widget in your gtk program. But I don't think that's what you are looking for.

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