某些程序中的黑色标题小部件是什么?

某些程序中的黑色标题小部件是什么?

在某些 ubuntu 程序(ubuntu 控制面板、系统设置)中,但 banshee 除外,窗口顶部包含暗色调元素(带有 Ambience 主题)。但我找不到可以自动执行此操作的标准小部件。

这些颜色都是手动设置的吗(而不是标准的 widget+theme)?如果是手动设置的,它们来自主题中的哪里(gtk_widget_modify_bg(widget, GTK_STATE_NORMAL, &color) 中的参数是什么)?

编辑:它似乎不是一个简单的 Gtk.Toolbar。如果我运行以下代码:

from gi.repository import Gtk
window = Gtk.Window()
window.set_default_size(200, -1)
window.connect("destroy", lambda q: Gtk.main_quit())
toolbar = Gtk.Toolbar()
window.add(toolbar)
toolbutton = Gtk.ToolButton(stock_id=Gtk.STOCK_NEW)
toolbar.add(toolbutton)
window.show_all()
Gtk.main()

我得到一个这样的窗口: 在此处输入图片描述 其中没有暗色调的工具栏。

EDIT2:虽然 j-johan-edwards 的“具有特殊上下文的工具栏”答案在大多数程序中都是正确的,但在 ubuntuone-control-panel 中并非如此。此程序有一个 GtkVBox,它可以包含任何范围的小部件(与工具栏不同)。我仍然无法确定 gtk-theme 如何知道如何绘制窗口的该部分。 在此处输入图片描述

但无论如何:现在工具栏对我来说已经足够了......

答案1

你是指这些吗?

GTK3 工具栏

它们只是Gtk.Toolbars。一些应用程序(如 Banshee)不使用它们的原因是它们尚未移植到GTK+ 3,并获得了支持此类工具栏的新主题功能。

要将你自己的 Python 应用程序移植到 GTK+ 3,你需要使用对象而不是 PyGTK。从 12.04 开始,迅速地将默认生成PyGObject项目。

您还需要添加primary-toolbar到工具栏样式上下文。如下所示:

toolbar = Gtk.Toolbar()
context = toolbar.get_style_context()
context.add_class(Gtk.STYLE_CLASS_PRIMARY_TOOLBAR)

将该上下文应用到问题示例中可得出以下结果:

演示

答案2

关于问题的第二部分,即“如何将 VBox 添加到工具栏”,您所要做的就是将其包装在 Gtk.ToolItem 中,例如:。

...
self.toolbar = Gtk.Toolbar()
self.box = Gtk.Box(orientation=Gtk.Orientation.VERTICAL)
tool_item = Gtk.ToolItem()
tool_item.add(self.box)
self.toolbar.insert(tool_item, 0)
...

您可以通过创建辅助函数或扩展 Gtk.Toolbar 使其更简单,例如:

自定义工具栏.py

from gi.repository import Gtk

class CustomToolbar(Gtk.Toolbar):
    def __init__(self):
        super(CustomToolbar, self).__init__()
        ''' Set toolbar style '''
        context = self.get_style_context()
        context.add_class(Gtk.STYLE_CLASS_PRIMARY_TOOLBAR)

    def insert(self, item, pos):
        ''' If widget is not an instance of Gtk.ToolItem then wrap it inside one '''
        if not isinstance(item, Gtk.ToolItem):
            widget = Gtk.ToolItem()
            widget.add(item)
            item = widget

        super(CustomToolbar, self).insert(item, pos)
        return item

它只是检查您尝试插入的对象是否是 ToolItem,如果不是,则将其包装在其中。使用示例:

主程序

#!/usr/bin/python
from gi.repository import Gtk
from custom_toolbar import CustomToolbar

class MySongPlayerWindow(Gtk.Window):
    def __init__(self):
        super(MySongPlayerWindow, self).__init__(title="My Song Player")
        self.set_size_request(640, 480)

        layout = Gtk.Box(orientation=Gtk.Orientation.VERTICAL, spacing=6)
        self.add(layout)

        status_bar = Gtk.Statusbar()
        layout.pack_end(status_bar, False, True, 0)

        big_button = Gtk.Button(label="Play music")
        layout.pack_end(big_button, True, True, 0)

        ''' Create a custom toolbar '''
        toolbar = CustomToolbar()
        toolbar.set_style(Gtk.ToolbarStyle.BOTH)        
        layout.pack_start(toolbar, False, True, 0)

        ''' Add some standard toolbar buttons '''
        play_button = Gtk.ToggleToolButton(stock_id=Gtk.STOCK_MEDIA_PLAY)
        toolbar.insert(play_button, -1)

        stop_button = Gtk.ToolButton(stock_id=Gtk.STOCK_MEDIA_STOP)
        toolbar.insert(stop_button, -1)

        ''' Create a vertical box '''
        playback_info = Gtk.Box(orientation=Gtk.Orientation.VERTICAL, margin_top=5, margin_bottom=5, margin_left=10, margin_right=10)

        ''' Add some children... '''
        label_current_song = Gtk.Label(label="Artist - Song Name", margin_bottom=5)
        playback_info.pack_start(label_current_song, True, True, 0)

        playback_progress = Gtk.ProgressBar(fraction=0.6)
        playback_info.pack_start(playback_progress, True, True, 0)

        '''
        Add the vertical box to the toolbar. Please note, that unlike Gtk.Toolbar.insert,
        CustomToolbar.insert returns a ToolItem instance that we can manipulate
        '''
        playback_info_item = toolbar.insert(playback_info, -1)
        playback_info_item.set_expand(True)        

        ''' Add another custom item '''       
        search_entry = Gtk.Entry(text='Search')
        search_item = toolbar.insert(search_entry, -1)
        search_item.set_vexpand(False)
        search_item.set_valign(Gtk.Align.CENTER)

win = MySongPlayerWindow()
win.connect("delete-event", Gtk.main_quit)
win.show_all()
Gtk.main()

它应该看起来像

相关内容