Qt自定義控件實(shí)現(xiàn)線條型加載條
本文實(shí)例為大家分享了Qt自定義控件實(shí)現(xiàn)線條型加載條的具體代碼,供大家參考,具體內(nèi)容如下
上效果圖:
思路:先畫一個(gè)線條,然后旋轉(zhuǎn)坐標(biāo)系再畫其他線條,突出顏色的線條可以畫死再旋轉(zhuǎn),也可以按照角度遞增讓特定線畫突出顏色(這里使用的是這種)。
LoadingBarA::LoadingBarA(QWidget *parent) : QWidget(parent) { timer = new QTimer(this); //定時(shí)器 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(){ //設(shè)置開始 timer->start(); }
以上就是本文的全部?jī)?nèi)容,希望對(duì)大家的學(xué)習(xí)有所幫助,也希望大家多多支持腳本之家。
相關(guān)文章
c++中的內(nèi)聯(lián)函數(shù)inline用法實(shí)例
在本篇文章里小編給大家整理的是關(guān)于c++中的內(nèi)聯(lián)函數(shù)inline用法實(shí)例以及相關(guān)知識(shí)點(diǎn),有需要的朋友們學(xué)習(xí)下。2019-09-09C語(yǔ)言實(shí)現(xiàn)簡(jiǎn)單彈球游戲
這篇文章主要為大家詳細(xì)介紹了C語(yǔ)言實(shí)現(xiàn)簡(jiǎn)單彈球游戲,文中示例代碼介紹的非常詳細(xì),具有一定的參考價(jià)值,感興趣的小伙伴們可以參考一下2020-02-02深入探索C++中stack和queue的底層實(shí)現(xiàn)
這篇文章主要介紹了C++中的stack和dequeue的底層實(shí)現(xiàn),本文通過(guò)實(shí)例代碼給大家介紹的非常詳細(xì),對(duì)大家的學(xué)習(xí)或工作具有一定的參考借鑒價(jià)值,需要的朋友可以參考下2023-09-09關(guān)于C++面向?qū)ο笤O(shè)計(jì)的訪問(wèn)性問(wèn)題詳解
這篇文章主要給大家介紹了關(guān)于C++面向?qū)ο笤O(shè)計(jì)的訪問(wèn)性問(wèn)題的相關(guān)資料,文中通過(guò)示例代碼介紹的非常詳細(xì),對(duì)大家的學(xué)習(xí)或者工作具有一定的參考學(xué)習(xí)價(jià)值,需要的朋友們下面隨著小編來(lái)一起學(xué)習(xí)學(xué)習(xí)吧。2017-09-09詳解C++中的內(nèi)存同步模式(memory order)
這篇文章主要介紹了C++中的內(nèi)存同步模式,文中通過(guò)示例代碼介紹的非常詳細(xì),對(duì)大家的學(xué)習(xí)或者工作具有一定的參考學(xué)習(xí)價(jià)值,需要的朋友們下面隨著小編來(lái)一起學(xué)習(xí)學(xué)習(xí)吧2019-04-04一起來(lái)學(xué)習(xí)C++的構(gòu)造和析構(gòu)
這篇文章主要為大家詳細(xì)介紹了C++構(gòu)造和析構(gòu),文中示例代碼介紹的非常詳細(xì),具有一定的參考價(jià)值,感興趣的小伙伴們可以參考一下,希望能夠給你帶來(lái)幫助2022-03-03