This repository has been archived by the owner on May 27, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
ui_developerdialog.h
112 lines (88 loc) · 4.26 KB
/
ui_developerdialog.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
/********************************************************************************
** Form generated from reading UI file 'developerdialog.ui'
**
** Created by: Qt User Interface Compiler version 6.2.0
**
** WARNING! All changes made in this file will be lost when recompiling UI file!
********************************************************************************/
#ifndef UI_DEVELOPERDIALOG_H
#define UI_DEVELOPERDIALOG_H
#include <QtCore/QVariant>
#include <QtGui/QIcon>
#include <QtWidgets/QAbstractButton>
#include <QtWidgets/QApplication>
#include <QtWidgets/QDialog>
#include <QtWidgets/QDialogButtonBox>
#include <QtWidgets/QGridLayout>
#include <QtWidgets/QGroupBox>
#include <QtWidgets/QLabel>
#include <QtWidgets/QLineEdit>
QT_BEGIN_NAMESPACE
class Ui_DeveloperDialog
{
public:
QGridLayout *gridLayout_2;
QGroupBox *groupBox;
QGridLayout *gridLayout;
QLabel *label;
QLineEdit *name;
QLabel *label_2;
QLineEdit *password;
QDialogButtonBox *buttonBox;
void setupUi(QDialog *DeveloperDialog)
{
if (DeveloperDialog->objectName().isEmpty())
DeveloperDialog->setObjectName(QString::fromUtf8("DeveloperDialog"));
DeveloperDialog->resize(400, 180);
QIcon icon;
icon.addFile(QString::fromUtf8(":/pic/icon/LOGO.png"), QSize(), QIcon::Normal, QIcon::Off);
DeveloperDialog->setWindowIcon(icon);
gridLayout_2 = new QGridLayout(DeveloperDialog);
gridLayout_2->setObjectName(QString::fromUtf8("gridLayout_2"));
groupBox = new QGroupBox(DeveloperDialog);
groupBox->setObjectName(QString::fromUtf8("groupBox"));
gridLayout = new QGridLayout(groupBox);
gridLayout->setObjectName(QString::fromUtf8("gridLayout"));
label = new QLabel(groupBox);
label->setObjectName(QString::fromUtf8("label"));
gridLayout->addWidget(label, 0, 0, 1, 1);
name = new QLineEdit(groupBox);
name->setObjectName(QString::fromUtf8("name"));
gridLayout->addWidget(name, 0, 1, 1, 1);
label_2 = new QLabel(groupBox);
label_2->setObjectName(QString::fromUtf8("label_2"));
gridLayout->addWidget(label_2, 1, 0, 1, 1);
password = new QLineEdit(groupBox);
password->setObjectName(QString::fromUtf8("password"));
password->setEchoMode(QLineEdit::Password);
gridLayout->addWidget(password, 1, 1, 1, 1);
gridLayout_2->addWidget(groupBox, 0, 0, 1, 1);
buttonBox = new QDialogButtonBox(DeveloperDialog);
buttonBox->setObjectName(QString::fromUtf8("buttonBox"));
buttonBox->setOrientation(Qt::Horizontal);
buttonBox->setStandardButtons(QDialogButtonBox::Cancel|QDialogButtonBox::Ok);
gridLayout_2->addWidget(buttonBox, 1, 0, 1, 1);
#if QT_CONFIG(shortcut)
label->setBuddy(name);
label_2->setBuddy(password);
#endif // QT_CONFIG(shortcut)
retranslateUi(DeveloperDialog);
QObject::connect(buttonBox, &QDialogButtonBox::accepted, DeveloperDialog, qOverload<>(&QDialog::accept));
QObject::connect(buttonBox, &QDialogButtonBox::rejected, DeveloperDialog, qOverload<>(&QDialog::reject));
QMetaObject::connectSlotsByName(DeveloperDialog);
} // setupUi
void retranslateUi(QDialog *DeveloperDialog)
{
DeveloperDialog->setWindowTitle(QCoreApplication::translate("DeveloperDialog", "\350\256\244\350\257\201\345\274\200\345\217\221\350\200\205\350\265\204\346\240\274", nullptr));
groupBox->setTitle(QCoreApplication::translate("DeveloperDialog", "\345\274\200\345\217\221\350\200\205\347\224\250\346\210\267\347\231\273\345\275\225", nullptr));
label->setText(QCoreApplication::translate("DeveloperDialog", "\347\224\250\346\210\267", nullptr));
name->setPlaceholderText(QCoreApplication::translate("DeveloperDialog", "\350\276\223\345\205\245\347\224\250\346\210\267\345\220\215", nullptr));
label_2->setText(QCoreApplication::translate("DeveloperDialog", "\345\257\206\347\240\201", nullptr));
password->setPlaceholderText(QCoreApplication::translate("DeveloperDialog", "\350\276\223\345\205\245\345\257\206\347\240\201", nullptr));
} // retranslateUi
};
namespace Ui {
class DeveloperDialog: public Ui_DeveloperDialog {};
} // namespace Ui
QT_END_NAMESPACE
#endif // UI_DEVELOPERDIALOG_H