ui_filterByValueDlg.h 5.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145
  1. /********************************************************************************
  2. ** Form generated from reading UI file 'filterByValueDlg.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_FILTERBYVALUEDLG_H
  9. #define UI_FILTERBYVALUEDLG_H
  10. #include <QtCore/QVariant>
  11. #include <QtWidgets/QApplication>
  12. #include <QtWidgets/QDialog>
  13. #include <QtWidgets/QDoubleSpinBox>
  14. #include <QtWidgets/QHBoxLayout>
  15. #include <QtWidgets/QLabel>
  16. #include <QtWidgets/QPushButton>
  17. #include <QtWidgets/QSpacerItem>
  18. #include <QtWidgets/QVBoxLayout>
  19. QT_BEGIN_NAMESPACE
  20. class Ui_FilterByValueDialog
  21. {
  22. public:
  23. QVBoxLayout *verticalLayout;
  24. QHBoxLayout *horizontalLayout;
  25. QLabel *label;
  26. QDoubleSpinBox *minDoubleSpinBox;
  27. QLabel *label_2;
  28. QDoubleSpinBox *maxDoubleSpinBox;
  29. QHBoxLayout *horizontalLayout_2;
  30. QPushButton *exportPushButton;
  31. QPushButton *splitPushButton;
  32. QPushButton *cancelPushButton;
  33. QSpacerItem *verticalSpacer;
  34. void setupUi(QDialog *FilterByValueDialog)
  35. {
  36. if (FilterByValueDialog->objectName().isEmpty())
  37. FilterByValueDialog->setObjectName(QString::fromUtf8("FilterByValueDialog"));
  38. FilterByValueDialog->resize(432, 99);
  39. verticalLayout = new QVBoxLayout(FilterByValueDialog);
  40. verticalLayout->setObjectName(QString::fromUtf8("verticalLayout"));
  41. horizontalLayout = new QHBoxLayout();
  42. horizontalLayout->setObjectName(QString::fromUtf8("horizontalLayout"));
  43. label = new QLabel(FilterByValueDialog);
  44. label->setObjectName(QString::fromUtf8("label"));
  45. horizontalLayout->addWidget(label);
  46. minDoubleSpinBox = new QDoubleSpinBox(FilterByValueDialog);
  47. minDoubleSpinBox->setObjectName(QString::fromUtf8("minDoubleSpinBox"));
  48. minDoubleSpinBox->setDecimals(8);
  49. minDoubleSpinBox->setMinimum(-1000000000.000000000000000);
  50. minDoubleSpinBox->setMaximum(1000000000.000000000000000);
  51. horizontalLayout->addWidget(minDoubleSpinBox);
  52. label_2 = new QLabel(FilterByValueDialog);
  53. label_2->setObjectName(QString::fromUtf8("label_2"));
  54. QSizePolicy sizePolicy(QSizePolicy::Maximum, QSizePolicy::Preferred);
  55. sizePolicy.setHorizontalStretch(0);
  56. sizePolicy.setVerticalStretch(0);
  57. sizePolicy.setHeightForWidth(label_2->sizePolicy().hasHeightForWidth());
  58. label_2->setSizePolicy(sizePolicy);
  59. label_2->setText(QString::fromUtf8("-"));
  60. label_2->setAlignment(Qt::AlignCenter);
  61. horizontalLayout->addWidget(label_2);
  62. maxDoubleSpinBox = new QDoubleSpinBox(FilterByValueDialog);
  63. maxDoubleSpinBox->setObjectName(QString::fromUtf8("maxDoubleSpinBox"));
  64. maxDoubleSpinBox->setDecimals(8);
  65. maxDoubleSpinBox->setMinimum(-1000000000.000000000000000);
  66. maxDoubleSpinBox->setMaximum(1000000000.000000000000000);
  67. horizontalLayout->addWidget(maxDoubleSpinBox);
  68. verticalLayout->addLayout(horizontalLayout);
  69. horizontalLayout_2 = new QHBoxLayout();
  70. horizontalLayout_2->setObjectName(QString::fromUtf8("horizontalLayout_2"));
  71. exportPushButton = new QPushButton(FilterByValueDialog);
  72. exportPushButton->setObjectName(QString::fromUtf8("exportPushButton"));
  73. horizontalLayout_2->addWidget(exportPushButton);
  74. splitPushButton = new QPushButton(FilterByValueDialog);
  75. splitPushButton->setObjectName(QString::fromUtf8("splitPushButton"));
  76. horizontalLayout_2->addWidget(splitPushButton);
  77. cancelPushButton = new QPushButton(FilterByValueDialog);
  78. cancelPushButton->setObjectName(QString::fromUtf8("cancelPushButton"));
  79. horizontalLayout_2->addWidget(cancelPushButton);
  80. verticalLayout->addLayout(horizontalLayout_2);
  81. verticalSpacer = new QSpacerItem(20, 2, QSizePolicy::Minimum, QSizePolicy::Expanding);
  82. verticalLayout->addItem(verticalSpacer);
  83. retranslateUi(FilterByValueDialog);
  84. QObject::connect(cancelPushButton, SIGNAL(clicked()), FilterByValueDialog, SLOT(reject()));
  85. QMetaObject::connectSlotsByName(FilterByValueDialog);
  86. } // setupUi
  87. void retranslateUi(QDialog *FilterByValueDialog)
  88. {
  89. FilterByValueDialog->setWindowTitle(QCoreApplication::translate("FilterByValueDialog", "Filter by value", nullptr));
  90. label->setText(QCoreApplication::translate("FilterByValueDialog", "Range", nullptr));
  91. #if QT_CONFIG(tooltip)
  92. minDoubleSpinBox->setToolTip(QCoreApplication::translate("FilterByValueDialog", "Min range value", nullptr));
  93. #endif // QT_CONFIG(tooltip)
  94. #if QT_CONFIG(tooltip)
  95. maxDoubleSpinBox->setToolTip(QCoreApplication::translate("FilterByValueDialog", "Max range value", nullptr));
  96. #endif // QT_CONFIG(tooltip)
  97. #if QT_CONFIG(tooltip)
  98. exportPushButton->setToolTip(QCoreApplication::translate("FilterByValueDialog", "Exports the points falling inside the specified range.", nullptr));
  99. #endif // QT_CONFIG(tooltip)
  100. exportPushButton->setText(QCoreApplication::translate("FilterByValueDialog", "Export", nullptr));
  101. #if QT_CONFIG(tooltip)
  102. splitPushButton->setToolTip(QCoreApplication::translate("FilterByValueDialog", "Creates two clouds: one with the points falling inside the specified range,\n"
  103. "the other with the points falling outside.", nullptr));
  104. #endif // QT_CONFIG(tooltip)
  105. splitPushButton->setText(QCoreApplication::translate("FilterByValueDialog", "Split", nullptr));
  106. cancelPushButton->setText(QCoreApplication::translate("FilterByValueDialog", "Cancel", nullptr));
  107. } // retranslateUi
  108. };
  109. namespace Ui {
  110. class FilterByValueDialog: public Ui_FilterByValueDialog {};
  111. } // namespace Ui
  112. QT_END_NAMESPACE
  113. #endif // UI_FILTERBYVALUEDLG_H