VCS/VersionControl.py

changeset 501
5c615a85241a
parent 500
c3abc7895a01
child 537
72b32daeb8d6
equal deleted inserted replaced
500:c3abc7895a01 501:5c615a85241a
22 VCS interfaces. 22 VCS interfaces.
23 23
24 It defines the vcs interface to be implemented by subclasses 24 It defines the vcs interface to be implemented by subclasses
25 and the common methods. 25 and the common methods.
26 26
27 @signal vcsStatusMonitorData(QStringList) emitted to update the VCS status 27 @signal vcsStatusMonitorData(list of str) emitted to update the VCS status
28 @signal vcsStatusMonitorStatus(QString, QString) emitted to signal the status of the 28 @signal vcsStatusMonitorStatus(str, str) emitted to signal the status of the
29 monitoring thread (ok, nok, op, off) and a status message 29 monitoring thread (ok, nok, op, off) and a status message
30 """ 30 """
31 vcsStatusMonitorData = pyqtSignal(list) 31 vcsStatusMonitorData = pyqtSignal(list)
32 vcsStatusMonitorStatus = pyqtSignal(str, str) 32 vcsStatusMonitorStatus = pyqtSignal(str, str)
33 33

eric ide

mercurial