我在Keybinder
应用程序中使用Gtk+3
,但它没有得到任何组合键。
这是代码:
#!/usr/bin/env python
# -*- coding: utf-8 -*-
import gi
gi.require_version('Keybinder', '3.0')
from gi.repository import Keybinder
from gi.repository import Gtk
def test_func(data):
print data
if __name__ == '__main__':
wnd = Gtk.Window()
wnd.connect('delete-event', Gtk.main_quit)
wnd.show_all()
if not Keybinder.bind('<Super>q', test_func, 'Hi there!'):
print "Keybinder.bind() failed."
Gtk.main()
我希望程序在按test_func
键组合时执行Windows+q
,但它什么都不做。
我在Debian Jessie
上使用xfce4
运行它,如果它有所作为。
答案 0 :(得分:1)
当你使用基于GIR
的Python绑定时,我很确定你需要调用
Keybinder.init()
在从Keybinder库调用任何其他函数之前手动。
(据我所知,静态python-keybinder
Python绑定会为您执行此操作,但内省绑定不会这样做。)