| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869 |
- /********************************************************************************
- ** Form generated from reading UI file 'sensorComputeDistancesDlg.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_SENSORCOMPUTEDISTANCESDLG_H
- #define UI_SENSORCOMPUTEDISTANCESDLG_H
- #include <QtCore/QVariant>
- #include <QtWidgets/QApplication>
- #include <QtWidgets/QCheckBox>
- #include <QtWidgets/QDialog>
- #include <QtWidgets/QDialogButtonBox>
- #include <QtWidgets/QVBoxLayout>
- QT_BEGIN_NAMESPACE
- class Ui_sensorComputeDistancesDlg
- {
- public:
- QVBoxLayout *verticalLayout;
- QCheckBox *checkSquaredDistance;
- QDialogButtonBox *buttonBox;
- void setupUi(QDialog *sensorComputeDistancesDlg)
- {
- if (sensorComputeDistancesDlg->objectName().isEmpty())
- sensorComputeDistancesDlg->setObjectName(QString::fromUtf8("sensorComputeDistancesDlg"));
- sensorComputeDistancesDlg->resize(178, 67);
- verticalLayout = new QVBoxLayout(sensorComputeDistancesDlg);
- verticalLayout->setObjectName(QString::fromUtf8("verticalLayout"));
- checkSquaredDistance = new QCheckBox(sensorComputeDistancesDlg);
- checkSquaredDistance->setObjectName(QString::fromUtf8("checkSquaredDistance"));
- verticalLayout->addWidget(checkSquaredDistance);
- buttonBox = new QDialogButtonBox(sensorComputeDistancesDlg);
- buttonBox->setObjectName(QString::fromUtf8("buttonBox"));
- buttonBox->setOrientation(Qt::Horizontal);
- buttonBox->setStandardButtons(QDialogButtonBox::Cancel|QDialogButtonBox::Ok);
- verticalLayout->addWidget(buttonBox);
- retranslateUi(sensorComputeDistancesDlg);
- QObject::connect(buttonBox, SIGNAL(accepted()), sensorComputeDistancesDlg, SLOT(accept()));
- QObject::connect(buttonBox, SIGNAL(rejected()), sensorComputeDistancesDlg, SLOT(reject()));
- QMetaObject::connectSlotsByName(sensorComputeDistancesDlg);
- } // setupUi
- void retranslateUi(QDialog *sensorComputeDistancesDlg)
- {
- sensorComputeDistancesDlg->setWindowTitle(QCoreApplication::translate("sensorComputeDistancesDlg", "Sensor range computation", nullptr));
- checkSquaredDistance->setText(QCoreApplication::translate("sensorComputeDistancesDlg", "Squared distances", nullptr));
- } // retranslateUi
- };
- namespace Ui {
- class sensorComputeDistancesDlg: public Ui_sensorComputeDistancesDlg {};
- } // namespace Ui
- QT_END_NAMESPACE
- #endif // UI_SENSORCOMPUTEDISTANCESDLG_H
|