QT计时器

widget.h

cpp 复制代码
#ifndef WIDGET_H
#define WIDGET_H

#include <QWidget>
#include <QTimerEvent> //计时器类
#include <QTime> //时间类
QT_BEGIN_NAMESPACE
namespace Ui { class Widget; }
QT_END_NAMESPACE

class Widget : public QWidget
{
    Q_OBJECT

public:
    Widget(QWidget *parent = nullptr);
    ~Widget();
    void timerEvent(QTimerEvent *e);//计时器函数

private slots:
    void on_pushButton_clicked();

    void on_pushButton_2_clicked();

private:
    Ui::Widget *ui;
    int tid; 
    int naozhong;
    QTime time;
};
#endif // WIDGET_H

widget.cpp

cpp 复制代码
#include "widget.h"
#include "ui_widget.h"

Widget::Widget(QWidget *parent)
    : QWidget(parent)
    , ui(new Ui::Widget)
{
    ui->setupUi(this);
    tid = startTimer(1000);//启动计时器
    ui->naozhongEdit->setPlaceholderText("请输入闹钟时间");
    ui->naozhongEdit->setFont(QFont("Agency FB",20,50,false));
   

}

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

void Widget::timerEvent(QTimerEvent *e)
{
    if(e->timerId() == tid)//系统时间的计时器事件
    {
        time = QTime::currentTime();//获取当前时间
        QString s = time.toString("hh:mm:ss");//将时间内容转换为qstring类型
        ui->sys_time_Lab->setText(s);//设置标签中内容
        ui->sys_time_Lab->setFont(QFont("Agency FB",80,50,false));//设置标签字体
        ui->sys_time_Lab->setAlignment(Qt::AlignCenter);//设置字体居中
    }
    if(e->timerId() == naozhong)//设置闹钟的计时器事件
    {
        time = QTime::currentTime();
        QString s = time.toString("hh:mm:ss");
        ui->sys_time_Lab->setText(s);
        if(s == ui->naozhongEdit->text())//如果系统时间与设置时间一致
        {
            ui->naozhongLab->setText("起床辣!!!!!");//显示内容
            ui->naozhongLab->setFont(QFont("Agency FB",60,50,false));//内容字体
        }
    }
}

void Widget::on_pushButton_clicked()
{
    naozhong = startTimer(1000);//点击开始设置naozhong计时器
}

void Widget::on_pushButton_2_clicked()
{
    killTimer(naozhong);//点击停止关闭naozhong计时器
}
相关推荐
我不会编程55511 小时前
Python Cookbook-5.1 对字典排序
开发语言·数据结构·python
李少兄11 小时前
Unirest:优雅的Java HTTP客户端库
java·开发语言·http
CoderIsArt11 小时前
QT中已知4个坐标位置求倾斜平面与倾斜角度
qt·平面
无名之逆11 小时前
Rust 开发提效神器:lombok-macros 宏库
服务器·开发语言·前端·数据库·后端·python·rust
似水এ᭄往昔11 小时前
【C语言】文件操作
c语言·开发语言
啊喜拔牙11 小时前
1. hadoop 集群的常用命令
java·大数据·开发语言·python·scala
xixixin_12 小时前
为什么 js 对象中引用本地图片需要写 require 或 import
开发语言·前端·javascript
W_chuanqi12 小时前
安装 Microsoft Visual C++ Build Tools
开发语言·c++·microsoft
anlogic12 小时前
Java基础 4.3
java·开发语言
A旧城以西13 小时前
数据结构(JAVA)单向,双向链表
java·开发语言·数据结构·学习·链表·intellij-idea·idea