1 ///////////////////////////////////////////////////////////////////////////////
2 // LameXP - Audio Encoder Front-End
3 // Copyright (C) 2004-2011 LoRd_MuldeR <MuldeR2@GMX.de>
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.
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 ///////////////////////////////////////////////////////////////////////////////
24 #include "../tmp/UIC_ProcessingDialog.h"
27 #include <QSystemTrayIcon>
36 class DiskObserverThread
;
38 class ProcessingDialog
: public QDialog
, private Ui::ProcessingDialog
43 ProcessingDialog(FileListModel
*fileListModel
, AudioFileModel
*metaInfo
, SettingsModel
*settings
, QWidget
*parent
= 0);
44 ~ProcessingDialog(void);
46 bool getShutdownFlag(void) { return m_shutdownFlag
; }
49 void initEncoding(void);
50 void doneEncoding(void);
51 void abortEncoding(void);
52 void processFinished(const QUuid
&jobId
, const QString
&outFileName
, bool success
);
53 void progressModelChanged(void);
54 void logViewDoubleClicked(const QModelIndex
&index
);
55 void contextMenuTriggered(const QPoint
&pos
);
56 void contextMenuDetailsActionTriggered(void);
57 void contextMenuShowFileActionTriggered(void);
58 void systemTrayActivated(QSystemTrayIcon::ActivationReason reason
);
61 void showEvent(QShowEvent
*event
);
62 void closeEvent(QCloseEvent
*event
);
63 bool eventFilter(QObject
*obj
, QEvent
*event
);
66 void setCloseButtonEnabled(bool enabled
);
67 void startNextJob(void);
68 AudioFileModel
updateMetaInfo(const AudioFileModel
&audioFile
);
69 void writePlayList(void);
70 bool shutdownComputer(void);
72 QList
<AudioFileModel
> m_pendingJobs
;
73 SettingsModel
*m_settings
;
74 AudioFileModel
*m_metaInfo
;
75 QList
<ProcessThread
*> m_threadList
;
76 QMovie
*m_progressIndicator
;
77 ProgressModel
*m_progressModel
;
78 QMap
<QUuid
,QString
> m_playList
;
80 unsigned int m_runningThreads
;
81 unsigned int m_currentFile
;
82 QList
<QUuid
> m_allJobs
;
83 QList
<QUuid
> m_succeededJobs
;
84 QList
<QUuid
> m_failedJobs
;
86 QSystemTrayIcon
*m_systemTray
;
88 DiskObserverThread
*m_diskObserver
;