本机 PyQt 函数可以告诉您给定位置有什么小部件?

发布于 2024-12-04 13:54:57 字数 354 浏览 2 评论 0原文

我正在构建一个素材库,其中每个缩略图都是 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 技术交流群。

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

发布评论

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

评论(1

浸婚纱 2024-12-11 13:54:57

您可以使用任一方法获取小部件

hoveredWidget = QApplication.widgetAt(event.globalPos())
# or  
hoveredWidget = self.childAt(event.pos())

,但将 QPushButton 子类化以直接在目标小部件内实现 wheelEvent 更有意义。

You can get the widget with either

hoveredWidget = QApplication.widgetAt(event.globalPos())
# or  
hoveredWidget = self.childAt(event.pos())

But it would make more sense to subclass QPushButton to implement wheelEvent directly inside the target widget.

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