本机 PyQt 函数可以告诉您给定位置有什么小部件?
我正在构建一个素材库,其中每个缩略图都是 QPushButton 上的 QIcon。我希望当用户用鼠标中键在 QPushButton 顶部滚动时,缩略图可以前进一帧。挑战是在滚动时获取哪个小部件位于鼠标下方。
我得到滚轮滚动事件的 X 和 Y 位置,如下所示:
def wheelEvent(self, event):
x = event.pos().x()
y = event.pos().y()
那么,是否有一些我忽略的本机 PyQt 函数,例如 getWidgetAt(x,y),我可以用它来确定用户是哪个 QPushButton正在悬停?
谢谢您的建议!
I am building a footage library, where each thumbnail is a QIcon on a QPushButton. I'd like the thumbnails to advance a frame as the user middle-mouse-button scrolls on top of the QPushButton. The challenge is getting which widget is under the mouse at the time of scroll.
I'm getting the X and Y position of the wheel-scrolling event like this:
def wheelEvent(self, event):
x = event.pos().x()
y = event.pos().y()
So, is there is some native PyQt function I'm overlooking, like getWidgetAt(x,y) that I could use to figure out which QPushButton the user is hovering over?
Thank you for your advice!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以使用任一方法获取小部件
,但将
QPushButton
子类化以直接在目标小部件内实现wheelEvent
更有意义。You can get the widget with either
But it would make more sense to subclass
QPushButton
to implementwheelEvent
directly inside the target widget.