コード例 #1
0
ファイル: bookmark.py プロジェクト: lesnik/dotfiles-1
 def create_toolbar(self):
     self._uim = gtk.UIManager()
     self._uim.insert_action_group(self.svc.get_action_group(), 0)
     self._uim.add_ui_from_file(get_uidef_path('bookmark-toolbar.xml'))
     self._uim.ensure_update()
     self._toolbar = self._uim.get_toplevels('toolbar')[0]
     self._toolbar.set_style(gtk.TOOLBAR_ICONS)
     self._toolbar.set_icon_size(gtk.ICON_SIZE_SMALL_TOOLBAR)
     self._vbox.pack_start(self._toolbar, expand=False)
     self._toolbar.show_all()