• 【QT-lineEidte动画效果


    一、演示效果

    在这里插入图片描述

    二、核心代码

    #ifndef DynamicUnderlineLineEdit_H
    #define DynamicUnderlineLineEdit_H
    
    #include 
    #include 
    #include 
    #include 
    #include 
    #include 
    #include 
    #include 
    #include 
    
    //动态下划线单行文本框:Dynamic Underline LineEdit
    class DynamicUnderlineLineEdit : public QLineEdit
    {
        Q_OBJECT
    public:
        explicit DynamicUnderlineLineEdit(QWidget *parent = nullptr);
        explicit DynamicUnderlineLineEdit(const QString &text, QWidget *parent = nullptr);
    
        void setLinePen( const QPen &focusInPen,
                        const QPen &focusOutPen = QPen(QBrush(QColor(66,66,66)),2)); // 设置线条的绘制画笔,参数:获取焦点的绘制画笔,失去焦点的绘制画笔
        void setTextColor(const QColor &textColor);                                 // 设置输入文字颜色
        void setPlaceholderTextColor(const QColor &placeholderText);                // 设置预设背景文字颜色
        void setLineSpeed(int speed);                                               // 设置线条填速度,越小越快,最小为1,实际使用可根据文本框的长度不同设置不同的速度以达到最佳观感
    
    private:
        int right_coordinate{-1};   // 线条右侧坐标
        QTimer *timer;
        QPen inactive_pen;// 未获得焦点时线条的绘制画笔
        QPen active_pen; // 获得焦点时线条的绘制画笔
    
        void initializeMemberVariable();
    
    private slots:
        void inFocus();  // 获得焦点
        void outFocus(); // 失去焦点
    
    protected:
        virtual void paintEvent(QPaintEvent *event) override;
        virtual void focusInEvent(QFocusEvent *event) override;  // 获取焦点事件
        virtual void focusOutEvent(QFocusEvent *event) override; // 失去焦点事件
    };
    
    #endif // DynamicUnderlineLineEdit_H
    
    
    • 1
    • 2
    • 3
    • 4
    • 5
    • 6
    • 7
    • 8
    • 9
    • 10
    • 11
    • 12
    • 13
    • 14
    • 15
    • 16
    • 17
    • 18
    • 19
    • 20
    • 21
    • 22
    • 23
    • 24
    • 25
    • 26
    • 27
    • 28
    • 29
    • 30
    • 31
    • 32
    • 33
    • 34
    • 35
    • 36
    • 37
    • 38
    • 39
    • 40
    • 41
    • 42
    • 43
    • 44
    • 45
    • 46
    • 47
    #include "DynamicUnderlineLineEdit.h"
    
    DynamicUnderlineLineEdit::DynamicUnderlineLineEdit(QWidget *parent)
        : QLineEdit{parent},
          timer{new QTimer(this)}
    {
        initializeMemberVariable();
    }
    DynamicUnderlineLineEdit::DynamicUnderlineLineEdit(const QString &text, QWidget *parent)
        : QLineEdit::QLineEdit(text,parent)
    {
        initializeMemberVariable();
    }
    
    void DynamicUnderlineLineEdit::setLinePen( const QPen &focusInPen,const QPen &focusOutPen)
    {
        inactive_pen = focusOutPen;
        active_pen = focusInPen;
    }
    
    void DynamicUnderlineLineEdit::setTextColor(const QColor &textColor)
    {
        const_cast<QPalette &>(palette()).setColor(QPalette::ColorRole::Text, textColor);
    }
    
    void DynamicUnderlineLineEdit::setPlaceholderTextColor(const QColor &placeholderText)
    {
        const_cast<QPalette &>(palette()).setColor(QPalette::ColorRole::PlaceholderText, placeholderText);
    }
    
    void DynamicUnderlineLineEdit::setLineSpeed(int speed)
    {
        timer->setInterval(speed);
    }
    
    void DynamicUnderlineLineEdit::initializeMemberVariable()
    {
        setFocusPolicy(Qt::ClickFocus);
        timer->setInterval(12);
        connect(timer, &QTimer::timeout, this, &DynamicUnderlineLineEdit::inFocus);
        setAttribute(Qt::WA_TranslucentBackground);//背景透明
        setFrame(false);//无边框
        setTextMargins(10, 0, 0, 0);//设置文本左边距10像素
        inactive_pen.setColor(qRgb(66, 66, 66));
        inactive_pen.setWidth(2);
        active_pen.setColor(qRgb(0, 123, 255));
        active_pen.setWidth(2);
    }
    
    void DynamicUnderlineLineEdit::inFocus()
    {
        right_coordinate += 10;
        if (right_coordinate > width())
            timer->stop();
        update();
    }
    
    void DynamicUnderlineLineEdit::outFocus()
    {
        right_coordinate -= 10;
        if (right_coordinate < 0)
            timer->stop();
        update();
    }
    
    void DynamicUnderlineLineEdit::paintEvent(QPaintEvent *event)
    {
        QLineEdit::paintEvent(event);
        QPainter painter = QPainter(this);
        painter.setRenderHint(QPainter::RenderHint::Antialiasing); // 抗锯齿
        painter.setPen(inactive_pen); // 设置画笔颜色和线条样式
        painter.drawLine(0, height() - inactive_pen.width(),width(), height() - inactive_pen.width()); // 在底部画未选中时的线条
        painter.setPen(active_pen);
        painter.drawLine(-2, height() - active_pen.width(),right_coordinate, height() - active_pen.width()); // 在底部画选中时的线条
    }
    
    void DynamicUnderlineLineEdit::focusInEvent(QFocusEvent *event)
    {
        QLineEdit::focusInEvent(event);
        timer->disconnect();
        connect(timer, &QTimer::timeout, this, &DynamicUnderlineLineEdit::inFocus);
        timer->start();
    }
    
    void DynamicUnderlineLineEdit::focusOutEvent(QFocusEvent *event)
    {
        QLineEdit::focusOutEvent(event);
        timer->disconnect();
        connect(timer, &QTimer::timeout, this, &DynamicUnderlineLineEdit::outFocus);
        timer->start();
    }
    
    
    • 1
    • 2
    • 3
    • 4
    • 5
    • 6
    • 7
    • 8
    • 9
    • 10
    • 11
    • 12
    • 13
    • 14
    • 15
    • 16
    • 17
    • 18
    • 19
    • 20
    • 21
    • 22
    • 23
    • 24
    • 25
    • 26
    • 27
    • 28
    • 29
    • 30
    • 31
    • 32
    • 33
    • 34
    • 35
    • 36
    • 37
    • 38
    • 39
    • 40
    • 41
    • 42
    • 43
    • 44
    • 45
    • 46
    • 47
    • 48
    • 49
    • 50
    • 51
    • 52
    • 53
    • 54
    • 55
    • 56
    • 57
    • 58
    • 59
    • 60
    • 61
    • 62
    • 63
    • 64
    • 65
    • 66
    • 67
    • 68
    • 69
    • 70
    • 71
    • 72
    • 73
    • 74
    • 75
    • 76
    • 77
    • 78
    • 79
    • 80
    • 81
    • 82
    • 83
    • 84
    • 85
    • 86
    • 87
    • 88
    • 89
    • 90
    • 91
    • 92

    三、下载链接

    https://download.csdn.net/download/u013083044/88864880

  • 相关阅读:
    发现了一些有用的 Javascript 单行代码,能快速处理一些问题
    简单的个人博客网站设计 静态HTML个人博客主页 DW个人网站模板下载 大学生简单个人网页作品代码 个人网页制作 学生个人网页设计作业
    RabbitMQ入门与进阶实战
    Java 变量作用域、构造方法官方教程
    深度学习的基本原理和算法
    Assimp库模型导入结构
    数据一致性问题(分布式)
    一个免费开源自托管的机器翻译项目,支持API接口
    Android之getSystemService方法实现详解
    第三章 第二节:参数的概念
  • 原文地址:https://blog.csdn.net/u013083044/article/details/136239227