1 /***************************************************************************
3 * Open \______ \ ____ ____ | | _\_ |__ _______ ___
4 * Source | _// _ \_/ ___\| |/ /| __ \ / _ \ \/ /
5 * Jukebox | | ( <_> ) \___| < | \_\ ( <_> > < <
6 * Firmware |____|_ /\____/ \___ >__|_ \|___ /\____/__/\_ \
9 * Copyright (C) 2007 by Dominik Wenger
12 * This program is free software; you can redistribute it and/or
13 * modify it under the terms of the GNU General Public License
14 * as published by the Free Software Foundation; either version 2
15 * of the License, or (at your option) any later version.
17 * This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY
18 * KIND, either express or implied.
20 ****************************************************************************/
32 #include "encttssettings.h"
34 enum TTSStatus
{ FatalError
, NoError
, Warning
};
35 class TTSBase
: public EncTtsSettingInterface
39 enum Capability
{ None
= 0, RunInParallel
= 1 };
40 Q_DECLARE_FLAGS(Capabilities
, Capability
)
42 TTSBase(QObject
*parent
);
43 //! Child class should generate a clip
44 virtual TTSStatus
voice(QString text
,QString wavfile
, QString
* errStr
) =0;
45 //! Child class should do startup
46 virtual bool start(QString
*errStr
) =0;
47 //! child class should stop
48 virtual bool stop() =0;
51 //! Child class should return true, when configuration is good
52 virtual bool configOk()=0;
53 //! Child class should generate and insertSetting(..) its settings
54 virtual void generateSettings() = 0;
55 //! Chlid class should commit the Settings to permanent storage
56 virtual void saveSettings() = 0;
58 virtual Capabilities
capabilities() = 0;
61 static TTSBase
* getTTS(QObject
* parent
,QString ttsname
);
62 static QStringList
getTTSList();
63 static QString
getTTSName(QString tts
);
67 static void initTTSList();
70 static QMap
<QString
,QString
> ttsList
;
72 Q_DECLARE_OPERATORS_FOR_FLAGS(TTSBase::Capabilities
)