pythonpyqtpyqt4pyqt5qmessagebox

pyqt: messagebox automatically closing after few seconds


I am trying to do a warning message box that disappears automatically after few seconds. I have done this code:

def warning(self):
   messagebox = QtGui.QMessageBox(self)
   messagebox.setWindowTitle("wait")
   messagebox.setText("wait (closing automatically in {0} secondes.)".format(3))
   messagebox.setStandardButtons(messagebox.NoButton)
   self.timer2 = QtCore.QTimer()
   self.time_to_wait = 3
   def close_messagebox(e):
      e.accept()
      self.timer2.stop()
      self.time_to_wait = 3
   def decompte():
      messagebox.setText("wait (closing automatically in {0} secondes.)".format(self.time_to_wait))
      if self.time_to_wait <= 0:
         messagebox.closeEvent = close_messagebox
         messagebox.close()
      self.time_to_wait -= 1
   self.connect(self.timer2,QtCore.SIGNAL("timeout()"),decompte)
   self.timer2.start(1000)
   messagebox.exec_()

It works actually fine, for the automatic closing part. My problem is that when someone try to close it manually before the few seconds, by clicking on the x button of the window, the message box never closes. the "time to wait" goes negative, the message box shows "closing automatically in -4 seconds" for example, and it will never close.

Any idea how I could avoid that ? Regards


Solution

  • Try with my solution, I have created a new type of QMessageBox with your requirements

    import sys
    from PyQt4 import QtCore
    from PyQt4 import QtGui
    
    
    class TimerMessageBox(QtGui.QMessageBox):
        def __init__(self, timeout=3, parent=None):
            super(TimerMessageBox, self).__init__(parent)
            self.setWindowTitle("wait")
            self.time_to_wait = timeout
            self.setText("wait (closing automatically in {0} secondes.)".format(timeout))
            self.setStandardButtons(QtGui.QMessageBox.NoButton)
            self.timer = QtCore.QTimer(self)
            self.timer.setInterval(1000)
            self.timer.timeout.connect(self.changeContent)
            self.timer.start()
    
        def changeContent(self):
            self.setText("wait (closing automatically in {0} secondes.)".format(self.time_to_wait))
            self.time_to_wait -= 1
            if self.time_to_wait <= 0:
                self.close()
    
        def closeEvent(self, event):
            self.timer.stop()
            event.accept()
    
    
    class Example(QtGui.QWidget):
        def __init__(self):
            super(Example, self).__init__()
            btn = QtGui.QPushButton('Button', self)
            btn.resize(btn.sizeHint())
            btn.move(50, 50)
            self.setWindowTitle('Example')
            btn.clicked.connect(self.warning)
    
        def warning(self):
            messagebox = TimerMessageBox(5, self)
            messagebox.exec_()
    
    
    def main():
        app = QtGui.QApplication(sys.argv)
        ex = Example()
        ex.show()
        sys.exit(app.exec_())
    
    
    if __name__ == '__main__':
        main()