Qt應(yīng)用程序開發(fā)6_第1頁(yè)
Qt應(yīng)用程序開發(fā)6_第2頁(yè)
Qt應(yīng)用程序開發(fā)6_第3頁(yè)
Qt應(yīng)用程序開發(fā)6_第4頁(yè)
Qt應(yīng)用程序開發(fā)6_第5頁(yè)
已閱讀5頁(yè),還剩8頁(yè)未讀, 繼續(xù)免費(fèi)閱讀

下載本文檔

版權(quán)說(shuō)明:本文檔由用戶提供并上傳,收益歸屬內(nèi)容提供方,若內(nèi)容存在侵權(quán),請(qǐng)進(jìn)行舉報(bào)或認(rèn)領(lǐng)

文檔簡(jiǎn)介

1、第6章 Qt應(yīng)用程序開發(fā)6.1 Qt4程序設(shè)計(jì)基礎(chǔ)6.2 Qt Designer應(yīng)用6.3 QMainWindow6.4 Qt4數(shù)據(jù)庫(kù)應(yīng)用6.5 Qt4多線程應(yīng)用6.6 Qt4定時(shí)器6.7 Qt4事件處理6.8 Qt4網(wǎng)絡(luò)編程6.9 QSS樣式設(shè)計(jì)6.10 QGraphics View應(yīng)用6.11 自定義控件 6.6 Qt4 定時(shí)器QTimer創(chuàng)建定時(shí)器利用QObject:startTimer()來(lái)創(chuàng)建定時(shí)器定時(shí)器的例子 6.6.1QTimer創(chuàng)建定時(shí)器#include InheritsQObject屬性(Properties)公有成員方法(Public Function)公有插槽(Publi

2、c Slots)信號(hào)(Signals)靜態(tài)公有方法(Static Public Members)重載保護(hù)方法(Reimplemented Protected Functions) 6.6.1QTimer創(chuàng)建定時(shí)器-Properties屬性(Properties)active : const boolThis boolean property is true if the timer is running; otherwise falseinterval : intThis property holds the timeout interval in milliseconds.singleSho

3、t : boolThis property holds whether the timer is a single-shot timer.A single-shot timer fires only once, non-single-shot timers fire everyintervalmilliseconds. 6.6.1QTimer創(chuàng)建定時(shí)器- Public Function公有成員方法(Public Function)int interval() const獲取定時(shí)器時(shí)間間隔bool isActive() const 獲取定時(shí)器的狀態(tài):運(yùn)行與否bool isSingleShot()

4、 const 判斷是否為單觸發(fā)定時(shí)器void setInterval( intmsec)設(shè)置定時(shí)器間隔void setSingleShot( boolsingleShot)設(shè)置單觸發(fā)定時(shí)器int QTimer:timerId () const返回運(yùn)行中定時(shí)器的ID,否則返回-1. 6.6.1QTimer創(chuàng)建定時(shí)器- Public Slots公有插槽(Public Slots)void QTimer:start ( intmsec)啟動(dòng)或重啟制定時(shí)間間隔的定時(shí)器void QTimer:stop () 停止定時(shí)器 6.6.1QTimer創(chuàng)建定時(shí)器- Signals信號(hào)(Signals)void Q

5、Timer:timeout ()當(dāng)定時(shí)器的時(shí)間到時(shí),該信號(hào)就被發(fā)射。(This signal is emitted when the timer times out) 6.6.1QTimer創(chuàng)建定時(shí)器- Static Public Members靜態(tài)公有方法(Static Public Members)void QTimer:singleShot ( intmsec,QObject*receiver, const char *member)在給定的時(shí)間間隔到時(shí),該方法將調(diào)用一個(gè)插槽。該方法方便在于,不需要?jiǎng)?chuàng)建QTimer對(duì)象,用timerEvent來(lái)獲取時(shí)間到的處理。例子:#include #

6、include int main(int argc, char *argv) QApplication app(argc, argv); QTimer:singleShot(600000, &app, SLOT(quit(); . return app.exec(); 該例子的功能為在10分鐘(600000ms)后,結(jié)束該應(yīng)用程序。 6.6.1QTimer創(chuàng)建定時(shí)器- Reimplemented Functions重載保護(hù)方法(Reimplemented Protected Functions)void QTimer:timerEvent (QTimerEvent*e)重載QObject:ti

7、merEvent()方法。該方法適用于用startTimer()方法來(lái)創(chuàng)建的定時(shí)器。當(dāng)發(fā)生定時(shí)器事件時(shí),如時(shí)間間隔到,該方法就被調(diào)用。 6.6.2 QObject:startTimer()來(lái)創(chuàng)建定時(shí)器代替用QTimer類來(lái)創(chuàng)建定時(shí)器的另外一種方法為:調(diào)用QObject:startTimer() 方法來(lái)創(chuàng)建定時(shí)器。重載QObject:timerEvent() 方法來(lái)處理定時(shí)器事件。 6.6.3 定時(shí)器的例子定時(shí)器的例子QTimer *timer = new QTimer(this); connect(timer, SIGNAL(timeout(), this, SLOT(update(); timer-start(1000);該例子中timer啟動(dòng)后,update()插槽就會(huì)每隔1秒鐘被調(diào)用一次。如果只想觸發(fā)一次定時(shí)器事務(wù)。

溫馨提示

  • 1. 本站所有資源如無(wú)特殊說(shuō)明,都需要本地電腦安裝OFFICE2007和PDF閱讀器。圖紙軟件為CAD,CAXA,PROE,UG,SolidWorks等.壓縮文件請(qǐng)下載最新的WinRAR軟件解壓。
  • 2. 本站的文檔不包含任何第三方提供的附件圖紙等,如果需要附件,請(qǐng)聯(lián)系上傳者。文件的所有權(quán)益歸上傳用戶所有。
  • 3. 本站RAR壓縮包中若帶圖紙,網(wǎng)頁(yè)內(nèi)容里面會(huì)有圖紙預(yù)覽,若沒有圖紙預(yù)覽就沒有圖紙。
  • 4. 未經(jīng)權(quán)益所有人同意不得將文件中的內(nèi)容挪作商業(yè)或盈利用途。
  • 5. 人人文庫(kù)網(wǎng)僅提供信息存儲(chǔ)空間,僅對(duì)用戶上傳內(nèi)容的表現(xiàn)方式做保護(hù)處理,對(duì)用戶上傳分享的文檔內(nèi)容本身不做任何修改或編輯,并不能對(duì)任何下載內(nèi)容負(fù)責(zé)。
  • 6. 下載文件中如有侵權(quán)或不適當(dāng)內(nèi)容,請(qǐng)與我們聯(lián)系,我們立即糾正。
  • 7. 本站不保證下載資源的準(zhǔn)確性、安全性和完整性, 同時(shí)也不承擔(dān)用戶因使用這些下載資源對(duì)自己和他人造成任何形式的傷害或損失。

評(píng)論

0/150

提交評(píng)論