autodeer.gui.main
¶
Module Contents¶
Classes¶
Defines the signals available from a running worker thread. |
|
Worker thread |
|
Functions¶
|
|
|
|
|
|
|
Attributes¶
- class autodeer.gui.main.WorkerSignals[source]¶
Bases:
autodeer.gui.tools.QtCore.QObject
Defines the signals available from a running worker thread.
Supported signals are:
- finished
No data
- error
tuple (exctype, value, traceback.format_exc() )
- result
object data returned from processing, anything
- progress
int indicating % progress
- class autodeer.gui.main.Worker(fn, *args, **kwargs)[source]¶
Bases:
autodeer.gui.tools.QtCore.QRunnable
Worker thread
Inherits from QRunnable to handler worker thread setup, signals and wrap-up.
- Parameters:
callback (function) – The function callback to run on this worker thread. Supplied args and kwargs will be passed through to the runner.
args – Arguments to pass to the callback function
kwargs – Keywords to pass to the callback function