9 #ifndef UI_CREDENTIALDIALOG_H 10 #define UI_CREDENTIALDIALOG_H 12 #include <QtCore/QVariant> 13 #include <QtWidgets/QApplication> 14 #include <QtWidgets/QDialog> 15 #include <QtWidgets/QDialogButtonBox> 16 #include <QtWidgets/QFormLayout> 17 #include <QtWidgets/QLabel> 18 #include <QtWidgets/QLineEdit> 19 #include <QtWidgets/QVBoxLayout> 20 #include <QtWidgets/QWidget> 39 if (CredentialDialog->objectName().isEmpty())
40 CredentialDialog->setObjectName(QString::fromUtf8(
"CredentialDialog"));
41 CredentialDialog->setWindowModality(Qt::ApplicationModal);
42 CredentialDialog->resize(282, 130);
43 CredentialDialog->setModal(
true);
45 verticalLayout->setObjectName(QString::fromUtf8(
"verticalLayout"));
46 label_3 =
new QLabel(CredentialDialog);
47 label_3->setObjectName(QString::fromUtf8(
"label_3"));
48 label_3->setFocusPolicy(Qt::TabFocus);
52 widget =
new QWidget(CredentialDialog);
53 widget->setObjectName(QString::fromUtf8(
"widget"));
55 formLayout_2->setObjectName(QString::fromUtf8(
"formLayout_2"));
56 formLayout_2->setFieldGrowthPolicy(QFormLayout::AllNonFixedFieldsGrow);
58 label_2->setObjectName(QString::fromUtf8(
"label_2"));
59 label_2->setFocusPolicy(Qt::TabFocus);
64 password->setObjectName(QString::fromUtf8(
"password"));
65 password->setEchoMode(QLineEdit::Password);
70 label->setObjectName(QString::fromUtf8(
"label"));
71 label->setFocusPolicy(Qt::TabFocus);
76 user->setObjectName(QString::fromUtf8(
"user"));
83 buttonBox =
new QDialogButtonBox(CredentialDialog);
84 buttonBox->setObjectName(QString::fromUtf8(
"buttonBox"));
85 buttonBox->setLayoutDirection(Qt::LeftToRight);
86 buttonBox->setStandardButtons(QDialogButtonBox::Cancel|QDialogButtonBox::Ok);
95 QMetaObject::connectSlotsByName(CredentialDialog);
100 CredentialDialog->setWindowTitle(QApplication::translate(
"CredentialDialog",
"Proxy security",
nullptr));
101 #ifndef QT_NO_ACCESSIBILITY 102 label_3->setAccessibleName(QString());
103 #endif // QT_NO_ACCESSIBILITY 104 label_3->setText(QApplication::translate(
"CredentialDialog",
"Proxy requires credentials:",
nullptr));
105 #ifndef QT_NO_ACCESSIBILITY 106 label_2->setAccessibleName(QApplication::translate(
"CredentialDialog",
"Proxy credential password",
nullptr));
107 #endif // QT_NO_ACCESSIBILITY 108 label_2->setText(QApplication::translate(
"CredentialDialog",
"Password:",
nullptr));
109 #ifndef QT_NO_ACCESSIBILITY 110 label->setAccessibleName(QApplication::translate(
"CredentialDialog",
"Proxy credential username",
nullptr));
111 #endif // QT_NO_ACCESSIBILITY 112 label->setText(QApplication::translate(
"CredentialDialog",
"Username:",
nullptr));
113 #ifndef QT_NO_ACCESSIBILITY 115 #endif // QT_NO_ACCESSIBILITY 126 #endif // UI_CREDENTIALDIALOG_H Dialog to display information about the application.
Definition: ui_AboutDialog.h:192
QFormLayout * formLayout_2
Definition: ui_CredentialDialog.h:30
QVBoxLayout * verticalLayout
Definition: ui_CredentialDialog.h:27
QLabel * label
Definition: ui_CredentialDialog.h:33
QLabel * label_3
Definition: ui_CredentialDialog.h:28
void retranslateUi(QDialog *CredentialDialog)
Definition: ui_CredentialDialog.h:98
Definition: ui_CredentialDialog.h:121
QLineEdit * password
Definition: ui_CredentialDialog.h:32
QDialogButtonBox * buttonBox
Definition: ui_CredentialDialog.h:35
void setupUi(QDialog *CredentialDialog)
Definition: ui_CredentialDialog.h:37
QLabel * label_2
Definition: ui_CredentialDialog.h:31
QLineEdit * user
Definition: ui_CredentialDialog.h:34
QWidget * widget
Definition: ui_CredentialDialog.h:29
Definition: ui_CredentialDialog.h:24