- working on a new tool to process automatically PcbWizard Excellon files which are generated in 2 files

This commit is contained in:
Marius Stanciu
2019-04-15 03:29:43 +03:00
parent 2e7d9f953f
commit db26895b5b
6 changed files with 437 additions and 7 deletions

View File

@@ -27,7 +27,7 @@ EDIT_SIZE_HINT = 70
class RadioSet(QtWidgets.QWidget):
activated_custom = QtCore.pyqtSignal()
activated_custom = QtCore.pyqtSignal(str)
def __init__(self, choices, orientation='horizontal', parent=None, stretch=None):
"""
@@ -72,7 +72,8 @@ class RadioSet(QtWidgets.QWidget):
radio = self.sender()
if radio.isChecked():
self.group_toggle_fn()
self.activated_custom.emit()
ret_val = str(self.get_value())
self.activated_custom.emit(ret_val)
return
def get_value(self):