Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
XCB 协议中拦截关键输入的代码是什么?
为此,我在 XCB 文档中找不到任何内容(或者我看不到正确的文档/代码)。我使用 Python,但一个 C 示例有助于理解代码。谢谢。
看这里:
xcb 事件
花时间阅读所有此页面,然后专注于键盘事件。最后有一个xcb应用程序的完整示例,将代码保存在the_name_of_the_source_file.c中(例如)
编译它:
gcc -lxcb -o the_name_of_the_application the_name_of_the_source_file.c