mirror of
https://github.com/arsenetar/dupeguru.git
synced 2024-10-31 22:05:58 +00:00
Andrew Senetar
7ba8aa3514
- Format all files with black - Update tox.ini flake8 arguments to be compatible - Add black to requirements-extra.txt - Reduce ignored flake8 rules and fix a few violations
53 lines
1.7 KiB
Python
53 lines
1.7 KiB
Python
# Created By: Virgil Dupras
|
|
# Created On: 2009-09-14
|
|
# Copyright 2011 Hardcoded Software (http://www.hardcoded.net)
|
|
#
|
|
# This software is licensed under the "GPLv3" License as described in the "LICENSE" file,
|
|
# which should be included with this package. The terms are also available at
|
|
# http://www.gnu.org/licenses/gpl-3.0.html
|
|
|
|
from PyQt5.QtCore import pyqtSignal, Qt, QTimer
|
|
from PyQt5.QtWidgets import QProgressDialog
|
|
|
|
from . import performer
|
|
|
|
|
|
class Progress(QProgressDialog, performer.ThreadedJobPerformer):
|
|
finished = pyqtSignal(["QString"])
|
|
|
|
def __init__(self, parent):
|
|
flags = Qt.CustomizeWindowHint | Qt.WindowTitleHint | Qt.WindowSystemMenuHint
|
|
QProgressDialog.__init__(self, "", "Cancel", 0, 100, parent, flags)
|
|
self.setModal(True)
|
|
self.setAutoReset(False)
|
|
self.setAutoClose(False)
|
|
self._timer = QTimer()
|
|
self._jobid = ""
|
|
self._timer.timeout.connect(self.updateProgress)
|
|
|
|
def updateProgress(self):
|
|
# the values might change before setValue happens
|
|
last_progress = self.last_progress
|
|
last_desc = self.last_desc
|
|
if not self._job_running or last_progress is None:
|
|
self._timer.stop()
|
|
self.close()
|
|
if not self.job_cancelled:
|
|
self.finished.emit(self._jobid)
|
|
return
|
|
if self.wasCanceled():
|
|
self.job_cancelled = True
|
|
return
|
|
if last_desc:
|
|
self.setLabelText(last_desc)
|
|
self.setValue(last_progress)
|
|
|
|
def run(self, jobid, title, target, args=()):
|
|
self._jobid = jobid
|
|
self.reset()
|
|
self.setLabelText("")
|
|
self.run_threaded(target, args)
|
|
self.setWindowTitle(title)
|
|
self.show()
|
|
self._timer.start(500)
|