Print the total duration when the process is completed.
[LameXP.git] / src / Dialog_Processing.h
blob2deb92e3ebfc59ebb7bffa3579991ce845e4901a
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.
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.
19 // http://www.gnu.org/licenses/gpl-2.0.txt
20 ///////////////////////////////////////////////////////////////////////////////
22 #pragma once
24 #include "../tmp/UIC_ProcessingDialog.h"
26 #include <QUuid>
27 #include <QSystemTrayIcon>
29 class QMovie;
30 class QMenu;
31 class ProgressModel;
32 class ProcessThread;
33 class FileListModel;
34 class AudioFileModel;
35 class SettingsModel;
36 class CPUObserverThread;
37 class RAMObserverThread;
38 class DiskObserverThread;
40 enum shutdownFlag_t
42 shutdownFlag_None = 0,
43 shutdownFlag_TurnPowerOff = 1,
44 shutdownFlag_Hibernate = 2
47 class ProcessingDialog : public QDialog, private Ui::ProcessingDialog
49 Q_OBJECT
51 public:
52 ProcessingDialog(FileListModel *fileListModel, AudioFileModel *metaInfo, SettingsModel *settings, QWidget *parent = 0);
53 ~ProcessingDialog(void);
55 int getShutdownFlag(void) { return m_shutdownFlag; }
57 private slots:
58 void initEncoding(void);
59 void doneEncoding(void);
60 void abortEncoding(void);
61 void processFinished(const QUuid &jobId, const QString &outFileName, bool success);
62 void progressModelChanged(void);
63 void logViewDoubleClicked(const QModelIndex &index);
64 void logViewSectionSizeChanged(int, int, int);
65 void contextMenuTriggered(const QPoint &pos);
66 void contextMenuDetailsActionTriggered(void);
67 void contextMenuShowFileActionTriggered(void);
68 void systemTrayActivated(QSystemTrayIcon::ActivationReason reason);
69 void cpuUsageHasChanged(const double val);
70 void ramUsageHasChanged(const double val);
71 void diskUsageHasChanged(const quint64 val);
73 protected:
74 void showEvent(QShowEvent *event);
75 void closeEvent(QCloseEvent *event);
76 bool eventFilter(QObject *obj, QEvent *event);
77 bool winEvent(MSG *message, long *result);
79 private:
80 void setCloseButtonEnabled(bool enabled);
81 void startNextJob(void);
82 AudioFileModel updateMetaInfo(const AudioFileModel &audioFile);
83 void writePlayList(void);
84 bool shutdownComputer(void);
85 QString time2text(const double timeVal) const;
87 QList<AudioFileModel> m_pendingJobs;
88 SettingsModel *m_settings;
89 AudioFileModel *m_metaInfo;
90 QList<ProcessThread*> m_threadList;
91 QMovie *m_progressIndicator;
92 ProgressModel *m_progressModel;
93 QMap<QUuid,QString> m_playList;
94 QMenu *m_contextMenu;
95 unsigned int m_runningThreads;
96 unsigned int m_currentFile;
97 QList<QUuid> m_allJobs;
98 QList<QUuid> m_succeededJobs;
99 QList<QUuid> m_failedJobs;
100 bool m_userAborted;
101 QSystemTrayIcon *m_systemTray;
102 int m_shutdownFlag;
103 CPUObserverThread *m_cpuObserver;
104 RAMObserverThread *m_ramObserver;
105 DiskObserverThread *m_diskObserver;
106 qint64 m_timerStart;