Bump version numbers for 3.13
[maemo-rb.git] / rbutil / rbutilqt / base / voicefile.h
blobd34535e70026b232940a511dd988a801711ec620
1 /***************************************************************************
2 * __________ __ ___.
3 * Open \______ \ ____ ____ | | _\_ |__ _______ ___
4 * Source | _// _ \_/ ___\| |/ /| __ \ / _ \ \/ /
5 * Jukebox | | ( <_> ) \___| < | \_\ ( <_> > < <
6 * Firmware |____|_ /\____/ \___ >__|_ \|___ /\____/__/\_ \
7 * \/ \/ \/ \/ \/
9 * Copyright (C) 2007 by Dominik Wenger
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.
16 * This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY
17 * KIND, either express or implied.
19 ****************************************************************************/
22 #ifndef VOICEFILE_H
23 #define VOICEFILE_H
25 #include <QtCore>
26 #include "progressloggerinterface.h"
28 #include "httpget.h"
29 #include "voicefont.h"
30 #include "talkgenerator.h"
32 class VoiceFileCreator :public QObject
34 Q_OBJECT
35 public:
36 VoiceFileCreator(QObject* parent);
38 //start creation
39 bool createVoiceFile();
41 void setMountPoint(QString mountpoint) {m_mountpoint =mountpoint; }
42 void setLang(QString name) { m_lang = name; }
43 void setWavtrimThreshold(int th){m_wavtrimThreshold = th;}
45 public slots:
46 void abort();
48 signals:
49 void done(bool);
50 void aborted();
51 void logItem(QString, int); //! set logger item
52 void logProgress(int, int); //! set progress bar.
54 private slots:
55 void downloadDone(bool error);
57 private:
59 void create(void);
60 void cleanup();
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;
72 bool m_abort;
73 QList<TalkGenerator::TalkEntry> m_talkList;
76 #endif