ui_computeOctreeDlg.h 5.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131
  1. /********************************************************************************
  2. ** Form generated from reading UI file 'computeOctreeDlg.ui'
  3. **
  4. ** Created by: Qt User Interface Compiler version 5.15.10
  5. **
  6. ** WARNING! All changes made in this file will be lost when recompiling UI file!
  7. ********************************************************************************/
  8. #ifndef UI_COMPUTEOCTREEDLG_H
  9. #define UI_COMPUTEOCTREEDLG_H
  10. #include <QtCore/QVariant>
  11. #include <QtWidgets/QApplication>
  12. #include <QtWidgets/QDialog>
  13. #include <QtWidgets/QDialogButtonBox>
  14. #include <QtWidgets/QDoubleSpinBox>
  15. #include <QtWidgets/QFormLayout>
  16. #include <QtWidgets/QGroupBox>
  17. #include <QtWidgets/QLabel>
  18. #include <QtWidgets/QRadioButton>
  19. #include <QtWidgets/QSpacerItem>
  20. #include <QtWidgets/QToolButton>
  21. #include <QtWidgets/QVBoxLayout>
  22. QT_BEGIN_NAMESPACE
  23. class Ui_ComputeOctreeDialog
  24. {
  25. public:
  26. QVBoxLayout *verticalLayout;
  27. QLabel *headerLabel;
  28. QGroupBox *groupBox;
  29. QFormLayout *formLayout;
  30. QRadioButton *defaultRadioButton;
  31. QRadioButton *cellSizeRadioButton;
  32. QDoubleSpinBox *cellSizeDoubleSpinBox;
  33. QRadioButton *customBBRadioButton;
  34. QToolButton *customBBToolButton;
  35. QSpacerItem *verticalSpacer;
  36. QDialogButtonBox *buttonBox;
  37. void setupUi(QDialog *ComputeOctreeDialog)
  38. {
  39. if (ComputeOctreeDialog->objectName().isEmpty())
  40. ComputeOctreeDialog->setObjectName(QString::fromUtf8("ComputeOctreeDialog"));
  41. ComputeOctreeDialog->resize(300, 180);
  42. verticalLayout = new QVBoxLayout(ComputeOctreeDialog);
  43. verticalLayout->setObjectName(QString::fromUtf8("verticalLayout"));
  44. headerLabel = new QLabel(ComputeOctreeDialog);
  45. headerLabel->setObjectName(QString::fromUtf8("headerLabel"));
  46. verticalLayout->addWidget(headerLabel);
  47. groupBox = new QGroupBox(ComputeOctreeDialog);
  48. groupBox->setObjectName(QString::fromUtf8("groupBox"));
  49. formLayout = new QFormLayout(groupBox);
  50. formLayout->setObjectName(QString::fromUtf8("formLayout"));
  51. defaultRadioButton = new QRadioButton(groupBox);
  52. defaultRadioButton->setObjectName(QString::fromUtf8("defaultRadioButton"));
  53. defaultRadioButton->setChecked(true);
  54. formLayout->setWidget(0, QFormLayout::LabelRole, defaultRadioButton);
  55. cellSizeRadioButton = new QRadioButton(groupBox);
  56. cellSizeRadioButton->setObjectName(QString::fromUtf8("cellSizeRadioButton"));
  57. formLayout->setWidget(1, QFormLayout::LabelRole, cellSizeRadioButton);
  58. cellSizeDoubleSpinBox = new QDoubleSpinBox(groupBox);
  59. cellSizeDoubleSpinBox->setObjectName(QString::fromUtf8("cellSizeDoubleSpinBox"));
  60. cellSizeDoubleSpinBox->setEnabled(false);
  61. cellSizeDoubleSpinBox->setDecimals(6);
  62. cellSizeDoubleSpinBox->setMaximum(1000000000.000000000000000);
  63. formLayout->setWidget(1, QFormLayout::FieldRole, cellSizeDoubleSpinBox);
  64. customBBRadioButton = new QRadioButton(groupBox);
  65. customBBRadioButton->setObjectName(QString::fromUtf8("customBBRadioButton"));
  66. formLayout->setWidget(2, QFormLayout::LabelRole, customBBRadioButton);
  67. customBBToolButton = new QToolButton(groupBox);
  68. customBBToolButton->setObjectName(QString::fromUtf8("customBBToolButton"));
  69. customBBToolButton->setEnabled(false);
  70. formLayout->setWidget(2, QFormLayout::FieldRole, customBBToolButton);
  71. verticalLayout->addWidget(groupBox);
  72. verticalSpacer = new QSpacerItem(20, 4, QSizePolicy::Minimum, QSizePolicy::Expanding);
  73. verticalLayout->addItem(verticalSpacer);
  74. buttonBox = new QDialogButtonBox(ComputeOctreeDialog);
  75. buttonBox->setObjectName(QString::fromUtf8("buttonBox"));
  76. buttonBox->setOrientation(Qt::Horizontal);
  77. buttonBox->setStandardButtons(QDialogButtonBox::Cancel|QDialogButtonBox::Ok);
  78. verticalLayout->addWidget(buttonBox);
  79. retranslateUi(ComputeOctreeDialog);
  80. QObject::connect(buttonBox, SIGNAL(accepted()), ComputeOctreeDialog, SLOT(accept()));
  81. QObject::connect(buttonBox, SIGNAL(rejected()), ComputeOctreeDialog, SLOT(reject()));
  82. QObject::connect(cellSizeRadioButton, SIGNAL(toggled(bool)), cellSizeDoubleSpinBox, SLOT(setEnabled(bool)));
  83. QObject::connect(customBBRadioButton, SIGNAL(toggled(bool)), customBBToolButton, SLOT(setEnabled(bool)));
  84. QMetaObject::connectSlotsByName(ComputeOctreeDialog);
  85. } // setupUi
  86. void retranslateUi(QDialog *ComputeOctreeDialog)
  87. {
  88. ComputeOctreeDialog->setWindowTitle(QCoreApplication::translate("ComputeOctreeDialog", "Compute Octree", nullptr));
  89. headerLabel->setText(QCoreApplication::translate("ComputeOctreeDialog", "Max subdivision level: ??", nullptr));
  90. groupBox->setTitle(QCoreApplication::translate("ComputeOctreeDialog", "Octree box", nullptr));
  91. defaultRadioButton->setText(QCoreApplication::translate("ComputeOctreeDialog", "Default", nullptr));
  92. cellSizeRadioButton->setText(QCoreApplication::translate("ComputeOctreeDialog", "Cell size at max level", nullptr));
  93. customBBRadioButton->setText(QCoreApplication::translate("ComputeOctreeDialog", "Custom bounding box", nullptr));
  94. customBBToolButton->setText(QCoreApplication::translate("ComputeOctreeDialog", "Edit", nullptr));
  95. } // retranslateUi
  96. };
  97. namespace Ui {
  98. class ComputeOctreeDialog: public Ui_ComputeOctreeDialog {};
  99. } // namespace Ui
  100. QT_END_NAMESPACE
  101. #endif // UI_COMPUTEOCTREEDLG_H