forked from maou-shonen/DeepCreamPy-archived
-
Notifications
You must be signed in to change notification settings - Fork 0
/
signals.py
42 lines (31 loc) · 1.43 KB
/
signals.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
from PySide2 import QtCore
# Signals used for sharing status between threads(IPC, InterProcess Connection)
class Signals(QtCore.QObject):
# usage example in other class(thread) :
# → self.signals.<method_name>.emit(<parameters - type strict>)
# str : String to update label
# direct connect to decensorButton.setText(str)
update_decensorButton_Text = QtCore.Signal(str)
# bool : set QPushButton Enabled (True or False)
# direct connect to decensorButton.setEnabled(bool)
update_decensorButton_Enabled = QtCore.Signal(bool)
# direct connect to progressMessage.clear(None)
clear_progressMessage = QtCore.Signal()
# str : text to change
# direct connect to statusLabel.setText
update_statusLabel_Text = QtCore.Signal(str)
# int : value to change
# direct connect to progressBar.setValue(int)
update_ProgressBar_SET_VALUE = QtCore.Signal(int)
# int : value to change
# direct connect to progressBar.setMaximum(int)
update_ProgressBar_MAX_VALUE = QtCore.Signal(int)
# int : value to change
# direct connect to self.progressBar.setMinimum(int)
update_ProgressBar_MIN_VALUE = QtCore.Signal(int)
# str : value to change
# direct connect to self.progressCursor.insertText(str)
insertText_progressCursor = QtCore.Signal(str)
# str : value to change
# direct connect to self.progressMessage.append(str)
appendText_progressMessage = QtCore.Signal(str)