QTimer、QElapsedTimer、timeout()事件、singleShot事件

实现

QTimer 定时器 、timeout()事件、singleShot事件的使用 

QElapsedTimer 计数器的使用

布局

设置第一个和第二个groupBox高度为固定 

timerexample.cpp

#include "timerexample.h"
#include "ui_timerexample.h"
#include "QTime"
#include "QTimer"

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

    this->m_timer = new QTimer(this);
    this->m_timer->stop();
    m_timer->setTimerType(Qt::CoarseTimer);
    ui->radioCoarse->setChecked(true);
    ui->radioContinue->setChecked(true);
    connect(m_timer,SIGNAL(timeout()),this,SLOT(do_timer_timeout()));

    ui->btnStop->setEnabled(false);
}

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

void timerExample::do_timer_timeout()
{
    QApplication::beep();
    QTime curTime = QTime::currentTime();
    ui->lcdHour->display(curTime.hour());
    ui->lcdMinute->display(curTime.minute());
    ui->lcdSecond->display(curTime.second());

    if(m_timer->isSingleShot())
    {
        int tmpElapsed=  m_counter.elapsed();
        QString str = QString("流逝的时间:%1 毫秒").arg(tmpElapsed);
        ui->labElapsedTime->setText(str);
        ui->btnStop->setEnabled(false);
        ui->btnStart->setEnabled(true);
        ui->btnOneShot->setEnabled(true);
    }
}




void timerExample::on_btnStart_clicked()
{
    //给timer设置间隔
    m_timer->setInterval(ui->spinInterval->value());
    if(ui->radioContinue->isChecked()){
        m_timer->setSingleShot(false);
    }
    else if(ui->radioOneShot->isChecked())
    {
        m_timer->setSingleShot(true);
    }

    if(ui->radioPrecise->isChecked()){
        m_timer->setTimerType(Qt::PreciseTimer);
    }
    else if(ui->radioCoarse->isChecked())
    {
        m_timer->setTimerType(Qt::CoarseTimer);
    }
    else if(ui->radioVeryCoarse->isChecked())
    {
        m_timer->setTimerType(Qt::VeryCoarseTimer);
    }

    m_timer->start();
    m_counter.start();

    ui->btnStart->setEnabled(false);
    ui->btnOneShot->setEnabled(false);
    ui->btnStop->setEnabled(true);

}


void timerExample::on_btnStop_clicked()
{
    m_timer->stop();
    int tmp = m_counter.elapsed();
    int sec= tmp/1000;
    QString str =QString("流逝的时间:%1秒 %2 毫秒").arg(sec).arg(tmp%1000);
    ui->labElapsedTime->setText(str);


    ui->btnStart->setEnabled(true);
    ui->btnOneShot->setEnabled(true);
    ui->btnStop->setEnabled(false);
}

void timerExample::do_timer_shot()
{
    QApplication::beep();
    int tmp= m_counter.elapsed();
    QString str =QString("流逝的时间:%1 毫秒").arg(tmp);
    ui->labElapsedTime->setText(str);
}


void timerExample::on_btnOneShot_clicked()
{
    int interval = ui->spinInterval->value();
    QTimer::singleShot(interval,Qt::PreciseTimer,this,&timerExample::do_timer_shot);
    m_counter.start();
    ui->btnOneShot->setEnabled(false);

}

效果

 

步骤回顾

1、在.h文件中声明QTime *m_timer;  QElaplsedTimer m_count;

2、在.h文件中声明signal  do_time_out 

3、在构造函数中初始化 m_timer,先停止,设置setTimeStyle 精确模式,将timer的 timeout信号绑定到槽函数

4、设置interval,启动m_timer

5、执行timeout函数

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包

打赏作者

castlooo

你的鼓励将是我创作的最大动力

¥1 ¥2 ¥4 ¥6 ¥10 ¥20
扫码支付:¥1
获取中
扫码支付

您的余额不足,请更换扫码支付或充值

打赏作者

实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

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

余额充值