443 |
443 |
444 def __changeBreakPoints(self, startIndex, endIndex): |
444 def __changeBreakPoints(self, startIndex, endIndex): |
445 """ |
445 """ |
446 Private slot to set changed breakpoints. |
446 Private slot to set changed breakpoints. |
447 |
447 |
448 @param indexes indexes of changed breakpoints. |
448 @param startIndex starting index of the change breakpoins (QModelIndex) |
|
449 @param endIndex ending index of the change breakpoins (QModelIndex) |
449 """ |
450 """ |
450 if self.debugging: |
451 if self.debugging: |
451 self.__addBreakPoints(QModelIndex(), startIndex.row(), endIndex.row()) |
452 self.__addBreakPoints(QModelIndex(), startIndex.row(), endIndex.row()) |
452 |
453 |
453 def __breakPointDataAboutToBeChanged(self, startIndex, endIndex): |
454 def __breakPointDataAboutToBeChanged(self, startIndex, endIndex): |
1096 |
1097 |
1097 def signalClientThreadList(self, currentId, threadList): |
1098 def signalClientThreadList(self, currentId, threadList): |
1098 """ |
1099 """ |
1099 Public method to process the client thread list info. |
1100 Public method to process the client thread list info. |
1100 |
1101 |
1101 @param currentID id of the current thread (integer) |
1102 @param currentId id of the current thread (integer) |
1102 @param threadList list of dictionaries containing the thread data |
1103 @param threadList list of dictionaries containing the thread data |
1103 """ |
1104 """ |
1104 self.clientThreadList.emit(currentId, threadList) |
1105 self.clientThreadList.emit(currentId, threadList) |
1105 |
1106 |
1106 def signalClientThreadSet(self): |
1107 def signalClientThreadSet(self): |