Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

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

like image 363
p.deman Avatar asked Mar 11 '23 12:03

p.deman


2 Answers

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()
like image 122
eyllanesc Avatar answered Mar 14 '23 11:03

eyllanesc


Using PyQt5

from PyQt5.QtCore import QTimer
time_milliseconds = 1000

QTimer.singleShot(time_milliseconds, lambda : messageBox.done(0))
like image 30
Henrique R Avatar answered Mar 14 '23 11:03

Henrique R