禁用每个应用程序由 GTK 主题定义的像素图背景

发布于 2024-07-13 14:59:51 字数 524 浏览 7 评论 0原文

对于我们的(开源)全屏文本编辑器,我们将 gtk.Windowgtk.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 技术交流群。

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

发布评论

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

评论(1

拍不死你 2024-07-20 14:59:51

是的,当然 Mac4Lin 使用像素图来获得更精细的外观,以匹配 MAC 外观。
要禁用这些背景,您不需要覆盖它。

如果您希望背景像素图作为其父级,请将其设置为

bg_pixmap[state] = "<parent>" 

并禁用将其设置为

bg_pixmap[state] = "<none>"

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

bg_pixmap[state] = "<parent>" 

and to disable set it as

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