我正在创建一个Gnome pannel applet。我已经为小程序添加了一个菜单栏,但似乎无法在菜单栏上设置浮雕。有人知道我怎么编辑它吗?
我只想在工具栏悬停或子菜单折叠时显示浮雕。现在看起来是这样的:http://i.stack.imgur.com/7i8C9.png
提前感谢!
发布于 2010-11-29 07:32:42
不要紧。找到了:
gtk.rc_parse_string("""
style "globalmenu_event_box_style"
{
GtkWidget::focus-line-width=0
GtkWidget::focus-padding=0
}
style "globalmenu_menu_bar_style"
{
ythickness = 0
GtkMenuBar::shadow-type = none
GtkMenuBar::internal-padding = 0
}
class "GtkEventBox" style "globalmenu_event_box_style"
class "GtkMenuBar" style:highest "globalmenu_menu_bar_style"
class "GnomenuMenuBar" style:highest "globalmenu_menu_bar_style"
""");https://stackoverflow.com/questions/4299459
复制相似问题