ui_mainwindow.h 5.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163
  1. /********************************************************************************
  2. ** Form generated from reading UI file 'mainwindow.ui'
  3. **
  4. ** Created by: Qt User Interface Compiler version 5.9.5
  5. **
  6. ** WARNING! All changes made in this file will be lost when recompiling UI file!
  7. ********************************************************************************/
  8. #ifndef UI_MAINWINDOW_H
  9. #define UI_MAINWINDOW_H
  10. #include <QtCore/QVariant>
  11. #include <QtWidgets/QAction>
  12. #include <QtWidgets/QApplication>
  13. #include <QtWidgets/QButtonGroup>
  14. #include <QtWidgets/QComboBox>
  15. #include <QtWidgets/QDockWidget>
  16. #include <QtWidgets/QDoubleSpinBox>
  17. #include <QtWidgets/QHBoxLayout>
  18. #include <QtWidgets/QHeaderView>
  19. #include <QtWidgets/QLabel>
  20. #include <QtWidgets/QMainWindow>
  21. #include <QtWidgets/QSpacerItem>
  22. #include <QtWidgets/QTableWidget>
  23. #include <QtWidgets/QVBoxLayout>
  24. #include <QtWidgets/QWidget>
  25. QT_BEGIN_NAMESPACE
  26. class Ui_MainWindow
  27. {
  28. public:
  29. QWidget *centralWidget;
  30. QVBoxLayout *verticalLayout;
  31. QHBoxLayout *horizontalLayout;
  32. QComboBox *comboBox;
  33. QDoubleSpinBox *step;
  34. QDoubleSpinBox *rotation;
  35. QDoubleSpinBox *minrange;
  36. QLabel *tc;
  37. QSpacerItem *horizontalSpacer;
  38. QLabel *MinFloorID;
  39. QTableWidget *tableWidget;
  40. QDockWidget *dockWidget;
  41. QWidget *dockWidgetContents;
  42. QVBoxLayout *verticalLayout_2;
  43. QLabel *label;
  44. void setupUi(QMainWindow *MainWindow)
  45. {
  46. if (MainWindow->objectName().isEmpty())
  47. MainWindow->setObjectName(QStringLiteral("MainWindow"));
  48. MainWindow->resize(1159, 827);
  49. centralWidget = new QWidget(MainWindow);
  50. centralWidget->setObjectName(QStringLiteral("centralWidget"));
  51. verticalLayout = new QVBoxLayout(centralWidget);
  52. verticalLayout->setSpacing(6);
  53. verticalLayout->setContentsMargins(11, 11, 11, 11);
  54. verticalLayout->setObjectName(QStringLiteral("verticalLayout"));
  55. horizontalLayout = new QHBoxLayout();
  56. horizontalLayout->setSpacing(6);
  57. horizontalLayout->setObjectName(QStringLiteral("horizontalLayout"));
  58. comboBox = new QComboBox(centralWidget);
  59. comboBox->setObjectName(QStringLiteral("comboBox"));
  60. horizontalLayout->addWidget(comboBox);
  61. step = new QDoubleSpinBox(centralWidget);
  62. step->setObjectName(QStringLiteral("step"));
  63. step->setMinimum(0.01);
  64. step->setMaximum(1);
  65. step->setSingleStep(0.01);
  66. step->setValue(0.3);
  67. horizontalLayout->addWidget(step);
  68. rotation = new QDoubleSpinBox(centralWidget);
  69. rotation->setObjectName(QStringLiteral("rotation"));
  70. rotation->setMinimum(-30);
  71. rotation->setMaximum(30);
  72. horizontalLayout->addWidget(rotation);
  73. minrange = new QDoubleSpinBox(centralWidget);
  74. minrange->setObjectName(QStringLiteral("minrange"));
  75. minrange->setSingleStep(0.1);
  76. horizontalLayout->addWidget(minrange);
  77. tc = new QLabel(centralWidget);
  78. tc->setObjectName(QStringLiteral("tc"));
  79. horizontalLayout->addWidget(tc);
  80. horizontalSpacer = new QSpacerItem(40, 20, QSizePolicy::Expanding, QSizePolicy::Minimum);
  81. horizontalLayout->addItem(horizontalSpacer);
  82. MinFloorID = new QLabel(centralWidget);
  83. MinFloorID->setObjectName(QStringLiteral("MinFloorID"));
  84. horizontalLayout->addWidget(MinFloorID);
  85. verticalLayout->addLayout(horizontalLayout);
  86. tableWidget = new QTableWidget(centralWidget);
  87. tableWidget->setObjectName(QStringLiteral("tableWidget"));
  88. verticalLayout->addWidget(tableWidget);
  89. MainWindow->setCentralWidget(centralWidget);
  90. dockWidget = new QDockWidget(MainWindow);
  91. dockWidget->setObjectName(QStringLiteral("dockWidget"));
  92. dockWidgetContents = new QWidget();
  93. dockWidgetContents->setObjectName(QStringLiteral("dockWidgetContents"));
  94. verticalLayout_2 = new QVBoxLayout(dockWidgetContents);
  95. verticalLayout_2->setSpacing(6);
  96. verticalLayout_2->setContentsMargins(11, 11, 11, 11);
  97. verticalLayout_2->setObjectName(QStringLiteral("verticalLayout_2"));
  98. label = new QLabel(dockWidgetContents);
  99. label->setObjectName(QStringLiteral("label"));
  100. label->setAlignment(Qt::AlignCenter);
  101. verticalLayout_2->addWidget(label);
  102. dockWidget->setWidget(dockWidgetContents);
  103. MainWindow->addDockWidget(static_cast<Qt::DockWidgetArea>(2), dockWidget);
  104. retranslateUi(MainWindow);
  105. QMetaObject::connectSlotsByName(MainWindow);
  106. } // setupUi
  107. void retranslateUi(QMainWindow *MainWindow)
  108. {
  109. MainWindow->setWindowTitle(QApplication::translate("MainWindow", "MainWindow", Q_NULLPTR));
  110. #ifndef QT_NO_TOOLTIP
  111. comboBox->setToolTip(QApplication::translate("MainWindow", "Beam ID", Q_NULLPTR));
  112. #endif // QT_NO_TOOLTIP
  113. #ifndef QT_NO_TOOLTIP
  114. step->setToolTip(QApplication::translate("MainWindow", "Height Grid Step (m)", Q_NULLPTR));
  115. #endif // QT_NO_TOOLTIP
  116. #ifndef QT_NO_TOOLTIP
  117. rotation->setToolTip(QApplication::translate("MainWindow", "Rotation (degree)", Q_NULLPTR));
  118. #endif // QT_NO_TOOLTIP
  119. #ifndef QT_NO_TOOLTIP
  120. minrange->setToolTip(QApplication::translate("MainWindow", "Minimum Range (m)", Q_NULLPTR));
  121. #endif // QT_NO_TOOLTIP
  122. tc->setText(QApplication::translate("MainWindow", "TextLabel", Q_NULLPTR));
  123. MinFloorID->setText(QApplication::translate("MainWindow", "TextLabel", Q_NULLPTR));
  124. label->setText(QApplication::translate("MainWindow", "TextLabel", Q_NULLPTR));
  125. } // retranslateUi
  126. };
  127. namespace Ui {
  128. class MainWindow: public Ui_MainWindow {};
  129. } // namespace Ui
  130. QT_END_NAMESPACE
  131. #endif // UI_MAINWINDOW_H