mirror of
https://github.com/nqrduck/nqrduck-pulseprogrammer.git
synced 2024-11-08 10:50:02 +00:00
.
This commit is contained in:
parent
453449d336
commit
37eb4f7882
1 changed files with 9 additions and 2 deletions
|
@ -18,12 +18,19 @@ class PulseProgrammerView(ModuleView):
|
|||
def __init__(self, module):
|
||||
super().__init__(module)
|
||||
|
||||
self.setup_ui()
|
||||
self.setup_pulsetable()
|
||||
|
||||
self.setup_variabletables()
|
||||
|
||||
logger.debug("Connecting pulse parameter options changed signal to on_pulse_parameter_options_changed")
|
||||
self.module.model.pulse_parameter_options_changed.connect(self.on_pulse_parameter_options_changed)
|
||||
|
||||
def setup_variabletables(self) -> None:
|
||||
"""Setup the table for the variables.
|
||||
"""
|
||||
pass
|
||||
|
||||
def setup_ui(self) -> None:
|
||||
def setup_pulsetable(self) -> None:
|
||||
"""Setup the table for the pulse sequence. Also add buttons for saving and loading pulse sequences and editing and creation of events
|
||||
"""
|
||||
# Create pulse table
|
||||
|
|
Loading…
Reference in a new issue