| 1 | /******************************************************************************** |
| 2 | ** Form generated from reading UI file 'CredentialsDlg.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_CREDENTIALSDLG_H |
| 10 | #define UI_CREDENTIALSDLG_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 | |
| 19 | QT_BEGIN_NAMESPACE |
| 20 | |
| 21 | class Ui_CredentialsDlg |
| 22 | { |
| 23 | public: |
| 24 | QVBoxLayout *verticalLayout; |
| 25 | QLineEdit *leUser; |
| 26 | QLineEdit *lePass; |
| 27 | QDialogButtonBox *buttonBox; |
| 28 | |
| 29 | void setupUi(QDialog *CredentialsDlg) |
| 30 | { |
| 31 | if (CredentialsDlg->objectName().isEmpty()) |
| 32 | CredentialsDlg->setObjectName(QString::fromUtf8("CredentialsDlg" )); |
| 33 | CredentialsDlg->resize(400, 125); |
| 34 | CredentialsDlg->setMinimumSize(QSize(400, 125)); |
| 35 | CredentialsDlg->setMaximumSize(QSize(400, 125)); |
| 36 | verticalLayout = new QVBoxLayout(CredentialsDlg); |
| 37 | verticalLayout->setSpacing(10); |
| 38 | verticalLayout->setObjectName(QString::fromUtf8("verticalLayout" )); |
| 39 | verticalLayout->setContentsMargins(10, 10, 10, 10); |
| 40 | leUser = new QLineEdit(CredentialsDlg); |
| 41 | leUser->setObjectName(QString::fromUtf8("leUser" )); |
| 42 | |
| 43 | verticalLayout->addWidget(leUser); |
| 44 | |
| 45 | lePass = new QLineEdit(CredentialsDlg); |
| 46 | lePass->setObjectName(QString::fromUtf8("lePass" )); |
| 47 | |
| 48 | verticalLayout->addWidget(lePass); |
| 49 | |
| 50 | buttonBox = new QDialogButtonBox(CredentialsDlg); |
| 51 | buttonBox->setObjectName(QString::fromUtf8("buttonBox" )); |
| 52 | buttonBox->setOrientation(Qt::Horizontal); |
| 53 | buttonBox->setStandardButtons(QDialogButtonBox::Cancel|QDialogButtonBox::Ok); |
| 54 | |
| 55 | verticalLayout->addWidget(buttonBox); |
| 56 | |
| 57 | QWidget::setTabOrder(leUser, lePass); |
| 58 | |
| 59 | retranslateUi(CredentialsDlg); |
| 60 | QObject::connect(buttonBox, SIGNAL(accepted()), CredentialsDlg, SLOT(accept())); |
| 61 | QObject::connect(buttonBox, SIGNAL(rejected()), CredentialsDlg, SLOT(reject())); |
| 62 | |
| 63 | QMetaObject::connectSlotsByName(CredentialsDlg); |
| 64 | } // setupUi |
| 65 | |
| 66 | void retranslateUi(QDialog *CredentialsDlg) |
| 67 | { |
| 68 | CredentialsDlg->setWindowTitle(QCoreApplication::translate("CredentialsDlg" , "Credentials" , nullptr)); |
| 69 | } // retranslateUi |
| 70 | |
| 71 | }; |
| 72 | |
| 73 | namespace Ui { |
| 74 | class CredentialsDlg: public Ui_CredentialsDlg {}; |
| 75 | } // namespace Ui |
| 76 | |
| 77 | QT_END_NAMESPACE |
| 78 | |
| 79 | #endif // UI_CREDENTIALSDLG_H |
| 80 | |