| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123 |
- /********************************************************************************
- ** Form generated from reading UI file 'entitySelectionDlg.ui'
- **
- ** Created by: Qt User Interface Compiler version 5.15.10
- **
- ** WARNING! All changes made in this file will be lost when recompiling UI file!
- ********************************************************************************/
- #ifndef UI_ENTITYSELECTIONDLG_H
- #define UI_ENTITYSELECTIONDLG_H
- #include <QtCore/QVariant>
- #include <QtWidgets/QApplication>
- #include <QtWidgets/QDialog>
- #include <QtWidgets/QDialogButtonBox>
- #include <QtWidgets/QFrame>
- #include <QtWidgets/QHBoxLayout>
- #include <QtWidgets/QLabel>
- #include <QtWidgets/QListWidget>
- #include <QtWidgets/QPushButton>
- #include <QtWidgets/QSpacerItem>
- #include <QtWidgets/QVBoxLayout>
- QT_BEGIN_NAMESPACE
- class Ui_EntitySelectionDialog
- {
- public:
- QVBoxLayout *verticalLayout;
- QHBoxLayout *horizontalLayout;
- QLabel *label;
- QSpacerItem *horizontalSpacer;
- QListWidget *listWidget;
- QFrame *frame;
- QHBoxLayout *horizontalLayout_2;
- QPushButton *selectAllPushButton;
- QPushButton *selectNonePushButton;
- QSpacerItem *horizontalSpacer_2;
- QDialogButtonBox *buttonBox;
- void setupUi(QDialog *EntitySelectionDialog)
- {
- if (EntitySelectionDialog->objectName().isEmpty())
- EntitySelectionDialog->setObjectName(QString::fromUtf8("EntitySelectionDialog"));
- EntitySelectionDialog->resize(400, 300);
- verticalLayout = new QVBoxLayout(EntitySelectionDialog);
- verticalLayout->setObjectName(QString::fromUtf8("verticalLayout"));
- horizontalLayout = new QHBoxLayout();
- horizontalLayout->setObjectName(QString::fromUtf8("horizontalLayout"));
- label = new QLabel(EntitySelectionDialog);
- label->setObjectName(QString::fromUtf8("label"));
- horizontalLayout->addWidget(label);
- horizontalSpacer = new QSpacerItem(38, 20, QSizePolicy::Expanding, QSizePolicy::Minimum);
- horizontalLayout->addItem(horizontalSpacer);
- verticalLayout->addLayout(horizontalLayout);
- listWidget = new QListWidget(EntitySelectionDialog);
- listWidget->setObjectName(QString::fromUtf8("listWidget"));
- listWidget->setAlternatingRowColors(true);
- verticalLayout->addWidget(listWidget);
- frame = new QFrame(EntitySelectionDialog);
- frame->setObjectName(QString::fromUtf8("frame"));
- frame->setFrameShape(QFrame::StyledPanel);
- frame->setFrameShadow(QFrame::Raised);
- horizontalLayout_2 = new QHBoxLayout(frame);
- horizontalLayout_2->setObjectName(QString::fromUtf8("horizontalLayout_2"));
- horizontalLayout_2->setContentsMargins(0, 0, 0, 0);
- selectAllPushButton = new QPushButton(frame);
- selectAllPushButton->setObjectName(QString::fromUtf8("selectAllPushButton"));
- horizontalLayout_2->addWidget(selectAllPushButton);
- selectNonePushButton = new QPushButton(frame);
- selectNonePushButton->setObjectName(QString::fromUtf8("selectNonePushButton"));
- horizontalLayout_2->addWidget(selectNonePushButton);
- horizontalSpacer_2 = new QSpacerItem(225, 20, QSizePolicy::Expanding, QSizePolicy::Minimum);
- horizontalLayout_2->addItem(horizontalSpacer_2);
- buttonBox = new QDialogButtonBox(frame);
- buttonBox->setObjectName(QString::fromUtf8("buttonBox"));
- buttonBox->setOrientation(Qt::Horizontal);
- buttonBox->setStandardButtons(QDialogButtonBox::Cancel|QDialogButtonBox::Ok);
- horizontalLayout_2->addWidget(buttonBox);
- verticalLayout->addWidget(frame);
- retranslateUi(EntitySelectionDialog);
- QObject::connect(buttonBox, SIGNAL(accepted()), EntitySelectionDialog, SLOT(accept()));
- QObject::connect(buttonBox, SIGNAL(rejected()), EntitySelectionDialog, SLOT(reject()));
- QMetaObject::connectSlotsByName(EntitySelectionDialog);
- } // setupUi
- void retranslateUi(QDialog *EntitySelectionDialog)
- {
- EntitySelectionDialog->setWindowTitle(QCoreApplication::translate("EntitySelectionDialog", "Entity selector", nullptr));
- label->setText(QCoreApplication::translate("EntitySelectionDialog", "Select an entity:", nullptr));
- selectAllPushButton->setText(QCoreApplication::translate("EntitySelectionDialog", "select all", nullptr));
- selectNonePushButton->setText(QCoreApplication::translate("EntitySelectionDialog", "select none", nullptr));
- } // retranslateUi
- };
- namespace Ui {
- class EntitySelectionDialog: public Ui_EntitySelectionDialog {};
- } // namespace Ui
- QT_END_NAMESPACE
- #endif // UI_ENTITYSELECTIONDLG_H
|