24/01/11 qt work

  1. 作业:
cpp 复制代码
xx.h 文件


#ifndef MYWIDGET_H
#define MYWIDGET_H

#include <QWidget>
#include <QDate>
#include <QTime>
#include <QTimerEvent>
#include <QMessageBox>
#include <QDebug>
#include <QTextToSpeech>

QT_BEGIN_NAMESPACE
namespace Ui { class MyWidget; }
QT_END_NAMESPACE

class MyWidget : public QWidget
{
    Q_OBJECT

public:
    MyWidget(QWidget *parent = nullptr);
    ~MyWidget();
    //重写定时器事件
    void timerEvent(QTimerEvent *event);

private slots:
    void on_pushButton_clicked();

private:
    Ui::MyWidget *ui;
    int id;
    int id2;
    QString time;
    QString time2;
    //创建一个语言播报者
    QTextToSpeech *speecher;
};
#endif // MYWIDGET_H


#主程序

#include "mywidget.h"
#include "ui_mywidget.h"

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

    this->setWindowFlag(Qt::FramelessWindowHint);
    //去掉空白部分
    this->setAttribute(Qt::WA_TranslucentBackground);

    //启动定时器
    id = startTimer(1000);
    //给语音播报者实例化空间
    speecher = new QTextToSpeech(this);
}

MyWidget::~MyWidget()
{
    delete ui;
    killTimer(id);
    killTimer(id2);
}

void MyWidget::timerEvent(QTimerEvent *event)
{
    //判断定时器类型
    if(event->timerId() == id){

        QDate date = QDate::currentDate();
        //得到当前时间
        QString str1 = date.toString("yyyy-MM-dd");
        QTime time =  QTime::currentTime();

        QString str = time.toString("HH:mm:ss");
        time2 = str1+" "+str;
        ui->timeLabel->setText(time2);
        ui->timeLabel->setAlignment(Qt::AlignCenter);
    }else if(event->timerId() == id2){
        //时间一致,进行播报
        if(time == time2){
            for(int i=0;i<5;i++){
                speecher->say(ui->messageLabel->text());
                _sleep(200);
            }
        }
    }
}

//设置闹钟时间
void MyWidget::on_pushButton_clicked()
{
    QString str = ui->timeEdit->text();
    if(str == NULL){
        QMessageBox::information(this,
                                 "提示",
                                 "时间框不能为空");

    }

    time = str;
    qDebug() << time;

    //启动定时器
    id2 = startTimer(1000);
}
  1. 思维导图
相关推荐
czhaii11 分钟前
PLC脉冲位置 单片机跟踪读取记录显示
开发语言·c#
alden_ygq37 分钟前
当java进程内存使用超过jvm设置大小会发生什么?
java·开发语言·jvm
蜗牛沐雨1 小时前
Rust 中的 `PartialEq` 和 `Eq`:深入解析与应用
开发语言·后端·rust
Python私教1 小时前
Rust快速入门:从零到实战指南
开发语言·后端·rust
Mcworld8571 小时前
整数分解JAVA
java·开发语言
请你喝好果汁6411 小时前
python_竞态条件
开发语言·python
正在走向自律1 小时前
Python 数据分析与可视化:开启数据洞察之旅(5/10)
开发语言·人工智能·python·数据挖掘·数据分析
dudly2 小时前
Python 字典键 “三变一” 之谜
开发语言·python
饕餮争锋2 小时前
org.slf4j.MDC介绍-笔记
java·开发语言·笔记
半部论语2 小时前
jdk多版本切换,通过 maven 指定编译jdk版本不生效,解决思路
java·开发语言·maven·intellij-idea