summaryrefslogtreecommitdiff
path: root/rbutil/rbutilqt/base/talkfile.h
diff options
context:
space:
mode:
Diffstat (limited to 'rbutil/rbutilqt/base/talkfile.h')
-rw-r--r--rbutil/rbutilqt/base/talkfile.h83
1 files changed, 83 insertions, 0 deletions
diff --git a/rbutil/rbutilqt/base/talkfile.h b/rbutil/rbutilqt/base/talkfile.h
new file mode 100644
index 0000000000..f82421416a
--- /dev/null
+++ b/rbutil/rbutilqt/base/talkfile.h
@@ -0,0 +1,83 @@
1/***************************************************************************
2 * __________ __ ___.
3 * Open \______ \ ____ ____ | | _\_ |__ _______ ___
4 * Source | _// _ \_/ ___\| |/ /| __ \ / _ \ \/ /
5 * Jukebox | | ( <_> ) \___| < | \_\ ( <_> > < <
6 * Firmware |____|_ /\____/ \___ >__|_ \|___ /\____/__/\_ \
7 * \/ \/ \/ \/ \/
8 *
9 * Copyright (C) 2007 by Dominik Wenger
10 * $Id$
11 *
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.
16 *
17 * This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY
18 * KIND, either express or implied.
19 *
20 ****************************************************************************/
21
22
23#ifndef TALKFILE_H
24#define TALKFILE_H
25
26#include <QtCore>
27#include "progressloggerinterface.h"
28
29#include "talkgenerator.h"
30
31class TalkFileCreator :public QObject
32{
33 Q_OBJECT
34
35public:
36 TalkFileCreator(QObject* parent);
37
38 bool createTalkFiles();
39
40 void setDir(QDir dir){m_dir = dir; }
41 void setMountPoint(QString mountpoint) {m_mountpoint =mountpoint; }
42
43 void setOverwriteTalk(bool ov) {m_overwriteTalk = ov;}
44 void setRecursive(bool ov) {m_recursive = ov;}
45 void setStripExtensions(bool ov) {m_stripExtensions = ov;}
46 void setTalkFolders(bool ov) {m_talkFolders = ov;}
47 void setTalkFiles(bool ov) {m_talkFiles = ov;}
48
49public slots:
50 void abort();
51
52signals:
53 void done(bool);
54 void aborted();
55 void logItem(QString, int); //! set logger item
56 void logProgress(int, int); //! set progress bar.
57
58private:
59 bool cleanup();
60 QString stripExtension(QString filename);
61 void doAbort();
62 void resetProgress(int max);
63 bool copyTalkFiles(QString* errString);
64
65 bool createTalkList(QDir startDir);
66
67 QDir m_dir;
68 QString m_mountpoint;
69
70 bool m_overwriteTalk;
71 bool m_recursive;
72 bool m_stripExtensions;
73 bool m_talkFolders;
74 bool m_talkFiles;
75
76 bool m_abort;
77
78 QList<TalkGenerator::TalkEntry> m_talkList;
79};
80
81
82#endif
83