1 /***************************************************************************
3 * Open \______ \ ____ ____ | | _\_ |__ _______ ___
4 * Source | _// _ \_/ ___\| |/ /| __ \ / _ \ \/ /
5 * Jukebox | | ( <_> ) \___| < | \_\ ( <_> > < <
6 * Firmware |____|_ /\____/ \___ >__|_ \|___ /\____/__/\_ \
9 * Copyright (C) 2007 by Dominik Wenger
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 ****************************************************************************/
27 #include "progressloggerinterface.h"
32 class TalkFileCreator
:public QObject
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 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
;}
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
);
76 bool m_stripExtensions
;
80 ProgressloggerInterface
* m_logger
;