QT生成随机验证码的方法

 更新时间:2022年06月14日 14:31:49   作者:成长途中永远是独孤的  
这篇文章主要为大家详细介绍了QT生成随机验证码的方法,文中示例代码介绍的非常详细,具有一定的参考价值,感兴趣的小伙伴们可以参考一下

本文实例为大家分享了QT生成随机验证码的具体代码,供大家参考,具体内容如下

一、先创建一个QT应用程序,在ui中添加一个QFrame控件,后期将这个控件提升为下面自己实现验证码的类就可以显示出来了。

示例代码如下:

mainwindow.h

#ifndef MAINWINDOW_H
#define MAINWINDOW_H
#include <QMainWindow>
#include "verification.h"

QT_BEGIN_NAMESPACE
namespace Ui { class MainWindow; }
QT_END_NAMESPACE

class MainWindow : public QMainWindow
{
    Q_OBJECT
public:
    MainWindow(QWidget *parent = nullptr);
    ~MainWindow();

private slots:
    void on_pushButton_clicked();
    
private:
    Ui::MainWindow *ui;

    Verification *verification;
};
#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);
    verification = ui->frame;  //提升类控件名
}

MainWindow::~MainWindow()
{
    delete ui;
}

void MainWindow::on_pushButton_clicked()    //点击跟新验证码
{
     verification->Timer_Timeout();
}

主函数:

main.cpp

#include "mainwindow.h"
#include <QApplication>

int main(int argc, char *argv[])
{
    QApplication a(argc, argv);
    MainWindow w;
    w.show();
    return a.exec();
}

mainwindow.ui

二、右击新添加一个Qt设计师类,在里面实现验证码的随机生成。

代码如下:

verification.h

#ifndef VERIFICATION_H
#define VERIFICATION_H

#include <QPainter>
#include <QTimer>
#include <QFrame>
#include <QChar>
#include <QColor>

class Verification : public QFrame
{
    Q_OBJECT
public:
    Verification(QWidget *parent = Q_NULLPTR);
    ~Verification();

public:
    QString getVerificationCodes() const;   返回一个字符串(默认全为小写)(验证码)
    QChar produceRandomLetters() const;     //随机产生一个字符
    void produceVerificationCodes() const;  //这是一个用来生成验证码的函数
    void produceRandomColors() const;       //产生随机的颜色
    void paintEvent(QPaintEvent *event);    //重写绘制事件,以此来生成验证码
    Qt::GlobalColor* getColor();            //返回设置验证码的颜色
    void Timer_Timeout();
    QString getCaptcha();

private:
    const int letter_number = 4;    //产生字符的数量
    Qt::GlobalColor* m_color;
    QString m_captcha;
    QTimer m_timer;

    enum {                          //枚举分类,也可自己定义
           NUMBER_FLAG,
           UPLETTER_FLAG,
           LOWLETTER_FLAG
       };
    QChar *verificationCode;
    QColor *colorArray;
};

#endif // VERIFICATION_H

verification.cpp

#include "verification.h"
#include <QTime>
#include <QPaintEvent>

Verification::Verification(QWidget *parent)
    :QFrame(parent)
{
    //生成随机种子
    qsrand(QTime::currentTime().second() * 1000 + QTime::currentTime().msec());

//    m_captcha = getVerificationCode();
//    m_color = getColor();
    //    m_timer.start(200);

    colorArray = new QColor[letter_number];
    verificationCode = new QChar[letter_number];
    m_captcha = getVerificationCodes();
}

Verification::~Verification()
{

}

ification::getVerificationCodes() const
{


    QString s ="";
    QChar cTemp;
    for (int i = 0; i < letter_number; ++i)
    {
        cTemp = verificationCode[i];
        s += cTemp>97?cTemp.toUpper():cTemp;
    }
    return s;
}

QChar Verification::produceRandomLetters() const
{
    QChar c;
    int flag = qrand() % letter_number;
    switch (flag)
    {
    case NUMBER_FLAG:c='0' + qrand() % 10; break;
    case UPLETTER_FLAG:c='A' + qrand() % 26; break;
    case LOWLETTER_FLAG:c='a' + qrand() % 26; break;
    default:c=qrand() % 2 ? 'W' : 'D';
    }
    return c;
}

void Verification::produceVerificationCodes() const
{
    for (int i = 0; i < letter_number; ++i)
         verificationCode[i] = produceRandomLetters();
}

