在 C++ 中移动鼠标指针在 Linux 上失败
我使用以下代码来隐藏和显示鼠标光标:
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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(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.