LameXP/src/Model_Progress.cpp

214 lines
4.8 KiB
C++
Raw Normal View History

2010-11-17 20:39:10 +01:00
///////////////////////////////////////////////////////////////////////////////
// LameXP - Audio Encoder Front-End
2011-01-01 17:04:25 +01:00
// Copyright (C) 2004-2011 LoRd_MuldeR <MuldeR2@GMX.de>
2010-11-17 20:39:10 +01:00
//
// This program is free software; you can redistribute it and/or modify
// it under the terms of the GNU General Public License as published by
// the Free Software Foundation; either version 2 of the License, or
// (at your option) any later version.
//
// This program is distributed in the hope that it will be useful,
// but WITHOUT ANY WARRANTY; without even the implied warranty of
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
// GNU General Public License for more details.
//
// You should have received a copy of the GNU General Public License along
// with this program; if not, write to the Free Software Foundation, Inc.,
// 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
//
// http://www.gnu.org/licenses/gpl-2.0.txt
///////////////////////////////////////////////////////////////////////////////
#include "Model_Progress.h"
#include <QUuid>
ProgressModel::ProgressModel(void)
:
m_iconRunning(":/icons/media_play.png"),
2010-11-17 20:39:10 +01:00
m_iconPaused(":/icons/control_pause_blue.png"),
m_iconComplete(":/icons/tick.png"),
m_iconFailed(":/icons/exclamation.png"),
m_iconSystem(":/icons/computer.png"),
m_iconWarning(":/icons/error.png")
2010-11-17 20:39:10 +01:00
{
}
ProgressModel::~ProgressModel(void)
{
}
int ProgressModel::columnCount(const QModelIndex &parent) const
{
return 2;
}
int ProgressModel::rowCount(const QModelIndex &parent) const
{
return m_jobList.count();
}
QVariant ProgressModel::data(const QModelIndex &index, int role) const
{
if(index.row() >= 0 && index.row() < m_jobList.count())
{
if(role == Qt::DisplayRole)
{
switch(index.column())
{
case 0:
return m_jobName.value(m_jobList.at(index.row()));
break;
case 1:
return m_jobStatus.value(m_jobList.at(index.row()));
break;
default:
return QVariant();
break;
}
}
else if(role == Qt::DecorationRole && index.column() == 0)
{
switch(m_jobState.value(m_jobList.at(index.row())))
{
case JobRunning:
return m_iconRunning;
2010-11-17 20:39:10 +01:00
break;
case JobPaused:
return m_iconPaused;
2010-11-17 20:39:10 +01:00
break;
case JobComplete:
return m_iconComplete;
2010-11-17 20:39:10 +01:00
break;
case JobSystem:
return m_iconSystem;
break;
case JobWarning:
return m_iconWarning;
break;
2010-11-17 20:39:10 +01:00
default:
return m_iconFailed;
2010-11-17 20:39:10 +01:00
break;
}
}
else if(role == Qt::TextAlignmentRole)
{
return (index.column() == 1) ? QVariant(Qt::AlignHCenter | Qt::AlignVCenter) : QVariant();
}
2010-11-17 20:39:10 +01:00
}
return QVariant();
}
QVariant ProgressModel::headerData(int section, Qt::Orientation orientation, int role) const
{
if(role == Qt::DisplayRole)
{
if(orientation == Qt::Horizontal)
{
switch(section)
{
case 0:
return tr("Job");
2010-11-17 20:39:10 +01:00
break;
case 1:
return tr("Status");
2010-11-17 20:39:10 +01:00
break;
default:
return QVariant();
break;
}
}
if(orientation == Qt::Vertical)
{
return QString::number(section + 1);
}
}
return QVariant();
}
void ProgressModel::addJob(const QUuid &jobId, const QString &jobName, const QString &jobInitialStatus, int jobInitialState)
2010-11-17 20:39:10 +01:00
{
if(m_jobList.contains(jobId))
2010-11-17 20:39:10 +01:00
{
return;
}
int newIndex = m_jobList.count();
beginInsertRows(QModelIndex(), newIndex, newIndex);
m_jobList.append(jobId);
m_jobName.insert(jobId, jobName);
m_jobStatus.insert(jobId, jobInitialStatus);
m_jobState.insert(jobId, jobInitialState);
m_jobLogFile.insert(jobId, QStringList());
endInsertRows();
2010-11-17 20:39:10 +01:00
}
void ProgressModel::updateJob(const QUuid &jobId, const QString &newStatus, int newState)
2010-11-17 20:39:10 +01:00
{
int row = m_jobList.indexOf(jobId);
if(row < 0)
2010-11-17 20:39:10 +01:00
{
return;
}
if(!newStatus.isEmpty()) m_jobStatus.insert(jobId, newStatus);
if(newState >= 0) m_jobState.insert(jobId, newState);
emit dataChanged(index(row, 0), index(row, 1));
2010-11-17 20:39:10 +01:00
}
void ProgressModel::appendToLog(const QUuid &jobId, const QString &line)
{
if(m_jobList.contains(jobId))
{
m_jobLogFile[jobId].append(line.split('\n'));
}
}
const QStringList &ProgressModel::getLogFile(const QModelIndex &index)
{
if(index.row() < m_jobList.count())
{
QUuid id = m_jobList.at(index.row());
return m_jobLogFile[id];
}
return *(reinterpret_cast<QStringList*>(NULL));
}
const QUuid &ProgressModel::getJobId(const QModelIndex &index)
{
if(index.row() < m_jobList.count())
{
return m_jobList.at(index.row());
}
return *(reinterpret_cast<QUuid*>(NULL));
}
void ProgressModel::addSystemMessage(const QString &text, bool isWarning)
{
const QUuid &jobId = QUuid::createUuid();
if(m_jobList.contains(jobId))
{
return;
}
int newIndex = m_jobList.count();
beginInsertRows(QModelIndex(), newIndex, newIndex);
m_jobList.append(jobId);
m_jobName.insert(jobId, text);
m_jobStatus.insert(jobId, QString());
m_jobState.insert(jobId, isWarning ? JobWarning : JobSystem);
m_jobLogFile.insert(jobId, QStringList());
endInsertRows();
}