273 self.octEdit.blockSignals(b) |
273 self.octEdit.blockSignals(b) |
274 self.binEdit.blockSignals(b) |
274 self.binEdit.blockSignals(b) |
275 self.binTable.blockSignals(b) |
275 self.binTable.blockSignals(b) |
276 |
276 |
277 @pyqtSlot(int) |
277 @pyqtSlot(int) |
278 def on_sizeBox_valueChanged(self, index): |
278 def on_sizeBox_valueChanged(self, value): |
279 """ |
279 """ |
280 Slot documentation goes here. |
280 Private slot handling a change of the bit size. |
|
281 |
|
282 @param value selected bit size (integer) |
281 """ |
283 """ |
282 self.__formatNumbers(10) |
284 self.__formatNumbers(10) |
283 |
285 |
284 @pyqtSlot() |
286 @pyqtSlot() |
285 def on_byteOrderButton_clicked(self): |
287 def on_byteOrderButton_clicked(self): |