2009-10-13 19:54:27 +00:00
|
|
|
/***************************************************************************
|
|
|
|
* __________ __ ___.
|
|
|
|
* Open \______ \ ____ ____ | | _\_ |__ _______ ___
|
|
|
|
* Source | _// _ \_/ ___\| |/ /| __ \ / _ \ \/ /
|
|
|
|
* Jukebox | | ( <_> ) \___| < | \_\ ( <_> > < <
|
|
|
|
* Firmware |____|_ /\____/ \___ >__|_ \|___ /\____/__/\_ \
|
|
|
|
* \/ \/ \/ \/ \/
|
|
|
|
*
|
|
|
|
* Copyright (C) 2009 by Dominik Wenger
|
|
|
|
*
|
|
|
|
* This program is free software; you can redistribute it and/or
|
|
|
|
* modify it under the terms of the GNU General Public License
|
|
|
|
* as published by the Free Software Foundation; either version 2
|
|
|
|
* of the License, or (at your option) any later version.
|
|
|
|
*
|
|
|
|
* This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY
|
|
|
|
* KIND, either express or implied.
|
|
|
|
*
|
|
|
|
****************************************************************************/
|
|
|
|
|
|
|
|
#ifndef TTSSAPI_H
|
|
|
|
#define TTSSAPI_H
|
|
|
|
|
|
|
|
#include "ttsbase.h"
|
|
|
|
|
|
|
|
class TTSSapi : public TTSBase
|
|
|
|
{
|
|
|
|
//! Enum to identify the settings
|
|
|
|
enum ESettings
|
|
|
|
{
|
|
|
|
eLANGUAGE,
|
|
|
|
eVOICE,
|
|
|
|
eSPEED,
|
|
|
|
eOPTIONS
|
|
|
|
};
|
2010-03-03 22:26:00 +00:00
|
|
|
|
|
|
|
Q_OBJECT
|
2009-10-13 19:54:27 +00:00
|
|
|
public:
|
|
|
|
TTSSapi(QObject* parent=NULL);
|
2010-03-03 22:26:00 +00:00
|
|
|
|
2009-10-13 19:54:27 +00:00
|
|
|
TTSStatus voice(QString text,QString wavfile, QString *errStr);
|
|
|
|
bool start(QString *errStr);
|
|
|
|
bool stop();
|
2011-09-26 21:28:05 +00:00
|
|
|
QString voiceVendor(void);
|
2010-06-04 21:22:25 +00:00
|
|
|
Capabilities capabilities();
|
2010-03-03 22:26:00 +00:00
|
|
|
|
2009-10-13 19:54:27 +00:00
|
|
|
// for settings
|
|
|
|
bool configOk();
|
|
|
|
void generateSettings();
|
|
|
|
void saveSettings();
|
2010-03-03 22:26:00 +00:00
|
|
|
|
2011-09-26 21:28:05 +00:00
|
|
|
private slots:
|
|
|
|
void updateVoiceList();
|
2010-03-03 22:26:00 +00:00
|
|
|
|
|
|
|
private:
|
2009-10-13 19:54:27 +00:00
|
|
|
QStringList getVoiceList(QString language);
|
2010-03-03 22:26:00 +00:00
|
|
|
|
2009-10-13 19:54:27 +00:00
|
|
|
QProcess* voicescript;
|
|
|
|
QTextStream* voicestream;
|
|
|
|
QString defaultLanguage;
|
2010-03-03 22:26:00 +00:00
|
|
|
|
2009-10-13 19:54:27 +00:00
|
|
|
QString m_TTSexec;
|
|
|
|
QString m_TTSOpts;
|
|
|
|
QString m_TTSTemplate;
|
|
|
|
QString m_TTSLanguage;
|
|
|
|
QString m_TTSVoice;
|
|
|
|
QString m_TTSSpeed;
|
|
|
|
bool m_sapi4;
|
2011-09-26 21:28:05 +00:00
|
|
|
bool m_started;
|
2009-10-13 19:54:27 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
#endif
|