summaryrefslogtreecommitdiff
path: root/dgedit/audioextractor.h
diff options
context:
space:
mode:
authorBent Bisballe Nyeng <deva@aasimon.org>2014-04-15 09:55:45 +0200
committerBent Bisballe Nyeng <deva@aasimon.org>2014-04-15 09:55:45 +0200
commit0fcacc1c3329e905228ceb80903f69561a7db732 (patch)
tree0d1d636d5e0b95b1d4554ad112aa63bfaa79e7e0 /dgedit/audioextractor.h
parenta0bff571893f9afd5e4eb84ac52755f851398601 (diff)
New selections model.
Diffstat (limited to 'dgedit/audioextractor.h')
-rw-r--r--dgedit/audioextractor.h6
1 files changed, 4 insertions, 2 deletions
diff --git a/dgedit/audioextractor.h b/dgedit/audioextractor.h
index f18860b..a91fe6c 100644
--- a/dgedit/audioextractor.h
+++ b/dgedit/audioextractor.h
@@ -41,17 +41,19 @@ typedef QLinkedList< QPair<QString, QString> > AudioFileList;
class AudioExtractor : public QObject {
Q_OBJECT
public:
- AudioExtractor(QObject *parent);
+ AudioExtractor(Selections &selections, QObject *parent);
public slots:
void addFile(QString file, QString name);
void changeName(QString file, QString name);
void removeFile(QString file, QString name);
- void exportSelections(Selections selections, Levels levels);
+
+ void exportSelections();
void setExportPath(const QString &path);
void setOutputPrefix(const QString &prefix);
private:
+ Selections &selections;
AudioFileList audiofiles;
QString exportpath;
QString prefix;