Pyqt鼠标悬停在QPushButton上

2024-05-08 19:27:22 发布

您现在位置:Python中文网/ 问答频道 /正文

我想检测鼠标在QPushButton上的悬停。为此,我在按钮上安装了一个事件过滤器。但是,当鼠标位于按钮上方时,MouseMove事件不会完全触发。有时,当我点击一个不同于前一个位置的按钮时,它似乎会被触发。简单地说: 我把鼠标移到按钮上:什么也没发生。 我点击:MouseButtonPressed事件被触发。 我把鼠标移到按钮上的另一个位置:什么也没发生。 我再次单击:MouseButtonPressed被触发,MouseMove也被触发。

我希望每次鼠标悬停按钮时都触发MouseMove。我该怎么办?

这是我的代码:

import sys

from PyQt4 import QtCore
from PyQt4.QtGui import *

class eventFilterWindow(QMainWindow):

    def __init__(self):
        QMainWindow.__init__(self)
        widget = QWidget()

        button = QPushButton("Trigger event!")
        button.installEventFilter(self)

        hbox = QHBoxLayout()
        hbox.addWidget(button)
        widget.setLayout(hbox)
        self.setCentralWidget(widget)
        self.show()

    def eventFilter(self, object, event):

        if event.type() == QtCore.QEvent.MouseButtonPress:
            print "You pressed the button"
            return True

        elif event.type() == QtCore.QEvent.MouseMove:
            print "C'mon! CLick-meeee!!!"
            return True

        return False

def main():
    app = QApplication(sys.argv)
    #myWindow = EventsWindow()
    window = eventFilterWindow()
    sys.exit(app.exec_())

if __name__ == "__main__":
    main()

编辑:

实际上,MouseMove是在按下QPushButton时移动鼠标时触发的。


Tags: importselfeventreturndefsys事件button