Packard Bell Vibe 500: correct the path to a proper one in rbutil (proper directory...
[kugel-rb.git] / rbutil / rbutilqt / base / ttsfestival.h
blob00a086af153614f379661fc348df56d48034bc23
1 /***************************************************************************
2 * __________ __ ___.
3 * Open \______ \ ____ ____ | | _\_ |__ _______ ___
4 * Source | _// _ \_/ ___\| |/ /| __ \ / _ \ \/ /
5 * Jukebox | | ( <_> ) \___| < | \_\ ( <_> > < <
6 * Firmware |____|_ /\____/ \___ >__|_ \|___ /\____/__/\_ \
7 * \/ \/ \/ \/ \/
9 * Copyright (C) 2009 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 ****************************************************************************/
22 #ifndef TTSFESTIVAL_H
23 #define TTSFESTIVAL_H
25 #include "ttsbase.h"
27 class TTSFestival : public TTSBase
29 enum ESettings
31 eSERVERPATH,
32 eCLIENTPATH,
33 eVOICE,
34 eVOICEDESC
37 Q_OBJECT
38 public:
39 TTSFestival(QObject* parent=NULL) : TTSBase(parent) {}
40 ~TTSFestival();
41 bool start(QString *errStr);
42 bool stop();
43 TTSStatus voice(QString text,QString wavfile, QString *errStr);
45 // for settings
46 bool configOk();
47 void generateSettings();
48 void saveSettings();
50 private slots:
51 void updateVoiceList();
52 void updateVoiceDescription();
53 void clearVoiceDescription();
54 private:
55 QStringList getVoiceList(QString path ="");
56 QString getVoiceInfo(QString voice,QString path ="");
58 inline void startServer(QString path="");
59 inline void ensureServerRunning(QString path="");
60 QString queryServer(QString query, int timeout = -1,QString path="");
61 QProcess serverProcess;
62 QStringList voices;
63 QMap<QString, QString> voiceDescriptions;
67 #endif