如何在Linux中读取低级鼠标单击位置
您可以从X11获取初始位置,并使用相对坐标来跟踪指针:
#include <stdio.h>#include <stdlib.h>#include <unistd.h>#include <linux/input.h>#include <fcntl.h>#include <X11/Xlib.h>#define MOUSEFILE '/dev/input/event6'int main(){ int fd; struct input_event ie; display *dpy; Window root, child; int rootX, rootY, winX, winY; unsigned int mask; dpy = XOpendisplay(NULL); XQueryPointer(dpy,DefaultRootwindow(dpy),&root,&child, &rootX,&rootY,&winX,&winY,&mask); if((fd = open(MOUSEFILE, O_RDONLY)) == -1) { perror('opening device'); exit(EXIT_FAILURE); } while(read(fd, &ie, sizeof(struct input_event))) { if (ie.type == 2) { if (ie.code == 0) { rootX += ie.value; } else if (ie.code == 1) { rootY += ie.value; } printf('time%ld.%06ldtx %dty %dn', ie.time.tv_sec, ie.time.tv_usec, rootX, rootY); } else if (ie.type == 1) { if (ie.code == 272 ) { printf('Mouse button ');if (ie.value == 0) printf('released!!n');if (ie.value == 1) printf('pressed!!n'); } else {printf('time %ld.%06ldttype %dtcode %dtvalue %dn', ie.time.tv_sec, ie.time.tv_usec, ie.type, ie.code, ie.value); } } return 0;}解决方法
我正在使用此代码从linux中的dev / input / event *读取鼠标事件。
#include <stdio.h>#include <stdlib.h>#include <unistd.h>#include <linux/input.h>#include <fcntl.h>#define MOUSEFILE '/dev/input/event4'int main(){ int fd; struct input_event ie; if((fd = open(MOUSEFILE,O_RDONLY)) == -1) {perror('opening device');exit(EXIT_FAILURE); } while(read(fd,&ie,sizeof(struct input_event))) {printf('time %ld.%06ldttype %dtcode %dtvalue %dn',ie.time.tv_sec,ie.time.tv_usec,ie.type,ie.code,ie.value);} return 0;}
它给我的结果格式:
时间1342517261.840285类型2代码0值-1
“时间”是时间戳,它返回事件发生的时间。
“代码”是事件代码,例如REL_X或KEY_BACKSPACE,完整列表位于include / linux / input.h中。
“价值”是事件带来的价值。EV_REL的相对更改,EV_ABS(操纵杆…)的绝对新值,或EV_KEY的释放为0,按键为1以及自动重复为2。
当我单击时,我得到了事件,但没有在屏幕上获得鼠标的位置,如何在屏幕上获得鼠标的位置。
编辑1:所以事实证明我必须使用相对坐标来获取鼠标坐标。我相信这是一个普遍的要求,因此可能会有库/预先存在的代码可用于获取坐标。关于该主题的任何信息将非常有用。
Edit2:解决方案
#include <stdio.h>#include <stdlib.h>#include <unistd.h>#include <linux/input.h>#include <fcntl.h>#include <X11/Xlib.h>#define MOUSEFILE '/dev/input/event4'int main(){ int fd; struct input_event ie; Display *dpy; Window root,child; int rootX,rootY,winX,winY; unsigned int mask; dpy = XOpenDisplay(NULL); XQueryPointer(dpy,DefaultRootWindow(dpy),&root,&child,&rootX,&rootY,&winX,&winY,&mask); if((fd = open(MOUSEFILE,O_RDONLY)) == -1) { perror('opening device'); exit(EXIT_FAILURE); } while(read(fd,sizeof(struct input_event))) { if (ie.type == 2) { if (ie.code == 0) { XQueryPointer(dpy,&mask); //rootX += ie.value; } else if (ie.code == 1) { XQueryPointer(dpy,&mask); // rootY += ie.value; } printf('time%ld.%06ldtx %dty %dn',rootX,rootY); } else printf('time %ld.%06ldttype %dtcode %dtvalue %dn',ie.value); } return 0;}
XQueryPointer似乎是更方便的解决方案。谢谢@perreal的指导。
相关文章:
1. Linux禁止ping或允许ping的设置方法2. 统信uos怎么显示隐藏文件? uos文件管理器隐藏文件的显示方法3. Win10电脑怎么禁止电脑弹窗?Win10禁止电脑弹窗教程4. Win10远程连接身份函数错误怎么办?Win10远程连接身份函数错误的解决方法5. Centos7安装完毕后无法联网显示Server not found如何解决?6. Win10累积更新KB5012599/KB501259发布 修复安全漏洞7. Win10系统的wlan不见了怎么办?Win10系统的wlan不见了的解决方法8. 注册表命令大全 118条常用的注册表命令集锦9. 现在要不要升级Win11?现在要不要升级Win11详细介绍10. Windows11怎么设置自动关机?Win11设置自动关机教程