Merge branch 'develop' of ariadne.geophysik.rub.de:/data/git/pylot into develop
This commit is contained in:
@@ -327,7 +327,7 @@ def picks_from_picksdict(picks, creation_info=None):
|
||||
filter_id = phase['filteroptions']
|
||||
filter_id = transformFilterString4Export(filter_id)
|
||||
except KeyError as e:
|
||||
warnings.warn(e.message, RuntimeWarning)
|
||||
warnings.warn(str(e), RuntimeWarning)
|
||||
filter_id = ''
|
||||
pick.filter_id = filter_id
|
||||
try:
|
||||
|
||||
@@ -1489,6 +1489,39 @@ class PylotCanvas(FigureCanvas):
|
||||
self.draw()
|
||||
|
||||
|
||||
class FileExtensionDialog(QtGui.QDialog):
|
||||
def __init__(self, parent=None, default_extension='.xml'):
|
||||
super(FileExtensionDialog, self).__init__(parent)
|
||||
self.default_extension = default_extension
|
||||
self.setButtons()
|
||||
self.connectSignals()
|
||||
self.setupUi()
|
||||
|
||||
def setupUi(self):
|
||||
self.main_layout = QtGui.QVBoxLayout()
|
||||
self.sub_layout = QtGui.QHBoxLayout()
|
||||
#
|
||||
self.setLayout(self.main_layout)
|
||||
self.textLabel = QtGui.QLabel('Specify file extension: ')
|
||||
self.file_extension = QtGui.QLineEdit(self.default_extension)
|
||||
|
||||
self.sub_layout.addWidget(self.textLabel)
|
||||
self.sub_layout.addWidget(self.file_extension)
|
||||
|
||||
self.main_layout.addLayout(self.sub_layout)
|
||||
self.main_layout.addWidget(self._buttonbox)
|
||||
|
||||
def setButtons(self):
|
||||
self._buttonbox = QDialogButtonBox(QDialogButtonBox.Ok |
|
||||
QDialogButtonBox.Cancel)
|
||||
|
||||
def connectSignals(self):
|
||||
self._buttonbox.accepted.connect(self.accept)
|
||||
self._buttonbox.rejected.connect(self.reject)
|
||||
|
||||
|
||||
|
||||
|
||||
class PhaseDefaults(QtGui.QDialog):
|
||||
def __init__(self, parent=None, nrow=10,
|
||||
phase_defaults=['P', 'S'],
|
||||
|
||||
Reference in New Issue
Block a user