OSDN Git Service

Actually use selected encoder in progress dialog + forward output dir.
[lamexp/LameXP.git] / src / Dialog_Processing.h
1 ///////////////////////////////////////////////////////////////////////////////
2 // LameXP - Audio Encoder Front-End
3 // Copyright (C) 2004-2010 LoRd_MuldeR <MuldeR2@GMX.de>
4 //
5 // This program is free software; you can redistribute it and/or modify
6 // it under the terms of the GNU General Public License as published by
7 // the Free Software Foundation; either version 2 of the License, or
8 // (at your option) any later version.
9 //
10 // This program is distributed in the hope that it will be useful,
11 // but WITHOUT ANY WARRANTY; without even the implied warranty of
12 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
13 // GNU General Public License for more details.
14 //
15 // You should have received a copy of the GNU General Public License along
16 // with this program; if not, write to the Free Software Foundation, Inc.,
17 // 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
18 //
19 // http://www.gnu.org/licenses/gpl-2.0.txt
20 ///////////////////////////////////////////////////////////////////////////////
21
22 #pragma once
23
24 #include "../tmp/UIC_ProcessingDialog.h"
25
26 class QMovie;
27 class ProgressModel;
28 class ProcessThread;
29 class FileListModel;
30 class AudioFileModel;
31 class SettingsModel;
32
33 class ProcessingDialog : public QDialog, private Ui::ProcessingDialog
34 {
35         Q_OBJECT
36
37 public:
38         ProcessingDialog(FileListModel *fileListModel, SettingsModel *settings);
39         ~ProcessingDialog(void);
40
41 private slots:
42         void initEncoding(void);
43         void doneEncoding(void);
44         void abortEncoding(void);
45
46 protected:
47         void showEvent(QShowEvent *event);
48         void closeEvent(QCloseEvent *event);
49         bool eventFilter(QObject *obj, QEvent *event);
50
51 private:
52         void setCloseButtonEnabled(bool enabled);
53         void ProcessingDialog::startNextJob(void);
54         
55         QList<AudioFileModel> m_pendingJobs;
56         SettingsModel *m_settings;
57         QList<ProcessThread*> m_threadList;
58         QMovie *m_progressIndicator;
59         ProgressModel *m_progressModel;
60         unsigned int m_runningThreads;
61         bool m_userAborted;
62 };