QT--day5

news/2024/11/28 7:20:27/

注册

mainwindow.h

#ifndef MAINWINDOW_H
#define MAINWINDOW_H#include <QMainWindow>
#include<QPushButton>
#include<QLineEdit>
#include<QLabel>
#include <QMessageBox>
#include<QString>
#include<QSqlDatabase>          //数据库管理类
#include<QSqlQuery>              //执行sql语句的类
#include<QSqlRecord>              //数据库记录的类
#include "form.h"
#include <QDebug>
QT_BEGIN_NAMESPACE
namespace Ui { class MainWindow; }
QT_END_NAMESPACEclass MainWindow : public QMainWindow
{Q_OBJECTpublic:MainWindow(QWidget *parent = nullptr);~MainWindow();private:Ui::MainWindow *ui;QLineEdit *zh;QLineEdit *mm;Form *f1;QSqlDatabase db;
signals:void my_sig();void jump();
public slots:void btn1_slot();void btn2_slot();void btn3_slot();
};
#endif // MAINWINDOW_H

mainwindow.cpp

#include "mainwindow.h"
#include "ui_mainwindow.h"MainWindow::MainWindow(QWidget *parent): QMainWindow(parent), ui(new Ui::MainWindow)
{ui->setupUi(this);//设置固定大小this->setFixedSize(400,300);//设置窗口标题this->setWindowTitle("HUAQI");//设置窗口图标this->setWindowIcon(QIcon("D:\\Qt\\icon\\icon\\wodepeizhenshi.png"));//构建两个按钮QPushButton *btn1=new QPushButton(QIcon("D:\\Qt\\icon\\icon\\login.png"),"登录",this);btn1->resize(100,40);btn1->move(150,250);QPushButton *btn2=new QPushButton(QIcon("D:\\Qt\\icon\\icon\\cancel.png"),"取消",this);btn2->resize(btn1->size());btn2->move(btn1->x()+125,btn1->y());connect(btn2,SIGNAL(clicked()),this,SLOT(btn2_slot()));QPushButton *btn3=new QPushButton("注册",this);btn3->resize(btn1->size());btn3->move(btn1->x()-125,btn1->y());connect(btn3,SIGNAL(clicked()),this,SLOT(btn3_slot()));//构建两个行编辑器QLineEdit *edit1=new QLineEdit(this);edit1->resize(200,30);edit1->setEchoMode(QLineEdit::Password);edit1->setText("123456");edit1->move(125,btn1->y()-50);QLineEdit *edit2=new QLineEdit(this);edit2->resize(200,30);edit2->setText("admin");edit2->move(125,edit1->y()-50);//构建三个标签QLabel *lab1=new QLabel(this);lab1->resize(30,30);lab1->setPixmap(QPixmap("D:\\Qt\\icon\\icon\\passwd.jpg"));lab1->setScaledContents(true);lab1->move(edit1->x()-40,edit1->y());QLabel *lab2=new QLabel(this);lab2->resize(lab1->size());lab2->setPixmap(QPixmap("D:\\Qt\\icon\\icon\\userName.jpg"));lab2->setScaledContents(true);lab2->move(edit2->x()-40,edit2->y());QLabel *lab3=new QLabel(this);lab3->resize(400,120);lab3->setPixmap(QPixmap("D:\\Qt\\icon\\icon\\logo.png"));lab3->setScaledContents(true);connect(btn1,&QPushButton::clicked,this,&MainWindow::btn1_slot);zh=edit2;mm=edit1;//设置数据库if(!db.contains("mydb.db")){db=QSqlDatabase::addDatabase("QSQLITE");db.setDatabaseName("mydb.db");}//打开数据库if(!db.open()){QMessageBox::information(this,"失败","数据库打开失败");return;}//创建表QString sql="create table if not exists stu_info(""zhanghao varchar(20) primary key,""mima varchar(20))";QSqlQuery querry;if(!querry.exec(sql)){QMessageBox::information(this,"失败","创建表失败");return;}
}MainWindow::~MainWindow()
{delete ui;
}void MainWindow::btn1_slot()
{QString i=zh->text();QString j=mm->text();qDebug()<<i;qDebug()<<j;QString sql=QString("select * from stu_info");QSqlQuery querry;if(!querry.exec(sql)){QMessageBox::information(this,"失败","查询失败");return;}while(querry.next()){qDebug()<<querry.record().value(0).toString();qDebug()<<querry.record().value(1).toString();if(querry.record().value(0).toString()==i&&querry.record().value(1).toString()==j){QMessageBox box(QMessageBox::NoIcon,"成功","登陆成功",QMessageBox::Ok,this);int ret=box.exec();if(ret==QMessageBox::Ok){emit jump();}return;}}QMessageBox box(QMessageBox::Warning,"错误","账号或密码出错",QMessageBox::Yes|QMessageBox::No,this);box.setButtonText(QMessageBox::Yes,"继续");box.setButtonText(QMessageBox::No,"取消");int ret=box.exec();if(ret==QMessageBox::Yes){}else{this->close();}return;}void MainWindow::btn2_slot()
{QMessageBox box(QMessageBox::Question,"退出","确定要退出吗?",QMessageBox::Yes|QMessageBox::No,this);int ret=box.exec();if(ret==QMessageBox::Yes){this->close();}}void MainWindow::btn3_slot()
{QString zhanghao=zh->text();QString mima=mm->text();if(zhanghao.isEmpty()||mima.isEmpty()){QMessageBox::information(this,"提示","信息不完整");return;}QString sql=QString("insert into stu_info(zhanghao,mima)""values('%1','%2')").arg(zhanghao).arg(mima);QSqlQuery querry;if(!querry.exec(sql)){QMessageBox::information(this,"失败","添加失败");return;}else{QMessageBox::information(this,"成功","添加成功");}
}

