QT:QTimerEvent
QT::QTimerEventQTimerEvent类提供了一些用于描述定时器事件的参数。#includeQTimerEventInherits: QEven
QT::QTimerEvent
QTimerEvent类提供了一些用于描述定时器事件的参数。
#include<QTimerEvent>
Inherits: QEvent.
Public Functions
QTimerEvent ( int timerId )
int timerId () const
详细描述:
QTimerEvent类提供了一些用于描述定时器事件的参数。定时器事件按规定的时间间隔发送给对象用于启动一个活多个定时器,
每个定时器都有唯一的标示符,一个定时器用QObject::startTimer()开启。QTimer类提供了一个高阶编程接口从而用信号代替事件,同样也提供了单触发定时器。
事件处理器QObject::timerEvent()接收定时器事件。
也可以参考QTimer、QObject::timerEvent()、QObject::startTimer()、QObject::killTimer()、QObject::killTimers()和事件类。
Member Function Documentation
QTimerEvent::QTimerEvent ( int timerId )
构造一个定时器标识符为timerId的定时器事件对象。
int QTimerEvent::QTimerId()const
返回唯一的定时器标识符,和QObject::startTimer()返回的是同一个标识符。