Colour targets: Revert an optimisation from almost 18 months ago that actually turned...
[Rockbox.git] / rbutil / rbutilqt / talkfile.h
blobf4e9b4c88e745352b1cc2f818f1260369b4d9195
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 TALKFILE_H
24 #define TALKFILE_H
26 #include <QtCore>
27 #include "progressloggerinterface.h"
29 #include "encoders.h"
30 #include "tts.h"
32 class TalkFileCreator :public QObject
34 Q_OBJECT
36 public:
37 TalkFileCreator(QObject* parent=0);
39 bool createTalkFiles(ProgressloggerInterface* logger);
41 void setSettings(RbSettings* sett) { settings = sett;}
43 void setDir(QDir dir){m_dir = dir; }
44 void setMountPoint(QString mountpoint) {m_mountpoint =mountpoint; }
46 void setOverwriteTalk(bool ov) {m_overwriteTalk = ov;}
47 void setOverwriteWav(bool ov) {m_overwriteWav = ov;}
48 void setRemoveWav(bool ov) {m_removeWav = ov;}
49 void setRecursive(bool ov) {m_recursive = ov;}
50 void setStripExtensions(bool ov) {m_stripExtensions = ov;}
51 void setTalkFolders(bool ov) {m_talkFolders = ov;}
52 void setTalkFiles(bool ov) {m_talkFiles = ov;}
54 private slots:
55 void abort();
57 private:
58 TTSBase* m_tts;
59 EncBase* m_enc;
60 RbSettings* settings;
62 QDir m_dir;
63 QString m_mountpoint;
65 bool m_overwriteTalk;
66 bool m_overwriteWav;
67 bool m_removeWav;
68 bool m_recursive;
69 bool m_stripExtensions;
70 bool m_talkFolders;
71 bool m_talkFiles;
73 ProgressloggerInterface* m_logger;
75 bool m_abort;
79 #endif