我想创建“InputOnly”窗口,该窗口不可见并接受输入,但是在下面运行代码时,我的InputOnly窗口确实发生了任何事件。
我想将精力集中在其他窗口上并仍能获得输入。我该如何实现?
#include <X11/Xlib.h>
#include <iostream>
int main(void) {
Display *dsp;
Window root;
Window windows[2];
XEvent ev;
int i = 0;
dsp = XOpenDisplay(NULL);
root = RootWindow(dsp, DefaultScreen(dsp));
windows[i] = XCreateSimpleWindow(
dsp,
root,
0, 0, 200, 200,
1,
BlackPixel(dsp, DefaultScreen(dsp)),
WhitePixel(dsp, DefaultScreen(dsp))
);
XSelectInput(dsp, windows[i], 0);
XMapWindow(dsp, windows[i]);
++i;
XSetWindowAttributes at;
at.event_mask = KeyPressMask;
windows[i] = XCreateWindow(
dsp,
root,
10,10,200,200,
0,
CopyFromParent,
InputOnly,
0,
0,
&at
);
XSelectInput(dsp, windows[i], KeyPressMask);
//XMapWindow(dsp, windows[i]);
while(1) {
XNextEvent(dsp, &ev);
std::cout << "foo" << std::endl;
}
return 0;
}
最佳答案
尝试使用XWindowEvent()
而不是XNextEvent()
。因为您有多个窗口,所以这可能会解决您的问题。
关于c++ - 创建仅输入窗口,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/9077757/