吾爱破解 - 52pojie.cn

 找回密码
 注册[Register]

QQ登录

只需一步,快速开始

查看: 844|回复: 2
收起左侧

[求助] QT 问题

  [复制链接]
隐藏英雄 发表于 2022-12-31 20:26
本帖最后由 隐藏英雄 于 2022-12-31 21:12 编辑

哪位大神帮我注解一下这段代码,
实在是理解不了了,用于按钮转圆形进度 0-100%
int status;             //状态 tempWidth = this->width();value = 0;

[C++] 纯文本查看 复制代码
void ProgressButton::mousePressEvent(QMouseEvent *)
{
    if(!timer->isActive()) //如果定时器处于活动状态
    {
        status = 0; //
        value = 0.0;//
        tempWidth = this->width(); //
        timer->start();//定时器开始工作
    }
}


[C++] 纯文本查看 复制代码
void ProgressButton::progress()
{
    if (0 == status)
    {
        tempWidth -= 5;
        if (tempWidth < this->height() / 2)
        {
            tempWidth = this->height() / 2;
            status = 1;
        }
    }
    else if (1 == status)
    {
        value += 1.0;//每次增加1度
        if (value >= 360) //小于等于360度
        {
            value = 360.0;
            status = 2;
        }
    }
    else if (2 == status)
    {
        tempWidth += 5;
        if (tempWidth > this->width())
        {
            tempWidth = this->width();
            timer->stop();//定时器停止工作
        }
    }

    this->update();
}

发帖前要善用论坛搜索功能,那里可能会有你要找的答案或者已经有人发布过相同内容了,请勿重复发帖。

msccreater 发表于 2023-1-1 11:57
效果图都没有,都不知道你这个tempWidth是干嘛的...
MarioCrane 发表于 2023-1-1 14:32
您需要登录后才可以回帖 登录 | 注册[Register]

本版积分规则

返回列表

RSS订阅|小黑屋|处罚记录|联系我们|吾爱破解 - LCG - LSG ( 京ICP备16042023号 | 京公网安备 11010502030087号 )

GMT+8, 2024-11-25 02:39

Powered by Discuz!

Copyright © 2001-2020, Tencent Cloud.

快速回复 返回顶部 返回列表