9 #ifndef UI_PASSWORDDIALOG_H 10 #define UI_PASSWORDDIALOG_H 12 #include <QtCore/QVariant> 13 #include <QtWidgets/QAction> 14 #include <QtWidgets/QApplication> 15 #include <QtWidgets/QButtonGroup> 16 #include <QtWidgets/QCheckBox> 17 #include <QtWidgets/QDialog> 18 #include <QtWidgets/QHeaderView> 19 #include <QtWidgets/QLabel> 20 #include <QtWidgets/QLineEdit> 21 #include <QtWidgets/QPushButton> 35 if (PasswordDialog->objectName().isEmpty())
36 PasswordDialog->setObjectName(QStringLiteral(
"PasswordDialog"));
37 PasswordDialog->resize(385, 178);
38 passwordPromptLabel =
new QLabel(PasswordDialog);
39 passwordPromptLabel->setObjectName(QStringLiteral(
"passwordPromptLabel"));
40 passwordPromptLabel->setGeometry(QRect(10, 30, 381, 20));
41 passwordEdit =
new QLineEdit(PasswordDialog);
42 passwordEdit->setObjectName(QStringLiteral(
"passwordEdit"));
43 passwordEdit->setGeometry(QRect(10, 70, 361, 27));
44 okButton =
new QPushButton(PasswordDialog);
45 okButton->setObjectName(QStringLiteral(
"okButton"));
46 okButton->setGeometry(QRect(260, 120, 109, 28));
47 echoPwdCheckBox =
new QCheckBox(PasswordDialog);
48 echoPwdCheckBox->setObjectName(QStringLiteral(
"echoPwdCheckBox"));
49 echoPwdCheckBox->setGeometry(QRect(10, 110, 241, 20));
53 QMetaObject::connectSlotsByName(PasswordDialog);
58 PasswordDialog->setWindowTitle(QApplication::translate(
"PasswordDialog",
"Password required", Q_NULLPTR));
60 PasswordDialog->setToolTip(QApplication::translate(
"PasswordDialog",
"Should you forget this word, there is no easy way to recover any of your content", Q_NULLPTR));
61 #endif // QT_NO_TOOLTIP 62 passwordPromptLabel->setText(QApplication::translate(
"PasswordDialog",
"Enter password for protection of your messages", Q_NULLPTR));
64 passwordEdit->setToolTip(QApplication::translate(
"PasswordDialog",
"If you forget this word, there is no simple way to recover your contents", Q_NULLPTR));
65 #endif // QT_NO_TOOLTIP 66 okButton->setText(QApplication::translate(
"PasswordDialog",
"OK", Q_NULLPTR));
67 echoPwdCheckBox->setText(QApplication::translate(
"PasswordDialog",
"Show password", Q_NULLPTR));
78 #endif // UI_PASSWORDDIALOG_H Definition: ui_passwordDialog.h:73
Definition: ui_aboutDialog.h:161
Definition: ui_passwordDialog.h:25
QCheckBox * echoPwdCheckBox
Definition: ui_passwordDialog.h:31
QPushButton * okButton
Definition: ui_passwordDialog.h:30
void setupUi(QDialog *PasswordDialog)
Definition: ui_passwordDialog.h:33
QLabel * passwordPromptLabel
Definition: ui_passwordDialog.h:28
QLineEdit * passwordEdit
Definition: ui_passwordDialog.h:29
void retranslateUi(QDialog *PasswordDialog)
Definition: ui_passwordDialog.h:56