QTimerEvent Class

The QTimerEvent class contains parameters that describe a timer event. 更多...

头文件: #include <QTimerEvent>
qmake: QT += core
基类: QEvent

公有函数

QTimerEvent(int timerId)
int timerId() const
  • 6 个公有函数继承自 QEvent

其他继承的成员

  • 1 个属性继承自 QEvent
  • 1 个静态公有成员继承自 QEvent

详细描述

The QTimerEvent class contains parameters that describe a timer event.

Timer events are sent at regular intervals to objects that have started one or more timers. Each timer has a unique identifier. A timer is started with QObject::startTimer().

The QTimer class provides a high-level programming interface that uses signals instead of events. It also provides single-shot timers.

The event handler QObject::timerEvent() receives timer events.

参见 QTimer, QObject::timerEvent(), QObject::startTimer(), and QObject::killTimer().

成员函数

QTimerEvent::QTimerEvent(int timerId)

Constructs a timer event object with the timer identifier set to timerId.

int QTimerEvent::timerId() const

Returns the unique timer identifier, which is the same identifier as returned from QObject::startTimer().