Implemented push buttons for selecting parameters to change within the PyLoT.in file. Work in progress.
This commit is contained in:
parent
640ed1acda
commit
b3a4928a9c
@ -1482,6 +1482,24 @@ class ParametersTab(PropTab):
|
|||||||
|
|
||||||
settings = QSettings()
|
settings = QSettings()
|
||||||
|
|
||||||
|
self.commonpicksettings = QPushButton("Common Settings autoPyLoT")
|
||||||
|
self.specialpicksettings = QPushButton("Special Settings autoPyLoT")
|
||||||
|
self.CFsettings = QPushButton("Special Settings for Calculating CF's")
|
||||||
|
self.FMsettings = QPushButton("Settings for First-Motion Picker")
|
||||||
|
self.qsettings = QPushButton("Quality Assessment")
|
||||||
|
self.sourcepara = QPushButton("Settings for Source Parameter Estimation")
|
||||||
|
|
||||||
|
layout = QGridLayout()
|
||||||
|
layout.addWidget(self.commonpicksettings, 0, 0)
|
||||||
|
layout.addWidget(self.specialpicksettings, 1, 0)
|
||||||
|
layout.addWidget(self.CFsettings, 2, 0)
|
||||||
|
layout.addWidget(self.FMsettings, 0, 1)
|
||||||
|
layout.addWidget(self.qsettings, 1, 1)
|
||||||
|
layout.addWidget(self.sourcepara, 2, 1)
|
||||||
|
|
||||||
|
self.setLayout(layout)
|
||||||
|
|
||||||
|
|
||||||
class NewEventDlg(QDialog):
|
class NewEventDlg(QDialog):
|
||||||
def __init__(self, parent=None, titleString="Create a new event"):
|
def __init__(self, parent=None, titleString="Create a new event"):
|
||||||
"""
|
"""
|
||||||
|
Loading…
Reference in New Issue
Block a user