QT-Day4

思维导图

作业:

头文件

cpp 复制代码
#ifndef WIDGET_H
#define WIDGET_H

#include <QWidget>
#include <QMessageBox>
#include <QTimerEvent>//定时器事件类
#include <QTime>
#include <QDebug>
#include <QPushButton>
#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);

private slots:
void on_pushButton_clicked();

private:
Ui::Widget *ui;
int id1;
int id2;
QTimer *timer1;
QTimer *timer2;
QTextToSpeech *spech;
};
#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);
    ui->lab_back->setScaledContents(true);
    this->setAttribute(Qt::WA_TranslucentBackground);//去掉空白部分
    spech = new QTextToSpeech(this);


}

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


void Widget::on_pushButton_clicked()
{
    if(ui->lineEdit1->text()=="")
    {
        QMessageBox::information(this,"information","还没输入呢!",QMessageBox::Ok);
    }
    else
    {
        id1 = startTimer(1000);
    }
}

void Widget::timerEvent(QTimerEvent *e)
{
    if(e->timerId()==id1)
    {
        QTime system = QTime::currentTime();
        ui->lab1->setText(system.toString("hh:mm:ss"));
        ui->lab1->setAlignment(Qt::AlignCenter);
        if(ui->lineEdit1->text()==ui->lab1->text())
        {
            id2 = startTimer(1000);
        }
    }

    if(e->timerId()==id2)
    {
        spech->say(ui->lab3->text());
        spech->say(ui->lab3->text());
        spech->say(ui->lab3->text());
        spech->say(ui->lab3->text());
        spech->say(ui->lab3->text());
    }
}
相关推荐
xun_xin6662 分钟前
如何解决Qt与OpenCV编译器不匹配问题
开发语言·qt·opencv
代码雕刻家4 分钟前
C语言中fgets函数详解
c语言·开发语言
iナナ14 分钟前
Java自定义协议的发布订阅式消息队列(二)
java·开发语言·jvm·学习·spring·消息队列
IMPYLH17 分钟前
Lua 的 tostring 函数
开发语言·笔记·junit·单元测试·lua
c_h_o_i_c_e18 分钟前
MATLAB 帮助文档设置内置浏览器【Web浏览器/内置浏览器】
开发语言·matlab
橙序员小站21 分钟前
Java 接入Pinecone搭建知识库踩坑实记
java·开发语言·人工智能
CHANG_THE_WORLD23 分钟前
Python元组(Tuple)详解
开发语言·python
豆沙沙包?24 分钟前
2025年--Lc313-662. 二叉树最大宽度--java版
java·开发语言
CoderYanger25 分钟前
C.滑动窗口——2762. 不间断子数组
java·开发语言·数据结构·算法·leetcode·1024程序员节
2401_8534482328 分钟前
QT控制----单片机控制外设项目
stm32·qt·uart