QTDAY3

闹钟

头文件

#ifndef WIDGET_H
#define WIDGET_H

#include 
#include   //定时器事件处理函数
#include         //时间类
#include 
#include 
#include 
#include 



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_startbtn_clicked();

    void on_stopbtn_clicked();

private:
    Ui::Widget *ui;

    int tid;
    QTextToSpeech *speecher;

};
#endif // WIDGET_H

源文件

#include "widget.h"
#include "ui_widget.h"

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

    //启动定时器
    tid = startTimer(1000);

    //让停止按钮默认不可用
    ui->stopbtn->setEnabled(false);

    //构造演讲者
    speecher = new QTextToSpeech(this);

    //窗口标题
    this->setWindowTitle("clock");
    this->setWindowIcon(QIcon(":/C:/Users/PC/Desktop/my/my_icon.png"));

    //设置透明度
    this->setWindowOpacity(0.9);

}

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


void Widget::on_startbtn_clicked()
{
    //将启动按钮,两个编辑器不可用,停止按钮可用
    ui->stopbtn->setEnabled(true);
    ui->startbtn->setEnabled(false);
    ui->clocktxtedit->setEnabled(false);
    ui->clocktimeedit->setEnabled(false);
}

void Widget::on_stopbtn_clicked()
{
    int res = QMessageBox::warning(this,
                                   "警告",
                                   "确定停止吗",
                                   QMessageBox::Yes | QMessageBox::No);

    //将启动按钮,两个编辑器可用,停止按钮不可用
    if(res == QMessageBox::Yes)
    {
        ui->stopbtn->setEnabled(false);
        ui->startbtn->setEnabled(true);
        ui->clocktxtedit->setEnabled(true);
        ui->clocktimeedit->setEnabled(true);
        ui->clocktimeedit->clear();
    }
}

void Widget::timerEvent(QTimerEvent *e)
{
    if(e->timerId() == tid)
    {
        //获取系统时间
        QTime sys_time = QTime::currentTime();

        //将时间转换为字符串
        QString t = sys_time.toString("hh:mm:ss");

        //将字符串展示到ui界面
        ui->systimelab->setText(t);
        ui->systimelab->setAlignment(Qt::AlignCenter);

        //判断系统时间是否和设定时间相同
        if(ui->systimelab->text() == ui->clocktimeedit->text())
        {
            speecher->say(ui->clocktxtedit->toPlainText());
        }
    }
}

思维导图

QTDAY3_第1张图片

你可能感兴趣的:(c++,开发语言)