Packard Bell Vibe 500: correct the path to a proper one in rbutil (proper directory...
[kugel-rb.git] / rbutil / rbutilqt / base / ttsbase.h
blob7c5932401f741c8c99b16dffd30d4237441fd3d9
1 /***************************************************************************
2 * __________ __ ___.
3 * Open \______ \ ____ ____ | | _\_ |__ _______ ___
4 * Source | _// _ \_/ ___\| |/ /| __ \ / _ \ \/ /
5 * Jukebox | | ( <_> ) \___| < | \_\ ( <_> > < <
6 * Firmware |____|_ /\____/ \___ >__|_ \|___ /\____/__/\_ \
7 * \/ \/ \/ \/ \/
9 * Copyright (C) 2007 by Dominik Wenger
10 * $Id$
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 ****************************************************************************/
23 #ifndef TTSBASE_H
24 #define TTSBASE_H
26 #include <QtCore>
27 #include <QProcess>
28 #include <QDateTime>
29 #include <QRegExp>
30 #include <QTcpSocket>
32 #include "encttssettings.h"
34 enum TTSStatus{ FatalError, NoError, Warning };
36 class TTSBase : public EncTtsSettingInterface
38 Q_OBJECT
39 public:
40 TTSBase(QObject *parent);
41 //! Child class should generate a clip
42 virtual TTSStatus voice(QString text,QString wavfile, QString* errStr) =0;
43 //! Child class should do startup
44 virtual bool start(QString *errStr) =0;
45 //! child class should stop
46 virtual bool stop() =0;
48 // configuration
49 //! Child class should return true, when configuration is good
50 virtual bool configOk()=0;
51 //! Child class should generate and insertSetting(..) its settings
52 virtual void generateSettings() = 0;
53 //! Chlid class should commit the Settings to permanent storage
54 virtual void saveSettings() = 0;
56 // static functions
57 static TTSBase* getTTS(QObject* parent,QString ttsname);
58 static QStringList getTTSList();
59 static QString getTTSName(QString tts);
61 private:
62 //inits the tts List
63 static void initTTSList();
65 protected:
66 static QMap<QString,QString> ttsList;
74 #endif