-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathui_DataMath.h
More file actions
128 lines (98 loc) · 4.62 KB
/
ui_DataMath.h
File metadata and controls
128 lines (98 loc) · 4.62 KB
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
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
/********************************************************************************
** Form generated from reading UI file 'DataMath.ui'
**
** Created by: Qt User Interface Compiler version 5.12.5
**
** WARNING! All changes made in this file will be lost when recompiling UI file!
********************************************************************************/
#ifndef UI_DATAMATH_H
#define UI_DATAMATH_H
#include <QtCore/QVariant>
#include <QtWidgets/QApplication>
#include <QtWidgets/QDialog>
#include <QtWidgets/QDialogButtonBox>
#include <QtWidgets/QHBoxLayout>
#include <QtWidgets/QLabel>
#include <QtWidgets/QLineEdit>
#include <QtWidgets/QListWidget>
#include <QtWidgets/QPushButton>
#include <QtWidgets/QVBoxLayout>
QT_BEGIN_NAMESPACE
class Ui_DataMath
{
public:
QVBoxLayout *verticalLayout;
QHBoxLayout *horizontalLayout;
QListWidget *dataLabels;
QListWidget *operatorList;
QLabel *label_2;
QHBoxLayout *horizontalLayout_2;
QLabel *label;
QLineEdit *dataMath;
QPushButton *clear;
QDialogButtonBox *buttonBox;
void setupUi(QDialog *DataMath)
{
if (DataMath->objectName().isEmpty())
DataMath->setObjectName(QString::fromUtf8("DataMath"));
DataMath->resize(531, 284);
verticalLayout = new QVBoxLayout(DataMath);
verticalLayout->setObjectName(QString::fromUtf8("verticalLayout"));
horizontalLayout = new QHBoxLayout();
horizontalLayout->setObjectName(QString::fromUtf8("horizontalLayout"));
dataLabels = new QListWidget(DataMath);
dataLabels->setObjectName(QString::fromUtf8("dataLabels"));
dataLabels->setDragEnabled(true);
dataLabels->setDragDropMode(QAbstractItemView::DragOnly);
horizontalLayout->addWidget(dataLabels);
operatorList = new QListWidget(DataMath);
operatorList->setObjectName(QString::fromUtf8("operatorList"));
operatorList->setDragEnabled(true);
operatorList->setDragDropMode(QAbstractItemView::DragOnly);
horizontalLayout->addWidget(operatorList);
verticalLayout->addLayout(horizontalLayout);
label_2 = new QLabel(DataMath);
label_2->setObjectName(QString::fromUtf8("label_2"));
label_2->setAlignment(Qt::AlignCenter);
verticalLayout->addWidget(label_2);
horizontalLayout_2 = new QHBoxLayout();
horizontalLayout_2->setObjectName(QString::fromUtf8("horizontalLayout_2"));
label = new QLabel(DataMath);
label->setObjectName(QString::fromUtf8("label"));
horizontalLayout_2->addWidget(label);
dataMath = new QLineEdit(DataMath);
dataMath->setObjectName(QString::fromUtf8("dataMath"));
dataMath->setAcceptDrops(false);
dataMath->setReadOnly(true);
horizontalLayout_2->addWidget(dataMath);
clear = new QPushButton(DataMath);
clear->setObjectName(QString::fromUtf8("clear"));
horizontalLayout_2->addWidget(clear);
verticalLayout->addLayout(horizontalLayout_2);
buttonBox = new QDialogButtonBox(DataMath);
buttonBox->setObjectName(QString::fromUtf8("buttonBox"));
buttonBox->setOrientation(Qt::Horizontal);
buttonBox->setStandardButtons(QDialogButtonBox::Cancel|QDialogButtonBox::Ok);
verticalLayout->addWidget(buttonBox);
retranslateUi(DataMath);
QObject::connect(buttonBox, SIGNAL(accepted()), DataMath, SLOT(accept()));
QObject::connect(buttonBox, SIGNAL(rejected()), DataMath, SLOT(reject()));
QMetaObject::connectSlotsByName(DataMath);
} // setupUi
void retranslateUi(QDialog *DataMath)
{
DataMath->setWindowTitle(QApplication::translate("DataMath", "Create new derived data (Data Math)", nullptr));
label_2->setText(QApplication::translate("DataMath", "Math operations are evaluated left to right. Does not consider order of operation!", nullptr));
label->setText(QApplication::translate("DataMath", "Data Math:", nullptr));
#ifndef QT_NO_TOOLTIP
dataMath->setToolTip(QApplication::translate("DataMath", "A derived data element is a data element derived from other data elements using a mathematical, logical, or other type of transformation, e.g. arithmetic formula, composition, aggregation.", nullptr));
#endif // QT_NO_TOOLTIP
dataMath->setInputMask(QString());
clear->setText(QApplication::translate("DataMath", "Undo", nullptr));
} // retranslateUi
};
namespace Ui {
class DataMath: public Ui_DataMath {};
} // namespace Ui
QT_END_NAMESPACE
#endif // UI_DATAMATH_H