检测是否在PyQt4中悬停在特定小部件上

时间:2015-02-13 22:58:33

标签: python pyqt4

所以目前在我的GUI中,我有很多字段需要对它们的作用进行一些解释。我想知道如果用户将鼠标悬停在某种小部件上,是否有办法让一个小窗口或部分弹出窗口?

所以我有这段代码:

class mainWindow(QtGui.QWidget):
    def __init__(self):
        super(mainWindow, self).__init__()
        self.layout = QtGui.QVBoxLayout()

        self.label1 = QtGui.QLabel()
        self.label1.setText("Name")
        self.lineEdit1 = QtGui.QLineEdit()

        self.label2 = QtGui.QLabel()
        self.label2.setText("Age")
        self.lineEdit2 = QtGui.QLineEdit()

当我将self.lineEdit1self.lineEdit2悬停在不同的消息上时,我想要一个小的弹出窗口显示。有办法吗?

1 个答案:

答案 0 :(得分:5)

最简单和标准的方法是使用工具提示。 Qt中的每个小部件都有一个toolTip属性,您可以使用

class mainWindow(QtGui.QWidget):
    def __init__(self):
        super(mainWindow, self).__init__()
        self.layout = QtGui.QVBoxLayout()

        self.label1 = QtGui.QLabel()
        self.label1.setText("Name")
        self.lineEdit1 = QtGui.QLineEdit()
        self.lineEdit1.setToolTip("This is a ToolTip")

        self.label2 = QtGui.QLabel()
        self.label2.setText("Age")
        self.lineEdit2 = QtGui.QLineEdit()
        self.lineEdit2.setToolTip("This is another ToolTip")