亚洲激情专区-91九色丨porny丨老师-久久久久久久女国产乱让韩-国产精品午夜小视频观看

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

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

發布時間:2021-09-18 03:40:36 來源:億速云 閱讀:226 作者:chen 欄目:編程語言

這篇文章主要介紹“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;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();}

到此,關于“Qt自定義控件實現線條型加載條的方法”的學習就結束了,希望能夠解決大家的疑惑。理論與實踐的搭配能更好的幫助大家學習,快去試試吧!若想繼續學習更多相關知識,請繼續關注億速云網站,小編會繼續努力為大家帶來更多實用的文章!

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

qt
AI

仪陇县| 微山县| 龙海市| 永和县| 封丘县| 孟津县| 岢岚县| 澜沧| 冷水江市| 巩义市| 榆林市| 桂东县| 山东| 兴国县| 永清县| 布拖县| 五寨县| 临桂县| 色达县| 蒲城县| 武乡县| 闸北区| 余江县| 沙洋县| 文昌市| 孟津县| 平武县| 临泽县| 高雄市| 应用必备| 龙井市| 陆丰市| 诸暨市| 嘉定区| 吉木萨尔县| 子洲县| 卢氏县| 天峻县| 吉首市| 湟中县| 冀州市|