158 |
158 |
159 def getAPIsManager(self): |
159 def getAPIsManager(self): |
160 """ |
160 """ |
161 Public method to get a reference to the APIs manager. |
161 Public method to get a reference to the APIs manager. |
162 |
162 |
163 @return the APIs manager object (eric7.QScintilla.APIsManager) |
163 @return the APIs manager object |
|
164 @rtype QScintilla.APIsManager |
164 """ |
165 """ |
165 return self.__apisManager |
166 return self.__apisManager |
166 |
167 |
167 ################################################################## |
168 ################################################################## |
168 ## Below are action related methods |
169 ## Below are action related methods |
1459 |
1460 |
1460 def __startShell(self, action): |
1461 def __startShell(self, action): |
1461 """ |
1462 """ |
1462 Private slot to start a shell according to the action triggered. |
1463 Private slot to start a shell according to the action triggered. |
1463 |
1464 |
1464 @param action menu action that was triggered (QAction) |
1465 @param action menu action that was triggered |
|
1466 @type QAction |
1465 """ |
1467 """ |
1466 venvName = action.text() |
1468 venvName = action.text() |
1467 self.__debugServer.startClient(False, venvName=venvName) |
1469 self.__debugServer.startClient(False, venvName=venvName) |
1468 self.__debugServer.remoteBanner() |
1470 self.__debugServer.remoteBanner() |
1469 |
1471 |