Sending Programmatic Mouse Events to X

2019-02-27 12:58发布

I am somewhat new to X development on Linux. I'm wondering what are best practices (or links to resources) for programmatically sending cursor events. Moving the cursor to a normalized (X,Y), creating right/left mouse clicks, etc. Ideally this would be something in C/C++.

I have played around with the Qt QCursor but I'd like to know the raw way to accomplish this.

3条回答
Summer. ? 凉城
2楼-- · 2019-02-27 13:33
别忘想泡老子
3楼-- · 2019-02-27 13:35

You need to be learning Xlib if you want the "raw" way to accomplish it.

If you want even MORE raw, you'll want to study the X protocol.

What you're asking about is pretty darn specialized knowledge. You should head over to the X.org mailing lists or X related newsgroups.

查看更多
Rolldiameter
4楼-- · 2019-02-27 13:46

I think you can use XSendEvent. There's some sample code here which uses XQueryPointer to populate most of the event fields.

If you just want to move the pointer, use XWarpPointer.

查看更多
登录 后发表回答