Qt day5

思维导图

Widget.h

cpp 复制代码
#ifndef WIDGET_H
#define WIDGET_H

#include <QWidget>
#include<QTime>
#include<QTimerEvent>
#include<QTextToSpeech>

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)override;

private slots:
    void on_pushButton_clicked();

private:
    Ui::Widget *ui;
    int id;
    QTextToSpeech *speecher;
    bool ok=false;
};
#endif // WIDGET_H

main.cpp

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

#include <QApplication>

int main(int argc, char *argv[])
{
    QApplication a(argc, argv);
    Widget w;
    w.show();
    return a.exec();
}

widget.cpp

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

Widget::Widget(QWidget *parent)
    : QWidget(parent)
    , ui(new Ui::Widget)
    , speecher(new QTextToSpeech(this))//初始化语音播报对象
{
    ui->setupUi(this);
    id=startTimer(1000);//开启定时器

}

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

void Widget::on_pushButton_clicked()
{
    //按钮按下判断按钮上的文本
    if(ui->pushButton->text()=="启动")
    {
       //当按钮上文本为启动时将闹钟启动
        ui->pushButton->setText("关闭");
        ok=true;
    }
    else
    {
        //当按钮上文本为关闭时说明闹钟已经启动,关闭闹钟
        ui->pushButton->setText("启动");
        ok=false;
    }
}
void Widget::timerEvent(QTimerEvent *e)
{
     if(e->timerId()==id)
     {
         QTime sys_time=QTime::currentTime();//获取当前系统事件
         QString t=sys_time.toString("hh:mm:ss");//将系统时间转换为字符串,设置到label中
         ui->label->setText(t);
         ui->label->setAlignment(Qt::AlignCenter);//设置label的文本居中
         if(t==ui->lineEdit->text()&&ok)//当闹钟时间与系统时间相同并且闹钟开启时开始语音播报label_3中的内容
         {
             for(int i=0;i<5;i++)
             {
                speecher->say(ui->label_3->text());
             }
             ui->pushButton->setText("开启");//关闭闹钟
         }
     }

}
相关推荐
胜天半月子34 分钟前
Python | 学习type()方法动态创建类
开发语言·python·学习
Zer0_on2 小时前
C++string类
开发语言·c++
Tomorrow'sThinker2 小时前
25年1月更新。Windows 上搭建 Python 开发环境:Python + PyCharm 安装全攻略(文中有安装包不用官网下载)
开发语言·python·pycharm
禁默2 小时前
深入浅出:Java 抽象类与接口
java·开发语言
白宇横流学长3 小时前
基于Java的银行排号系统的设计与实现【源码+文档+部署讲解】
java·开发语言·数据库
勉灬之3 小时前
封装上传组件,提供各种校验、显示预览、排序等功能
开发语言·前端·javascript
西猫雷婶5 小时前
python学opencv|读取图像(二十三)使用cv2.putText()绘制文字
开发语言·python·opencv
我要学编程(ಥ_ಥ)6 小时前
速通前端篇——JavaScript
开发语言·前端·javascript
HEU_firejef7 小时前
设计模式——工厂模式
java·开发语言·设计模式
云计算DevOps-韩老师7 小时前
【网络云SRE运维开发】2024第52周-每日【2024/12/31】小测-计算机网络参考模型和通信协议的理论和实操考题
开发语言·网络·计算机网络·云计算·运维开发