def activate(self,shell):
self.shell = shell
self.action = gtk.Action ('foo','bar','baz',None)
self.activate_id = self.action.connect ('activate', self.call_bk_fn,self.shell)
self.action_group = gtk.ActionGroup ('hot_key_action_group')
self.action_group.add_action_with_accel (self.action, "<control>E")
uim = shell.get_ui_manager ()
uim.insert_action_group (self.action_group, 0)
uim.ensure_update ()
def call_bk_fn(self,shell):
print('hello world')
我在rhythmbox的插件中使用上面的代码,在这里我试图注册键ctr + e,以便每当按下组合键时调用call_bk_fn,但它不起作用为什么会这样?
答案 0 :(得分:1)
我做过的一件事就是你的回调应该是这样的:
def call_bk_fn(self, event, shell):
print('hello world')
希望这可以帮助:),如果你还有一些问题,我认为你应该向我们提供有关所引发错误的更多信息。