OSDN Git Service

d61d7719585e5665cebb0696da654f41b21da2e8
[lamexp/LameXP.git] / src / Model_Progress.h
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.
14 //
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.
18 //
19 // http://www.gnu.org/licenses/gpl-2.0.txt
20 ///////////////////////////////////////////////////////////////////////////////
21
22 #pragma once
23
24 #include <QAbstractTableModel>
25
26 #include <QString>
27 #include <QStringList>
28 #include <QMap>
29 #include <QIcon>
30 #include <QUuid>
31
32 class ProgressModel : public QAbstractTableModel
33 {
34         Q_OBJECT
35
36 public:
37         ProgressModel(void);
38         ~ProgressModel(void);
39
40         //Enums
41         enum JobState
42         {
43                 JobRunning = 0,
44                 JobPaused = 1,
45                 JobComplete = 2,
46                 JobFailed = 3,
47                 JobSystem = 4,
48                 JobWarning = 5,
49                 JobPerformance = 6
50         };
51         enum SysMsgType
52         {
53                 SysMsg_Info = 0,
54                 SysMsg_Performance = 1,
55                 SysMsg_Warning = 2
56         };
57
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;
63
64         //Public functions
65         const QStringList &getLogFile(const QModelIndex &index);
66         const QUuid &getJobId(const QModelIndex &index);
67         void restoreHiddenItems(void);
68
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);
74
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;
82
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;
90 };