1 | /******************************************************************************** |
2 | ** Form generated from reading UI file 'GitConfigDlg.ui' |
3 | ** |
4 | ** Created by: Qt User Interface Compiler version 5.15.7 |
5 | ** |
6 | ** WARNING! All changes made in this file will be lost when recompiling UI file! |
7 | ********************************************************************************/ |
8 | |
9 | #ifndef UI_GITCONFIGDLG_H |
10 | #define UI_GITCONFIGDLG_H |
11 | |
12 | #include <QtCore/QVariant> |
13 | #include <QtWidgets/QApplication> |
14 | #include <QtWidgets/QDialog> |
15 | #include <QtWidgets/QDialogButtonBox> |
16 | #include <QtWidgets/QLineEdit> |
17 | #include <QtWidgets/QVBoxLayout> |
18 | #include "CheckBox.h" |
19 | |
20 | QT_BEGIN_NAMESPACE |
21 | |
22 | class Ui_GitConfigDlg |
23 | { |
24 | public: |
25 | QVBoxLayout *verticalLayout; |
26 | QLineEdit *leGlobalName; |
27 | QLineEdit *leGlobalEmail; |
28 | CheckBox *checkBox; |
29 | QLineEdit *leLocalName; |
30 | QLineEdit *leLocalEmail; |
31 | QDialogButtonBox *buttonBox; |
32 | |
33 | void setupUi(QDialog *GitConfigDlg) |
34 | { |
35 | if (GitConfigDlg->objectName().isEmpty()) |
36 | GitConfigDlg->setObjectName(QString::fromUtf8("GitConfigDlg" )); |
37 | GitConfigDlg->resize(400, 300); |
38 | verticalLayout = new QVBoxLayout(GitConfigDlg); |
39 | verticalLayout->setSpacing(10); |
40 | verticalLayout->setObjectName(QString::fromUtf8("verticalLayout" )); |
41 | verticalLayout->setContentsMargins(10, 10, 10, 10); |
42 | leGlobalName = new QLineEdit(GitConfigDlg); |
43 | leGlobalName->setObjectName(QString::fromUtf8("leGlobalName" )); |
44 | |
45 | verticalLayout->addWidget(leGlobalName); |
46 | |
47 | leGlobalEmail = new QLineEdit(GitConfigDlg); |
48 | leGlobalEmail->setObjectName(QString::fromUtf8("leGlobalEmail" )); |
49 | |
50 | verticalLayout->addWidget(leGlobalEmail); |
51 | |
52 | checkBox = new CheckBox(GitConfigDlg); |
53 | checkBox->setObjectName(QString::fromUtf8("checkBox" )); |
54 | |
55 | verticalLayout->addWidget(checkBox); |
56 | |
57 | leLocalName = new QLineEdit(GitConfigDlg); |
58 | leLocalName->setObjectName(QString::fromUtf8("leLocalName" )); |
59 | |
60 | verticalLayout->addWidget(leLocalName); |
61 | |
62 | leLocalEmail = new QLineEdit(GitConfigDlg); |
63 | leLocalEmail->setObjectName(QString::fromUtf8("leLocalEmail" )); |
64 | |
65 | verticalLayout->addWidget(leLocalEmail); |
66 | |
67 | buttonBox = new QDialogButtonBox(GitConfigDlg); |
68 | buttonBox->setObjectName(QString::fromUtf8("buttonBox" )); |
69 | buttonBox->setOrientation(Qt::Horizontal); |
70 | buttonBox->setStandardButtons(QDialogButtonBox::Ok); |
71 | |
72 | verticalLayout->addWidget(buttonBox); |
73 | |
74 | |
75 | retranslateUi(GitConfigDlg); |
76 | |
77 | QMetaObject::connectSlotsByName(GitConfigDlg); |
78 | } // setupUi |
79 | |
80 | void retranslateUi(QDialog *GitConfigDlg) |
81 | { |
82 | GitConfigDlg->setWindowTitle(QCoreApplication::translate("GitConfigDlg" , "Git Config" , nullptr)); |
83 | leGlobalName->setPlaceholderText(QCoreApplication::translate("GitConfigDlg" , "Global Git name" , nullptr)); |
84 | leGlobalEmail->setPlaceholderText(QCoreApplication::translate("GitConfigDlg" , "Global Git email" , nullptr)); |
85 | checkBox->setText(QCoreApplication::translate("GitConfigDlg" , "User global settings" , nullptr)); |
86 | leLocalName->setPlaceholderText(QCoreApplication::translate("GitConfigDlg" , "Local Git name" , nullptr)); |
87 | leLocalEmail->setPlaceholderText(QCoreApplication::translate("GitConfigDlg" , "Local Git email" , nullptr)); |
88 | } // retranslateUi |
89 | |
90 | }; |
91 | |
92 | namespace Ui { |
93 | class GitConfigDlg: public Ui_GitConfigDlg {}; |
94 | } // namespace Ui |
95 | |
96 | QT_END_NAMESPACE |
97 | |
98 | #endif // UI_GITCONFIGDLG_H |
99 | |