Updated FAQ document.
[LameXP.git] / src / Model_Progress.h
blob43dc34853af2ec38f17f3b365d6c8166c3596282
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,
49 JobPerformance = 6
51 enum SysMsgType
53 SysMsg_Info = 0,
54 SysMsg_Performance = 1,
55 SysMsg_Warning = 2
58 //Model functions
59 int columnCount(const QModelIndex &parent = QModelIndex()) const;
60 int rowCount(const QModelIndex &parent = QModelIndex()) const;
61 QVariant data(const QModelIndex &index, int role = Qt::DisplayRole) const;
62 QVariant headerData(int section, Qt::Orientation orientation, int role = Qt::DisplayRole) const;
64 //Public functions
65 const QStringList &getLogFile(const QModelIndex &index);
66 const QUuid &getJobId(const QModelIndex &index);
67 void restoreHiddenItems(void);
69 public slots:
70 void addJob(const QUuid &jobId, const QString &jobName, const QString &jobInitialStatus = QString("Initializing..."), int jobInitialState = JobRunning);
71 void updateJob(const QUuid &jobId, const QString &newStatus, int newState);
72 void appendToLog(const QUuid &jobId, const QString &line);
73 void addSystemMessage(const QString &text, int type = SysMsg_Info);
75 private:
76 QList<QUuid> m_jobList;
77 QList<QUuid> m_jobListHidden;
78 QMap<QUuid, QString> m_jobName;
79 QMap<QUuid, QString> m_jobStatus;
80 QMap<QUuid, int> m_jobState;
81 QMap<QUuid, QStringList> m_jobLogFile;
83 const QIcon m_iconRunning;
84 const QIcon m_iconPaused;
85 const QIcon m_iconComplete;
86 const QIcon m_iconFailed;
87 const QIcon m_iconSystem;
88 const QIcon m_iconWarning;
89 const QIcon m_iconPerformance;