ui_ccDrawNormalsWidget.h 5.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142
  1. /********************************************************************************
  2. ** Form generated from reading UI file 'ccDrawNormalsWidget.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_CCDRAWNORMALSWIDGET_H
  9. #define UI_CCDRAWNORMALSWIDGET_H
  10. #include <QtCore/QVariant>
  11. #include <QtWidgets/QApplication>
  12. #include <QtWidgets/QDoubleSpinBox>
  13. #include <QtWidgets/QGridLayout>
  14. #include <QtWidgets/QHBoxLayout>
  15. #include <QtWidgets/QLabel>
  16. #include <QtWidgets/QPushButton>
  17. #include <QtWidgets/QSpacerItem>
  18. #include <QtWidgets/QWidget>
  19. QT_BEGIN_NAMESPACE
  20. class Ui_ccDrawNormalsWidget
  21. {
  22. public:
  23. QGridLayout *gridLayout;
  24. QLabel *cloudNameLabel;
  25. QHBoxLayout *horizontalLayout;
  26. QLabel *label;
  27. QDoubleSpinBox *normalLengthDoubleSpinBox;
  28. QHBoxLayout *horizontalLayout_2;
  29. QPushButton *pushButtonYellow;
  30. QPushButton *pushButtonRed;
  31. QPushButton *pushButtonGreen;
  32. QPushButton *pushButtonBlue;
  33. QPushButton *pushButtonBlack;
  34. QSpacerItem *horizontalSpacer;
  35. void setupUi(QWidget *ccDrawNormalsWidget)
  36. {
  37. if (ccDrawNormalsWidget->objectName().isEmpty())
  38. ccDrawNormalsWidget->setObjectName(QString::fromUtf8("ccDrawNormalsWidget"));
  39. ccDrawNormalsWidget->resize(230, 100);
  40. gridLayout = new QGridLayout(ccDrawNormalsWidget);
  41. gridLayout->setObjectName(QString::fromUtf8("gridLayout"));
  42. cloudNameLabel = new QLabel(ccDrawNormalsWidget);
  43. cloudNameLabel->setObjectName(QString::fromUtf8("cloudNameLabel"));
  44. gridLayout->addWidget(cloudNameLabel, 0, 0, 1, 1);
  45. horizontalLayout = new QHBoxLayout();
  46. horizontalLayout->setObjectName(QString::fromUtf8("horizontalLayout"));
  47. label = new QLabel(ccDrawNormalsWidget);
  48. label->setObjectName(QString::fromUtf8("label"));
  49. horizontalLayout->addWidget(label);
  50. normalLengthDoubleSpinBox = new QDoubleSpinBox(ccDrawNormalsWidget);
  51. normalLengthDoubleSpinBox->setObjectName(QString::fromUtf8("normalLengthDoubleSpinBox"));
  52. normalLengthDoubleSpinBox->setDecimals(6);
  53. normalLengthDoubleSpinBox->setMinimum(0.000001000000000);
  54. normalLengthDoubleSpinBox->setMaximum(1000000.000000000000000);
  55. normalLengthDoubleSpinBox->setSingleStep(0.100000000000000);
  56. normalLengthDoubleSpinBox->setValue(1.000000000000000);
  57. horizontalLayout->addWidget(normalLengthDoubleSpinBox);
  58. gridLayout->addLayout(horizontalLayout, 1, 0, 1, 1);
  59. horizontalLayout_2 = new QHBoxLayout();
  60. horizontalLayout_2->setObjectName(QString::fromUtf8("horizontalLayout_2"));
  61. pushButtonYellow = new QPushButton(ccDrawNormalsWidget);
  62. pushButtonYellow->setObjectName(QString::fromUtf8("pushButtonYellow"));
  63. pushButtonYellow->setStyleSheet(QString::fromUtf8("background-color:yellow"));
  64. pushButtonYellow->setCheckable(true);
  65. horizontalLayout_2->addWidget(pushButtonYellow);
  66. pushButtonRed = new QPushButton(ccDrawNormalsWidget);
  67. pushButtonRed->setObjectName(QString::fromUtf8("pushButtonRed"));
  68. pushButtonRed->setStyleSheet(QString::fromUtf8("background-color:red"));
  69. pushButtonRed->setCheckable(true);
  70. horizontalLayout_2->addWidget(pushButtonRed);
  71. pushButtonGreen = new QPushButton(ccDrawNormalsWidget);
  72. pushButtonGreen->setObjectName(QString::fromUtf8("pushButtonGreen"));
  73. pushButtonGreen->setStyleSheet(QString::fromUtf8("background-color:green"));
  74. pushButtonGreen->setCheckable(true);
  75. horizontalLayout_2->addWidget(pushButtonGreen);
  76. pushButtonBlue = new QPushButton(ccDrawNormalsWidget);
  77. pushButtonBlue->setObjectName(QString::fromUtf8("pushButtonBlue"));
  78. pushButtonBlue->setStyleSheet(QString::fromUtf8("background-color:blue"));
  79. pushButtonBlue->setCheckable(true);
  80. horizontalLayout_2->addWidget(pushButtonBlue);
  81. pushButtonBlack = new QPushButton(ccDrawNormalsWidget);
  82. pushButtonBlack->setObjectName(QString::fromUtf8("pushButtonBlack"));
  83. pushButtonBlack->setStyleSheet(QString::fromUtf8("background-color:black"));
  84. pushButtonBlack->setCheckable(true);
  85. horizontalLayout_2->addWidget(pushButtonBlack);
  86. gridLayout->addLayout(horizontalLayout_2, 2, 0, 1, 1);
  87. horizontalSpacer = new QSpacerItem(0, 20, QSizePolicy::Expanding, QSizePolicy::Minimum);
  88. gridLayout->addItem(horizontalSpacer, 2, 1, 1, 1);
  89. retranslateUi(ccDrawNormalsWidget);
  90. QMetaObject::connectSlotsByName(ccDrawNormalsWidget);
  91. } // setupUi
  92. void retranslateUi(QWidget *ccDrawNormalsWidget)
  93. {
  94. ccDrawNormalsWidget->setWindowTitle(QCoreApplication::translate("ccDrawNormalsWidget", "Normals as lines", nullptr));
  95. cloudNameLabel->setText(QCoreApplication::translate("ccDrawNormalsWidget", "-", nullptr));
  96. label->setText(QCoreApplication::translate("ccDrawNormalsWidget", "Normal length", nullptr));
  97. pushButtonYellow->setText(QString());
  98. pushButtonRed->setText(QString());
  99. pushButtonGreen->setText(QString());
  100. pushButtonBlue->setText(QString());
  101. pushButtonBlack->setText(QString());
  102. } // retranslateUi
  103. };
  104. namespace Ui {
  105. class ccDrawNormalsWidget: public Ui_ccDrawNormalsWidget {};
  106. } // namespace Ui
  107. QT_END_NAMESPACE
  108. #endif // UI_CCDRAWNORMALSWIDGET_H