1 ///////////////////////////////////////////////////////////////////////////////
2 // LameXP - Audio Encoder Front-End
3 // Copyright (C) 2004-2013 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 <QAbstractTableModel>
27 #include <QStringList>
34 class ProgressModel
: public QAbstractTableModel
57 SysMsg_Performance
= 1,
62 int columnCount(const QModelIndex
&parent
= QModelIndex()) const;
63 int rowCount(const QModelIndex
&parent
= QModelIndex()) const;
64 QVariant
data(const QModelIndex
&index
, int role
= Qt::DisplayRole
) const;
65 QVariant
headerData(int section
, Qt::Orientation orientation
, int role
= Qt::DisplayRole
) const;
68 const QStringList
&getLogFile(const QModelIndex
&index
) const;
69 const QUuid
&getJobId(const QModelIndex
&index
) const;
70 const JobState
getJobState(const QModelIndex
&index
) const;
71 const QIcon
&ProgressModel::getIcon(ProgressModel::JobState state
) const;
72 void restoreHiddenItems(void);
75 void addJob(const QUuid
&jobId
, const QString
&jobName
, const QString
&jobInitialStatus
= QString("Initializing..."), int jobInitialState
= JobRunning
);
76 void updateJob(const QUuid
&jobId
, const QString
&newStatus
, int newState
);
77 void appendToLog(const QUuid
&jobId
, const QString
&line
);
78 void addSystemMessage(const QString
&text
, int type
= SysMsg_Info
);
81 QList
<QUuid
> m_jobList
;
82 QList
<QUuid
> m_jobListHidden
;
83 QHash
<QUuid
, QString
> m_jobName
;
84 QHash
<QUuid
, QString
> m_jobStatus
;
85 QHash
<QUuid
, int> m_jobState
;
86 QHash
<QUuid
, QStringList
> m_jobLogFile
;
87 QHash
<QUuid
, int> m_jobIndexCache
;
88 QSet
<QUuid
> m_jobIdentifiers
;
90 const QIcon m_iconRunning
;
91 const QIcon m_iconPaused
;
92 const QIcon m_iconComplete
;
93 const QIcon m_iconFailed
;
94 const QIcon m_iconSystem
;
95 const QIcon m_iconWarning
;
96 const QIcon m_iconPerformance
;
97 const QIcon m_iconSkipped
;
98 const QIcon m_iconUndefined
;
100 const QStringList m_emptyList
;
101 const QUuid m_emptyUuid
;