1 | /******************************************************************************** |
---|---|
2 | ** Form generated from reading UI file 'dialog.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_DIALOG_H |
10 | #define UI_DIALOG_H |
11 | |
12 | #include <QtCore/QVariant> |
13 | #include <QtWidgets/QApplication> |
14 | #include <QtWidgets/QDialog> |
15 | #include <QtWidgets/QLabel> |
16 | #include <QtWidgets/QLineEdit> |
17 | #include <QtWidgets/QVBoxLayout> |
18 | |
19 | QT_BEGIN_NAMESPACE |
20 | |
21 | class Ui_Dialog |
22 | { |
23 | public: |
24 | QVBoxLayout *verticalLayout; |
25 | QLabel *txtPrompt; |
26 | QLineEdit *txtInput; |
27 | |
28 | void setupUi(QDialog *Dialog) |
29 | { |
30 | if (Dialog->objectName().isEmpty()) |
31 | Dialog->setObjectName(QString::fromUtf8("Dialog")); |
32 | Dialog->resize(417, 110); |
33 | verticalLayout = new QVBoxLayout(Dialog); |
34 | verticalLayout->setObjectName(QString::fromUtf8("verticalLayout")); |
35 | txtPrompt = new QLabel(Dialog); |
36 | txtPrompt->setObjectName(QString::fromUtf8("txtPrompt")); |
37 | |
38 | verticalLayout->addWidget(txtPrompt); |
39 | |
40 | txtInput = new QLineEdit(Dialog); |
41 | txtInput->setObjectName(QString::fromUtf8("txtInput")); |
42 | |
43 | verticalLayout->addWidget(txtInput); |
44 | |
45 | |
46 | retranslateUi(Dialog); |
47 | |
48 | QMetaObject::connectSlotsByName(Dialog); |
49 | } // setupUi |
50 | |
51 | void retranslateUi(QDialog *Dialog) |
52 | { |
53 | Dialog->setWindowTitle(QCoreApplication::translate("Dialog", "Git Ask Pass", nullptr)); |
54 | txtPrompt->setText(QCoreApplication::translate("Dialog", "TextLabel", nullptr)); |
55 | } // retranslateUi |
56 | |
57 | }; |
58 | |
59 | namespace Ui { |
60 | class Dialog: public Ui_Dialog {}; |
61 | } // namespace Ui |
62 | |
63 | QT_END_NAMESPACE |
64 | |
65 | #endif // UI_DIALOG_H |
66 |