OSDN Git Service

Added an option to shutdown the computer as soon as all files are completed.
[lamexp/LameXP.git] / src / Dialog_Processing.h
1 ///////////////////////////////////////////////////////////////////////////////
2 // LameXP - Audio Encoder Front-End
3 // Copyright (C) 2004-2011 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 #include <QUuid>
27 #include <QSystemTrayIcon>
28
29 class QMovie;
30 class QMenu;
31 class ProgressModel;
32 class ProcessThread;
33 class FileListModel;
34 class AudioFileModel;
35 class SettingsModel;
36
37 class ProcessingDialog : public QDialog, private Ui::ProcessingDialog
38 {
39         Q_OBJECT
40
41 public:
42         ProcessingDialog(FileListModel *fileListModel, AudioFileModel *metaInfo, SettingsModel *settings, QWidget *parent = 0);
43         ~ProcessingDialog(void);
44         
45         bool getShutdownFlag(void) { return m_shutdownFlag; }
46
47 private slots:
48         void initEncoding(void);
49         void doneEncoding(void);
50         void abortEncoding(void);
51         void processFinished(const QUuid &jobId, const QString &outFileName, bool success);
52         void progressModelChanged(void);
53         void logViewDoubleClicked(const QModelIndex &index);
54         void contextMenuTriggered(const QPoint &pos);
55         void contextMenuDetailsActionTriggered(void);
56         void contextMenuShowFileActionTriggered(void);
57         void systemTrayActivated(QSystemTrayIcon::ActivationReason reason);
58
59 protected:
60         void showEvent(QShowEvent *event);
61         void closeEvent(QCloseEvent *event);
62         bool eventFilter(QObject *obj, QEvent *event);
63
64 private:
65         void setCloseButtonEnabled(bool enabled);
66         void startNextJob(void);
67         AudioFileModel updateMetaInfo(const AudioFileModel &audioFile);
68         void writePlayList(void);
69         void shutdownComputer(void);
70         
71         QList<AudioFileModel> m_pendingJobs;
72         SettingsModel *m_settings;
73         AudioFileModel *m_metaInfo;
74         QList<ProcessThread*> m_threadList;
75         QMovie *m_progressIndicator;
76         ProgressModel *m_progressModel;
77         QMap<QUuid,QString> m_playList;
78         QMenu *m_contextMenu;
79         unsigned int m_runningThreads;
80         unsigned int m_currentFile;
81         QList<QUuid> m_allJobs;
82         QList<QUuid> m_succeededJobs;
83         QList<QUuid> m_failedJobs;
84         bool m_userAborted;
85         QSystemTrayIcon *m_systemTray;
86         bool m_shutdownFlag;
87 };