PyQt:悬停按钮时更改光标

时间:2016-04-19 17:19:10

标签: python pyqt pyqt4

我正在尝试创建一个按钮(或任何其他Qwidget),这会在悬停时更改用户光标。

例如,当我悬停QPushButton时,它会将光标从Arrow更改为Pointing Hand。

我正在使用Qt样式表,所以我不完全确定,但有没有办法做那样的事情?,应该看起来像这样:

btn.setStyleSheet("#btn {background-image: url(':/images/Button1.png'); border: none; }"
"#btn:hover { change-cursor: cursor('PointingHand'); } 

注意:上面的代码是例如,第二行根本没有任何功能。

但是,如果没有,如果还有其他办法可以实现这个目标吗?

2 个答案:

答案 0 :(得分:2)

答案 1 :(得分:1)

对于任何想在PyQt5中实现这一目标的人,这就是我设法做到的。假设您有一个按钮,并且希望将鼠标悬停在按钮上时将光标更改为“ PointingHandCursor”。 您可以使用your_button.setCursor(QCursor(QtCore.Qt.PointingHandCursor))来完成。例如:

from PyQt5.QtWidgets import QWidget, QApplication, QPushButton, QLabel, QProgressBar, 
    QLineEdit, QFileDialog
from PyQt5 import QtGui, QtCore
from PyQt5.QtGui import QCursor

class Window(QWidget):
    def __init__(self):
        super().__init__()

        self.title = "your_title"

        self.screen_dim = (1600, 900)

        self.width = 650
        self.height = 400

        self.left = int(self.screen_dim[0]/2 - self.width/2)
        self.top = int(self.screen_dim[1]/2 - self.height/2)

        self.init_window()

    def init_window(self):
        self.setWindowIcon(QtGui.QIcon('path_to_icon.png'))
        self.setWindowTitle(self.title)
        self.setGeometry(self.left, self.top, self.width, self.height)
        self.setStyleSheet('background-color: rgb(52, 50, 51);')

        self.create_layout()

        self.show()

    def create_layout(self):
        self.button = QPushButton('Click Me', self)
        self.button.setCursor(QCursor(QtCore.Qt.PointingHandCursor))

if __name__ == '__main__':

    App = QApplication(sys.argv)
    window = Window()
    sys.exit(App.exec())