OSDN Git Service

Changed detection of QAAC for the new fully-static build.
[lamexp/LameXP.git] / src / Model_Progress.h
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.
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         };
50
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;
56
57         //Public functions
58         const QStringList &getLogFile(const QModelIndex &index);
59         const QUuid &getJobId(const QModelIndex &index);
60         void restoreHiddenItems(void);
61
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);
67
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;
75
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;
82 };