mirror of
https://github.com/crystalidea/qt6windows7.git
synced 2024-11-24 04:20:46 +08:00
118 lines
4.1 KiB
C
118 lines
4.1 KiB
C
|
/********************************************************************************
|
||
|
** Form generated from reading UI file 'passworddialog.ui'
|
||
|
**
|
||
|
** Created by: Qt User Interface Compiler version 6.0.0
|
||
|
**
|
||
|
** WARNING! All changes made in this file will be lost when recompiling UI file!
|
||
|
********************************************************************************/
|
||
|
|
||
|
#ifndef PASSWORDDIALOG_H
|
||
|
#define PASSWORDDIALOG_H
|
||
|
|
||
|
#include <QtCore/QVariant>
|
||
|
#include <QtWidgets/QAbstractButton>
|
||
|
#include <QtWidgets/QApplication>
|
||
|
#include <QtWidgets/QDialog>
|
||
|
#include <QtWidgets/QDialogButtonBox>
|
||
|
#include <QtWidgets/QGridLayout>
|
||
|
#include <QtWidgets/QHBoxLayout>
|
||
|
#include <QtWidgets/QLabel>
|
||
|
#include <QtWidgets/QLineEdit>
|
||
|
|
||
|
QT_BEGIN_NAMESPACE
|
||
|
|
||
|
class Ui_PasswordDialog
|
||
|
{
|
||
|
public:
|
||
|
QGridLayout *gridLayout;
|
||
|
QHBoxLayout *hboxLayout;
|
||
|
QLabel *iconLabel;
|
||
|
QLabel *introLabel;
|
||
|
QLabel *label;
|
||
|
QLineEdit *userNameLineEdit;
|
||
|
QLabel *lblPassword;
|
||
|
QLineEdit *passwordLineEdit;
|
||
|
QDialogButtonBox *buttonBox;
|
||
|
|
||
|
void setupUi(QDialog *PasswordDialog)
|
||
|
{
|
||
|
if (PasswordDialog->objectName().isEmpty())
|
||
|
PasswordDialog->setObjectName("PasswordDialog");
|
||
|
PasswordDialog->resize(399, 148);
|
||
|
gridLayout = new QGridLayout(PasswordDialog);
|
||
|
gridLayout->setObjectName("gridLayout");
|
||
|
hboxLayout = new QHBoxLayout();
|
||
|
hboxLayout->setObjectName("hboxLayout");
|
||
|
iconLabel = new QLabel(PasswordDialog);
|
||
|
iconLabel->setObjectName("iconLabel");
|
||
|
|
||
|
hboxLayout->addWidget(iconLabel);
|
||
|
|
||
|
introLabel = new QLabel(PasswordDialog);
|
||
|
introLabel->setObjectName("introLabel");
|
||
|
QSizePolicy sizePolicy(QSizePolicy::MinimumExpanding, QSizePolicy::MinimumExpanding);
|
||
|
sizePolicy.setHorizontalStretch(0);
|
||
|
sizePolicy.setVerticalStretch(0);
|
||
|
sizePolicy.setHeightForWidth(introLabel->sizePolicy().hasHeightForWidth());
|
||
|
introLabel->setSizePolicy(sizePolicy);
|
||
|
|
||
|
hboxLayout->addWidget(introLabel);
|
||
|
|
||
|
|
||
|
gridLayout->addLayout(hboxLayout, 0, 0, 1, 2);
|
||
|
|
||
|
label = new QLabel(PasswordDialog);
|
||
|
label->setObjectName("label");
|
||
|
|
||
|
gridLayout->addWidget(label, 1, 0, 1, 1);
|
||
|
|
||
|
userNameLineEdit = new QLineEdit(PasswordDialog);
|
||
|
userNameLineEdit->setObjectName("userNameLineEdit");
|
||
|
|
||
|
gridLayout->addWidget(userNameLineEdit, 1, 1, 1, 1);
|
||
|
|
||
|
lblPassword = new QLabel(PasswordDialog);
|
||
|
lblPassword->setObjectName("lblPassword");
|
||
|
|
||
|
gridLayout->addWidget(lblPassword, 2, 0, 1, 1);
|
||
|
|
||
|
passwordLineEdit = new QLineEdit(PasswordDialog);
|
||
|
passwordLineEdit->setObjectName("passwordLineEdit");
|
||
|
passwordLineEdit->setEchoMode(QLineEdit::Password);
|
||
|
|
||
|
gridLayout->addWidget(passwordLineEdit, 2, 1, 1, 1);
|
||
|
|
||
|
buttonBox = new QDialogButtonBox(PasswordDialog);
|
||
|
buttonBox->setObjectName("buttonBox");
|
||
|
buttonBox->setOrientation(Qt::Horizontal);
|
||
|
buttonBox->setStandardButtons(QDialogButtonBox::Cancel|QDialogButtonBox::Ok);
|
||
|
|
||
|
gridLayout->addWidget(buttonBox, 3, 0, 1, 2);
|
||
|
|
||
|
|
||
|
retranslateUi(PasswordDialog);
|
||
|
QObject::connect(buttonBox, &QDialogButtonBox::accepted, PasswordDialog, qOverload<>(&QDialog::accept));
|
||
|
QObject::connect(buttonBox, &QDialogButtonBox::rejected, PasswordDialog, qOverload<>(&QDialog::reject));
|
||
|
|
||
|
QMetaObject::connectSlotsByName(PasswordDialog);
|
||
|
} // setupUi
|
||
|
|
||
|
void retranslateUi(QDialog *PasswordDialog)
|
||
|
{
|
||
|
PasswordDialog->setWindowTitle(QCoreApplication::translate("PasswordDialog", "Authentication Required", nullptr));
|
||
|
iconLabel->setText(QCoreApplication::translate("PasswordDialog", "DUMMY ICON", nullptr));
|
||
|
introLabel->setText(QCoreApplication::translate("PasswordDialog", "INTRO TEXT DUMMY", nullptr));
|
||
|
label->setText(QCoreApplication::translate("PasswordDialog", "Username:", nullptr));
|
||
|
lblPassword->setText(QCoreApplication::translate("PasswordDialog", "Password:", nullptr));
|
||
|
} // retranslateUi
|
||
|
|
||
|
};
|
||
|
|
||
|
namespace Ui {
|
||
|
class PasswordDialog: public Ui_PasswordDialog {};
|
||
|
} // namespace Ui
|
||
|
|
||
|
QT_END_NAMESPACE
|
||
|
|
||
|
#endif // PASSWORDDIALOG_H
|