11 |
11 |
12 class VcsStatusMonitorThread(QThread): |
12 class VcsStatusMonitorThread(QThread): |
13 """ |
13 """ |
14 Class implementing the VCS status monitor thread base class. |
14 Class implementing the VCS status monitor thread base class. |
15 |
15 |
16 @signal vcsStatusMonitorData(QStringList) emitted to update the VCS status |
16 @signal vcsStatusMonitorData(list of str) emitted to update the VCS status |
17 @signal vcsStatusMonitorStatus(QString, QString) emitted to signal the status of the |
17 @signal vcsStatusMonitorStatus(str, str) emitted to signal the status of the |
18 monitoring thread (ok, nok, op) and a status message |
18 monitoring thread (ok, nok, op) and a status message |
19 """ |
19 """ |
20 vcsStatusMonitorData = pyqtSignal(list) |
20 vcsStatusMonitorData = pyqtSignal(list) |
21 vcsStatusMonitorStatus = pyqtSignal(str, str) |
21 vcsStatusMonitorStatus = pyqtSignal(str, str) |
22 |
22 |