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;i<rectCount;i++){ painter.rotate(degree); if(i == pointRect - 1){ drawRect(&painter,darkColor); //突出颜色 }else{ drawRect(&painter,lightColor);//非突出颜色 } } } void LoadingBarA::drawRect(QPainter* painter,QColor color){//画线条 painter->save(); 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(); }
以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持我们。
上一篇:c语言 字符串的拼接和分割实例
栏 目:C语言
下一篇:C语言实现房屋管理系统
本文标题:Qt自定义控件实现线条型加载条
本文地址:https://www.xiuzhanwang.com/a1/Cyuyan/32.html
您可能感兴趣的文章
- 01-10数据结构课程设计-用栈实现表达式求值的方法详解
- 01-10使用OpenGL实现3D立体显示的程序代码
- 01-10求斐波那契(Fibonacci)数列通项的七种实现方法
- 01-10C语言 解决不用+、-、&#215;、&#247;数字运算符做加法
- 01-10使用C++实现全排列算法的方法详解
- 01-10用C++实现DBSCAN聚类算法
- 01-10深入全排列算法及其实现方法
- 01-10全排列算法的非递归实现与递归实现的方法(C++)
- 01-10用C语言实现单链表的各种操作(一)
- 01-10用C语言实现单链表的各种操作(二)
阅读排行
本栏相关
- 04-02c语言函数调用后清空内存 c语言调用
- 04-02func函数+在C语言 func函数在c语言中
- 04-02c语言的正则匹配函数 c语言正则表达
- 04-02c语言用函数写分段 用c语言表示分段
- 04-02c语言中对数函数的表达式 c语言中对
- 04-02c语言编写函数冒泡排序 c语言冒泡排
- 04-02c语言没有round函数 round c语言
- 04-02c语言分段函数怎么求 用c语言求分段
- 04-02C语言中怎么打出三角函数 c语言中怎
- 04-02c语言调用函数求fibo C语言调用函数求
随机阅读
- 04-02jquery与jsp,用jquery
- 01-10使用C语言求解扑克牌的顺子及n个骰子
- 08-05DEDE织梦data目录下的sessions文件夹有什
- 01-11ajax实现页面的局部加载
- 01-10SublimeText编译C开发环境设置
- 01-10C#中split用法实例总结
- 08-05dedecms(织梦)副栏目数量限制代码修改
- 01-11Mac OSX 打开原生自带读写NTFS功能(图文
- 08-05织梦dedecms什么时候用栏目交叉功能?
- 01-10delphi制作wav文件的方法