# -*- coding: utf-8 -*- # # (c) Copyright 2003-2007 Hewlett-Packard Development Company, L.P. # # This program is free software; you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by # the Free Software Foundation; either version 2 of the License, or # (at your option) any later version. # # This program is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU General Public License for more details. # # You should have received a copy of the GNU General Public License # along with this program; if not, write to the Free Software # Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA # # Author: Don Welch # import sys from qt import * from waitform_base import WaitForm_base class WaitForm(WaitForm_base): def __init__(self, seconds, message=None, cancel_func=None, parent=None, name=None, modal=0, fl=0): WaitForm_base.__init__(self,parent,name,modal,fl) self.wait_timer = QTimer(self, "WaitTimer") self.connect(self.wait_timer, SIGNAL('timeout()'), self.wait_timer_timeout) self.seconds = seconds self.progress = 0 self.ProgressBar.setTotalSteps(seconds) if seconds == 0: self.wait_timer.start(10) else: self.wait_timer.start(seconds*1000) if message is not None: self.setMessage(message) self.cancelPushButton.setEnabled(cancel_func is not None) self.cancel_func = cancel_func self.canceled = False def wait_timer_timeout(self): self.progress += 1 self.ProgressBar.setProgress(self.progress) if self.progress == self.seconds: self.wait_timer.stop() self.close() def setMessage(self, message): self.textLabel3.setText(message) qApp.processEvents() def cancelPushButton_clicked(self): self.canceled = True if self.cancel_func is not None: self.cancel_func() self.cancelPushButton.setEnabled(False)