void Verification::produceRandomColors() const
{
    for (int i = 0; i < letter_number; ++i)
        colorArray[i] = QColor(qrand() % 255, qrand() % 255, qrand() % 255);
}


void Verification::Timer_Timeout()
{
//    m_captcha = getVerificationCode();
    m_captcha = getVerificationCodes();
//    this->repaint();
    this->update();
}

QString Verification::getCaptcha()
{
    return getVerificationCodes();
}

void Verification::paintEvent(QPaintEvent *event)
{
    painter(this);
    QPoint p;
    //背景设为白色
    painter.fillRect(this->rect(), Qt::white);
    //产生4个不同的字符
    produceVerificationCodes();
    //产生4个不同的颜色
    produceRandomColors();
    //绘制验证码
    for (int i = 0; i < letter_number; ++i)
    {
        p.setX(i*(this->width() / letter_number)+this->width()/14);
        p.setY(this->height() / 1.5);
        painter.setPen(colorArray[i]);
        painter.drawText(p, QString(verificationCode[i]));
    }
    return;
}

三、在主函数里面添加如下代码:

**.h

 Verification *verification;

**.cpp

void VLoginDlg::on_btnClick_clicked()    //点击更新验证码
{
    verification->Timer_Timeout();
}

运行效果图

当点击最右端按钮时,验证码会自动刷新

以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持脚本之家。

相关文章

  • C语言全面梳理结构体知识点

    C语言全面梳理结构体知识点

    结构体是一些值的集合,这些值称为成员变量,结构体的每个成员可以是不同类型的变量。本文将通过示例为大家详细讲讲C语言中结构体的使用,需要的可以参考一下
    2022-07-07
  • C++编程模板匹配超详细的识别手写数字实现示例

    C++编程模板匹配超详细的识别手写数字实现示例

    大家好!本篇文章是关于手写数字识别的,接下来我将在这里记录我的手写数字识别的从零到有,我在这里把我自己的写代码过程发出来,希望能帮到和我一样努力求知的人
    2021-10-10
  • C++ std::unique_lock 用法实例详解

    C++ std::unique_lock 用法实例详解

    std::unique_lock 是 C++11 提供的一个用于管理互斥锁的类,它提供了更灵活的锁管理功能,适用于各种多线程场景,这篇文章给大家介绍了C++ std::unique_lock 用法,感兴趣的朋友跟随小编一起看看吧
    2023-09-09
  • 论C++的lambda是函数还是对象

    论C++的lambda是函数还是对象

    这篇文章主要介绍了论C++的lambda是函数还是对象,对于有捕获的lambda,其等价于对象。对于没有任何捕获的lambda,其等价于函数,下面来看看具体的相关内容,需要的朋友可以参考一下
    2022-02-02
  • C++&&Opencv实现控制台字符动画的方法

    C++&&Opencv实现控制台字符动画的方法

    这篇文章主要介绍了C++&&Opencv实现控制台字符动画的方法,本文通过实例代码给大家介绍的非常详细,对大家的学习或工作具有一定的参考借鉴价值,需要的朋友可以参考下
    2020-07-07
  • Qt 中开启线程的多种方式小结

    Qt 中开启线程的多种方式小结

    本篇文章就来整理一下 Qt 中使用线程的五种方式,方便后期回顾。前面两种比较简单,一笔带过了,主要介绍后面三种,感兴趣的朋友跟随小编一起看看吧
    2021-09-09
  • C语言实题讲解快速掌握单链表下

    C语言实题讲解快速掌握单链表下

    单链表是后面要学的双链表以及循环链表的基础,要想继续深入了解数据结构以及C语言,我们就要奠定好这块基石!接下来就和我一起学习吧
    2022-04-04
  • 奇怪的C语言特性

    奇怪的C语言特性

    下面列出的特性未必奇怪,有的算是有趣
    2013-04-04
  • 详解C语言如何实现双向带头循环链表

    详解C语言如何实现双向带头循环链表

    双向带头循环链表应该是链表中非常方便的一种,可以很容易的在任意位置上进行插入和删除,可以很容易的对链表进行管理。本文将利用C语言实现双向带头循环链表,需要的可以参考一下
    2022-08-08
  • C++实现景区旅游信息管理系统

    C++实现景区旅游信息管理系统

    这篇文章主要为大家详细介绍了C++实现景区旅游信息管理系统,文中示例代码介绍的非常详细,具有一定的参考价值,感兴趣的小伙伴们可以参考一下
    2022-03-03

最新评论