2018-06-22 13:40:57 +08:00
|
|
|
#!/usr/bin/env python
|
|
|
|
# -*- coding: utf-8 -*-
|
|
|
|
|
|
|
|
"""
|
|
|
|
Created on 2018年6月22日
|
|
|
|
@author: Irony
|
2021-07-13 14:52:26 +08:00
|
|
|
@site: https://pyqt.site , https://github.com/PyQt5
|
2018-06-22 13:40:57 +08:00
|
|
|
@email: 892768447@qq.com
|
|
|
|
@file: MessageBox
|
|
|
|
@description:
|
|
|
|
"""
|
|
|
|
from random import randrange
|
|
|
|
|
2021-07-13 14:52:26 +08:00
|
|
|
try:
|
|
|
|
from PyQt5.QtCore import QTimer
|
|
|
|
from PyQt5.QtWidgets import QApplication, QMessageBox, QPushButton
|
|
|
|
except ImportError:
|
|
|
|
from PySide2.QtCore import QTimer
|
|
|
|
from PySide2.QtWidgets import QApplication, QMessageBox, QPushButton
|
2018-06-22 13:40:57 +08:00
|
|
|
|
|
|
|
|
|
|
|
class MessageBox(QMessageBox):
|
|
|
|
|
|
|
|
def __init__(self, *args, count=5, time=1000, auto=False, **kwargs):
|
|
|
|
super(MessageBox, self).__init__(*args, **kwargs)
|
|
|
|
self._count = count
|
|
|
|
self._time = time
|
|
|
|
self._auto = auto # 是否自动关闭
|
|
|
|
assert count > 0 # 必须大于0
|
|
|
|
assert time >= 500 # 必须>=500毫秒
|
|
|
|
self.setStandardButtons(self.Close) # 关闭按钮
|
|
|
|
self.closeBtn = self.button(self.Close) # 获取关闭按钮
|
|
|
|
self.closeBtn.setText('关闭(%s)' % count)
|
|
|
|
self.closeBtn.setEnabled(False)
|
|
|
|
self._timer = QTimer(self, timeout=self.doCountDown)
|
|
|
|
self._timer.start(self._time)
|
|
|
|
print('是否自动关闭', auto)
|
|
|
|
|
|
|
|
def doCountDown(self):
|
|
|
|
self.closeBtn.setText('关闭(%s)' % self._count)
|
|
|
|
self._count -= 1
|
|
|
|
if self._count <= 0:
|
|
|
|
self.closeBtn.setText('关闭')
|
|
|
|
self.closeBtn.setEnabled(True)
|
|
|
|
self._timer.stop()
|
|
|
|
if self._auto: # 自动关闭
|
|
|
|
self.accept()
|
|
|
|
self.close()
|
|
|
|
|
|
|
|
|
|
|
|
if __name__ == '__main__':
|
|
|
|
import sys
|
2021-07-13 14:52:26 +08:00
|
|
|
|
2018-06-22 13:40:57 +08:00
|
|
|
app = QApplication(sys.argv)
|
|
|
|
w = QPushButton('点击弹出对话框')
|
|
|
|
w.resize(200, 200)
|
|
|
|
w.show()
|
|
|
|
w.clicked.connect(lambda: MessageBox(
|
|
|
|
w, text='倒计时关闭对话框', auto=randrange(0, 2)).exec_())
|
|
|
|
sys.exit(app.exec_())
|