完善登录框
点击登录按钮后,判断账号(admin)和密码(123456)是否一致,如果匹配失败,则弹出错误对话框,文
本内容"账号密码不匹配,是否重新登录”,给定两个按钮ok和cancel,点击ok后,会清除密码框中的内容,继续进行登录;如果点击cancel按钮,则关闭界面。
如果账号和密码匹配,则弹出信息对话框,给出提示信息为“登录成功",给出一个按钮ok,点击ok后,关闭整
个登录界面,跳转到其他界面
点击取消按钮后,弹出问题对话框,询问是否确定要退出登录,给出两个按钮,yes/no,点击yes,则直接关
闭整个登录界面,如果点击no则进行进行登录
要求:消息对话框,对象版和静态成员函数版至少各实现一个
denglu.h
#ifndef DENGLU_H
#define DENGLU_H
#include
#include
#include
#include
#include
#include
#include "second.h"
#include //消息对话框类
QT_BEGIN_NAMESPACE
namespace Ui { class denglu; }
QT_END_NAMESPACE
class denglu : public QMainWindow
{
Q_OBJECT
public:
denglu(QWidget *parent = nullptr);
~denglu();
signals:
void jump(); //自定义跳转信号函数
private slots:
void b1_clicked();
void b2_clicked();
private:
Ui::denglu *ui;
QLabel *lab1;
QLabel *lab2;
QLabel *lab3;
QLineEdit *edit1;
QLineEdit *edit2;
QPushButton *b1;
QPushButton *b2;
Second *s1;
};
#endif // DENGLU_H
second.h
#ifndef SECOND_H
#define SECOND_H
#include
namespace Ui {
class Second;
}
class Second : public QWidget
{
Q_OBJECT
public:
explicit Second(QWidget *parent = nullptr);
~Second();
public slots:
void jump_slot();
private:
Ui::Second *ui;
};
#endif // SECOND_H
denglu.cpp
#include "denglu.h"
#include "ui_denglu.h"
denglu::denglu(QWidget *parent)
: QMainWindow(parent)
, ui(new Ui::denglu)
{
ui->setupUi(this);
this->setFixedSize(430,360); //设置固定主界面尺寸
this->setWindowTitle("Widget"); //设置窗口标题
this->setWindowIcon(QIcon(":/Image/icon/wodepeizhenshi.png"));
//实例化一个标签
lab1 = new QLabel(this);
lab1->resize(430,180); //设置占窗体一半尺寸
lab1->setPixmap(QPixmap(":/Image/icon/logo.png"));
lab1->setScaledContents(1);
//实例化第二个标签
lab2 = new QLabel(this);
lab2->resize(45,30); //设置尺寸
lab2->move(this->x()+65,this->y()+200); //移动位置
lab2->setPixmap(QPixmap(":/Image/icon/userName.jpg"));//填充图片
lab2->setScaledContents(1);
//实例化第三个标签
lab3 = new QLabel(this);
lab3->resize(45,30); //设置尺寸
lab3->move(lab2->x(),lab2->y()+60); //移动位置
lab3->setPixmap(QPixmap(":/Image/icon/passwd.jpg"));//填充图片
lab3->setScaledContents(1);
//实例化行编辑器1
edit1 = new QLineEdit(this);
edit1->resize(200,32); //设置尺寸
edit1->move(lab2->x()+55,lab2->y()); //移动位置
edit1->setPlaceholderText("admin"); //设置默认值,占位文本
//实例化行编辑器2
edit2 = new QLineEdit(this);
edit2->resize(200,32); //设置尺寸
edit2->move(lab3->x()+55,lab3->y()); //移动位置
edit2->setEchoMode(QLineEdit::Password); //设置回显模式
edit2->setMaxLength(6); //设置最大文本容量
//实例化按钮1
b1 = new QPushButton(QIcon(":/Image/icon/login.png"),"登录",this);
b1->resize(80,32); //设置尺寸
b1->move(this->x()+100,lab3->y()+50); //移动位置
//实例化按钮2
b2 = new QPushButton(QIcon(":/Image/icon/cancel.png"),"取消",this);
b2->resize(80,32); //设置尺寸
b2->move(this->x()+230,b1->y()); //移动位置
//将当前界面的信号,与登录消息对话框函数连接
connect(b1,&QPushButton::clicked,this,&denglu::b1_clicked);
//将当前界面的信号,与取消消息对话框函数连接
connect(b2,&QPushButton::clicked,this,&denglu::b2_clicked);
//将当前界面的信号,与s1界面的槽函数进行连接
s1 = new Second;
connect(this,&denglu::jump,s1,&Second::jump_slot);
}
denglu::~denglu()
{
delete ui;
}
void denglu::b1_clicked()
{
if(this->edit1->text()!="admin" && this->edit2->text()!=123456)
{
QMessageBox box(QMessageBox::Critical,
"出错",
"账号密码不匹配,是否重新登录",
QMessageBox::Ok|QMessageBox::Cancel,
this); //父组件
box.setDefaultButton(QMessageBox::Ok); //设置默认
//调用exec函数允许对话框
int ret = box.exec();
//对结果进行判断
if(ret == QMessageBox::Ok)
{
this->edit2->clear();
}
else if(ret == QMessageBox::Cancel)
{
this->hide();
}
}
else if(this->edit1->text()=="admin" && this->edit2->text()=="123456")
{
//直接调用静态成员函数完成对话框的实现
int ret = QMessageBox::information(this,
"信息",
"登录成功",
QMessageBox::Ok);
if(ret ==QMessageBox::Ok)
{
//关闭登录界面
this->hide();
//跳转到其他页面
emit jump();
}
}
}
void denglu::b2_clicked()
{
int ret = QMessageBox::information(this,
"退出",
"是否确定要退出登录",
QMessageBox::Yes|QMessageBox::No);
if(ret == QMessageBox::Yes)
{
this->close();
}
else if(ret == QMessageBox::No)
{
//不做操作
}
}
main.cpp
#include "denglu.h"
#include
int main(int argc, char *argv[])
{
QApplication a(argc, argv);
denglu w;
w.show();
return a.exec();
}
second.cpp
#include "second.h"
#include "ui_second.h"
Second::Second(QWidget *parent) :
QWidget(parent),
ui(new Ui::Second)
{
ui->setupUi(this);
}
Second::~Second()
{
delete ui;
}
void Second::jump_slot()
{
this->show();
}