DISPLACE  1.0
A spatial model of fisheries to help sustainable fishing and maritime spatial planning
ui_batchcreatedialog.h
Go to the documentation of this file.
1 /********************************************************************************
2 ** Form generated from reading UI file 'batchcreatedialog.ui'
3 **
4 ** Created by: Qt User Interface Compiler version 5.10.0
5 **
6 ** WARNING! All changes made in this file will be lost when recompiling UI file!
7 ********************************************************************************/
8 
9 #ifndef UI_BATCHCREATEDIALOG_H
10 #define UI_BATCHCREATEDIALOG_H
11 
12 #include <QtCore/QVariant>
13 #include <QtWidgets/QAction>
14 #include <QtWidgets/QApplication>
15 #include <QtWidgets/QButtonGroup>
16 #include <QtWidgets/QDialog>
17 #include <QtWidgets/QDialogButtonBox>
18 #include <QtWidgets/QFormLayout>
19 #include <QtWidgets/QHeaderView>
20 #include <QtWidgets/QLabel>
21 #include <QtWidgets/QLineEdit>
22 #include <QtWidgets/QSpinBox>
23 
24 QT_BEGIN_NAMESPACE
25 
27 {
28 public:
29  QFormLayout *formLayout;
30  QLabel *label;
31  QLineEdit *basename;
32  QLabel *label_2;
33  QSpinBox *first;
34  QLabel *label_3;
35  QSpinBox *last;
36  QDialogButtonBox *buttonBox;
37 
38  void setupUi(QDialog *BatchCreateDialog)
39  {
40  if (BatchCreateDialog->objectName().isEmpty())
41  BatchCreateDialog->setObjectName(QStringLiteral("BatchCreateDialog"));
42  BatchCreateDialog->resize(400, 153);
43  formLayout = new QFormLayout(BatchCreateDialog);
44  formLayout->setObjectName(QStringLiteral("formLayout"));
45  label = new QLabel(BatchCreateDialog);
46  label->setObjectName(QStringLiteral("label"));
47 
48  formLayout->setWidget(0, QFormLayout::LabelRole, label);
49 
50  basename = new QLineEdit(BatchCreateDialog);
51  basename->setObjectName(QStringLiteral("basename"));
52 
53  formLayout->setWidget(0, QFormLayout::FieldRole, basename);
54 
55  label_2 = new QLabel(BatchCreateDialog);
56  label_2->setObjectName(QStringLiteral("label_2"));
57 
58  formLayout->setWidget(1, QFormLayout::LabelRole, label_2);
59 
60  first = new QSpinBox(BatchCreateDialog);
61  first->setObjectName(QStringLiteral("first"));
62  first->setMaximum(1000);
63 
64  formLayout->setWidget(1, QFormLayout::FieldRole, first);
65 
66  label_3 = new QLabel(BatchCreateDialog);
67  label_3->setObjectName(QStringLiteral("label_3"));
68 
69  formLayout->setWidget(2, QFormLayout::LabelRole, label_3);
70 
71  last = new QSpinBox(BatchCreateDialog);
72  last->setObjectName(QStringLiteral("last"));
73  last->setMaximum(1000);
74 
75  formLayout->setWidget(2, QFormLayout::FieldRole, last);
76 
77  buttonBox = new QDialogButtonBox(BatchCreateDialog);
78  buttonBox->setObjectName(QStringLiteral("buttonBox"));
79  buttonBox->setOrientation(Qt::Horizontal);
80  buttonBox->setStandardButtons(QDialogButtonBox::Cancel|QDialogButtonBox::Ok);
81 
82  formLayout->setWidget(3, QFormLayout::SpanningRole, buttonBox);
83 
84  QWidget::setTabOrder(basename, first);
85  QWidget::setTabOrder(first, last);
86 
88  QObject::connect(buttonBox, SIGNAL(accepted()), BatchCreateDialog, SLOT(accept()));
89  QObject::connect(buttonBox, SIGNAL(rejected()), BatchCreateDialog, SLOT(reject()));
90 
91  QMetaObject::connectSlotsByName(BatchCreateDialog);
92  } // setupUi
93 
95  {
96  BatchCreateDialog->setWindowTitle(QApplication::translate("BatchCreateDialog", "Batch job creation", nullptr));
97  label->setText(QApplication::translate("BatchCreateDialog", "Base Name", nullptr));
98  label_2->setText(QApplication::translate("BatchCreateDialog", "First Sequence Number", nullptr));
99  label_3->setText(QApplication::translate("BatchCreateDialog", "Last Sequence Number", nullptr));
100  } // retranslateUi
101 
102 };
103 
104 namespace Ui {
106 } // namespace Ui
107 
108 QT_END_NAMESPACE
109 
110 #endif // UI_BATCHCREATEDIALOG_H
Definition: batchcreatedialog.h:10
void setupUi(QDialog *BatchCreateDialog)
Definition: ui_batchcreatedialog.h:38
QDialogButtonBox * buttonBox
Definition: ui_batchcreatedialog.h:36
QSpinBox * first
Definition: ui_batchcreatedialog.h:33
QFormLayout * formLayout
Definition: ui_batchcreatedialog.h:29
Definition: dteditorwindow.h:32
Definition: ui_batchcreatedialog.h:105
QLabel * label_3
Definition: ui_batchcreatedialog.h:34
QSpinBox * last
Definition: ui_batchcreatedialog.h:35
QLabel * label_2
Definition: ui_batchcreatedialog.h:32
void retranslateUi(QDialog *BatchCreateDialog)
Definition: ui_batchcreatedialog.h:94
QLineEdit * basename
Definition: ui_batchcreatedialog.h:31
Definition: ui_batchcreatedialog.h:26
QLabel * label
Definition: ui_batchcreatedialog.h:30