在PyQt5中,我可以使用更改对象的光标
Object.setCursor(QCursor(Qt.PointingHandCursor))
对于其他按钮,我使用此类,但它不会更改QmessageBox
或Qfiledialog
:中的光标
class QPushButton(QPushButton):
def __init__(self, parent=None):
super(QPushButton, self).__init__(parent)
self.setCursor(QCursor(Qt.PointingHandCursor))
如何更改QMessageBox
和QFileDialog
中所有按钮的光标?
Messagebox方法示例
def onNotConnected(self):
err = QMessageBox.question(
self, DONGLE_NOT_CONN, DONGLE_NOT_CONN_MSG, QMessageBox.Ok | QMessageBox.Cancel)
if err == QMessageBox.Ok:
self.updating_thread(self.device_code)
else:
self.restart_program()
QMessageBox
和QFileDialog
具有setCursor()
方法,因为它们继承自QWidget
。但在您的情况下,问题在于静态方法,因为您不能直接访问对象。
因此,解决方案是利用这些静态方法的一个特殊特性:它们是topLevels,因此我们可以使用QApplication.topLevelWidgets()
进行过滤,但另一个问题是它们正在阻塞,因此不会同步执行任何内容,因此诀窍是使用QTimer
。
from PyQt5 import QtCore, QtGui, QtWidgets
def onTimeout():
for w in QtWidgets.QApplication.topLevelWidgets():
if isinstance(w, QtWidgets.QMessageBox):
for button in w.buttons():
button.setCursor(QtGui.QCursor(QtCore.Qt.PointingHandCursor))
class Widget(QtWidgets.QWidget):
def __init__(self, parent=None):
super(Widget, self).__init__(parent=None)
self.show()
QtCore.QTimer.singleShot(0, onTimeout)
res = QtWidgets.QMessageBox.question(self,
"title",
"text",
QtWidgets.QMessageBox.Ok | QtWidgets.QMessageBox.Cancel)
if __name__ == '__main__':
import sys
app = QtWidgets.QApplication(sys.argv)
w = Widget()
w.show()
sys.exit(app.exec_())
此外,在您的示例中,我们可以使用QMessageBox的父级过滤过滤器,可能QFileDialog就是窗口。
from PyQt5 import QtCore, QtGui, QtWidgets
class Widget(QtWidgets.QWidget):
def __init__(self, parent=None):
super(Widget, self).__init__(parent=None)
self.show()
QtCore.QTimer.singleShot(0, self.onTimeout)
msgBox = QtWidgets.QMessageBox.question(self,
"title",
"text",
QtWidgets.QMessageBox.Ok | QtWidgets.QMessageBox.Cancel)
QtCore.QTimer.singleShot(0, self.onTimeout)
fileName, _ = QtWidgets.QFileDialog.getSaveFileName(self,
"Save File",
QtCore.QDir.homePath(),
"Images (*.png *.xpm *.jpg)",
"",
QtWidgets.QFileDialog.DontUseNativeDialog)
def onTimeout(self):
for w in QtWidgets.QApplication.topLevelWidgets():
if isinstance(w, QtWidgets.QMessageBox) and w.parent() == self:
for button in w.buttons():
button.setCursor(QtGui.QCursor(QtCore.Qt.PointingHandCursor))
elif isinstance(w, QtWidgets.QFileDialog) and w.parent() == self:
for button in w.findChildren(QtWidgets.QPushButton):
button.setCursor(QtGui.QCursor(QtCore.Qt.PointingHandCursor))
if __name__ == '__main__':
import sys
app = QtWidgets.QApplication(sys.argv)
w = Widget()
w.show()
sys.exit(app.exec_())