Qt作业-day2

该代码实现了Qt中的一个登录界面,包括账号和密码输入、登录验证、错误提示、取消操作以及登录成功的处理。当登录失败时,会显示错误对话框,用户可以选择清除密码或退出。登录成功后,会提示用户并提供跳转到主界面的功能。同时,提供了退出登录的确认对话框。
摘要由CSDN通过智能技术生成

完善登录界面
点击登录按钮后,判断账号(admin) 和密码(123456) 否-致, 如果匹配失败,则弹出错误对话框,文本内容
“账号密码不匹配,否重新登录”,给定两个按钮ok和cancel, 点陆ok后,会清除密码框中的内容,继续进行登录;如果击
cancel按钮,则关闭界面。
如果账号和密码匹配,则弹出信息对话框,给出提示信息为登录成功”给出一个按钮ok,击k后,关闭整个登录界
面,跳转到其他界面
点击取消按钮后,弹出问题对话框,询问是否确定要退出登录,给出两个按钮, yes|no, 点击yes,则直接关闭整个登
录界面,如果点击no则进行进行登录
要求:对象版和静态成员函数版至少各实现一个

登录界面头文件

#ifndef WIDGET_H
#define WIDGET_H

#include <QWidget>
#include <QPushButton>
#include <QIcon>
#include <QCheckBox>
#include <QLabel>
#include <QLineEdit>
#include <QDebug>
#include <QMessageBox>
namespace Ui {
class Widget;
}

class Widget : public QWidget
{
    Q_OBJECT

public:
    explicit Widget(QWidget *parent = nullptr);
   ~Widget();
public slots:
    void cancel();
    void login_judge();
    void jump_main();

private:
        Ui::Widget *ui;
        QPushButton *btn1;
        QPushButton *btn2;
        QLineEdit *usr;
        QLineEdit *passwd;
        QLabel *label1;
        QLabel *label2;
        QLabel *label3;
        QCheckBox *checkbox1;
        QCheckBox *checkbox2;
signals:
        void jump();
};

#endif // WIDGET_H

第二个界面头文件

#ifndef FORM_H
#define FORM_H

#include <QWidget>
namespace Ui {
class Form;
}

class Form : public QWidget
{
    Q_OBJECT
public slots:
    void jump_slot();
public:
    explicit Form(QWidget *parent = nullptr);
    ~Form();

private:
    Ui::Form *ui;
};

#endif // FORM_H

Widget界面功能代码

#include "widget.h"
#include "ui_widget.h"

Widget::Widget(QWidget *parent) :
    QWidget(parent),
    ui(new Ui::Widget)
{
            ui->setupUi(this);
            this->setFixedSize(500,400);
            this->setWindowTitle("QQ");
            //this->setWindowIcon()

            btn1 = new QPushButton("登录",this);
            btn1->resize(80,30);
            btn1->move(140,280);
            //btn1->setIcon();
            connect(this->btn1,SIGNAL(clicked()),this,SLOT(login_judge()));

            btn2 = new QPushButton("取消", this);
            btn2->resize(80,30);
            btn2->move(240,280);
            //btn2->setIcon(QIcon("D:/Qt/day1/pic.png"));
            connect(this->btn2,SIGNAL(clicked()),this,SLOT(cancel()));


            label1 = new QLabel(this);
            label1->resize(480,160);
            label1->setScaledContents(true);
            label1->setPixmap(QPixmap("D:/Qt/day1/backgrd.png"));

            usr = new QLineEdit(this);
            usr->resize(200, 30);
            usr->move(150, 170);
            usr->setPlaceholderText("账号");
            QString u= usr->text();
            passwd = new QLineEdit(this);
            passwd->resize(200, 30);
            passwd->move(150, 205);
            passwd->setEchoMode(QLineEdit::Password);
            passwd->setPlaceholderText("密码");
           QString m=passwd->text();



            checkbox1 = new QCheckBox("自动登录", this);
            checkbox1->move(150,245);
            checkbox2 = new QCheckBox("记住密码", this);
            checkbox2->move(250,245);
}
void Widget::login_judge()
{
    QString u=usr->text();
    QString m=passwd->text();
    if(u == "admin" && m == "123456")
    {
             int ret=QMessageBox::warning(this,"芜湖","登录成功!",QMessageBox::Ok);
             if(ret == QMessageBox::Ok)
             {
                 emit jump();
                this->close();
             }
    }
    else
    {
          int ret=QMessageBox::warning(this,"错误","登录失败!",QMessageBox::Ok|QMessageBox::Cancel);
          switch(ret)
          {
                case QMessageBox::Ok:
                  passwd->clear();
                  break;
                case QMessageBox::Cancel:
                  this->close();
                  break;
          }
    }
}
void Widget::cancel()
{
    int ret=QMessageBox::warning(this,"询问","是否退出",QMessageBox::Yes|QMessageBox::No);
    if( ret == QMessageBox::Yes)
    {
        this->close();
    }
}
Widget::~Widget()
{
    delete ui;
}
void Widget::jump_main()
{
    emit jump();
    this->close();
}

Form界面功能代码

#include "form.h"
#include "ui_form.h"

Form::Form(QWidget *parent) :
    QWidget(parent),
    ui(new Ui::Form)
{
    ui->setupUi(this);
}
void Form::jump_slot()
{
    this->show();
}
Form::~Form()
{
    delete ui;
}

主函数代码

#include "widget.h"
#include <QApplication>
#include "form.h"
int main(int argc, char *argv[])
{
    QApplication a(argc, argv);
    Widget w;
    Form f;
    w.show();
    Widget::connect(&w,&Widget::jump,&f,&Form::jump_slot);
    return a.exec();
}

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值