這篇文章主要介紹“Qt自定義控件實(shí)現(xiàn)線條型加載條的方法”,在日常操作中,相信很多人在Qt自定義控件實(shí)現(xiàn)線條型加載條的方法問題上存在疑惑,小編查閱了各式資料,整理出簡單好用的操作方法,希望對(duì)大家解答”Qt自定義控件實(shí)現(xiàn)線條型加載條的方法”的疑惑有所幫助!接下來,請(qǐng)跟著小編一起來學(xué)習(xí)吧!
站在用戶的角度思考問題,與客戶深入溝通,找到武鳴網(wǎng)站設(shè)計(jì)與武鳴網(wǎng)站推廣的解決方案,憑借多年的經(jīng)驗(yàn),讓設(shè)計(jì)與互聯(lián)網(wǎng)技術(shù)結(jié)合,創(chuàng)造個(gè)性化、用戶體驗(yàn)好的作品,建站類型包括:做網(wǎng)站、網(wǎng)站制作、企業(yè)官網(wǎng)、英文網(wǎng)站、手機(jī)端網(wǎng)站、網(wǎng)站推廣、域名注冊(cè)、雅安服務(wù)器托管、企業(yè)郵箱。業(yè)務(wù)覆蓋武鳴地區(qū)。
思路:先畫一個(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();}
到此,關(guān)于“Qt自定義控件實(shí)現(xiàn)線條型加載條的方法”的學(xué)習(xí)就結(jié)束了,希望能夠解決大家的疑惑。理論與實(shí)踐的搭配能更好的幫助大家學(xué)習(xí),快去試試吧!若想繼續(xù)學(xué)習(xí)更多相關(guān)知識(shí),請(qǐng)繼續(xù)關(guān)注創(chuàng)新互聯(lián)網(wǎng)站,小編會(huì)繼續(xù)努力為大家?guī)砀鄬?shí)用的文章!
本文名稱:Qt自定義控件實(shí)現(xiàn)線條型加載條的方法
網(wǎng)站URL:http://jinyejixie.com/article46/pdsoeg.html
成都網(wǎng)站建設(shè)公司_創(chuàng)新互聯(lián),為您提供網(wǎng)站制作、微信小程序、移動(dòng)網(wǎng)站建設(shè)、營銷型網(wǎng)站建設(shè)、搜索引擎優(yōu)化、關(guān)鍵詞優(yōu)化
聲明:本網(wǎng)站發(fā)布的內(nèi)容(圖片、視頻和文字)以用戶投稿、用戶轉(zhuǎn)載內(nèi)容為主,如果涉及侵權(quán)請(qǐng)盡快告知,我們將會(huì)在第一時(shí)間刪除。文章觀點(diǎn)不代表本網(wǎng)站立場(chǎng),如需處理請(qǐng)聯(lián)系客服。電話:028-86922220;郵箱:631063699@qq.com。內(nèi)容未經(jīng)允許不得轉(zhuǎn)載,或轉(zhuǎn)載時(shí)需注明來源: 創(chuàng)新互聯(lián)