Install SeisComP and scanloc ARM64 nightly packages
This commit is contained in:
@ -15,6 +15,7 @@
|
||||
#include <QtWidgets/QDialog>
|
||||
#include <QtWidgets/QHBoxLayout>
|
||||
#include <QtWidgets/QLabel>
|
||||
#include <QtWidgets/QLineEdit>
|
||||
#include <QtWidgets/QPushButton>
|
||||
#include <QtWidgets/QRadioButton>
|
||||
#include <QtWidgets/QSpacerItem>
|
||||
@ -47,6 +48,9 @@ public:
|
||||
QCheckBox *checkAllAgencies;
|
||||
QCheckBox *checkAllPhases;
|
||||
QCheckBox *checkPreferTargetPhases;
|
||||
QHBoxLayout *horizontalLayout;
|
||||
QLabel *label_6;
|
||||
QLineEdit *lineEditAcceptedPhases;
|
||||
QHBoxLayout *hboxLayout4;
|
||||
QSpacerItem *spacerItem5;
|
||||
QPushButton *okButton;
|
||||
@ -56,7 +60,7 @@ public:
|
||||
{
|
||||
if (ImportPicks->objectName().isEmpty())
|
||||
ImportPicks->setObjectName(QString::fromUtf8("ImportPicks"));
|
||||
ImportPicks->resize(415, 499);
|
||||
ImportPicks->resize(630, 735);
|
||||
QSizePolicy sizePolicy(QSizePolicy::Preferred, QSizePolicy::Preferred);
|
||||
sizePolicy.setHorizontalStretch(0);
|
||||
sizePolicy.setVerticalStretch(0);
|
||||
@ -194,6 +198,21 @@ public:
|
||||
|
||||
vboxLayout->addWidget(checkPreferTargetPhases);
|
||||
|
||||
horizontalLayout = new QHBoxLayout();
|
||||
horizontalLayout->setObjectName(QString::fromUtf8("horizontalLayout"));
|
||||
label_6 = new QLabel(ImportPicks);
|
||||
label_6->setObjectName(QString::fromUtf8("label_6"));
|
||||
|
||||
horizontalLayout->addWidget(label_6);
|
||||
|
||||
lineEditAcceptedPhases = new QLineEdit(ImportPicks);
|
||||
lineEditAcceptedPhases->setObjectName(QString::fromUtf8("lineEditAcceptedPhases"));
|
||||
|
||||
horizontalLayout->addWidget(lineEditAcceptedPhases);
|
||||
|
||||
|
||||
vboxLayout->addLayout(horizontalLayout);
|
||||
|
||||
hboxLayout4 = new QHBoxLayout();
|
||||
#ifndef Q_OS_MAC
|
||||
hboxLayout4->setSpacing(6);
|
||||
@ -240,6 +259,10 @@ public:
|
||||
checkAllAgencies->setText(QCoreApplication::translate("ImportPicks", "Import picks from all agencies instead of using only own picks.", nullptr));
|
||||
checkAllPhases->setText(QCoreApplication::translate("ImportPicks", "Import all phases and do not map only to P and S.", nullptr));
|
||||
checkPreferTargetPhases->setText(QCoreApplication::translate("ImportPicks", "Prefer phases of target in case of duplicates.", nullptr));
|
||||
label_6->setText(QCoreApplication::translate("ImportPicks", "Accepted phases:", nullptr));
|
||||
#if QT_CONFIG(tooltip)
|
||||
lineEditAcceptedPhases->setToolTip(QCoreApplication::translate("ImportPicks", "Sets an array of accepted phases separated by comma. If left empty then all phases are accepted.", nullptr));
|
||||
#endif // QT_CONFIG(tooltip)
|
||||
okButton->setText(QCoreApplication::translate("ImportPicks", "OK", nullptr));
|
||||
cancelButton->setText(QCoreApplication::translate("ImportPicks", "Cancel", nullptr));
|
||||
} // retranslateUi
|
||||
|
||||
Reference in New Issue
Block a user