VCS/StatusMonitorThread.py

changeset 501
5c615a85241a
parent 500
c3abc7895a01
child 791
9ec2ac20e54e
equal deleted inserted replaced
500:c3abc7895a01 501:5c615a85241a
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

eric ide

mercurial