我正试图编写一个函数来更好地管理我正在设计的程序的QMessageBoxes。它接受一些参数,并基于这些参数创建一个自定义的QMessageBox。
def alert(**kwargs):
# Initialization
msg = QMessageBox()
try:
# Conditioning for user selection of QMessageBox Properties
for key, value in kwargs.items():
key = key.lower()
# Set TitleBox value
if key == "title":
msg.setWindowTitle(value)
# Set TextBox value
elif key == "text":
msg.setText(value)
# Set Custom Buttons
elif key == "buttons":
buttons = value.split(',')
for x in range(len(buttons)):
msg.addButton(QPushButton(buttons[x]), QMessageBox.ActionRole)
msg.exec_()
except Exception as error:
print(error)
调用这个函数的简单形式如下:
alert(title="Some Title", text="Some Text", buttons="Yes,No,Restore,Config")
然而,我有麻烦得到按下的按钮的值。我已经尝试了以下的解决方案,但它没有解决我的问题。
msg.buttonClicked.connect(someFunction)
这将把按钮的值传递给一个函数,但是我想在alert()函数中访问被单击按钮的值。
您必须使用clickbutton()方法来返回按下的按钮。
import sys
from PyQt5.QtWidgets import QApplication, QMessageBox, QPushButton
def alert(**kwargs):
# Initialization
msg = QMessageBox()
for key, value in kwargs.items():
key = key.lower()
if key == "title":
msg.setWindowTitle(value)
elif key == "text":
msg.setText(value)
elif key == "buttons":
for text in value.split(","):
button = QPushButton(text.strip())
msg.addButton(button, QMessageBox.ActionRole)
msg.exec_()
button = msg.clickedButton()
if button is not None:
return button.text()
if __name__ == "__main__":
app = QApplication(sys.argv)
text = alert(title="Some Title", text="Some Text", buttons="Yes,No,Restore,Config")
print(text)