为什么 XWarpPointer 只工作一次(在循环中)?

发布于 2024-11-04 18:06:45 字数 866 浏览 0 评论 0原文

为什么 XWarpPointer 只能工作一次?

当我跑步时:

#include <stdio.h>
#include <X11/Xlib.h>
#include <X11/Xutil.h>
#include <X11/Xatom.h>

int main()
{
  Display *dpy = XOpenDisplay(0);
  while (1) {
    Window root_window;
    root_window = XRootWindow(dpy, 0);
    XSelectInput(dpy, root_window, KeyReleaseMask);
    XWarpPointer(dpy, None, root_window, 0, 0, 0, 0, 100, 100);
    XSync(dpy, False);
  }
}

鼠标应该显示锁定在一个位置。但它只移动鼠标一次,然后让我在循环仍在运行时移动它。是什么导致 XWarpPointer 只运行一次?它是某种 X11 功能来保护用户免受应用程序的影响吗?

仅供参考,我在 Mac OSX 10.6 上的 VMWare Fusion 上运行 RHEL 5.2。

更新:

  • 运行二进制文件时,组件 就像按钮或图标闪烁一样,但是 视觉鼠标光标停留在我的位置 移动它。
  • XWarpPointer 执行一次之后 工作时,当我移动鼠标时, 光标跳到原来位置附近 在我扭​​曲它之前。就好像在那里 是 (last_x,last_y) 不是 正在更新。
  • 当我通过更改指针时 OpenVMTools 似乎使 指针停留在所需位置 更多,但视觉指针没有 改变。

谢谢, 陈兹

Why does XWarpPointer only work once?

When I run:

#include <stdio.h>
#include <X11/Xlib.h>
#include <X11/Xutil.h>
#include <X11/Xatom.h>

int main()
{
  Display *dpy = XOpenDisplay(0);
  while (1) {
    Window root_window;
    root_window = XRootWindow(dpy, 0);
    XSelectInput(dpy, root_window, KeyReleaseMask);
    XWarpPointer(dpy, None, root_window, 0, 0, 0, 0, 100, 100);
    XSync(dpy, False);
  }
}

The mouse should appear locked in a single position. But it only moves the mouse once and then lets me move it around while the loop is still runnning. What is causing the XWarpPointer to only run once? Is it some kind of X11 feature to protect the user from the application?

FYI, I am running RHEL 5.2 on VMWare Fusion on Mac OSX 10.6.

Update:

  • When running the binary, components
    like a button or icon flicker, but
    the visual mouse cursor stays where I
    move it.
  • After the one time XWarpPointer does
    work, when I move the mouse, the
    cursor jumps to near where it was
    before I warped it. It's as if there
    is a (last_x,last_y) that is not
    getting updated.
  • When I change the pointer via
    OpenVMTools it seems to make the
    pointer stick to the desired location
    more, but the visual pointer does not
    change.

Thanks,
Chenz

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

や三分注定 2024-11-11 18:06:46

我没有这方面的经验,但是如果您不丢弃 XSync 中的事件会发生什么?例如XSync(dpy, True);

I've no experience here but what happens if you don't discard events in XSync? e.g. XSync(dpy, True);?

偏闹i 2024-11-11 18:06:46

此后

XWarpPointer(dpy, None, root_window, 0, 0, 0, 0, 100, 100);

尝试

XFlush(dpy);

应该可以解决问题。

After

XWarpPointer(dpy, None, root_window, 0, 0, 0, 0, 100, 100);

Try

XFlush(dpy);

This should solve the problem.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文