Qt自定义控件实现线条型加载条的方法-创新互联
这篇文章主要介绍“Qt自定义控件实现线条型加载条的方法”,在日常操作中,相信很多人在Qt自定义控件实现线条型加载条的方法问题上存在疑惑,小编查阅了各式资料,整理出简单好用的操作方法,希望对大家解答”Qt自定义控件实现线条型加载条的方法”的疑惑有所帮助!接下来,请跟着小编一起来学习吧!
创新互联公司专注于东阿网站建设服务及定制,我们拥有丰富的企业做网站经验。 热诚为您提供东阿营销型网站建设,东阿网站制作、东阿网页设计、东阿网站官网定制、微信小程序开发服务,打造东阿网络公司原创品牌,更为您提供东阿网站排名全网营销落地服务。思路:先画一个线条,然后旋转坐标系再画其他线条,突出颜色的线条可以画死再旋转,也可以按照角度递增让特定线画突出颜色(这里使用的是这种)。
LoadingBarA::LoadingBarA(QWidget *parent) : QWidget(parent){ timer = new QTimer(this); //定时器 timer->setInterval(50); connect(timer,QTimer::timeout,this,[=](){ if(pointRect<=rectCount){ pointRect++; }else{ pointRect = pointRect%rectCount; } update(); });}void LoadingBarA::paintEvent(QPaintEvent *event){ //重绘事件 int width = this->width(); int height = this->height(); int side = qMin(width, height); QPainter painter(this); painter.setRenderHints(QPainter::Antialiasing | QPainter::TextAntialiasing); painter.translate(width / 2, height / 2); painter.scale(side / 200.0, side / 200.0); float degree = 360.0/rectCount; //rectCount:共有多少根线条 for(int i =0;isave(); painter->setPen(Qt::NoPen); painter->setBrush(color); QRect rect(arcLength,-rectHeight/2,rectWidth,rectHeight); painter->drawRoundedRect(rect,rectHeight/2,rectHeight/2); painter->restore();}void LoadingBarA::setDarkColor(QColor tempColor){ this->darkColor = tempColor; update();}void LoadingBarA::setLightColor(QColor lightColor){ this->lightColor = lightColor; update();}void LoadingBarA::setRectWidth(int l){ this->rectWidth = l; update();}void LoadingBarA::setRectHeight(int l){ this->rectHeight = l; update();}void LoadingBarA::setArcLength(int l){ this->arcLength = l; update();}void LoadingBarA::setRectCount(int l){ this->rectCount = l; update();}void LoadingBarA::startLoading(){ //设置开始 timer->start();}
到此,关于“Qt自定义控件实现线条型加载条的方法”的学习就结束了,希望能够解决大家的疑惑。理论与实践的搭配能更好的帮助大家学习,快去试试吧!若想继续学习更多相关知识,请继续关注创新互联网站,小编会继续努力为大家带来更多实用的文章!
本文标题:Qt自定义控件实现线条型加载条的方法-创新互联
网站网址:http://ybzwz.com/article/dsddhs.html