|
- /********************************************************************************
- ** Form generated from reading UI file 'inputdialog_value.ui'
- **
- ** Created by: Qt User Interface Compiler version 5.13.2
- **
- ** WARNING! All changes made in this file will be lost when recompiling UI file!
- ********************************************************************************/
-
- #ifndef UI_INPUTDIALOG_VALUE_H
- #define UI_INPUTDIALOG_VALUE_H
-
- #include <QtCore/QVariant>
- #include <QtWidgets/QApplication>
- #include <QtWidgets/QDialog>
- #include <QtWidgets/QDialogButtonBox>
- #include <QtWidgets/QDoubleSpinBox>
- #include <QtWidgets/QGroupBox>
- #include <QtWidgets/QLabel>
- #include <QtWidgets/QTextBrowser>
- #include <QtWidgets/QVBoxLayout>
-
- QT_BEGIN_NAMESPACE
-
- class Ui_Dialog
- {
- public:
- QVBoxLayout *verticalLayout_2;
- QLabel *label;
- QDoubleSpinBox *doubleSpinBox;
- QGroupBox *groupBox;
- QVBoxLayout *verticalLayout;
- QTextBrowser *textBrowser;
- QDialogButtonBox *buttonBox;
-
- void setupUi(QDialog *Dialog)
- {
- if (Dialog->objectName().isEmpty())
- Dialog->setObjectName(QString::fromUtf8("Dialog"));
- Dialog->resize(269, 183);
- verticalLayout_2 = new QVBoxLayout(Dialog);
- verticalLayout_2->setObjectName(QString::fromUtf8("verticalLayout_2"));
- label = new QLabel(Dialog);
- label->setObjectName(QString::fromUtf8("label"));
-
- verticalLayout_2->addWidget(label);
-
- doubleSpinBox = new QDoubleSpinBox(Dialog);
- doubleSpinBox->setObjectName(QString::fromUtf8("doubleSpinBox"));
-
- verticalLayout_2->addWidget(doubleSpinBox);
-
- groupBox = new QGroupBox(Dialog);
- groupBox->setObjectName(QString::fromUtf8("groupBox"));
- verticalLayout = new QVBoxLayout(groupBox);
- verticalLayout->setObjectName(QString::fromUtf8("verticalLayout"));
- textBrowser = new QTextBrowser(groupBox);
- textBrowser->setObjectName(QString::fromUtf8("textBrowser"));
-
- verticalLayout->addWidget(textBrowser);
-
-
- verticalLayout_2->addWidget(groupBox);
-
- buttonBox = new QDialogButtonBox(Dialog);
- buttonBox->setObjectName(QString::fromUtf8("buttonBox"));
- buttonBox->setOrientation(Qt::Horizontal);
- buttonBox->setStandardButtons(QDialogButtonBox::Cancel|QDialogButtonBox::Ok);
-
- verticalLayout_2->addWidget(buttonBox);
-
-
- retranslateUi(Dialog);
- QObject::connect(buttonBox, SIGNAL(accepted()), Dialog, SLOT(accept()));
- QObject::connect(buttonBox, SIGNAL(rejected()), Dialog, SLOT(reject()));
-
- QMetaObject::connectSlotsByName(Dialog);
- } // setupUi
-
- void retranslateUi(QDialog *Dialog)
- {
- Dialog->setWindowTitle(QCoreApplication::translate("Dialog", "Set value", nullptr));
- label->setText(QCoreApplication::translate("Dialog", "TextLabel", nullptr));
- groupBox->setTitle(QCoreApplication::translate("Dialog", "Scale Points", nullptr));
- } // retranslateUi
-
- };
-
- namespace Ui {
- class Dialog: public Ui_Dialog {};
- } // namespace Ui
-
- QT_END_NAMESPACE
-
- #endif // UI_INPUTDIALOG_VALUE_H
|