Version v4.05 is released!
[LameXP.git] / src / Model_Progress.h
blob759c8c8da095433e26c8a176959918c9929685ec
1 ///////////////////////////////////////////////////////////////////////////////
2 // LameXP - Audio Encoder Front-End
3 // Copyright (C) 2004-2012 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 <QHash>
29 #include <QSet>
30 #include <QUuid>
31 #include <QIcon>
32 #include <QUuid>
34 class ProgressModel : public QAbstractTableModel
36 Q_OBJECT
38 public:
39 ProgressModel(void);
40 ~ProgressModel(void);
42 //Enums
43 enum JobState
45 JobRunning = 0,
46 JobPaused = 1,
47 JobComplete = 2,
48 JobFailed = 3,
49 JobSystem = 4,
50 JobWarning = 5,
51 JobPerformance = 6
53 enum SysMsgType
55 SysMsg_Info = 0,
56 SysMsg_Performance = 1,
57 SysMsg_Warning = 2
60 //Model functions
61 int columnCount(const QModelIndex &parent = QModelIndex()) const;
62 int rowCount(const QModelIndex &parent = QModelIndex()) const;
63 QVariant data(const QModelIndex &index, int role = Qt::DisplayRole) const;
64 QVariant headerData(int section, Qt::Orientation orientation, int role = Qt::DisplayRole) const;
66 //Public functions
67 const QStringList &getLogFile(const QModelIndex &index);
68 const QUuid &getJobId(const QModelIndex &index);
69 void restoreHiddenItems(void);
71 public slots:
72 void addJob(const QUuid &jobId, const QString &jobName, const QString &jobInitialStatus = QString("Initializing..."), int jobInitialState = JobRunning);
73 void updateJob(const QUuid &jobId, const QString &newStatus, int newState);
74 void appendToLog(const QUuid &jobId, const QString &line);
75 void addSystemMessage(const QString &text, int type = SysMsg_Info);
77 private:
78 QList<QUuid> m_jobList;
79 QList<QUuid> m_jobListHidden;
80 QHash<QUuid, QString> m_jobName;
81 QHash<QUuid, QString> m_jobStatus;
82 QHash<QUuid, int> m_jobState;
83 QHash<QUuid, QStringList> m_jobLogFile;
84 QHash<QUuid, int> m_jobIndexCache;
85 QSet<QUuid> m_jobIdentifiers;
87 const QIcon m_iconRunning;
88 const QIcon m_iconPaused;
89 const QIcon m_iconComplete;
90 const QIcon m_iconFailed;
91 const QIcon m_iconSystem;
92 const QIcon m_iconWarning;
93 const QIcon m_iconPerformance;