1/********************************************************************************
2** Form generated from reading UI file 'newtemplatedialog.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_NEWTEMPLATEDIALOG_H
10#define UI_NEWTEMPLATEDIALOG_H
11
12#include <QtCore/QVariant>
13#include <QtWidgets/QApplication>
14#include <QtWidgets/QComboBox>
15#include <QtWidgets/QDialog>
16#include <QtWidgets/QGridLayout>
17#include <QtWidgets/QHBoxLayout>
18#include <QtWidgets/QLabel>
19#include <QtWidgets/QLineEdit>
20#include <QtWidgets/QPlainTextEdit>
21#include <QtWidgets/QPushButton>
22#include <QtWidgets/QSpacerItem>
23#include <QtWidgets/QVBoxLayout>
24#include <QtWidgets/QWidget>
25
26QT_BEGIN_NAMESPACE
27
28class Ui_NewTemplateDialog
29{
30public:
31 QVBoxLayout *verticalLayout;
32 QWidget *widget_2;
33 QGridLayout *gridLayout;
34 QLabel *label_3;
35 QLabel *label_2;
36 QLabel *label;
37 QLineEdit *txtName;
38 QComboBox *cbCategory;
39 QPlainTextEdit *txtDescription;
40 QSpacerItem *verticalSpacer;
41 QWidget *widget;
42 QHBoxLayout *horizontalLayout;
43 QSpacerItem *horizontalSpacer;
44 QPushButton *btnCreate;
45 QPushButton *btnCancel;
46
47 void setupUi(QDialog *NewTemplateDialog)
48 {
49 if (NewTemplateDialog->objectName().isEmpty())
50 NewTemplateDialog->setObjectName(QString::fromUtf8("NewTemplateDialog"));
51 NewTemplateDialog->resize(553, 519);
52 verticalLayout = new QVBoxLayout(NewTemplateDialog);
53 verticalLayout->setObjectName(QString::fromUtf8("verticalLayout"));
54 widget_2 = new QWidget(NewTemplateDialog);
55 widget_2->setObjectName(QString::fromUtf8("widget_2"));
56 gridLayout = new QGridLayout(widget_2);
57 gridLayout->setObjectName(QString::fromUtf8("gridLayout"));
58 gridLayout->setContentsMargins(0, 0, 0, 0);
59 label_3 = new QLabel(widget_2);
60 label_3->setObjectName(QString::fromUtf8("label_3"));
61
62 gridLayout->addWidget(label_3, 2, 0, 1, 1);
63
64 label_2 = new QLabel(widget_2);
65 label_2->setObjectName(QString::fromUtf8("label_2"));
66
67 gridLayout->addWidget(label_2, 1, 0, 1, 1);
68
69 label = new QLabel(widget_2);
70 label->setObjectName(QString::fromUtf8("label"));
71
72 gridLayout->addWidget(label, 0, 0, 1, 1);
73
74 txtName = new QLineEdit(widget_2);
75 txtName->setObjectName(QString::fromUtf8("txtName"));
76
77 gridLayout->addWidget(txtName, 0, 1, 1, 1);
78
79 cbCategory = new QComboBox(widget_2);
80 cbCategory->setObjectName(QString::fromUtf8("cbCategory"));
81 cbCategory->setEditable(true);
82
83 gridLayout->addWidget(cbCategory, 1, 1, 1, 1);
84
85 txtDescription = new QPlainTextEdit(widget_2);
86 txtDescription->setObjectName(QString::fromUtf8("txtDescription"));
87
88 gridLayout->addWidget(txtDescription, 2, 1, 1, 1);
89
90
91 verticalLayout->addWidget(widget_2);
92
93 verticalSpacer = new QSpacerItem(20, 40, QSizePolicy::Minimum, QSizePolicy::Expanding);
94
95 verticalLayout->addItem(verticalSpacer);
96
97 widget = new QWidget(NewTemplateDialog);
98 widget->setObjectName(QString::fromUtf8("widget"));
99 horizontalLayout = new QHBoxLayout(widget);
100 horizontalLayout->setObjectName(QString::fromUtf8("horizontalLayout"));
101 horizontalLayout->setContentsMargins(0, 0, 0, 0);
102 horizontalSpacer = new QSpacerItem(332, 20, QSizePolicy::Expanding, QSizePolicy::Minimum);
103
104 horizontalLayout->addItem(horizontalSpacer);
105
106 btnCreate = new QPushButton(widget);
107 btnCreate->setObjectName(QString::fromUtf8("btnCreate"));
108
109 horizontalLayout->addWidget(btnCreate);
110
111 btnCancel = new QPushButton(widget);
112 btnCancel->setObjectName(QString::fromUtf8("btnCancel"));
113
114 horizontalLayout->addWidget(btnCancel);
115
116
117 verticalLayout->addWidget(widget);
118
119
120 retranslateUi(NewTemplateDialog);
121
122 QMetaObject::connectSlotsByName(NewTemplateDialog);
123 } // setupUi
124
125 void retranslateUi(QDialog *NewTemplateDialog)
126 {
127 NewTemplateDialog->setWindowTitle(QCoreApplication::translate("NewTemplateDialog", "Create Template From Project", nullptr));
128 label_3->setText(QCoreApplication::translate("NewTemplateDialog", "Description", nullptr));
129 label_2->setText(QCoreApplication::translate("NewTemplateDialog", "Category", nullptr));
130 label->setText(QCoreApplication::translate("NewTemplateDialog", "Name", nullptr));
131 btnCreate->setText(QCoreApplication::translate("NewTemplateDialog", "Create", nullptr));
132 btnCancel->setText(QCoreApplication::translate("NewTemplateDialog", "Cancel", nullptr));
133 } // retranslateUi
134
135};
136
137namespace Ui {
138 class NewTemplateDialog: public Ui_NewTemplateDialog {};
139} // namespace Ui
140
141QT_END_NAMESPACE
142
143#endif // UI_NEWTEMPLATEDIALOG_H
144