Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- /********************************************************************************
- ** Form generated from reading UI file 'login_window.ui'
- **
- ** Created by: Qt User Interface Compiler version 6.6.1
- **
- ** WARNING! All changes made in this file will be lost when recompiling UI file!
- ********************************************************************************/
- #ifndef LOGIN_WINDOW_H
- #define LOGIN_WINDOW_H
- #include <QtCore/QVariant>
- #include <QtGui/QIcon>
- #include <QtWidgets/QApplication>
- #include <QtWidgets/QFormLayout>
- #include <QtWidgets/QGridLayout>
- #include <QtWidgets/QGroupBox>
- #include <QtWidgets/QLabel>
- #include <QtWidgets/QLineEdit>
- #include <QtWidgets/QPushButton>
- #include <QtWidgets/QSpacerItem>
- #include <QtWidgets/QWidget>
- QT_BEGIN_NAMESPACE
- class Ui_w_LoginForm
- {
- public:
- QGridLayout *gridLayout;
- QGroupBox *groupBox;
- QFormLayout *formLayout;
- QLabel *label;
- QLineEdit *le_UserID;
- QLabel *label_2;
- QLineEdit *le_Password;
- QPushButton *pb_OK;
- QPushButton *pb_Cancel;
- QLabel *lb_Message;
- QSpacerItem *verticalSpacer;
- void setupUi(QWidget *w_LoginForm)
- {
- if (w_LoginForm->objectName().isEmpty())
- w_LoginForm->setObjectName("w_LoginForm");
- w_LoginForm->resize(642, 318);
- QFont font;
- font.setPointSize(12);
- w_LoginForm->setFont(font);
- QIcon icon;
- icon.addFile(QString::fromUtf8(":/Book/book-solid.png"), QSize(), QIcon::Normal, QIcon::Off);
- w_LoginForm->setWindowIcon(icon);
- gridLayout = new QGridLayout(w_LoginForm);
- gridLayout->setObjectName("gridLayout");
- groupBox = new QGroupBox(w_LoginForm);
- groupBox->setObjectName("groupBox");
- groupBox->setAlignment(Qt::AlignCenter);
- formLayout = new QFormLayout(groupBox);
- formLayout->setObjectName("formLayout");
- label = new QLabel(groupBox);
- label->setObjectName("label");
- formLayout->setWidget(0, QFormLayout::LabelRole, label);
- le_UserID = new QLineEdit(groupBox);
- le_UserID->setObjectName("le_UserID");
- formLayout->setWidget(0, QFormLayout::FieldRole, le_UserID);
- label_2 = new QLabel(groupBox);
- label_2->setObjectName("label_2");
- formLayout->setWidget(1, QFormLayout::LabelRole, label_2);
- le_Password = new QLineEdit(groupBox);
- le_Password->setObjectName("le_Password");
- formLayout->setWidget(1, QFormLayout::FieldRole, le_Password);
- gridLayout->addWidget(groupBox, 0, 0, 1, 2);
- pb_OK = new QPushButton(w_LoginForm);
- pb_OK->setObjectName("pb_OK");
- QIcon icon1;
- icon1.addFile(QString::fromUtf8(":/Buttons/check-solid.png"), QSize(), QIcon::Normal, QIcon::Off);
- pb_OK->setIcon(icon1);
- gridLayout->addWidget(pb_OK, 2, 0, 1, 1);
- pb_Cancel = new QPushButton(w_LoginForm);
- pb_Cancel->setObjectName("pb_Cancel");
- QIcon icon2;
- icon2.addFile(QString::fromUtf8(":/Buttons/xmark-solid.png"), QSize(), QIcon::Normal, QIcon::Off);
- pb_Cancel->setIcon(icon2);
- gridLayout->addWidget(pb_Cancel, 2, 1, 1, 1);
- lb_Message = new QLabel(w_LoginForm);
- lb_Message->setObjectName("lb_Message");
- gridLayout->addWidget(lb_Message, 4, 0, 1, 2);
- verticalSpacer = new QSpacerItem(20, 40, QSizePolicy::Minimum, QSizePolicy::Expanding);
- gridLayout->addItem(verticalSpacer, 1, 0, 1, 2);
- retranslateUi(w_LoginForm);
- QMetaObject::connectSlotsByName(w_LoginForm);
- } // setupUi
- void retranslateUi(QWidget *w_LoginForm)
- {
- w_LoginForm->setWindowTitle(QCoreApplication::translate("w_LoginForm", "Sample Application ", nullptr));
- groupBox->setTitle(QCoreApplication::translate("w_LoginForm", "Welcome! Please Login", nullptr));
- label->setText(QCoreApplication::translate("w_LoginForm", "User ID:", nullptr));
- label_2->setText(QCoreApplication::translate("w_LoginForm", "Password:", nullptr));
- pb_OK->setText(QString());
- pb_Cancel->setText(QString());
- lb_Message->setText(QCoreApplication::translate("w_LoginForm", "Message", nullptr));
- } // retranslateUi
- };
- namespace Ui {
- class w_LoginForm: public Ui_w_LoginForm {};
- } // namespace Ui
- QT_END_NAMESPACE
- #endif // LOGIN_WINDOW_H
Advertisement
Add Comment
Please, Sign In to add comment