Install SeisComP and scanloc ARM64 nightly packages

This commit is contained in:
Enrico Ellguth
2025-10-29 12:34:04 +00:00
parent 2ff097f9d1
commit 165b829fb7
606 changed files with 24438 additions and 16358 deletions

View File

@ -10,7 +10,6 @@
#define UI_EVENTLISTVIEW_H
#include <QtCore/QVariant>
#include <QtGui/QIcon>
#include <QtWidgets/QAction>
#include <QtWidgets/QApplication>
#include <QtWidgets/QCheckBox>
@ -65,6 +64,10 @@ public:
QComboBox *lstFilterRegions;
QToolButton *btnChangeRegion;
QLabel *lbFilterRegions;
QSpacerItem *spacer;
QCheckBox *cbHideFinalRejected;
QSpacerItem *spacer_2;
QCheckBox *cbHideNew;
QSpacerItem *spacerItem5;
void setupUi(QWidget *EventListView)
@ -75,11 +78,9 @@ public:
actionCopyRowToClipboard = new QAction(EventListView);
actionCopyRowToClipboard->setObjectName(QString::fromUtf8("actionCopyRowToClipboard"));
vboxLayout = new QVBoxLayout(EventListView);
#ifndef Q_OS_MAC
vboxLayout->setSpacing(6);
#endif
vboxLayout->setContentsMargins(0, 0, 0, 0);
vboxLayout->setObjectName(QString::fromUtf8("vboxLayout"));
vboxLayout->setContentsMargins(0, 0, 0, 0);
frameList = new QFrame(EventListView);
frameList->setObjectName(QString::fromUtf8("frameList"));
QSizePolicy sizePolicy(QSizePolicy::Preferred, QSizePolicy::Preferred);
@ -96,19 +97,13 @@ public:
frameControls->setObjectName(QString::fromUtf8("frameControls"));
frameControls->setFrameShadow(QFrame::Plain);
vboxLayout1 = new QVBoxLayout(frameControls);
#ifndef Q_OS_MAC
vboxLayout1->setSpacing(6);
#endif
vboxLayout1->setContentsMargins(0, 0, 0, 0);
vboxLayout1->setObjectName(QString::fromUtf8("vboxLayout1"));
vboxLayout1->setContentsMargins(0, 0, 0, 0);
hboxLayout = new QHBoxLayout();
#ifndef Q_OS_MAC
hboxLayout->setSpacing(6);
#endif
#ifndef Q_OS_MAC
hboxLayout->setContentsMargins(0, 0, 0, 0);
#endif
hboxLayout->setObjectName(QString::fromUtf8("hboxLayout"));
hboxLayout->setContentsMargins(0, 0, 0, 0);
btnClear = new QToolButton(frameControls);
btnClear->setObjectName(QString::fromUtf8("btnClear"));
btnClear->setEnabled(false);
@ -122,10 +117,6 @@ public:
btnFilter = new QToolButton(frameControls);
btnFilter->setObjectName(QString::fromUtf8("btnFilter"));
sizePolicy1.setHeightForWidth(btnFilter->sizePolicy().hasHeightForWidth());
btnFilter->setSizePolicy(sizePolicy1);
const QIcon icon = QIcon(QString::fromUtf8(":/icons/icons/filter2.png"));
btnFilter->setIcon(icon);
hboxLayout->addWidget(btnFilter);
@ -224,11 +215,9 @@ public:
vboxLayout->addWidget(frame);
hboxLayout1 = new QHBoxLayout();
#ifndef Q_OS_MAC
hboxLayout1->setSpacing(6);
#endif
hboxLayout1->setContentsMargins(0, 0, 0, 0);
hboxLayout1->setObjectName(QString::fromUtf8("hboxLayout1"));
hboxLayout1->setContentsMargins(0, 0, 0, 0);
cbHideOther = new QCheckBox(EventListView);
cbHideOther->setObjectName(QString::fromUtf8("cbHideOther"));
cbHideOther->setChecked(true);
@ -262,21 +251,17 @@ public:
vboxLayout->addLayout(hboxLayout1);
hboxLayout2 = new QHBoxLayout();
#ifndef Q_OS_MAC
hboxLayout2->setSpacing(6);
#endif
hboxLayout2->setContentsMargins(0, 0, 0, 0);
hboxLayout2->setObjectName(QString::fromUtf8("hboxLayout2"));
hboxLayout2->setContentsMargins(0, 0, 0, 0);
frameRegionFilter = new QFrame(EventListView);
frameRegionFilter->setObjectName(QString::fromUtf8("frameRegionFilter"));
frameRegionFilter->setFrameShape(QFrame::NoFrame);
frameRegionFilter->setFrameShadow(QFrame::Raised);
hboxLayout3 = new QHBoxLayout(frameRegionFilter);
#ifndef Q_OS_MAC
hboxLayout3->setSpacing(6);
#endif
hboxLayout3->setContentsMargins(0, 0, 0, 0);
hboxLayout3->setObjectName(QString::fromUtf8("hboxLayout3"));
hboxLayout3->setContentsMargins(0, 0, 0, 0);
cbFilterRegions = new QCheckBox(frameRegionFilter);
cbFilterRegions->setObjectName(QString::fromUtf8("cbFilterRegions"));
@ -307,6 +292,24 @@ public:
hboxLayout2->addWidget(frameRegionFilter);
spacer = new QSpacerItem(8, 23, QSizePolicy::Minimum, QSizePolicy::Minimum);
hboxLayout2->addItem(spacer);
cbHideFinalRejected = new QCheckBox(EventListView);
cbHideFinalRejected->setObjectName(QString::fromUtf8("cbHideFinalRejected"));
hboxLayout2->addWidget(cbHideFinalRejected);
spacer_2 = new QSpacerItem(16, 23, QSizePolicy::Minimum, QSizePolicy::Minimum);
hboxLayout2->addItem(spacer_2);
cbHideNew = new QCheckBox(EventListView);
cbHideNew->setObjectName(QString::fromUtf8("cbHideNew"));
hboxLayout2->addWidget(cbHideNew);
spacerItem5 = new QSpacerItem(351, 20, QSizePolicy::Expanding, QSizePolicy::Minimum);
hboxLayout2->addItem(spacerItem5);
@ -366,6 +369,14 @@ public:
btnChangeRegion->setText(QCoreApplication::translate("EventListView", "...", nullptr));
lbFilterRegions->setText(QCoreApplication::translate("EventListView", "region", nullptr));
#if QT_CONFIG(tooltip)
cbHideFinalRejected->setToolTip(QCoreApplication::translate("EventListView", "Hides/shows final and rejected events", nullptr));
#endif // QT_CONFIG(tooltip)
cbHideFinalRejected->setText(QCoreApplication::translate("EventListView", "Hide F/X events", nullptr));
#if QT_CONFIG(tooltip)
cbHideNew->setToolTip(QCoreApplication::translate("EventListView", "Hides/shows events with OT later than given end time", nullptr));
#endif // QT_CONFIG(tooltip)
cbHideNew->setText(QCoreApplication::translate("EventListView", "Hide new events", nullptr));
} // retranslateUi
};