Replaygain pre-amp can be set in 0.5 dB steps.
[kugel-rb.git] / rbutil / rbutilqt / base / ttsfestival.h
blob8a687375bcc15eea5429b8934cfafd59544fd79f
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 <QTemporaryFile>
26 #include "ttsbase.h"
28 class TTSFestival : public TTSBase
30 enum ESettings
32 eSERVERPATH,
33 eCLIENTPATH,
34 eVOICE,
35 eVOICEDESC
38 Q_OBJECT
39 public:
40 TTSFestival(QObject* parent=NULL) : TTSBase(parent) {}
41 ~TTSFestival();
42 bool start(QString *errStr);
43 bool stop();
44 TTSStatus voice(QString text,QString wavfile, QString *errStr);
46 // for settings
47 bool configOk();
48 void generateSettings();
49 void saveSettings();
51 private slots:
52 void updateVoiceList();
53 void updateVoiceDescription();
54 void clearVoiceDescription();
55 private:
56 QTemporaryFile prologFile;
57 QString prologPath;
58 QString currentPath;
59 QStringList getVoiceList();
60 QString getVoiceInfo(QString voice);
62 inline void startServer();
63 inline bool ensureServerRunning();
64 QString queryServer(QString query, int timeout = -1);
65 QProcess serverProcess;
66 QStringList voices;
67 QMap<QString, QString> voiceDescriptions;
71 #endif