OSDN Git Service

Bump version.
[lamexp/LameXP.git] / src / Dialog_CueImport.h
index b809ecf..09b4812 100644 (file)
@@ -1,11 +1,12 @@
 ///////////////////////////////////////////////////////////////////////////////
 // LameXP - Audio Encoder Front-End
-// Copyright (C) 2004-2011 LoRd_MuldeR <MuldeR2@GMX.de>
+// Copyright (C) 2004-2015 LoRd_MuldeR <MuldeR2@GMX.de>
 //
 // This program is free software; you can redistribute it and/or modify
 // it under the terms of the GNU General Public License as published by
 // the Free Software Foundation; either version 2 of the License, or
-// (at your option) any later version.
+// (at your option) any later version, but always including the *additional*
+// restrictions defined in the "License.txt" file.
 //
 // This program is distributed in the hope that it will be useful,
 // but WITHOUT ANY WARRANTY; without even the implied warranty of
 #pragma once
 
 #include <QDialog>
-#include "../tmp/UIC_CueSheetImport.h"
-
-#include "Model_AudioFile.h"
 
 class CueSheetModel;
 class LockedFile;
+class AudioFileModel;
 class FileListModel;
+class SettingsModel;
+
+//UIC forward declartion
+namespace Ui {
+       class CueSheetImport;
+}
 
-class CueImportDialog : public QDialog, private Ui::CueSheetImport
+//CueImportDialog class
+class CueImportDialog : public QDialog
 {
        Q_OBJECT
 
 public:
-       CueImportDialog(QWidget *parent, FileListModel *fileList, const QString &cueFile);
+       CueImportDialog(QWidget *parent, FileListModel *fileList, const QString &cueFile, const SettingsModel *settings);
        ~CueImportDialog(void);
 
        int exec(void);
 
 protected:
-       void CueImportDialog::showEvent(QShowEvent *event);
+       void showEvent(QShowEvent *event);
 
 private slots:
        void browseButtonClicked(void);
@@ -51,6 +57,8 @@ private slots:
        void analyzedFile(const AudioFileModel &file);
 
 private:
+       Ui::CueSheetImport *ui; //for Qt UIC
+       
        void importCueSheet(void);
        bool analyzeFiles(QStringList &files);
        void splitFiles(void);
@@ -58,7 +66,8 @@ private:
        CueSheetModel *m_model;
        FileListModel *m_fileList;
 
-       QList<LockedFile*> m_locks;
+       const SettingsModel *m_settings;
+
        QList<AudioFileModel> m_fileInfo;
        QString m_cueFileName;
        QString m_outputDir;