FS#10365 - Optional debug output for albumart.c
[kugel-rb.git] / rbutil / rbutilqt / talkfile.h
bloba6b9bb5490b713721ae8d0718b371d0313b38ed8
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 setDir(QDir dir){m_dir = dir; }
42 void setMountPoint(QString mountpoint) {m_mountpoint =mountpoint; }
44 void setOverwriteTalk(bool ov) {m_overwriteTalk = ov;}
45 void setRecursive(bool ov) {m_recursive = ov;}
46 void setStripExtensions(bool ov) {m_stripExtensions = ov;}
47 void setTalkFolders(bool ov) {m_talkFolders = ov;}
48 void setTalkFiles(bool ov) {m_talkFiles = ov;}
50 private slots:
51 void abort();
53 private:
54 bool cleanup(QStringList list);
55 QString stripExtension(QString filename);
56 void doAbort(QStringList cleanupList);
57 void resetProgress(int max);
58 bool createDirAndFileMaps(QDir startDir,QMultiMap<QString,QString> *dirMap,QMultiMap<QString,QString> *fileMap);
59 TTSStatus voiceList(QStringList toSpeak,QStringList& voicedEntries);
60 bool encodeList(QStringList toEncode,QStringList& encodedEntries);
61 bool copyTalkDirFiles(QMultiMap<QString,QString> dirMap,QString* errString);
62 bool copyTalkFileFiles(QMultiMap<QString,QString> fileMap,QString* errString);
64 TTSBase* m_tts;
65 EncBase* m_enc;
67 QDir m_dir;
68 QString m_mountpoint;
69 int m_progress;
71 bool m_overwriteTalk;
72 bool m_recursive;
73 bool m_stripExtensions;
74 bool m_talkFolders;
75 bool m_talkFiles;
77 ProgressloggerInterface* m_logger;
79 bool m_abort;
83 #endif