QT 登录界面 傻瓜化教学

Posted 流星蝴蝶没有剑

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了QT 登录界面 傻瓜化教学相关的知识,希望对你有一定的参考价值。





结果:


用到的组件:

line text、push button

LoginMain.pro

#-------------------------------------------------
#
# Project created by QtCreator 2021-07-01T14:05:09
#
#-------------------------------------------------

QT       += core gui
QT += sql


TARGET = LoginMain
TEMPLATE = app


SOURCES += main.cpp\\
        login.cpp \\
    dialog.cpp

HEADERS  += login.h \\
    dialog.h \\
    conn.h

FORMS    += login.ui \\
    dialog.ui

conn.h

#ifndef CONN_H
#define CONN_H

#include <QSqlDatabase>
#include <QSqlQuery>
#include <QMessageBox>
#include <QDebug>

static bool createConnection()

    // 加载sqlite数据库驱动
    QSqlDatabase db = QSqlDatabase::addDatabase("QSQLITE");
    // 添加数据库
    db.setDatabaseName("data.db");
    // 检测数据库正常打开
    if(!db.open())
    
        // 提示
        QMessageBox box;
        box.setText("open database failure!");
        box.exec();
        return false;
    
    // 创建数据表
    QSqlQuery query;
    QString s="create table login(name varchar(10) primary key, passwd varchar(20))";
    qDebug()<<s;
    query.exec(s);
    // 设置数据表属性
    QString p="create table lcd(id integer primary key autoincrement,n integer)";
    query.exec(p);
    return true;


#endif // CONN_H

dialog.h

#ifndef DIALOG_H
#define DIALOG_H

#include <QDialog>
#include<QMessageBox> // 头文件

namespace Ui 
class Dialog;


class Dialog : public QDialog

    Q_OBJECT
    
public:
    explicit Dialog(QWidget *parent = 0);
    ~Dialog();

private slots:
    void on_pushButton_2_clicked();

    void on_pushButton_clicked();

private:
    Ui::Dialog *ui;
    // 申明弹窗盒子
    QMessageBox box;
;

#endif // DIALOG_H

login.h

#ifndef LOGIN_H
#define LOGIN_H

#include <QWidget>

namespace Ui 
class Login;


class Login : public QWidget

    Q_OBJECT
    
public:
    explicit Login(QWidget *parent = 0);
    ~Login();
    
private:
    Ui::Login *ui;
;

#endif // LOGIN_H

dialog.cpp

#include "dialog.h"
#include "ui_dialog.h"
#include "conn.h" // 数据库操作头文件

Dialog::Dialog(QWidget *parent) :
    QDialog(parent),
    ui(new Ui::Dialog)

    ui->setupUi(this);


Dialog::~Dialog()

    delete ui;


// 登录按钮槽
void Dialog::on_pushButton_clicked()


    QString user = ui->username->text(); // 用户名
    QString pass = ui->password->text(); // 密码


    if(user.isEmpty()||pass.isEmpty()) // 如果为空
    
        // box 注意需要在头文件中申明 <QMessageBox>
        box.setText("user or pass is empty"); // 设置窗口消息
        box.exec(); // 运行
     
    else
    
        // 查询用户SQL字符串
        QString s = QString("select * from login where name=='%1'").arg(user);
        qDebug() << s;
        // 定义执行SQL 操作的对象
        QSqlQuery query;
        // 执行查询语句
        if(query.exec(s))
        
            // 如果存在第一条数据,说明该用户存在
            if(query.first())
            
                // 判断 用户密码与输入的是否一致value(1)是密码,0是用户名
                if(query.value(1).toString()==pass)
                
                    // 弹出提示
                    box.setText("login success");
                    box.exec();
                    // 发送一个信号,在住函数中检测
                    accept();
                
               else
                
                    // 密码输入错误提示
                    box.setText("passwd is wrong");
                    box.exec();
                
            
            else
            
                // 用户不存在提示
                box.setText("user is not exist");
                box.exec();
            
        
    




// 注册按钮槽函数
void Dialog::on_pushButton_2_clicked()


    QString user = ui->username->text(); // 用户名
    QString pass = ui->password->text(); // 密码


    if(user.isEmpty()||pass.isEmpty()) // 如果为空
    
        // box 注意需要在头文件中申明 <QMessageBox>
        box.setText("user or pass is empty"); // 设置窗口消息
        box.exec(); // 运行
     
    else
    
        // 查询用户SQL字符串
        QString s = QString("insert into login values('%1', '%2')").arg(user).arg(pass);
        qDebug() << s;
        // 定义执行SQL 操作的对象
        QSqlQuery query;
        // 执行查询语句
        if(query.exec(s))
        
            // 如果存在第一条数据,说明该用户存在
            if(query.first())
            
                // 判断 用户密码与输入的是否一致value(1)是密码,0是用户名
                if(query.value(1).toString()==pass)
                
                    // 弹出提示
                    box.setText("login success");
                    box.exec();
                    // 发送一个信号,在住函数中检测
                    accept();
                
               else
                
                    // 密码输入错误提示
                    box.setText("passwd is wrong");
                    box.exec();
                
            
            else
            
                // 用户不存在提示
                box.setText("user is not exist");
                box.exec();
            
        
    



login.cpp

#include "login.h"
#include "ui_login.h"

Login::Login(QWidget *parent) :
    QWidget(parent),
    ui(new Ui::Login)

    ui->setupUi(this);


Login::~Login()

    delete ui;


main.cpp

#include <QtGui/QApplication>
#include "login.h"
#include "dialog.h"
#include "conn.h" // 数据库链接


int main(int argc, char *argv[])

    QApplication a(argc, argv); // 主程序
    if(!createConnection()) // 检测并且配置链接数据库
        return 0;
    
    Dialog login; // 登录界面
    Login w; // wiget界面
    if(login.exec() == Dialog::Accepted) // 登录界面启动,并且监听是否接受结束的信号
        w.show(); // 展示窗口
        return a.exec();
    
    return 0;



源码:http://wx0725.top/ftp/LoginMain.zip

以上是关于QT 登录界面 傻瓜化教学的主要内容,如果未能解决你的问题,请参考以下文章

求助,VMware下载及安装全过程傻瓜式教学,高分

关于Webpack的的认识及傻瓜式教学

Dev-C++安装和使用教程(手把手傻瓜式教学)

QT设计登陆界面这种功能该怎么设置

Qt 用户登录界面

Clion for Mac(M1)配置环境傻瓜教学