23062QTday3

完成文本编辑器的保存工作

cpp 复制代码
//保存文件
void Widget::on_savebtn_clicked()
{
    QString newfile=QFileDialog::getSaveFileName(this,
                                                 "保存文件",
                                                 "./",
                                                 "All(*.*);;Images(*.png *.xpm *.jpg);;Text files(*.txt);;");
    if(newfile.isNull())
    {
        QMessageBox::information(this,"提示","用户取消了保存文件");
        return;
    }
    QFile file(newfile);
    if (!file.open(QIODevice:: Truncate| QIODevice::ReadWrite| QIODevice::Text))
             return;
    QString msg=ui->textEdit->toPlainText();
    file.write(QByteArray(msg.toUtf8()));
    file.close();
}

运行结果:

头文件

cpp 复制代码
#ifndef WIDGET_H
#define WIDGET_H

#include <QWidget>
#include<QTimerEvent>
#include<QTime>
#include <QTextToSpeech>          //文本转语音类
#include<QVoice>
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_startbtn_clicked();

    void on_closebtn_clicked();

private:
    Ui::Widget *ui;
    int timer_id;
    //定义一个播报员
    QTextToSpeech *speecher;
};
#endif // WIDGET_H

源文件:

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

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

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


void Widget::on_startbtn_clicked()
{
    timer_id=this->startTimer(1000);

}

void Widget::on_closebtn_clicked()
{
  //  this->killTimer(timer_id);
    speecher->stop();
    ui->lineEdit->clear();//清空闹钟定时
}

void Widget::timerEvent(QTimerEvent *e)
{
    //给播报员实例化空间
    speecher = new QTextToSpeech(this);
    if(e->timerId()==timer_id)
    {
        QTime sys_t=QTime::currentTime();
        QString t=sys_t.toString("hh:mm:ss");
        ui->label->setText(t);
        if(t==ui->lineEdit->text())
        speecher->say(ui->textEdit->toPlainText());
        speecher->rate();

    }
}

测试文件:

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

#include <QApplication>

int main(int argc, char *argv[])
{
    QApplication a(argc, argv);
    Widget w;
    w.show();
    return a.exec();
}
相关推荐
L.S.V.19 分钟前
Java 溯本求源之基础(三十一)——泛型
java·开发语言
Redamancy_Xun26 分钟前
开源软件兼容性可信量化分析
java·开发语言·程序人生·网络安全·测试用例·可信计算技术
ZLRRLZ39 分钟前
【C++】多态
开发语言·c++
m0_748246611 小时前
【论文投稿】Python 网络爬虫:探秘网页数据抓取的奇妙世界
开发语言·爬虫·python
minstbe1 小时前
AI开发 - 算法基础 递归 的概念和入门(二)汉诺塔问题 递归的应用和使用注意 - Python
开发语言·python·算法
岁月如歌,青春不败1 小时前
HMSC联合物种分布模型
开发语言·人工智能·python·深度学习·r语言
言之。1 小时前
【Java】面试题 并发安全 (1)
java·开发语言
m0_748234521 小时前
2025最新版Java面试八股文大全
java·开发语言·面试
chengxuyuan1213_2 小时前
Python有哪些常用的库
开发语言·python
xiaosannihaiyl242 小时前
Scala语言的函数实现
开发语言·后端·golang