QT day2 作业

头文件

cpp 复制代码
#ifndef MYWIDGET_H
#define MYWIDGET_H
 
 
#include <QWidget>
#include <QDebug>
#include<QIcon>
#include<QLabel>
#include<QMovie>
#include<QLineEdit>
#include<QPushButton>
QT_BEGIN_NAMESPACE
namespace Ui { class MyWidget; }
QT_END_NAMESPACE
 
class MyWidget : public QWidget
{
    Q_OBJECT
 
public:
    MyWidget(QWidget *parent = nullptr);
    ~MyWidget();
public slots:
    void edit_Slots();
    void btn_Slots();
 
 
private:
    Ui::MyWidget *ui;
    QLabel *lab1;
    QLabel *lab2;
    QLabel *lab3;
    QLineEdit *edit1;
    QLineEdit *edit2;
    QPushButton *btn;
};
#endif // MYWIDGET_H

源文件

cpp 复制代码
#include "mywidget.h"
#include "ui_mywidget.h"
 
MyWidget::MyWidget(QWidget *parent)
    : QWidget(parent)
    , ui(new Ui::MyWidget)
{
    ui->setupUi(this);
    //设置窗口大小
    this->resize(540,415);
    //固定窗口大小
    this->setFixedSize(540,415);
    //设置标题
    this->setWindowTitle("QQ");
    //设置图标
    this->setWindowIcon(QIcon("D:\\QT\\pictrue\\pictrue\\qq.png"));
    //图标颜色
    this->setStyleSheet("background-color:white");
    
    //设置标签    
    lab1 = new QLabel(this);
    //设置标签大小
    lab1->resize(540, 160);
    //接收动图
    QMovie *mv = new QMovie("D:QT\\pictrue\\pictrue\\qq2.gif");
    //将动图放入标签
    lab1->setMovie(mv);
    //让动图动起来
    mv->start();
    //自动适应大小
    lab1->setScaledContents(true);
 
    //设置标签2
    lab2 = new QLabel(this);
    //标签大小
    lab2->resize(30,30);
    //标签移动位置
    lab2->move(120,210);
    //将图片放入标签
    lab2->setPixmap(QPixmap("D:QT\\pictrue\\pictrue\\wodepeizhenshi.png"));
    //自动适应大小
    lab2->setScaledContents(true);
 
    //设置标签
    lab3 = new QLabel(this);
    lab3->resize(30,30);
    lab3->move(120, 260);
    lab3->setPixmap(QPixmap("D:QT\\pictrue\\pictrue\\passwd.jpg"));
    lab3->setScaledContents(true);
 
    //设置行编辑器
    edit1 = new QLineEdit(this);
    //行编辑器大小
    edit1->resize(275,30);
    //移动行编辑器位置
    edit1->move(155,210);
    //行编辑器占位
    edit1->setPlaceholderText("QQ号/手机号/邮箱");
 
 
    edit2 = new QLineEdit(this);
    edit2->resize(275,30);
    edit2->move(155,260);
    edit2->setPlaceholderText("密码");
    edit2->setEchoMode(QLineEdit::Password);
 
    //按钮组件
    btn = new QPushButton("登录",this);
    //按钮组件大小
    btn->resize(300,45);
    //按钮组件移动位置
    btn->move(120,345);
    //按钮背景色,边框倒角,字体颜色
    btn->setStyleSheet("background-color:red;border-radius:5px;color:white");
    btn->setEnabled(false);
    connect(this->edit1,&QLineEdit::textChanged,this,&MyWidget::edit_Slots);
    connect(this->edit2,&QLineEdit::textChanged,this,&MyWidget::edit_Slots);
    connect(this->btn,&QPushButton::clicked,this,&MyWidget::btn_Slots);
 
}
 
void MyWidget::btn_Slots()
{
    if(this->edit1->text()=="admin" && this->edit2->text()=="123456")
    {
        qDebug() << "登录成功";
        this->close();
    }
    else
    {
        qDebug() << "登录失败,账号或密码错误";
        this->edit1->clear();
        this->edit2->clear();
    }
}
void MyWidget::edit_Slots()
{
    QString s1=this->edit1->text();
    QString s2=this->edit2->text();
    if(s1.length()>=5 && s2.length()>=6 )
    {
        this->btn->setStyleSheet("background-color:rgb(125,18,179)");
        this->btn->setEnabled(true);
 
    }
    else if(s1.length()<5 || s2.length()<6  )
    {
      this->btn->setStyleSheet("background-color:red");
      this->btn->setEnabled(false);
    }
 
 
}
 
MyWidget::~MyWidget()
{
    delete ui;
}
相关推荐
小羊没烦恼!7 小时前
初探性能优化——2个月到4小时的性能提升
java·开发语言·windows·算法·c#
伞伞悦读8 小时前
【第38期】Python 模块与包详解:import、from、模块搜索路径、包结构和 __init__
开发语言·python
C语言小火车9 小时前
C/C++ 为什么需要编译器?
开发语言·c++
霍霍的袁10 小时前
【C++】map 和 set 的使用 | 从用法到底层
开发语言·c++·学习·visual studio
孙启超10 小时前
【AI开发之Rust】第 11 课:智能指针与内部可变性
开发语言·后端·rust
此生决int10 小时前
深入理解C++系列(20)——C++11(下)
开发语言·c++
慧都小项10 小时前
当边缘AI上产线:QtitanDocking 如何让工业 HMI 实现多视图协同
人工智能·qt·ui·边缘计算·qt6.3
CoderYanger12 小时前
A.每日一题:835. 图像重叠
java·开发语言·程序人生·leetcode·面试·职场和发展·学习方法
伞伞悦读12 小时前
【第37期】Python JSON 与配置详解:序列化、反序列化、嵌套结构和配置文件
开发语言·python·json
CCCCCCCCharlie12 小时前
Linux进程控制四大核心操作
linux·开发语言