1
我有一個程序,其中由於各種原因,我需要發送按鍵事件到各種窗口。我使用的那一刻在X11發送KeyPress事件
XEvent event;
/* set some other stuff*/
event.type = KeyPress;
event.xkey.keycode = XKeysymToKeycode(display,XStringToKeysym(curr_key));
作品小寫字母和數字是什麼,但我需要修改這個,以便它能夠發送回車鍵和大寫字母。