效果图

添加

登录


http://www.ppmy.cn/news/1121375.html

相关文章

操作系统篇之虚拟内存

虚拟内存是什么? 虚拟内存是计算机操作系统中的一种技术&#xff0c;它将每个进程的内存空间划分成若干个固定大小的页&#xff0c;并通过页面映射技术将这些页与物理内存或磁盘上的页面文件进行交换 虚拟内存能干什么? 扩展了实际物理内存容量&#xff1a;虚拟内存使得每个…

pycharm 让控制台里的链接可以点击

前言 如果细心就会发现pychram控制台里一些链接是可以点击的,另外一些不行,那么如果让输出的链接可以点击如何做呢? 解决 输出的i链接会在控制台里可以点击,并且点击会在本地直接打开 如果打印的是网址则可以直接点击 print(file:///{}.format(i))print(https://www.baid…

电池厂提供excel电池曲线zcv到mtk电池曲线zcv转换

#encoding:utf8 #电池厂提供excel电池曲线zcv到mtk电池曲线zcv转换 import pandas as pd import openpyxl import math # 读取Excel文件 df pd.read_excel("a55-zcv.xlsx") for j in range(0,10): if(j<3): offset0 #T0~T2 if(j3): offset…

多旋翼无人机组合导航系统-多源信息融合算法(Matlab代码实现)

&#x1f4a5;&#x1f4a5;&#x1f49e;&#x1f49e;欢迎来到本博客❤️❤️&#x1f4a5;&#x1f4a5; &#x1f3c6;博主优势&#xff1a;&#x1f31e;&#x1f31e;&#x1f31e;博客内容尽量做到思维缜密&#xff0c;逻辑清晰&#xff0c;为了方便读者。 ⛳️座右铭&a…

手游模拟器长时间运行后,游戏掉帧且不恢复

1&#xff09;手游模拟器长时间运行后&#xff0c;游戏掉帧且不恢复 2&#xff09;FrameBuffer Fetch无论哪种模式在确定支持的手机上显示全紫 3&#xff09;协程中yield return CoFunction()和yield return StartCoroutine(CoFunction())的区别 这是第353篇UWA技术知识分享的推…

记一次hyperf框架封装swoole自定义进程

背景 公司准备引入swoole和rabbitmq来处理公司业务。因此&#xff0c;我引入hyperf框架&#xff0c;想用swoole的多进程来实现。 自定义启动服务封装 <?php /*** 进程启动服务【manager】*/ declare(strict_types1);namespace App\Command;use Swoole; use Swoole\Proce…

靶场练习——SDcms文件上传漏洞靶场

文章目录 前言一、寻找网站后台页面1、点击请登录&#xff0c;查看URL2、修改URL参数&#xff0c;找到后台登录页面 二、登录后台管理系统1、不能使用爆破2、使用弱口令登录 三、寻找文件上传点四、上传文件操作1、上传普通的图片文件&#xff0c;查看数据包2、尝试上传PHP文件…

基于Spring Boot的网上租贸系统

目录 前言 一、技术栈 二、系统功能介绍 三、核心代码 1、登录模块 2、文件上传模块 3、代码封装 前言 本课题是根据用户的需要以及网络的优势建立的一个基于Spring Boot的网上租贸系统&#xff0c;来满足用户网络商品租赁的需求。 本网上租贸系统应用Java技术&#xff0…