免费注册 查看新帖 |

Chinaunix

  平台 论坛 博客 文库
最近访问板块 发新帖
查看: 2003 | 回复: 0
打印 上一主题 下一主题

X window无法有效实现鼠标的模拟 [复制链接]

论坛徽章:
0
跳转到指定楼层
1 [收藏(0)] [报告]
发表于 2011-04-09 17:49 |只看该作者 |倒序浏览
本帖最后由 rootlife 于 2011-04-09 20:34 编辑

我用XLIB库里面的函数 ,分别模拟鼠标的按下,移动 及抬起。 但现在一个麻烦的问题是,如果点出了菜单,这时无论再怎么模拟鼠标菜单都不会消失, 必须用硬件鼠标去点,才能正确响应。
或者我的QT程序,如果不用物理鼠标的话 程序根本不能接收到任何模拟的 鼠标消息。

想请问下各位这具体的原因是什么? 除了X WINDOW,有没有其它的模拟鼠标的方案。谢谢。


模拟按下的代码如下:

        display = XOpenDisplay(NULL);
            root = DefaultRootWindow(display);

            event.type = ButtonPress;
            event.xbutton.button = Button1;
            event.xbutton.same_screen = True;

            XQueryPointer(display, root, &event.xbutton.root, &event.xbutton.window, &event.xbutton.x_root, &event.xbutton.y_root, &event.xbutton.x, &event.xbutton.y, &event.xbutton.state);
            event.xbutton.subwindow = event.xbutton.window;

            while(event.xbutton.subwindow)
            {
                event.xbutton.window = event.xbutton.subwindow;
                XQueryPointer(display, event.xbutton.window, &event.xbutton.root, &event.xbutton.subwindow, &event.xbutton.x_root, &event.xbutton.y_root, &event.xbutton.x, &event.xbutton.y, &event.xbutton.state);
            }

            if(XSendEvent(display, InputFocus, True, 0xfff, &event) == 0) { } //error
            XFlush(display);
           XCloseDisplay(display);

敬请回复,谢谢各位。
您需要登录后才可以回帖 登录 | 注册

本版积分规则 发表回复

  

北京盛拓优讯信息技术有限公司. 版权所有 京ICP备16024965号-6 北京市公安局海淀分局网监中心备案编号:11010802020122 niuxiaotong@pcpop.com 17352615567
未成年举报专区
中国互联网协会会员  联系我们:huangweiwei@itpub.net
感谢所有关心和支持过ChinaUnix的朋友们 转载本站内容请注明原作者名及出处

清除 Cookies - ChinaUnix - Archiver - WAP - TOP