93 repopulated |
93 repopulated |
94 @signal completeRepopulateItem(str) emitted after an item of the model was |
94 @signal completeRepopulateItem(str) emitted after an item of the model was |
95 repopulated |
95 repopulated |
96 @signal vcsStatusMonitorStatus(str, str) emitted to signal the status of |
96 @signal vcsStatusMonitorStatus(str, str) emitted to signal the status of |
97 the monitoring thread (ok, nok, op, off) and a status message |
97 the monitoring thread (ok, nok, op, off) and a status message |
|
98 @signal vcsStatusMonitorInfo(str) emitted to signal some info of the |
|
99 monitoring thread |
98 @signal reinitVCS() emitted after the VCS has been reinitialized |
100 @signal reinitVCS() emitted after the VCS has been reinitialized |
99 @signal showMenu(str, QMenu) emitted when a menu is about to be shown. The |
101 @signal showMenu(str, QMenu) emitted when a menu is about to be shown. The |
100 name of the menu and a reference to the menu are given. |
102 name of the menu and a reference to the menu are given. |
101 @signal lexerAssociationsChanged() emitted after the lexer associations |
103 @signal lexerAssociationsChanged() emitted after the lexer associations |
102 have been changed |
104 have been changed |
137 projectPropertiesChanged = pyqtSignal() |
139 projectPropertiesChanged = pyqtSignal() |
138 directoryRemoved = pyqtSignal(str) |
140 directoryRemoved = pyqtSignal(str) |
139 prepareRepopulateItem = pyqtSignal(str) |
141 prepareRepopulateItem = pyqtSignal(str) |
140 completeRepopulateItem = pyqtSignal(str) |
142 completeRepopulateItem = pyqtSignal(str) |
141 vcsStatusMonitorStatus = pyqtSignal(str, str) |
143 vcsStatusMonitorStatus = pyqtSignal(str, str) |
|
144 vcsStatusMonitorInfo = pyqtSignal(str) |
142 reinitVCS = pyqtSignal() |
145 reinitVCS = pyqtSignal() |
143 showMenu = pyqtSignal(str, QMenu) |
146 showMenu = pyqtSignal(str, QMenu) |
144 lexerAssociationsChanged = pyqtSignal() |
147 lexerAssociationsChanged = pyqtSignal() |
145 projectChanged = pyqtSignal() |
148 projectChanged = pyqtSignal() |
146 appendStdout = pyqtSignal(str) |
149 appendStdout = pyqtSignal(str) |
2762 self.vcs.startStatusMonitor(self) |
2765 self.vcs.startStatusMonitor(self) |
2763 self.vcs.vcsStatusMonitorData.connect( |
2766 self.vcs.vcsStatusMonitorData.connect( |
2764 self.__model.changeVCSStates) |
2767 self.__model.changeVCSStates) |
2765 self.vcs.vcsStatusMonitorStatus.connect( |
2768 self.vcs.vcsStatusMonitorStatus.connect( |
2766 self.__statusMonitorStatus) |
2769 self.__statusMonitorStatus) |
|
2770 self.vcs.vcsStatusMonitorInfo.connect( |
|
2771 self.vcsStatusMonitorInfo) |
2767 self.vcs.vcsStatusChanged.connect(self.__vcsStatusChanged) |
2772 self.vcs.vcsStatusChanged.connect(self.__vcsStatusChanged) |
2768 self.reinitVCS.emit() |
2773 self.reinitVCS.emit() |
2769 |
2774 |
2770 if self.pudata["VCSSTATUSMONITORINTERVAL"]: |
2775 if self.pudata["VCSSTATUSMONITORINTERVAL"]: |
2771 self.setStatusMonitorInterval( |
2776 self.setStatusMonitorInterval( |
2990 self.vcs.startStatusMonitor(self) |
2995 self.vcs.startStatusMonitor(self) |
2991 self.vcs.vcsStatusMonitorData.connect( |
2996 self.vcs.vcsStatusMonitorData.connect( |
2992 self.__model.changeVCSStates) |
2997 self.__model.changeVCSStates) |
2993 self.vcs.vcsStatusMonitorStatus.connect( |
2998 self.vcs.vcsStatusMonitorStatus.connect( |
2994 self.__statusMonitorStatus) |
2999 self.__statusMonitorStatus) |
|
3000 self.vcs.vcsStatusMonitorInfo.connect( |
|
3001 self.vcsStatusMonitorInfo) |
2995 self.vcs.vcsStatusChanged.connect( |
3002 self.vcs.vcsStatusChanged.connect( |
2996 self.__vcsStatusChanged) |
3003 self.__vcsStatusChanged) |
2997 else: |
3004 else: |
2998 QApplication.restoreOverrideCursor() |
3005 QApplication.restoreOverrideCursor() |
2999 |
3006 |