closing pyqt messageBox with closeevent of the parent window

佐手、 提交于 2019-12-04 20:05:37

Another way, It's exactly to call bool QWidget.close (self) to close widget by not press X button in window. (Or in this case is call isFinished). We can override is close method and add flag to control QWidget.closeEvent (self, QCloseEvent). Like this;

import sys
from PyQt4 import QtCore, QtGui

class QCsMainWindow (QtGui.QMainWindow):
    def __init__ (self):
        super(QCsMainWindow, self).__init__()
        self.isDirectlyClose = False
        QtCore.QTimer.singleShot(5 * 1000, self.close) # For simulate test direct close 

    def close (self):
        for childQWidget in self.findChildren(QtGui.QWidget):
            childQWidget.close()
        self.isDirectlyClose = True
        return QtGui.QMainWindow.close(self)

    def closeEvent (self, eventQCloseEvent):
        if self.isDirectlyClose:
            eventQCloseEvent.accept()
        else:
            answer = QtGui.QMessageBox.question (
                self,
                'Are you sure you want to quit ?',
                'Task is in progress !',
                QtGui.QMessageBox.Yes,
                QtGui.QMessageBox.No)
            if (answer == QtGui.QMessageBox.Yes) or (self.isDirectlyClose == True):
                eventQCloseEvent.accept()
            else:
                eventQCloseEvent.ignore()

appQApplication = QtGui.QApplication(sys.argv)
mainQWidget = QCsMainWindow()
mainQWidget.show()
sys.exit(appQApplication.exec_())
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!