Fix typos.
[LameXP.git] / src / Model_Progress.h
blob9ab84a3e31829c340400a5ebb2fa28bd67560cbd
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
50 //Model functions
51 int columnCount(const QModelIndex &parent = QModelIndex()) const;
52 int rowCount(const QModelIndex &parent = QModelIndex()) const;
53 QVariant data(const QModelIndex &index, int role = Qt::DisplayRole) const;
54 QVariant headerData(int section, Qt::Orientation orientation, int role = Qt::DisplayRole) const;
56 //Public functions
57 const QStringList &getLogFile(const QModelIndex &index);
58 const QUuid &getJobId(const QModelIndex &index);
60 public slots:
61 void addJob(const QUuid &jobId, const QString &jobName, const QString &jobInitialStatus = QString("Initializing..."), int jobInitialState = JobRunning);
62 void updateJob(const QUuid &jobId, const QString &newStatus, int newState);
63 void appendToLog(const QUuid &jobId, const QString &line);
64 void addSystemMessage(const QString &text);
66 private:
67 QList<QUuid> m_jobList;
68 QMap<QUuid, QString> m_jobName;
69 QMap<QUuid, QString> m_jobStatus;
70 QMap<QUuid, int> m_jobState;
71 QMap<QUuid, QStringList> m_jobLogFile;
73 const QIcon m_iconRunning;
74 const QIcon m_iconPaused;
75 const QIcon m_iconComplete;
76 const QIcon m_iconFailed;
77 const QIcon m_iconSystem;