forked from DieBieEngineering/DieBieMS-Tool
-
Notifications
You must be signed in to change notification settings - Fork 24
/
ui_paramdialog.h
88 lines (66 loc) · 2.65 KB
/
ui_paramdialog.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
/********************************************************************************
** Form generated from reading UI file 'paramdialog.ui'
**
** Created by: Qt User Interface Compiler version 5.12.2
**
** WARNING! All changes made in this file will be lost when recompiling UI file!
********************************************************************************/
#ifndef UI_PARAMDIALOG_H
#define UI_PARAMDIALOG_H
#include <QtCore/QVariant>
#include <QtWidgets/QApplication>
#include <QtWidgets/QDialog>
#include <QtWidgets/QHBoxLayout>
#include <QtWidgets/QHeaderView>
#include <QtWidgets/QLabel>
#include <QtWidgets/QPushButton>
#include <QtWidgets/QSpacerItem>
#include <QtWidgets/QVBoxLayout>
#include "widgets/paramtable.h"
QT_BEGIN_NAMESPACE
class Ui_ParamDialog
{
public:
QVBoxLayout *verticalLayout;
QLabel *textLabel;
ParamTable *paramTable;
QHBoxLayout *horizontalLayout;
QSpacerItem *horizontalSpacer;
QPushButton *closeButton;
void setupUi(QDialog *ParamDialog)
{
if (ParamDialog->objectName().isEmpty())
ParamDialog->setObjectName(QString::fromUtf8("ParamDialog"));
ParamDialog->resize(557, 363);
verticalLayout = new QVBoxLayout(ParamDialog);
verticalLayout->setObjectName(QString::fromUtf8("verticalLayout"));
textLabel = new QLabel(ParamDialog);
textLabel->setObjectName(QString::fromUtf8("textLabel"));
textLabel->setWordWrap(true);
verticalLayout->addWidget(textLabel);
paramTable = new ParamTable(ParamDialog);
paramTable->setObjectName(QString::fromUtf8("paramTable"));
verticalLayout->addWidget(paramTable);
horizontalLayout = new QHBoxLayout();
horizontalLayout->setObjectName(QString::fromUtf8("horizontalLayout"));
horizontalSpacer = new QSpacerItem(40, 20, QSizePolicy::Expanding, QSizePolicy::Minimum);
horizontalLayout->addItem(horizontalSpacer);
closeButton = new QPushButton(ParamDialog);
closeButton->setObjectName(QString::fromUtf8("closeButton"));
horizontalLayout->addWidget(closeButton);
verticalLayout->addLayout(horizontalLayout);
retranslateUi(ParamDialog);
QMetaObject::connectSlotsByName(ParamDialog);
} // setupUi
void retranslateUi(QDialog *ParamDialog)
{
ParamDialog->setWindowTitle(QApplication::translate("ParamDialog", "Dialog", nullptr));
textLabel->setText(QString());
closeButton->setText(QApplication::translate("ParamDialog", "Close", nullptr));
} // retranslateUi
};
namespace Ui {
class ParamDialog: public Ui_ParamDialog {};
} // namespace Ui
QT_END_NAMESPACE
#endif // UI_PARAMDIALOG_H