1 | /******************************************************************************** |
2 | ** Form generated from reading UI file 'newprojectunitdialog.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_NEWPROJECTUNITDIALOG_H |
10 | #define UI_NEWPROJECTUNITDIALOG_H |
11 | |
12 | #include <QtCore/QVariant> |
13 | #include <QtGui/QIcon> |
14 | #include <QtWidgets/QApplication> |
15 | #include <QtWidgets/QDialog> |
16 | #include <QtWidgets/QGridLayout> |
17 | #include <QtWidgets/QHBoxLayout> |
18 | #include <QtWidgets/QLabel> |
19 | #include <QtWidgets/QLineEdit> |
20 | #include <QtWidgets/QPushButton> |
21 | #include <QtWidgets/QSpacerItem> |
22 | #include <QtWidgets/QToolButton> |
23 | #include <QtWidgets/QWidget> |
24 | |
25 | QT_BEGIN_NAMESPACE |
26 | |
27 | class Ui_NewProjectUnitDialog |
28 | { |
29 | public: |
30 | QGridLayout *gridLayout; |
31 | QLabel *label_2; |
32 | QLineEdit *txtFolder; |
33 | QLabel *label; |
34 | QToolButton *btnBrowse; |
35 | QLineEdit *txtFilename; |
36 | QWidget *widget; |
37 | QHBoxLayout *horizontalLayout; |
38 | QSpacerItem *horizontalSpacer; |
39 | QPushButton *btnOk; |
40 | QPushButton *btnCancel; |
41 | QSpacerItem *verticalSpacer; |
42 | |
43 | void setupUi(QDialog *NewProjectUnitDialog) |
44 | { |
45 | if (NewProjectUnitDialog->objectName().isEmpty()) |
46 | NewProjectUnitDialog->setObjectName(QString::fromUtf8("NewProjectUnitDialog" )); |
47 | NewProjectUnitDialog->resize(547, 250); |
48 | gridLayout = new QGridLayout(NewProjectUnitDialog); |
49 | gridLayout->setObjectName(QString::fromUtf8("gridLayout" )); |
50 | label_2 = new QLabel(NewProjectUnitDialog); |
51 | label_2->setObjectName(QString::fromUtf8("label_2" )); |
52 | |
53 | gridLayout->addWidget(label_2, 1, 0, 1, 1); |
54 | |
55 | txtFolder = new QLineEdit(NewProjectUnitDialog); |
56 | txtFolder->setObjectName(QString::fromUtf8("txtFolder" )); |
57 | txtFolder->setReadOnly(true); |
58 | |
59 | gridLayout->addWidget(txtFolder, 1, 1, 1, 1); |
60 | |
61 | label = new QLabel(NewProjectUnitDialog); |
62 | label->setObjectName(QString::fromUtf8("label" )); |
63 | |
64 | gridLayout->addWidget(label, 0, 0, 1, 1); |
65 | |
66 | btnBrowse = new QToolButton(NewProjectUnitDialog); |
67 | btnBrowse->setObjectName(QString::fromUtf8("btnBrowse" )); |
68 | QIcon icon; |
69 | icon.addFile(QString::fromUtf8(":/icons/images/newlook24/053-open.png" ), QSize(), QIcon::Normal, QIcon::Off); |
70 | btnBrowse->setIcon(icon); |
71 | |
72 | gridLayout->addWidget(btnBrowse, 1, 2, 1, 1); |
73 | |
74 | txtFilename = new QLineEdit(NewProjectUnitDialog); |
75 | txtFilename->setObjectName(QString::fromUtf8("txtFilename" )); |
76 | |
77 | gridLayout->addWidget(txtFilename, 0, 1, 1, 2); |
78 | |
79 | widget = new QWidget(NewProjectUnitDialog); |
80 | widget->setObjectName(QString::fromUtf8("widget" )); |
81 | horizontalLayout = new QHBoxLayout(widget); |
82 | horizontalLayout->setObjectName(QString::fromUtf8("horizontalLayout" )); |
83 | horizontalLayout->setContentsMargins(0, 0, 0, 0); |
84 | horizontalSpacer = new QSpacerItem(40, 20, QSizePolicy::Expanding, QSizePolicy::Minimum); |
85 | |
86 | horizontalLayout->addItem(horizontalSpacer); |
87 | |
88 | btnOk = new QPushButton(widget); |
89 | btnOk->setObjectName(QString::fromUtf8("btnOk" )); |
90 | |
91 | horizontalLayout->addWidget(btnOk); |
92 | |
93 | btnCancel = new QPushButton(widget); |
94 | btnCancel->setObjectName(QString::fromUtf8("btnCancel" )); |
95 | |
96 | horizontalLayout->addWidget(btnCancel); |
97 | |
98 | |
99 | gridLayout->addWidget(widget, 3, 0, 1, 3); |
100 | |
101 | verticalSpacer = new QSpacerItem(20, 40, QSizePolicy::Minimum, QSizePolicy::Expanding); |
102 | |
103 | gridLayout->addItem(verticalSpacer, 2, 0, 1, 1); |
104 | |
105 | |
106 | retranslateUi(NewProjectUnitDialog); |
107 | |
108 | QMetaObject::connectSlotsByName(NewProjectUnitDialog); |
109 | } // setupUi |
110 | |
111 | void retranslateUi(QDialog *NewProjectUnitDialog) |
112 | { |
113 | NewProjectUnitDialog->setWindowTitle(QCoreApplication::translate("NewProjectUnitDialog" , "New Project Unit" , nullptr)); |
114 | label_2->setText(QCoreApplication::translate("NewProjectUnitDialog" , "Folder" , nullptr)); |
115 | label->setText(QCoreApplication::translate("NewProjectUnitDialog" , "Filename" , nullptr)); |
116 | #if QT_CONFIG(tooltip) |
117 | btnBrowse->setToolTip(QCoreApplication::translate("NewProjectUnitDialog" , "Browse" , nullptr)); |
118 | #endif // QT_CONFIG(tooltip) |
119 | btnBrowse->setText(QCoreApplication::translate("NewProjectUnitDialog" , "Browse" , nullptr)); |
120 | btnOk->setText(QCoreApplication::translate("NewProjectUnitDialog" , "Ok" , nullptr)); |
121 | btnCancel->setText(QCoreApplication::translate("NewProjectUnitDialog" , "Cancel" , nullptr)); |
122 | } // retranslateUi |
123 | |
124 | }; |
125 | |
126 | namespace Ui { |
127 | class NewProjectUnitDialog: public Ui_NewProjectUnitDialog {}; |
128 | } // namespace Ui |
129 | |
130 | QT_END_NAMESPACE |
131 | |
132 | #endif // UI_NEWPROJECTUNITDIALOG_H |
133 | |