Use a nice apostroph
[kugel-rb.git] / rbutil / rbutilqt / base / talkfile.h
blobb7b4c5b5a1f65d788ab94caf235c718c1d6e1c5e
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 "talkgenerator.h"
31 class TalkFileCreator :public QObject
33 Q_OBJECT
35 public:
36 TalkFileCreator(QObject* parent);
38 bool createTalkFiles();
40 void setDir(QDir dir){m_dir = dir; }
41 void setMountPoint(QString mountpoint) {m_mountpoint =mountpoint; }
43 void setGenerateOnlyNew(bool ov) {m_generateOnlyNew = 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 void setIgnoreFiles(QStringList wildcards) {m_ignoreFiles=wildcards;}
49 public slots:
50 void abort();
52 signals:
53 void done(bool);
54 void aborted();
55 void logItem(QString, int); //! set logger item
56 void logProgress(int, int); //! set progress bar.
58 private:
59 bool cleanup();
60 QString stripExtension(QString filename);
61 void doAbort();
62 void resetProgress(int max);
63 bool copyTalkFiles(QString* errString);
65 bool createTalkList(QDir startDir);
67 QDir m_dir;
68 QString m_mountpoint;
70 bool m_generateOnlyNew;
71 bool m_recursive;
72 bool m_stripExtensions;
73 bool m_talkFolders;
74 bool m_talkFiles;
75 QStringList m_ignoreFiles;
77 bool m_abort;
79 QList<TalkGenerator::TalkEntry> m_talkList;
83 #endif