| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144 |
- /********************************************************************************
- ** Form generated from reading UI file 'askThreeDoubleValuesDlg.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_ASKTHREEDOUBLEVALUESDLG_H
- #define UI_ASKTHREEDOUBLEVALUESDLG_H
- #include <QtCore/QVariant>
- #include <QtWidgets/QApplication>
- #include <QtWidgets/QCheckBox>
- #include <QtWidgets/QDialog>
- #include <QtWidgets/QDialogButtonBox>
- #include <QtWidgets/QDoubleSpinBox>
- #include <QtWidgets/QHBoxLayout>
- #include <QtWidgets/QLabel>
- #include <QtWidgets/QSpacerItem>
- #include <QtWidgets/QVBoxLayout>
- QT_BEGIN_NAMESPACE
- class Ui_AskThreeDoubleValuesDialog
- {
- public:
- QVBoxLayout *verticalLayout;
- QHBoxLayout *hboxLayout;
- QLabel *label1;
- QDoubleSpinBox *doubleSpinBox1;
- QSpacerItem *spacerItem;
- QLabel *label2;
- QDoubleSpinBox *doubleSpinBox2;
- QSpacerItem *spacerItem1;
- QLabel *label3;
- QDoubleSpinBox *doubleSpinBox3;
- QHBoxLayout *horizontalLayout;
- QCheckBox *checkBox;
- QSpacerItem *horizontalSpacer;
- QDialogButtonBox *buttonBox;
- void setupUi(QDialog *AskThreeDoubleValuesDialog)
- {
- if (AskThreeDoubleValuesDialog->objectName().isEmpty())
- AskThreeDoubleValuesDialog->setObjectName(QString::fromUtf8("AskThreeDoubleValuesDialog"));
- AskThreeDoubleValuesDialog->resize(452, 89);
- QSizePolicy sizePolicy(QSizePolicy::Preferred, QSizePolicy::Maximum);
- sizePolicy.setHorizontalStretch(0);
- sizePolicy.setVerticalStretch(0);
- sizePolicy.setHeightForWidth(AskThreeDoubleValuesDialog->sizePolicy().hasHeightForWidth());
- AskThreeDoubleValuesDialog->setSizePolicy(sizePolicy);
- verticalLayout = new QVBoxLayout(AskThreeDoubleValuesDialog);
- verticalLayout->setObjectName(QString::fromUtf8("verticalLayout"));
- hboxLayout = new QHBoxLayout();
- hboxLayout->setObjectName(QString::fromUtf8("hboxLayout"));
- label1 = new QLabel(AskThreeDoubleValuesDialog);
- label1->setObjectName(QString::fromUtf8("label1"));
- hboxLayout->addWidget(label1);
- doubleSpinBox1 = new QDoubleSpinBox(AskThreeDoubleValuesDialog);
- doubleSpinBox1->setObjectName(QString::fromUtf8("doubleSpinBox1"));
- hboxLayout->addWidget(doubleSpinBox1);
- spacerItem = new QSpacerItem(20, 20, QSizePolicy::Fixed, QSizePolicy::Minimum);
- hboxLayout->addItem(spacerItem);
- label2 = new QLabel(AskThreeDoubleValuesDialog);
- label2->setObjectName(QString::fromUtf8("label2"));
- hboxLayout->addWidget(label2);
- doubleSpinBox2 = new QDoubleSpinBox(AskThreeDoubleValuesDialog);
- doubleSpinBox2->setObjectName(QString::fromUtf8("doubleSpinBox2"));
- hboxLayout->addWidget(doubleSpinBox2);
- spacerItem1 = new QSpacerItem(20, 20, QSizePolicy::Fixed, QSizePolicy::Minimum);
- hboxLayout->addItem(spacerItem1);
- label3 = new QLabel(AskThreeDoubleValuesDialog);
- label3->setObjectName(QString::fromUtf8("label3"));
- hboxLayout->addWidget(label3);
- doubleSpinBox3 = new QDoubleSpinBox(AskThreeDoubleValuesDialog);
- doubleSpinBox3->setObjectName(QString::fromUtf8("doubleSpinBox3"));
- hboxLayout->addWidget(doubleSpinBox3);
- verticalLayout->addLayout(hboxLayout);
- horizontalLayout = new QHBoxLayout();
- horizontalLayout->setObjectName(QString::fromUtf8("horizontalLayout"));
- checkBox = new QCheckBox(AskThreeDoubleValuesDialog);
- checkBox->setObjectName(QString::fromUtf8("checkBox"));
- checkBox->setText(QString::fromUtf8("CheckBox"));
- horizontalLayout->addWidget(checkBox);
- horizontalSpacer = new QSpacerItem(40, 20, QSizePolicy::Expanding, QSizePolicy::Minimum);
- horizontalLayout->addItem(horizontalSpacer);
- buttonBox = new QDialogButtonBox(AskThreeDoubleValuesDialog);
- buttonBox->setObjectName(QString::fromUtf8("buttonBox"));
- buttonBox->setOrientation(Qt::Horizontal);
- buttonBox->setStandardButtons(QDialogButtonBox::Cancel|QDialogButtonBox::Ok);
- horizontalLayout->addWidget(buttonBox);
- verticalLayout->addLayout(horizontalLayout);
- retranslateUi(AskThreeDoubleValuesDialog);
- QObject::connect(buttonBox, SIGNAL(accepted()), AskThreeDoubleValuesDialog, SLOT(accept()));
- QObject::connect(buttonBox, SIGNAL(rejected()), AskThreeDoubleValuesDialog, SLOT(reject()));
- QMetaObject::connectSlotsByName(AskThreeDoubleValuesDialog);
- } // setupUi
- void retranslateUi(QDialog *AskThreeDoubleValuesDialog)
- {
- AskThreeDoubleValuesDialog->setWindowTitle(QCoreApplication::translate("AskThreeDoubleValuesDialog", "Set Three Values", nullptr));
- label1->setText(QCoreApplication::translate("AskThreeDoubleValuesDialog", "Value 1", nullptr));
- label2->setText(QCoreApplication::translate("AskThreeDoubleValuesDialog", "Value 2", nullptr));
- label3->setText(QCoreApplication::translate("AskThreeDoubleValuesDialog", "Value 3", nullptr));
- } // retranslateUi
- };
- namespace Ui {
- class AskThreeDoubleValuesDialog: public Ui_AskThreeDoubleValuesDialog {};
- } // namespace Ui
- QT_END_NAMESPACE
- #endif // UI_ASKTHREEDOUBLEVALUESDLG_H
|