Added indicators for current CPU usage, RAM usage and free disk space to the processi...
[LameXP.git] / src / Model_Progress.h
blob6dafead6ecc6a2ad4083f3d04d8c5cedc4423022
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 <QAbstractTableModel>
26 #include <QString>
27 #include <QStringList>
28 #include <QMap>
29 #include <QIcon>
30 #include <QUuid>
32 class ProgressModel : public QAbstractTableModel
34 Q_OBJECT
36 public:
37 ProgressModel(void);
38 ~ProgressModel(void);
40 //Enums
41 enum JobState
43 JobRunning = 0,
44 JobPaused = 1,
45 JobComplete = 2,
46 JobFailed = 3,
47 JobSystem = 4,
48 JobWarning = 5
51 //Model functions
52 int columnCount(const QModelIndex &parent = QModelIndex()) const;
53 int rowCount(const QModelIndex &parent = QModelIndex()) const;
54 QVariant data(const QModelIndex &index, int role = Qt::DisplayRole) const;
55 QVariant headerData(int section, Qt::Orientation orientation, int role = Qt::DisplayRole) const;
57 //Public functions
58 const QStringList &getLogFile(const QModelIndex &index);
59 const QUuid &getJobId(const QModelIndex &index);
60 void restoreHiddenItems(void);
62 public slots:
63 void addJob(const QUuid &jobId, const QString &jobName, const QString &jobInitialStatus = QString("Initializing..."), int jobInitialState = JobRunning);
64 void updateJob(const QUuid &jobId, const QString &newStatus, int newState);
65 void appendToLog(const QUuid &jobId, const QString &line);
66 void addSystemMessage(const QString &text, bool isWarning = false);
68 private:
69 QList<QUuid> m_jobList;
70 QList<QUuid> m_jobListHidden;
71 QMap<QUuid, QString> m_jobName;
72 QMap<QUuid, QString> m_jobStatus;
73 QMap<QUuid, int> m_jobState;
74 QMap<QUuid, QStringList> m_jobLogFile;
76 const QIcon m_iconRunning;
77 const QIcon m_iconPaused;
78 const QIcon m_iconComplete;
79 const QIcon m_iconFailed;
80 const QIcon m_iconSystem;
81 const QIcon m_iconWarning;