| 1 | /******************************************************************************** |
| 2 | ** Form generated from reading UI file 'gituserconfigdialog.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_GITUSERCONFIGDIALOG_H |
| 10 | #define UI_GITUSERCONFIGDIALOG_H |
| 11 | |
| 12 | #include <QtCore/QVariant> |
| 13 | #include <QtWidgets/QApplication> |
| 14 | #include <QtWidgets/QDialog> |
| 15 | #include <QtWidgets/QGridLayout> |
| 16 | #include <QtWidgets/QHBoxLayout> |
| 17 | #include <QtWidgets/QLabel> |
| 18 | #include <QtWidgets/QLineEdit> |
| 19 | #include <QtWidgets/QPushButton> |
| 20 | #include <QtWidgets/QSpacerItem> |
| 21 | #include <QtWidgets/QWidget> |
| 22 | |
| 23 | QT_BEGIN_NAMESPACE |
| 24 | |
| 25 | class Ui_GitUserConfigDialog |
| 26 | { |
| 27 | public: |
| 28 | QGridLayout *gridLayout; |
| 29 | QLineEdit *txtUserEmail; |
| 30 | QLabel *label_2; |
| 31 | QLineEdit *txtUserName; |
| 32 | QWidget *widget; |
| 33 | QHBoxLayout *horizontalLayout; |
| 34 | QSpacerItem *horizontalSpacer; |
| 35 | QPushButton *btnOk; |
| 36 | QPushButton *btnCancel; |
| 37 | QSpacerItem *verticalSpacer; |
| 38 | QLabel *label; |
| 39 | QLabel *label_3; |
| 40 | |
| 41 | void setupUi(QDialog *GitUserConfigDialog) |
| 42 | { |
| 43 | if (GitUserConfigDialog->objectName().isEmpty()) |
| 44 | GitUserConfigDialog->setObjectName(QString::fromUtf8("GitUserConfigDialog" )); |
| 45 | GitUserConfigDialog->resize(429, 299); |
| 46 | gridLayout = new QGridLayout(GitUserConfigDialog); |
| 47 | gridLayout->setObjectName(QString::fromUtf8("gridLayout" )); |
| 48 | txtUserEmail = new QLineEdit(GitUserConfigDialog); |
| 49 | txtUserEmail->setObjectName(QString::fromUtf8("txtUserEmail" )); |
| 50 | |
| 51 | gridLayout->addWidget(txtUserEmail, 3, 1, 1, 1); |
| 52 | |
| 53 | label_2 = new QLabel(GitUserConfigDialog); |
| 54 | label_2->setObjectName(QString::fromUtf8("label_2" )); |
| 55 | |
| 56 | gridLayout->addWidget(label_2, 3, 0, 1, 1); |
| 57 | |
| 58 | txtUserName = new QLineEdit(GitUserConfigDialog); |
| 59 | txtUserName->setObjectName(QString::fromUtf8("txtUserName" )); |
| 60 | |
| 61 | gridLayout->addWidget(txtUserName, 1, 1, 2, 1); |
| 62 | |
| 63 | widget = new QWidget(GitUserConfigDialog); |
| 64 | widget->setObjectName(QString::fromUtf8("widget" )); |
| 65 | horizontalLayout = new QHBoxLayout(widget); |
| 66 | horizontalLayout->setObjectName(QString::fromUtf8("horizontalLayout" )); |
| 67 | horizontalSpacer = new QSpacerItem(40, 20, QSizePolicy::Expanding, QSizePolicy::Minimum); |
| 68 | |
| 69 | horizontalLayout->addItem(horizontalSpacer); |
| 70 | |
| 71 | btnOk = new QPushButton(widget); |
| 72 | btnOk->setObjectName(QString::fromUtf8("btnOk" )); |
| 73 | |
| 74 | horizontalLayout->addWidget(btnOk); |
| 75 | |
| 76 | btnCancel = new QPushButton(widget); |
| 77 | btnCancel->setObjectName(QString::fromUtf8("btnCancel" )); |
| 78 | |
| 79 | horizontalLayout->addWidget(btnCancel); |
| 80 | |
| 81 | |
| 82 | gridLayout->addWidget(widget, 6, 0, 1, 2); |
| 83 | |
| 84 | verticalSpacer = new QSpacerItem(20, 40, QSizePolicy::Minimum, QSizePolicy::Expanding); |
| 85 | |
| 86 | gridLayout->addItem(verticalSpacer, 5, 0, 1, 1); |
| 87 | |
| 88 | label = new QLabel(GitUserConfigDialog); |
| 89 | label->setObjectName(QString::fromUtf8("label" )); |
| 90 | |
| 91 | gridLayout->addWidget(label, 1, 0, 1, 1); |
| 92 | |
| 93 | label_3 = new QLabel(GitUserConfigDialog); |
| 94 | label_3->setObjectName(QString::fromUtf8("label_3" )); |
| 95 | label_3->setWordWrap(true); |
| 96 | |
| 97 | gridLayout->addWidget(label_3, 0, 0, 1, 2); |
| 98 | |
| 99 | |
| 100 | retranslateUi(GitUserConfigDialog); |
| 101 | |
| 102 | QMetaObject::connectSlotsByName(GitUserConfigDialog); |
| 103 | } // setupUi |
| 104 | |
| 105 | void retranslateUi(QDialog *GitUserConfigDialog) |
| 106 | { |
| 107 | GitUserConfigDialog->setWindowTitle(QCoreApplication::translate("GitUserConfigDialog" , "Fill User Info" , nullptr)); |
| 108 | label_2->setText(QCoreApplication::translate("GitUserConfigDialog" , "User Email:" , nullptr)); |
| 109 | btnOk->setText(QCoreApplication::translate("GitUserConfigDialog" , "Ok" , nullptr)); |
| 110 | btnCancel->setText(QCoreApplication::translate("GitUserConfigDialog" , "Cancel" , nullptr)); |
| 111 | label->setText(QCoreApplication::translate("GitUserConfigDialog" , "User Name:" , nullptr)); |
| 112 | label_3->setText(QCoreApplication::translate("GitUserConfigDialog" , "Git needs the following info to commit\357\274\232" , nullptr)); |
| 113 | } // retranslateUi |
| 114 | |
| 115 | }; |
| 116 | |
| 117 | namespace Ui { |
| 118 | class GitUserConfigDialog: public Ui_GitUserConfigDialog {}; |
| 119 | } // namespace Ui |
| 120 | |
| 121 | QT_END_NAMESPACE |
| 122 | |
| 123 | #endif // UI_GITUSERCONFIGDIALOG_H |
| 124 | |