mirror of
https://github.com/nqrduck/nqrduck-pulseprogrammer.git
synced 2024-11-08 10:50:02 +00:00
Finally prettified the pulse paramter options dialog for numeric options.
This commit is contained in:
parent
c98df42cf8
commit
3ca5526701
1 changed files with 8 additions and 5 deletions
|
@ -383,8 +383,14 @@ class OptionsDialog(QDialog):
|
|||
|
||||
self.layout = QVBoxLayout(self)
|
||||
|
||||
numeric_layout = QFormLayout()
|
||||
numeric_layout.setHorizontalSpacing(30)
|
||||
|
||||
self.label = QLabel("Change options for the pulse parameter: %s" % parameter)
|
||||
self.layout.addWidget(self.label)
|
||||
|
||||
self.layout.addLayout(numeric_layout)
|
||||
|
||||
parameter = event.parameters[parameter]
|
||||
|
||||
options = parameter.get_options()
|
||||
|
@ -409,13 +415,10 @@ class OptionsDialog(QDialog):
|
|||
|
||||
# If the options are a float/int we will create a QSpinBox
|
||||
elif isinstance(option, NumericOption):
|
||||
numeric_layout = QHBoxLayout()
|
||||
numeric_label = QLabel(option.name)
|
||||
numeric_lineedit = QLineEdit(str(option.value))
|
||||
numeric_layout.addWidget(numeric_label)
|
||||
numeric_layout.addWidget(numeric_lineedit)
|
||||
numeric_layout.addStretch(1)
|
||||
self.layout.addLayout(numeric_layout)
|
||||
numeric_lineedit.setMaximumWidth(300)
|
||||
numeric_layout.addRow(numeric_label, numeric_lineedit)
|
||||
|
||||
self.return_functions[option] = numeric_lineedit.text
|
||||
|
||||
|
|
Loading…
Reference in a new issue