获取 QImage 中的鼠标位置
我需要获取鼠标当前悬停位置的 QImage 坐标。就像在图像编辑程序中一样,我们可以看到鼠标当前悬停的像素的坐标。
I need to get the coordinates of a QImage of where the mouse is currently hovering. Like in image editing programs, where we can see the coordinates of the pixel the mouse in currently hovering.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
调用
setMouseTracking(true)
,并覆盖mouseMoveEvent
。每当鼠标在 QImage 内移动时,您的 mouseMoveEvent 函数就会被调用。 (您必须创建 QImage 的子类才能执行此操作。)Call
setMouseTracking(true)
, and overridemouseMoveEvent
. YourmouseMoveEvent
function will be called whenever the mouse moves inside the QImage. (You have to create a subclass of QImage to do this.)