rhythmbox plugin code for hot key not working

Posted by Bunny Rabbit on Ask Ubuntu See other posts from Ask Ubuntu or by Bunny Rabbit
Published on 2011-01-05T17:28:45Z Indexed on 2011/01/05 17:59 UTC
Read the original article Hit count: 445

Filed under:
|
def activate(self,shell):
  self.shell = shell
  self.copy_selected()
  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():
                print('hello world')

i am using the above code in a plugin for rhythmbox ,and here i am trying to register the key ctr+e so that the call_bk_fn gets called whenever the key combination is pressed , but its not working why is that so ?

© Ask Ubuntu or respective owner

Related posts about rhythmbox

Related posts about python