Questions tagged «gtk3»

GTK + 3是图形用户界面工具箱。


3
如何在GTK3中添加VTE终端小部件?
我正在尝试vte在应用程序中添加小部件,并且发现了用于.fork_command()在该小部件中执行命令的示例。但是根据 http://developer.gnome.org/vte/0.26/VteTerminal.html#vte-terminal-fork-command 不推荐使用,建议使用fork_command_full()。这需要八个强制性参数。他们没有听到“ defaults ”这个词吗?我已经能够构造出行之有效的线: pty_flags = vte.PtyFlags(0) terminal.fork_command_full(pty_flags, "/home/int", ("/bin/bash", ), "", 0, None, None) 是的,我了解这些枚举,我只是希望自己做的事情完全错误,并且有一种更简单的方法。你知道任何? 我正在使用quickly默认ubuntu-application模板的PS 。 PPS导入行是 from gi.repository import Vte as vte
By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.