目前涉及到的主要有两种:
1、每隔一段时间执行
QTimer *timer =
new
QTimer(
this
);
connect(timer, SIGNAL(timeout()),
, SLOT(update()));
timer->start(1000); // 1秒
QTimer::singleShot(200, this, SLOT(update())); // 200ms