mirror of
https://invent.kde.org/graphics/okular
synced 2024-11-05 18:34:53 +00:00
6747e7fe8b
A future ECM update is going to force that on us, so do it now anyway
38 lines
705 B
C++
38 lines
705 B
C++
/*
|
|
SPDX-FileCopyrightText: 2008 Pino Toscano <pino@kde.org>
|
|
|
|
SPDX-License-Identifier: GPL-2.0-or-later
|
|
*/
|
|
|
|
#ifndef _TTS_H_
|
|
#define _TTS_H_
|
|
|
|
#include <QObject>
|
|
#include <QTextToSpeech>
|
|
|
|
class OkularTTS : public QObject
|
|
{
|
|
Q_OBJECT
|
|
public:
|
|
explicit OkularTTS(QObject *parent = nullptr);
|
|
~OkularTTS() override;
|
|
|
|
void say(const QString &text);
|
|
void stopAllSpeechs();
|
|
void pauseResumeSpeech();
|
|
|
|
public Q_SLOTS:
|
|
void slotSpeechStateChanged(QTextToSpeech::State state);
|
|
void slotConfigChanged();
|
|
|
|
Q_SIGNALS:
|
|
void isSpeaking(bool speaking);
|
|
void canPauseOrResume(bool speakingOrPaused);
|
|
|
|
private:
|
|
// private storage
|
|
class Private;
|
|
Private *d;
|
|
};
|
|
|
|
#endif
|