本文整理汇总了Python中gi.repository.Gtk.MenuButton方法的典型用法代码示例。如果您正苦于以下问题:Python Gtk.MenuButton方法的具体用法?Python Gtk.MenuButton怎么用?Python Gtk.MenuButton使用的例子?那么, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类gi.repository.Gtk
的用法示例。
在下文中一共展示了Gtk.MenuButton方法的3个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。
示例1: _get_title_box
# 需要导入模块: from gi.repository import Gtk [as 别名]
# 或者: from gi.repository.Gtk import MenuButton [as 别名]
def _get_title_box(self):
menu = Gtk.Menu()
menu.set_property('valign', Gtk.Align.START)
menu_item = Gtk.MenuItem.new_with_label('Restore Default Options')
menu_item.connect('activate', self.signal_activate_plugin_reset, self.plugin_klass)
menu.append(menu_item)
menu.show_all()
self.menu = menu
plugin_menu_button = Gtk.MenuButton()
plugin_menu_button.set_property('direction', Gtk.ArrowType.LEFT)
plugin_menu_button.set_popup(menu)
title_box = Gtk.Box(Gtk.Orientation.HORIZONTAL, 3)
title_box.pack_start(Gtk.Label(label=self.plugin_klass.title), False, True, 0)
title_box.pack_end(plugin_menu_button, False, False, 0)
return title_box
示例2: __init__
# 需要导入模块: from gi.repository import Gtk [as 别名]
# 或者: from gi.repository.Gtk import MenuButton [as 别名]
def __init__(self, *args, **kwargs):
Gtk.MenuButton.__init__(self)
ImageButtonContainer.__init__(self, *args, **kwargs)
示例3: __init__
# 需要导入模块: from gi.repository import Gtk [as 别名]
# 或者: from gi.repository.Gtk import MenuButton [as 别名]
def __init__(self, win):
super(HeaderBar, self).__init__()
self.win = win
self.set_show_close_button(True)
self.set_title('RunSQLRun')
self.set_subtitle('Database query tool')
self.pack_start(self._btn_from_command('app', 'neweditor'))
self.pack_start(self._btn_from_command('editor', 'run'))
# gears button
menu = Gio.Menu()
action = Gio.SimpleAction.new('manage_connections', None)
action.connect('activate', self.on_manage_connections)
self.win.app.add_action(action)
menu.append('Manage connections', 'app.manage_connections')
action = Gio.SimpleAction.new('about', None)
action.connect('activate', self.on_show_about)
self.win.app.add_action(action)
menu.append('About RunSQLRun', 'app.about')
btn = Gtk.MenuButton()
icon = Gio.ThemedIcon(name="preferences-system-symbolic")
image = Gtk.Image.new_from_gicon(icon, Gtk.IconSize.BUTTON)
btn.add(image)
btn.set_popover(Gtk.Popover.new_from_model(btn, menu))
self.pack_end(btn)