在 C++ 中移动鼠标指针在 Linux 上失败

发布于 2024-10-01 10:02:19 字数 335 浏览 1 评论 0原文

我使用以下代码来隐藏和显示鼠标光标:

XDefineCursor( m_display, m_window, show ? None : m_hiddenCursor );  
XFlush( m_display );

效果很好。但是,当我运行此命令时:

XWarpPointer( m_display, None, m_window, 0, 0, 0, 0, x, y );
XFlush( m_display );

鼠标根本不移动。根本什么也没发生。我在 Windows 上使用的 SetMousePos 工作正常。

I'm using the following code to hide and show the mouse cursor:

XDefineCursor( m_display, m_window, show ? None : m_hiddenCursor );  
XFlush( m_display );

That works fine. However, when I run this:

XWarpPointer( m_display, None, m_window, 0, 0, 0, 0, x, y );
XFlush( m_display );

The mouse doesn't move at all. Simply nothing happens. SetMousePos, which I'm using for Windows, works fine.

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

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

发布评论

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

评论(1

已经有一段时间了,但是 XWarpPointer 没有使用传递的偏移量进行光标的相对移动吗?看起来传递的偏移量是 (0,0) 意味着光标不会移动。我认为您想要使用的例程是 XMovePointer。

分享并享受。

It's been a while, but doesn't XWarpPointer make a relative move of the cursor using the passed offsets? It looks like the passed offsets are (0,0) meaning that the cursor wouldn't move. I think the routine you want to use is XMovePointer.

Share and enjoy.

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