《QT学习笔记 —— 18. QT中定时器的使用》

定时器是用来处理周期性事件的一种对象,类似于硬件定时器。例如设置一个定时器的定时周期为 1000 毫秒,那么每 1000 毫秒就会发射定时器的 timeout() 信号,在信号关联的槽函数里就可以做相应的处理。Qt 中的定时器类是 QTimer。QTimer 不是一个可见的界面组件,在 UI 设计器的组件面板里找不到它

下面通过一个实例来了解定时器的使用。实例主要功能是实现每隔1S触发一次定时器。

首先创建好一个工程,工程的创建可以参考《QT学习笔记 —— 2. 使用向导创建QT项目》

创建好工程后的,工程结构如下:

我们先在widget.ui添加一个Label控件,如下所示:

修改widget.h

#ifndef WIDGET_H
#define WIDGET_H

#include <QWidget>

namespace Ui {
class Widget;
}

class Widget : public QWidget
{
    Q_OBJECT

public:
    explicit Widget(QWidget *parent = 0);
    ~Widget();

protected:
    //定时器事件
    void timerEvent(QTimerEvent *event);

private:
    Ui::Widget *ui;

    int timerId;
};

#endif // WIDGET_H

修改widget.cpp

#include "widget.h"
#include "ui_widget.h"
#include <QDebug>

Widget::Widget(QWidget *parent) :
    QWidget(parent),
    ui(new Ui::Widget)
{
    ui->setupUi(this);

    //启动定时器,单位为毫秒
    timerId = this->startTimer(1000);
}

Widget::~Widget()
{
    delete ui;
}

void Widget::timerEvent(QTimerEvent *event)
{
    static int sec = 0;

    ui->label->setText(QString("<center><h1>timer out: %1</h1></center>").arg(sec++));

    if (10 == sec)
    {   //停止定时器
        this->killTimer(timerId);
    }
    qDebug() << sec;
}

编译运行结果如下: 

 

如果我们需要多个定时器,那又该怎么实现呢?

修改widget.h

#ifndef WIDGET_H
#define WIDGET_H

#include <QWidget>

namespace Ui {
class Widget;
}

class Widget : public QWidget
{
    Q_OBJECT

public:
    explicit Widget(QWidget *parent = 0);
    ~Widget();

protected:
    //定时器事件
    void timerEvent(QTimerEvent *event);

private:
    Ui::Widget *ui;

    int timerId;
    int timerId2;
};

#endif // WIDGET_H

修改widget.cpp

#include "widget.h"
#include "ui_widget.h"
#include <QDebug>

Widget::Widget(QWidget *parent) :
    QWidget(parent),
    ui(new Ui::Widget)
{
    ui->setupUi(this);

    //启动定时器,单位为毫秒
    timerId = this->startTimer(1000);
    timerId2 = this->startTimer(500);
}

Widget::~Widget()
{
    delete ui;
}

void Widget::timerEvent(QTimerEvent *event)
{
    if (event->timerId() == this->timerId)
    {
        static int sec = 0;
        ui->label->setText(QString("<center><h1>timer out: %1</h1></center>").arg(sec++));

        if (10 == sec)
        {   //停止定时器
            this->killTimer(timerId);
        }
    }
    else if (event->timerId() == this->timerId2)
    {
        static int sec = 0;
        ui->label_2->setText(QString("<center><h1>timer out: %1</h1></center>").arg(sec++));
    }
}

 

 

https://blog.csdn.net/Vichael_Chan/article/details/99822303

 

 

 

 

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值