为 pygtk 应用程序实现基于文本的后备
我有一个 pygtk 应用程序,想为其提供基于文本的后备模式。当在没有 X 显示可用的情况下导入 gtk 时,我只在 stderr 上看到 GtkWarning,但我可以利用的例外情况是,检查 DISPLAY 似乎是一个丑陋的黑客行为。我怎样才能实现这个?
I have a pygtk application and would like to provide a text-based fallback mode for it. When mporting gtk without a X display available I see only a GtkWarning on stderr but no exception I could take advantage of and checking for DISPLAY seems like an ugly hack. How can I implement this?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
检查 gtk.gdk.screen_get_default() 可以做到这一点,但是似乎没有办法抑制 GTK 警告。
Checking
gtk.gdk.screen_get_default()
does it, however there seems no way to suppress the GTK warnings.