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. 思维导图
相关推荐
不懒不懒5 分钟前
【HTML容器与表格布局实战指南】
java·开发语言
J_liaty6 分钟前
Java实现PDF添加水印的完整方案(支持灵活配置、平铺、多页策略)
java·开发语言·pdf
PPPPPaPeR.9 分钟前
从零实现一个简易 Shell:理解 Linux 进程与命令执行
linux·开发语言·c++
Yorlen_Zhang10 分钟前
python Tkinter Frame 深度解析与实战指南
开发语言·python
lly20240613 分钟前
Eclipse 关闭项目详解
开发语言
LXS_35718 分钟前
C++常用容器(下)---stack、queue、list、set、map
开发语言·c++·学习方法·改行学it
愚者游世21 分钟前
list Initialization各版本异同
开发语言·c++·学习·程序人生·算法
Poetinthedusk30 分钟前
WPF应用跟随桌面切换
开发语言·wpf
Hello World . .35 分钟前
数据结构:二叉树(Binary tree)
c语言·开发语言·数据结构·vim
叫我辉哥e137 分钟前
新手进阶Python:办公看板升级交互式可视化+移动端适配+多终端同步
开发语言·python