[installation] Change to nightly
This commit is contained in:
@ -11,7 +11,10 @@
|
||||
|
||||
#include <QtCore/QVariant>
|
||||
#include <QtWidgets/QApplication>
|
||||
#include <QtWidgets/QCheckBox>
|
||||
#include <QtWidgets/QComboBox>
|
||||
#include <QtWidgets/QDialog>
|
||||
#include <QtWidgets/QGridLayout>
|
||||
#include <QtWidgets/QHBoxLayout>
|
||||
#include <QtWidgets/QHeaderView>
|
||||
#include <QtWidgets/QLabel>
|
||||
@ -26,9 +29,20 @@ QT_BEGIN_NAMESPACE
|
||||
class Ui_SelectStation
|
||||
{
|
||||
public:
|
||||
QVBoxLayout *vboxLayout;
|
||||
QLabel *stationListLabel;
|
||||
QLineEdit *stationLineEdit;
|
||||
QVBoxLayout *verticalLayout;
|
||||
QGridLayout *gridLayout;
|
||||
QLabel *labelNSLC;
|
||||
QLineEdit *lineEditNSLC;
|
||||
QCheckBox *cbExcludeNSLC;
|
||||
QLabel *label;
|
||||
QComboBox *comboNetworkType;
|
||||
QCheckBox *cbExcludeNetworkType;
|
||||
QLabel *label_2;
|
||||
QComboBox *comboStationType;
|
||||
QCheckBox *cbExcludeStationType;
|
||||
QLabel *label_3;
|
||||
QComboBox *comboSensorUnit;
|
||||
QCheckBox *cbExcludeSensorUnit;
|
||||
QTableView *table;
|
||||
QHBoxLayout *hboxLayout;
|
||||
QSpacerItem *spacerItem;
|
||||
@ -38,38 +52,88 @@ public:
|
||||
{
|
||||
if (SelectStation->objectName().isEmpty())
|
||||
SelectStation->setObjectName(QString::fromUtf8("SelectStation"));
|
||||
SelectStation->resize(400, 400);
|
||||
vboxLayout = new QVBoxLayout(SelectStation);
|
||||
#ifndef Q_OS_MAC
|
||||
vboxLayout->setSpacing(6);
|
||||
#endif
|
||||
#ifndef Q_OS_MAC
|
||||
vboxLayout->setContentsMargins(9, 9, 9, 9);
|
||||
#endif
|
||||
vboxLayout->setObjectName(QString::fromUtf8("vboxLayout"));
|
||||
stationListLabel = new QLabel(SelectStation);
|
||||
stationListLabel->setObjectName(QString::fromUtf8("stationListLabel"));
|
||||
SelectStation->resize(854, 788);
|
||||
verticalLayout = new QVBoxLayout(SelectStation);
|
||||
verticalLayout->setObjectName(QString::fromUtf8("verticalLayout"));
|
||||
gridLayout = new QGridLayout();
|
||||
gridLayout->setObjectName(QString::fromUtf8("gridLayout"));
|
||||
labelNSLC = new QLabel(SelectStation);
|
||||
labelNSLC->setObjectName(QString::fromUtf8("labelNSLC"));
|
||||
|
||||
vboxLayout->addWidget(stationListLabel);
|
||||
gridLayout->addWidget(labelNSLC, 0, 0, 1, 1);
|
||||
|
||||
stationLineEdit = new QLineEdit(SelectStation);
|
||||
stationLineEdit->setObjectName(QString::fromUtf8("stationLineEdit"));
|
||||
lineEditNSLC = new QLineEdit(SelectStation);
|
||||
lineEditNSLC->setObjectName(QString::fromUtf8("lineEditNSLC"));
|
||||
|
||||
vboxLayout->addWidget(stationLineEdit);
|
||||
gridLayout->addWidget(lineEditNSLC, 0, 1, 1, 1);
|
||||
|
||||
cbExcludeNSLC = new QCheckBox(SelectStation);
|
||||
cbExcludeNSLC->setObjectName(QString::fromUtf8("cbExcludeNSLC"));
|
||||
|
||||
gridLayout->addWidget(cbExcludeNSLC, 0, 2, 1, 1);
|
||||
|
||||
label = new QLabel(SelectStation);
|
||||
label->setObjectName(QString::fromUtf8("label"));
|
||||
|
||||
gridLayout->addWidget(label, 1, 0, 1, 1);
|
||||
|
||||
comboNetworkType = new QComboBox(SelectStation);
|
||||
comboNetworkType->addItem(QString());
|
||||
comboNetworkType->setObjectName(QString::fromUtf8("comboNetworkType"));
|
||||
|
||||
gridLayout->addWidget(comboNetworkType, 1, 1, 1, 1);
|
||||
|
||||
cbExcludeNetworkType = new QCheckBox(SelectStation);
|
||||
cbExcludeNetworkType->setObjectName(QString::fromUtf8("cbExcludeNetworkType"));
|
||||
|
||||
gridLayout->addWidget(cbExcludeNetworkType, 1, 2, 1, 1);
|
||||
|
||||
label_2 = new QLabel(SelectStation);
|
||||
label_2->setObjectName(QString::fromUtf8("label_2"));
|
||||
|
||||
gridLayout->addWidget(label_2, 2, 0, 1, 1);
|
||||
|
||||
comboStationType = new QComboBox(SelectStation);
|
||||
comboStationType->addItem(QString());
|
||||
comboStationType->setObjectName(QString::fromUtf8("comboStationType"));
|
||||
|
||||
gridLayout->addWidget(comboStationType, 2, 1, 1, 1);
|
||||
|
||||
cbExcludeStationType = new QCheckBox(SelectStation);
|
||||
cbExcludeStationType->setObjectName(QString::fromUtf8("cbExcludeStationType"));
|
||||
|
||||
gridLayout->addWidget(cbExcludeStationType, 2, 2, 1, 1);
|
||||
|
||||
label_3 = new QLabel(SelectStation);
|
||||
label_3->setObjectName(QString::fromUtf8("label_3"));
|
||||
|
||||
gridLayout->addWidget(label_3, 3, 0, 1, 1);
|
||||
|
||||
comboSensorUnit = new QComboBox(SelectStation);
|
||||
comboSensorUnit->addItem(QString());
|
||||
comboSensorUnit->setObjectName(QString::fromUtf8("comboSensorUnit"));
|
||||
|
||||
gridLayout->addWidget(comboSensorUnit, 3, 1, 1, 1);
|
||||
|
||||
cbExcludeSensorUnit = new QCheckBox(SelectStation);
|
||||
cbExcludeSensorUnit->setObjectName(QString::fromUtf8("cbExcludeSensorUnit"));
|
||||
|
||||
gridLayout->addWidget(cbExcludeSensorUnit, 3, 2, 1, 1);
|
||||
|
||||
|
||||
verticalLayout->addLayout(gridLayout);
|
||||
|
||||
table = new QTableView(SelectStation);
|
||||
table->setObjectName(QString::fromUtf8("table"));
|
||||
table->setAlternatingRowColors(true);
|
||||
table->setSelectionBehavior(QAbstractItemView::SelectRows);
|
||||
|
||||
vboxLayout->addWidget(table);
|
||||
verticalLayout->addWidget(table);
|
||||
|
||||
hboxLayout = new QHBoxLayout();
|
||||
#ifndef Q_OS_MAC
|
||||
hboxLayout->setSpacing(6);
|
||||
#endif
|
||||
hboxLayout->setContentsMargins(0, 0, 0, 0);
|
||||
hboxLayout->setObjectName(QString::fromUtf8("hboxLayout"));
|
||||
hboxLayout->setContentsMargins(0, 0, 0, 0);
|
||||
spacerItem = new QSpacerItem(40, 20, QSizePolicy::Expanding, QSizePolicy::Minimum);
|
||||
|
||||
hboxLayout->addItem(spacerItem);
|
||||
@ -80,8 +144,17 @@ public:
|
||||
hboxLayout->addWidget(btnAdd);
|
||||
|
||||
|
||||
vboxLayout->addLayout(hboxLayout);
|
||||
verticalLayout->addLayout(hboxLayout);
|
||||
|
||||
QWidget::setTabOrder(lineEditNSLC, cbExcludeNSLC);
|
||||
QWidget::setTabOrder(cbExcludeNSLC, comboNetworkType);
|
||||
QWidget::setTabOrder(comboNetworkType, cbExcludeNetworkType);
|
||||
QWidget::setTabOrder(cbExcludeNetworkType, comboStationType);
|
||||
QWidget::setTabOrder(comboStationType, cbExcludeStationType);
|
||||
QWidget::setTabOrder(cbExcludeStationType, comboSensorUnit);
|
||||
QWidget::setTabOrder(comboSensorUnit, cbExcludeSensorUnit);
|
||||
QWidget::setTabOrder(cbExcludeSensorUnit, table);
|
||||
QWidget::setTabOrder(table, btnAdd);
|
||||
|
||||
retranslateUi(SelectStation);
|
||||
QObject::connect(btnAdd, SIGNAL(clicked()), SelectStation, SLOT(accept()));
|
||||
@ -92,7 +165,20 @@ public:
|
||||
void retranslateUi(QDialog *SelectStation)
|
||||
{
|
||||
SelectStation->setWindowTitle(QCoreApplication::translate("SelectStation", "Add station(s)", nullptr));
|
||||
stationListLabel->setText(QCoreApplication::translate("SelectStation", "Station List:", nullptr));
|
||||
labelNSLC->setText(QCoreApplication::translate("SelectStation", "NET.STA:", nullptr));
|
||||
cbExcludeNSLC->setText(QCoreApplication::translate("SelectStation", "Exclude", nullptr));
|
||||
label->setText(QCoreApplication::translate("SelectStation", "Network type:", nullptr));
|
||||
comboNetworkType->setItemText(0, QCoreApplication::translate("SelectStation", "- No filter -", nullptr));
|
||||
|
||||
cbExcludeNetworkType->setText(QCoreApplication::translate("SelectStation", "Exclude", nullptr));
|
||||
label_2->setText(QCoreApplication::translate("SelectStation", "Station type:", nullptr));
|
||||
comboStationType->setItemText(0, QCoreApplication::translate("SelectStation", "- No filter -", nullptr));
|
||||
|
||||
cbExcludeStationType->setText(QCoreApplication::translate("SelectStation", "Exclude", nullptr));
|
||||
label_3->setText(QCoreApplication::translate("SelectStation", "Sensor unit:", nullptr));
|
||||
comboSensorUnit->setItemText(0, QCoreApplication::translate("SelectStation", "- No filter- ", nullptr));
|
||||
|
||||
cbExcludeSensorUnit->setText(QCoreApplication::translate("SelectStation", "Exclude", nullptr));
|
||||
btnAdd->setText(QCoreApplication::translate("SelectStation", "Add", nullptr));
|
||||
} // retranslateUi
|
||||
|
||||
|
||||
Reference in New Issue
Block a user