在 GTK 应用程序中包含控制台应用程序
我想创建一个类似于 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
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.