2012-01-28 19:59:04 +01:00
|
|
|
///////////////////////////////////////////////////////////////////////////////
|
|
|
|
// Simple x264 Launcher
|
2014-01-27 19:58:24 +01:00
|
|
|
// Copyright (C) 2004-2014 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
|
|
|
|
///////////////////////////////////////////////////////////////////////////////
|
|
|
|
|
|
|
|
#pragma once
|
|
|
|
|
|
|
|
#include "thread_encode.h"
|
|
|
|
|
|
|
|
#include "QAbstractItemModel"
|
|
|
|
#include <QUuid>
|
|
|
|
#include <QStringList>
|
|
|
|
#include <QMap>
|
|
|
|
|
|
|
|
class LogFileModel : public QAbstractItemModel
|
|
|
|
{
|
|
|
|
Q_OBJECT
|
|
|
|
|
|
|
|
public:
|
2013-05-11 21:52:07 +02:00
|
|
|
LogFileModel(const QString &sourceName, const QString &outputName, const QString &configName);
|
2012-01-28 19:59:04 +01:00
|
|
|
~LogFileModel(void);
|
|
|
|
|
|
|
|
virtual int columnCount(const QModelIndex &parent) const;
|
|
|
|
virtual int rowCount(const QModelIndex &parent) const;
|
|
|
|
virtual QVariant headerData(int section, Qt::Orientation orientation, int role) const;
|
|
|
|
virtual QModelIndex index(int row, int column, const QModelIndex &parent) const;
|
|
|
|
virtual QModelIndex parent (const QModelIndex &index) const;
|
|
|
|
virtual QVariant data(const QModelIndex &index, int role) const;
|
|
|
|
|
2012-01-31 00:13:32 +01:00
|
|
|
void copyToClipboard(void);
|
|
|
|
|
2012-01-28 19:59:04 +01:00
|
|
|
protected:
|
|
|
|
QStringList m_lines;
|
2012-01-29 21:31:09 +01:00
|
|
|
bool m_firstLine;
|
2012-01-28 19:59:04 +01:00
|
|
|
|
|
|
|
public slots:
|
|
|
|
void addLogMessage(const QUuid &jobId, const QString &text);
|
|
|
|
};
|