GCC Code Coverage Report


Directory: plugins/
File: plugins/hppwidgetsplugin/ui_constraintwidget.h
Date: 2024-12-13 15:51:58
Exec Total Coverage
Lines: 0 56 0.0%
Branches: 0 84 0.0%

Line Branch Exec Source
1 /********************************************************************************
2 ** Form generated from reading UI file 'constraintwidget.ui'
3 **
4 ** Created by: Qt User Interface Compiler version 5.15.3
5 **
6 ** WARNING! All changes made in this file will be lost when recompiling UI file!
7 ********************************************************************************/
8
9 #ifndef UI_CONSTRAINTWIDGET_H
10 #define UI_CONSTRAINTWIDGET_H
11
12 #include <QtCore/QVariant>
13 #include <QtWidgets/QApplication>
14 #include <QtWidgets/QComboBox>
15 #include <QtWidgets/QFormLayout>
16 #include <QtWidgets/QHBoxLayout>
17 #include <QtWidgets/QLabel>
18 #include <QtWidgets/QLineEdit>
19 #include <QtWidgets/QListWidget>
20 #include <QtWidgets/QPushButton>
21 #include <QtWidgets/QSpacerItem>
22 #include <QtWidgets/QVBoxLayout>
23 #include <QtWidgets/QWidget>
24
25 QT_BEGIN_NAMESPACE
26
27 class Ui_ConstraintWidget
28 {
29 public:
30 QVBoxLayout *verticalLayout_2;
31 QVBoxLayout *verticalLayout_3;
32 QListWidget *nameList;
33 QFormLayout *formLayout_2;
34 QLabel *constraintNameLabel;
35 QLineEdit *constraintNameEdit;
36 QLabel *constraintTypeLabel;
37 QComboBox *constraintTypeSelect;
38 QPushButton *createButton;
39 QHBoxLayout *horizontalLayout;
40 QSpacerItem *horizontalSpacer;
41 QPushButton *applyButton;
42 QPushButton *confirmButton;
43 QPushButton *resetButton;
44
45 void setupUi(QWidget *ConstraintWidget)
46 {
47 if (ConstraintWidget->objectName().isEmpty())
48 ConstraintWidget->setObjectName(QString::fromUtf8("ConstraintWidget"));
49 ConstraintWidget->resize(521, 423);
50 verticalLayout_2 = new QVBoxLayout(ConstraintWidget);
51 verticalLayout_2->setObjectName(QString::fromUtf8("verticalLayout_2"));
52 verticalLayout_3 = new QVBoxLayout();
53 verticalLayout_3->setObjectName(QString::fromUtf8("verticalLayout_3"));
54 nameList = new QListWidget(ConstraintWidget);
55 nameList->setObjectName(QString::fromUtf8("nameList"));
56
57 verticalLayout_3->addWidget(nameList);
58
59
60 verticalLayout_2->addLayout(verticalLayout_3);
61
62 formLayout_2 = new QFormLayout();
63 formLayout_2->setObjectName(QString::fromUtf8("formLayout_2"));
64 constraintNameLabel = new QLabel(ConstraintWidget);
65 constraintNameLabel->setObjectName(QString::fromUtf8("constraintNameLabel"));
66
67 formLayout_2->setWidget(0, QFormLayout::LabelRole, constraintNameLabel);
68
69 constraintNameEdit = new QLineEdit(ConstraintWidget);
70 constraintNameEdit->setObjectName(QString::fromUtf8("constraintNameEdit"));
71
72 formLayout_2->setWidget(0, QFormLayout::FieldRole, constraintNameEdit);
73
74 constraintTypeLabel = new QLabel(ConstraintWidget);
75 constraintTypeLabel->setObjectName(QString::fromUtf8("constraintTypeLabel"));
76
77 formLayout_2->setWidget(1, QFormLayout::LabelRole, constraintTypeLabel);
78
79 constraintTypeSelect = new QComboBox(ConstraintWidget);
80 constraintTypeSelect->setObjectName(QString::fromUtf8("constraintTypeSelect"));
81
82 formLayout_2->setWidget(1, QFormLayout::FieldRole, constraintTypeSelect);
83
84
85 verticalLayout_2->addLayout(formLayout_2);
86
87 createButton = new QPushButton(ConstraintWidget);
88 createButton->setObjectName(QString::fromUtf8("createButton"));
89
90 verticalLayout_2->addWidget(createButton);
91
92 horizontalLayout = new QHBoxLayout();
93 horizontalLayout->setObjectName(QString::fromUtf8("horizontalLayout"));
94 horizontalSpacer = new QSpacerItem(40, 20, QSizePolicy::Expanding, QSizePolicy::Minimum);
95
96 horizontalLayout->addItem(horizontalSpacer);
97
98 applyButton = new QPushButton(ConstraintWidget);
99 applyButton->setObjectName(QString::fromUtf8("applyButton"));
100
101 horizontalLayout->addWidget(applyButton);
102
103 confirmButton = new QPushButton(ConstraintWidget);
104 confirmButton->setObjectName(QString::fromUtf8("confirmButton"));
105
106 horizontalLayout->addWidget(confirmButton);
107
108 resetButton = new QPushButton(ConstraintWidget);
109 resetButton->setObjectName(QString::fromUtf8("resetButton"));
110
111 horizontalLayout->addWidget(resetButton);
112
113
114 verticalLayout_2->addLayout(horizontalLayout);
115
116
117 retranslateUi(ConstraintWidget);
118
119 QMetaObject::connectSlotsByName(ConstraintWidget);
120 } // setupUi
121
122 void retranslateUi(QWidget *ConstraintWidget)
123 {
124 ConstraintWidget->setWindowTitle(QCoreApplication::translate("ConstraintWidget", "Form", nullptr));
125 constraintNameLabel->setText(QCoreApplication::translate("ConstraintWidget", "Constraint name", nullptr));
126 constraintTypeLabel->setText(QCoreApplication::translate("ConstraintWidget", "Constraint type", nullptr));
127 createButton->setText(QCoreApplication::translate("ConstraintWidget", "Create", nullptr));
128 applyButton->setText(QCoreApplication::translate("ConstraintWidget", "Apply", nullptr));
129 confirmButton->setText(QCoreApplication::translate("ConstraintWidget", "Confirm", nullptr));
130 resetButton->setText(QCoreApplication::translate("ConstraintWidget", "Reset", nullptr));
131 } // retranslateUi
132
133 };
134
135 namespace Ui {
136 class ConstraintWidget: public Ui_ConstraintWidget {};
137 } // namespace Ui
138
139 QT_END_NAMESPACE
140
141 #endif // UI_CONSTRAINTWIDGET_H
142