我想制作像 t 这样的键盘快捷键,当主窗口关闭时(但进程正在运行,因为程序有一个统一的应用程序),它会起作用。我看到了一个包 keybinder,但似乎不能将它与 Gtk3 和 pygobject 一起使用。还是可以?那怎么办?如果没有,有没有其他方法可以做到这一点?该应用程序适用于 linux (ubuntu),我使用 python 2.7。
问问题
2319 次
2 回答
5
Keybinder 与 python3、Gtk3 和 pygi 一起工作得很好。源代码树中没有一个工作示例。
#!/usr/bin/env python3
"""
example-gi-py3.py
Looked at a pull request that was built for py2.x, but
overwrote the original py instead of making a separate example.
I wouldn't have accepted that pull request either.
The keybinder.init() part wasn't in the original example.
aking1012.com@gmail.com
public domain
"""
import gi
gi.require_version('Gtk', '3.0')
gi.require_version('Keybinder', '3.0')
from gi.repository import Gtk
from gi.repository import Keybinder
def callback(keystr, user_data):
print ("Handling", user_data)
print ("Event time:", Keybinder.get_current_event_time())
Gtk.main_quit()
if __name__ == '__main__':
keystr = "<Ctrl><Alt>M"
Keybinder.init()
Keybinder.bind(keystr, callback, "keystring %s (user data)" % keystr)
print ("Press", keystr, "to handle keybinding and quit")
Gtk.main()
注意:没有经过彻底测试,但作为一个简单的例子,它似乎可以工作。
于 2014-02-19T10:29:21.880 回答
0
我还使用 Keybinder 来激活 Gtk3 应用程序中的搜索输入字段:
from gi.repository import Keybinder
…
class MyApp:
…
Keybinder.init()
Keybinder.bind("<Ctrl>F", self.set_search_entry_focus)
…
def set_search_entry_focus(self, keystring):
self.search_entry.grab_focus()
http://lazka.github.io/pgi-docs/Keybinder-3.0/
但请注意,如果您正在使用另一个应用程序并且您的应用程序在后台运行,这也会窃取焦点。
于 2017-06-16T15:15:36.577 回答