rbutil: completely rework how tts and encoders are configured. (FS#10070)
[kugel-rb.git] / rbutil / rbutilqt / talkfile.h
blobae69acfd781fada8965e20e359719261b34fbbdd
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);
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 setRecursive(bool ov) {m_recursive = ov;}
48 void setStripExtensions(bool ov) {m_stripExtensions = ov;}
49 void setTalkFolders(bool ov) {m_talkFolders = ov;}
50 void setTalkFiles(bool ov) {m_talkFiles = ov;}
52 private slots:
53 void abort();
55 private:
56 bool cleanup(QStringList list);
57 QString stripExtension(QString filename);
58 void doAbort(QStringList cleanupList);
59 void resetProgress(int max);
60 bool createDirAndFileMaps(QDir startDir,QMultiMap<QString,QString> *dirMap,QMultiMap<QString,QString> *fileMap);
61 TTSStatus voiceList(QStringList toSpeak,QStringList& voicedEntries);
62 bool encodeList(QStringList toEncode,QStringList& encodedEntries);
63 bool copyTalkDirFiles(QMultiMap<QString,QString> dirMap,QString* errString);
64 bool copyTalkFileFiles(QMultiMap<QString,QString> fileMap,QString* errString);
66 TTSBase* m_tts;
67 EncBase* m_enc;
68 RbSettings* settings;
70 QDir m_dir;
71 QString m_mountpoint;
72 int m_progress;
74 bool m_overwriteTalk;
75 bool m_recursive;
76 bool m_stripExtensions;
77 bool m_talkFolders;
78 bool m_talkFiles;
80 ProgressloggerInterface* m_logger;
82 bool m_abort;
86 #endif