国产探花免费观看_亚洲丰满少妇自慰呻吟_97日韩有码在线_资源在线日韩欧美_一区二区精品毛片,辰东完美世界有声小说,欢乐颂第一季,yy玄幻小说排行榜完本

首頁 > 編程 > C > 正文

Qt自定義控件實現線條型加載條

2020-01-26 13:21:15
字體:
來源:轉載
供稿:網友

本文實例為大家分享了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();}

以上就是本文的全部內容,希望對大家的學習有所幫助,也希望大家多多支持武林網。

發表評論 共有條評論
用戶名: 密碼:
驗證碼: 匿名發表

圖片精選

主站蜘蛛池模板: 深泽县| 云霄县| 建始县| 皋兰县| 华安县| 仙游县| 深水埗区| 凌源市| 保靖县| 闵行区| 辽宁省| 文登市| 黔南| 青阳县| 永清县| 海盐县| 诸城市| 宁南县| 白银市| 鸡东县| 鄄城县| 永新县| 十堰市| 西吉县| 工布江达县| 遵化市| 桂阳县| 长丰县| 北辰区| 虹口区| 蓬安县| 土默特右旗| 江口县| 富民县| 姚安县| 大埔县| 武穴市| 青海省| 宁德市| 陆川县| 陵水|