禁用每个应用程序由 GTK 主题定义的像素图背景
对于我们的(开源)全屏文本编辑器,我们将 gtk.Window
、gtk.Fixed
等的背景颜色更改为自定义颜色。 这工作正常,但一些 GTK 主题(例如 Mac4Lin) 定义背景像素图而不是某些小部件的背景颜色。 当调用这些小部件的modify_bg()方法时,这些背景像素图不会消失。
我知道我可以使用 bg_pixmap[NORMAL] = 'blabla.png'
设置像素图,并且可以使用 gtk.rc_parse_string() 定义我自己的 gtkrc 覆盖。 但我不知道如何取消设置bg_pixmap[NORMAL]
。
那么,我该怎么做呢?
For our (open source) fullscreen text editor we're changing background colors of gtk.Window
, gtk.Fixed
, etc. to custom colors. This works fine, but some GTK themes (e.g. Mac4Lin) define background pixmaps instead of background colors for some widgets. Those background pixmaps won't go away when calling modify_bg() methods of those widgets.
I know I can set pixmaps with bg_pixmap[NORMAL] = 'blabla.png'
and that I can define my own gtkrc overrides with gtk.rc_parse_string(). But I don't know how to unset bg_pixmap[NORMAL]
.
So, how would I do that?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
是的,当然 Mac4Lin 使用像素图来获得更精细的外观,以匹配 MAC 外观。
要禁用这些背景,您不需要覆盖它。
如果您希望背景像素图作为其父级,请将其设置为
并禁用将其设置为
Yes ofcourse Mac4Lin uses pixmaps for more granular appearance to match MAC look.
Well to disable those backgroud you dont need to override it.
if you want background pixmap as its parent's, set it as
and to disable set it as