Updated Ukrainian translation.
[LameXP.git] / src / Model_Progress.h
blob9e8687748ac11ca0d262a56c397c3747225fd69d
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,
52 JobSkipped = 7
54 enum SysMsgType
56 SysMsg_Info = 0,
57 SysMsg_Performance = 1,
58 SysMsg_Warning = 2
61 //Model functions
62 int columnCount(const QModelIndex &parent = QModelIndex()) const;
63 int rowCount(const QModelIndex &parent = QModelIndex()) const;
64 QVariant data(const QModelIndex &index, int role = Qt::DisplayRole) const;
65 QVariant headerData(int section, Qt::Orientation orientation, int role = Qt::DisplayRole) const;
67 //Public functions
68 const QStringList &getLogFile(const QModelIndex &index) const;
69 const QUuid &getJobId(const QModelIndex &index) const;
70 const JobState getJobState(const QModelIndex &index) const;
71 const QIcon &ProgressModel::getIcon(ProgressModel::JobState state) const;
72 void restoreHiddenItems(void);
74 public slots:
75 void addJob(const QUuid &jobId, const QString &jobName, const QString &jobInitialStatus = QString("Initializing..."), int jobInitialState = JobRunning);
76 void updateJob(const QUuid &jobId, const QString &newStatus, int newState);
77 void appendToLog(const QUuid &jobId, const QString &line);
78 void addSystemMessage(const QString &text, int type = SysMsg_Info);
80 private:
81 QList<QUuid> m_jobList;
82 QList<QUuid> m_jobListHidden;
83 QHash<QUuid, QString> m_jobName;
84 QHash<QUuid, QString> m_jobStatus;
85 QHash<QUuid, int> m_jobState;
86 QHash<QUuid, QStringList> m_jobLogFile;
87 QHash<QUuid, int> m_jobIndexCache;
88 QSet<QUuid> m_jobIdentifiers;
90 const QIcon m_iconRunning;
91 const QIcon m_iconPaused;
92 const QIcon m_iconComplete;
93 const QIcon m_iconFailed;
94 const QIcon m_iconSystem;
95 const QIcon m_iconWarning;
96 const QIcon m_iconPerformance;
97 const QIcon m_iconSkipped;
98 const QIcon m_iconUndefined;
100 const QStringList m_emptyList;
101 const QUuid m_emptyUuid;