summaryrefslogtreecommitdiff
path: root/utils/rbutilqt/base/voicefile.h
diff options
context:
space:
mode:
Diffstat (limited to 'utils/rbutilqt/base/voicefile.h')
-rw-r--r--utils/rbutilqt/base/voicefile.h77
1 files changed, 77 insertions, 0 deletions
diff --git a/utils/rbutilqt/base/voicefile.h b/utils/rbutilqt/base/voicefile.h
new file mode 100644
index 0000000000..d34535e700
--- /dev/null
+++ b/utils/rbutilqt/base/voicefile.h
@@ -0,0 +1,77 @@
1/***************************************************************************
2 * __________ __ ___.
3 * Open \______ \ ____ ____ | | _\_ |__ _______ ___
4 * Source | _// _ \_/ ___\| |/ /| __ \ / _ \ \/ /
5 * Jukebox | | ( <_> ) \___| < | \_\ ( <_> > < <
6 * Firmware |____|_ /\____/ \___ >__|_ \|___ /\____/__/\_ \
7 * \/ \/ \/ \/ \/
8 *
9 * Copyright (C) 2007 by Dominik Wenger
10 *
11 * This program is free software; you can redistribute it and/or
12 * modify it under the terms of the GNU General Public License
13 * as published by the Free Software Foundation; either version 2
14 * of the License, or (at your option) any later version.
15 *
16 * This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY
17 * KIND, either express or implied.
18 *
19 ****************************************************************************/
20
21
22#ifndef VOICEFILE_H
23#define VOICEFILE_H
24
25#include <QtCore>
26#include "progressloggerinterface.h"
27
28#include "httpget.h"
29#include "voicefont.h"
30#include "talkgenerator.h"
31
32class VoiceFileCreator :public QObject
33{
34 Q_OBJECT
35public:
36 VoiceFileCreator(QObject* parent);
37
38 //start creation
39 bool createVoiceFile();
40
41 void setMountPoint(QString mountpoint) {m_mountpoint =mountpoint; }
42 void setLang(QString name) { m_lang = name; }
43 void setWavtrimThreshold(int th){m_wavtrimThreshold = th;}
44
45public slots:
46 void abort();
47
48signals:
49 void done(bool);
50 void aborted();
51 void logItem(QString, int); //! set logger item
52 void logProgress(int, int); //! set progress bar.
53
54private slots:
55 void downloadDone(bool error);
56
57private:
58
59 void create(void);
60 void cleanup();
61
62 HttpGet *getter;
63 QString m_filename; //the temporary file
64 QString m_mountpoint; //mountpoint of the device
65 QString m_path; //path where the wav and mp3 files are stored to
66 int m_targetid; //the target id
67 QString m_lang; // the language which will be spoken
68 QString m_versionstring; // version string to be used for logging
69 int m_wavtrimThreshold;
70 int m_voiceformat;
71
72 bool m_abort;
73 QList<TalkGenerator::TalkEntry> m_talkList;
74};
75
76#endif
77