-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathui_itemmaker.h
124 lines (94 loc) · 3.94 KB
/
ui_itemmaker.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
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
/********************************************************************************
** Form generated from reading UI file 'itemmaker.ui'
**
** Created by: Qt User Interface Compiler version 5.6.0
**
** WARNING! All changes made in this file will be lost when recompiling UI file!
********************************************************************************/
#ifndef UI_ITEMMAKER_H
#define UI_ITEMMAKER_H
#include <QtCore/QVariant>
#include <QtWidgets/QAction>
#include <QtWidgets/QApplication>
#include <QtWidgets/QButtonGroup>
#include <QtWidgets/QDialog>
#include <QtWidgets/QDialogButtonBox>
#include <QtWidgets/QHBoxLayout>
#include <QtWidgets/QHeaderView>
#include <QtWidgets/QLabel>
#include <QtWidgets/QLineEdit>
#include <QtWidgets/QPushButton>
#include <QtWidgets/QVBoxLayout>
QT_BEGIN_NAMESPACE
class Ui_ItemMaker
{
public:
QVBoxLayout *verticalLayout_2;
QVBoxLayout *verticalLayout;
QHBoxLayout *horizontalLayout_2;
QLabel *label;
QLineEdit *URLInput;
QPushButton *browseButton;
QHBoxLayout *horizontalLayout_3;
QLabel *label_2;
QLineEdit *titleInput;
QDialogButtonBox *buttonBox;
void setupUi(QDialog *ItemMaker)
{
if (ItemMaker->objectName().isEmpty())
ItemMaker->setObjectName(QStringLiteral("ItemMaker"));
ItemMaker->resize(323, 102);
verticalLayout_2 = new QVBoxLayout(ItemMaker);
verticalLayout_2->setObjectName(QStringLiteral("verticalLayout_2"));
verticalLayout = new QVBoxLayout();
verticalLayout->setObjectName(QStringLiteral("verticalLayout"));
horizontalLayout_2 = new QHBoxLayout();
horizontalLayout_2->setObjectName(QStringLiteral("horizontalLayout_2"));
label = new QLabel(ItemMaker);
label->setObjectName(QStringLiteral("label"));
QFont font;
font.setBold(true);
font.setWeight(75);
label->setFont(font);
horizontalLayout_2->addWidget(label);
URLInput = new QLineEdit(ItemMaker);
URLInput->setObjectName(QStringLiteral("URLInput"));
horizontalLayout_2->addWidget(URLInput);
browseButton = new QPushButton(ItemMaker);
browseButton->setObjectName(QStringLiteral("browseButton"));
horizontalLayout_2->addWidget(browseButton);
verticalLayout->addLayout(horizontalLayout_2);
horizontalLayout_3 = new QHBoxLayout();
horizontalLayout_3->setObjectName(QStringLiteral("horizontalLayout_3"));
label_2 = new QLabel(ItemMaker);
label_2->setObjectName(QStringLiteral("label_2"));
label_2->setFont(font);
horizontalLayout_3->addWidget(label_2);
titleInput = new QLineEdit(ItemMaker);
titleInput->setObjectName(QStringLiteral("titleInput"));
horizontalLayout_3->addWidget(titleInput);
verticalLayout->addLayout(horizontalLayout_3);
verticalLayout_2->addLayout(verticalLayout);
buttonBox = new QDialogButtonBox(ItemMaker);
buttonBox->setObjectName(QStringLiteral("buttonBox"));
buttonBox->setOrientation(Qt::Horizontal);
buttonBox->setStandardButtons(QDialogButtonBox::Cancel|QDialogButtonBox::Ok);
verticalLayout_2->addWidget(buttonBox);
retranslateUi(ItemMaker);
QObject::connect(buttonBox, SIGNAL(accepted()), ItemMaker, SLOT(accept()));
QObject::connect(buttonBox, SIGNAL(rejected()), ItemMaker, SLOT(reject()));
QMetaObject::connectSlotsByName(ItemMaker);
} // setupUi
void retranslateUi(QDialog *ItemMaker)
{
ItemMaker->setWindowTitle(QApplication::translate("ItemMaker", "Dialog", 0));
label->setText(QApplication::translate("ItemMaker", "Picture", 0));
browseButton->setText(QApplication::translate("ItemMaker", "Browse", 0));
label_2->setText(QApplication::translate("ItemMaker", "Title", 0));
} // retranslateUi
};
namespace Ui {
class ItemMaker: public Ui_ItemMaker {};
} // namespace Ui
QT_END_NAMESPACE
#endif // UI_ITEMMAKER_H