2012-01-28 19:59:04 +01:00
|
|
|
///////////////////////////////////////////////////////////////////////////////
|
|
|
|
// Simple x264 Launcher
|
2015-01-31 19:56:04 +01:00
|
|
|
// Copyright (C) 2004-2015 LoRd_MuldeR <MuldeR2@GMX.de>
|
2012-01-28 19:59:04 +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_logFile.h"
|
|
|
|
#include "thread_encode.h"
|
|
|
|
|
|
|
|
#include <QIcon>
|
2012-01-31 00:13:32 +01:00
|
|
|
#include <QApplication>
|
|
|
|
#include <QClipboard>
|
2013-05-11 21:52:07 +02:00
|
|
|
#include <QDir>
|
2012-01-28 19:59:04 +01:00
|
|
|
|
2013-05-11 21:52:07 +02:00
|
|
|
LogFileModel::LogFileModel(const QString &sourceName, const QString &outputName, const QString &configName)
|
2012-01-28 19:59:04 +01:00
|
|
|
{
|
2013-05-11 21:52:07 +02:00
|
|
|
m_lines << "Job not started yet." << QString();
|
|
|
|
m_lines << QString("Scheduled source: %1").arg(QDir::toNativeSeparators(sourceName));
|
|
|
|
m_lines << QString("Scheduled output: %1").arg(QDir::toNativeSeparators(outputName));
|
|
|
|
m_lines << QString("Scheduled config: %1").arg(configName);
|
2012-01-29 21:31:09 +01:00
|
|
|
m_firstLine = true;
|
2012-01-28 19:59:04 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
LogFileModel::~LogFileModel(void)
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
///////////////////////////////////////////////////////////////////////////////
|
|
|
|
// Model interface
|
|
|
|
///////////////////////////////////////////////////////////////////////////////
|
|
|
|
|
|
|
|
int LogFileModel::columnCount(const QModelIndex &parent) const
|
|
|
|
{
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
int LogFileModel::rowCount(const QModelIndex &parent) const
|
|
|
|
{
|
|
|
|
return m_lines.count();
|
|
|
|
}
|
|
|
|
|
|
|
|
QVariant LogFileModel::headerData(int section, Qt::Orientation orientation, int role) const
|
|
|
|
{
|
|
|
|
return QVariant();
|
|
|
|
}
|
|
|
|
|
|
|
|
QModelIndex LogFileModel::index(int row, int column, const QModelIndex &parent) const
|
|
|
|
{
|
|
|
|
return createIndex(row, column, NULL);
|
|
|
|
}
|
|
|
|
|
|
|
|
QModelIndex LogFileModel::parent(const QModelIndex &index) const
|
|
|
|
{
|
|
|
|
return QModelIndex();
|
|
|
|
}
|
|
|
|
|
|
|
|
QVariant LogFileModel::data(const QModelIndex &index, int role) const
|
|
|
|
{
|
2012-01-29 19:14:46 +01:00
|
|
|
if((role == Qt::DisplayRole) || (role == Qt::ToolTipRole))
|
2012-01-28 19:59:04 +01:00
|
|
|
{
|
|
|
|
if(index.row() >= 0 && index.row() < m_lines.count() && index.column() == 0)
|
|
|
|
{
|
|
|
|
return m_lines.at(index.row());
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return QVariant();
|
|
|
|
}
|
|
|
|
|
2012-01-31 00:13:32 +01:00
|
|
|
///////////////////////////////////////////////////////////////////////////////
|
|
|
|
// Public API
|
|
|
|
///////////////////////////////////////////////////////////////////////////////
|
|
|
|
|
|
|
|
void LogFileModel::copyToClipboard(void)
|
|
|
|
{
|
|
|
|
QClipboard *clipboard = QApplication::clipboard();
|
|
|
|
clipboard->setText(m_lines.join("\r\n"));
|
|
|
|
}
|
|
|
|
|
2012-01-28 19:59:04 +01:00
|
|
|
///////////////////////////////////////////////////////////////////////////////
|
|
|
|
// Slots
|
|
|
|
///////////////////////////////////////////////////////////////////////////////
|
|
|
|
|
|
|
|
void LogFileModel::addLogMessage(const QUuid &jobId, const QString &text)
|
|
|
|
{
|
|
|
|
beginInsertRows(QModelIndex(), m_lines.count(), m_lines.count());
|
2012-01-29 21:31:09 +01:00
|
|
|
|
|
|
|
if(m_firstLine)
|
|
|
|
{
|
|
|
|
m_firstLine = false;
|
|
|
|
m_lines.clear();
|
|
|
|
}
|
|
|
|
|
2012-01-29 19:14:46 +01:00
|
|
|
QStringList lines = text.split("\n");
|
|
|
|
for(int i = 0; i < lines.count(); i++)
|
|
|
|
{
|
|
|
|
m_lines.append(lines.at(i));
|
|
|
|
}
|
2012-01-29 21:31:09 +01:00
|
|
|
|
2012-01-28 19:59:04 +01:00
|
|
|
endInsertRows();
|
|
|
|
}
|