| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687 |
- /********************************************************************************
- ** Form generated from reading UI file 'askOneDoubleValueDlg.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_ASKONEDOUBLEVALUEDLG_H
- #define UI_ASKONEDOUBLEVALUEDLG_H
- #include <QtCore/QVariant>
- #include <QtWidgets/QApplication>
- #include <QtWidgets/QDialog>
- #include <QtWidgets/QDialogButtonBox>
- #include <QtWidgets/QDoubleSpinBox>
- #include <QtWidgets/QHBoxLayout>
- #include <QtWidgets/QLabel>
- #include <QtWidgets/QVBoxLayout>
- QT_BEGIN_NAMESPACE
- class Ui_AskOneDoubleValueDialog
- {
- public:
- QVBoxLayout *vboxLayout;
- QHBoxLayout *hboxLayout;
- QLabel *valueLabel;
- QDoubleSpinBox *dValueSpinBox;
- QDialogButtonBox *buttonBox;
- void setupUi(QDialog *AskOneDoubleValueDialog)
- {
- if (AskOneDoubleValueDialog->objectName().isEmpty())
- AskOneDoubleValueDialog->setObjectName(QString::fromUtf8("AskOneDoubleValueDialog"));
- QSizePolicy sizePolicy(QSizePolicy::Preferred, QSizePolicy::Maximum);
- sizePolicy.setHorizontalStretch(0);
- sizePolicy.setVerticalStretch(0);
- sizePolicy.setHeightForWidth(AskOneDoubleValueDialog->sizePolicy().hasHeightForWidth());
- AskOneDoubleValueDialog->setSizePolicy(sizePolicy);
- vboxLayout = new QVBoxLayout(AskOneDoubleValueDialog);
- vboxLayout->setObjectName(QString::fromUtf8("vboxLayout"));
- hboxLayout = new QHBoxLayout();
- hboxLayout->setObjectName(QString::fromUtf8("hboxLayout"));
- valueLabel = new QLabel(AskOneDoubleValueDialog);
- valueLabel->setObjectName(QString::fromUtf8("valueLabel"));
- hboxLayout->addWidget(valueLabel);
- dValueSpinBox = new QDoubleSpinBox(AskOneDoubleValueDialog);
- dValueSpinBox->setObjectName(QString::fromUtf8("dValueSpinBox"));
- hboxLayout->addWidget(dValueSpinBox);
- vboxLayout->addLayout(hboxLayout);
- buttonBox = new QDialogButtonBox(AskOneDoubleValueDialog);
- buttonBox->setObjectName(QString::fromUtf8("buttonBox"));
- buttonBox->setOrientation(Qt::Horizontal);
- buttonBox->setStandardButtons(QDialogButtonBox::Cancel|QDialogButtonBox::Ok);
- vboxLayout->addWidget(buttonBox);
- retranslateUi(AskOneDoubleValueDialog);
- QObject::connect(buttonBox, SIGNAL(accepted()), AskOneDoubleValueDialog, SLOT(accept()));
- QObject::connect(buttonBox, SIGNAL(rejected()), AskOneDoubleValueDialog, SLOT(reject()));
- QMetaObject::connectSlotsByName(AskOneDoubleValueDialog);
- } // setupUi
- void retranslateUi(QDialog *AskOneDoubleValueDialog)
- {
- AskOneDoubleValueDialog->setWindowTitle(QCoreApplication::translate("AskOneDoubleValueDialog", "Set Value", nullptr));
- valueLabel->setText(QCoreApplication::translate("AskOneDoubleValueDialog", "Value", nullptr));
- } // retranslateUi
- };
- namespace Ui {
- class AskOneDoubleValueDialog: public Ui_AskOneDoubleValueDialog {};
- } // namespace Ui
- QT_END_NAMESPACE
- #endif // UI_ASKONEDOUBLEVALUEDLG_H
|