XNextEvent由于某种原因不起作用

时间:2014-03-06 10:44:16

标签: c++ xlib

我正在尝试使用XLib捕获按键事件。但由于某些原因XNextEvent无法正常工作。 我没有收到任何错误,但看起来我的程序卡在“XNextEvent”调用线上。 这是我的代码:

#include <iostream>
#include <cstdio>
#include <cstdlib>
#include <X11/Xlib.h>
#include <X11/Xutil.h>

using namespace std;


int main()
{
    XEvent event;
    KeySym key;
    char text[255];
    Display *dis;

    dis = XOpenDisplay(NULL);
    while (1) {
        XNextEvent(dis, &event);
        if (event.type==KeyPress && XLookupString(&event.xkey,text,255,&key,0) == 1) {
            if (text[0]=='q') {
                XCloseDisplay(dis);
                return 0;
            }
            printf("You pressed the %c key!\n", text[0]);
        }
    }
    return 0;
}

2 个答案:

答案 0 :(得分:1)

这不是X11窗口系统的工作原理。

仔细阅读this。关键点是:

  

事件的来源是指针所在的可视窗口。

您没有创建窗口,因此您的程序不会收到键盘事件。即使您创建了窗口,它也必须具有焦点:

  

X服务器用于报告这些事件的窗口取决于窗口在窗口层次结构中的位置以及是否有任何插入窗口禁止生成这些事件。

答案 1 :(得分:1)

工作示例

#include <iostream>
#include <cstdio>
#include <cstdlib>
#include <X11/Xlib.h>
#include <X11/Xutil.h>

using namespace std;


int main()
{
    XEvent event;
    Display *dis;
    Window root;
    Bool owner_events = False;
    unsigned int modifiers = ControlMask | LockMask;


    dis = XOpenDisplay(NULL);
    root = XDefaultRootWindow(dis);
    unsigned int keycode = XKeysymToKeycode(dis, XK_P);
    XSelectInput(dis,root, KeyPressMask);
    XGrabKey(dis, keycode, modifiers, root, owner_events, GrabModeAsync, GrabModeAsync);

    while (1) {
        Bool QuiteCycle = False;
        XNextEvent(dis, &event);
        if (event.type == KeyPress) {
            cout << "Hot key pressed!" << endl;
            XUngrabKey(dis, keycode, modifiers, root);
            QuiteCycle = True;
        }
        if (QuiteCycle) {
            break;
        }
    }
    XCloseDisplay(dis);
    return 0;
}