2012-02-01 01:08:54 +01:00
|
|
|
///////////////////////////////////////////////////////////////////////////////
|
|
|
|
// Simple x264 Launcher
|
2014-01-27 19:58:24 +01:00
|
|
|
// Copyright (C) 2004-2014 LoRd_MuldeR <MuldeR2@GMX.de>
|
2012-02-01 01:08:54 +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 "win_help.h"
|
2013-11-14 02:29:18 +01:00
|
|
|
#include "uic_win_help.h"
|
|
|
|
|
2012-02-01 01:08:54 +01:00
|
|
|
#include "global.h"
|
|
|
|
|
|
|
|
#include <QProcess>
|
|
|
|
#include <QScrollBar>
|
|
|
|
#include <QTimer>
|
|
|
|
|
2013-05-23 22:15:33 +02:00
|
|
|
#define AVS2_BINARY(BIN_DIR, IS_X64) QString("%1/%2/avs2yuv_%2.exe").arg((BIN_DIR), ((IS_X64) ? "x64" : "x86"))
|
|
|
|
#define X264_BINARY(BIN_DIR, IS_10BIT, IS_X64) QString("%1/%2/x264_%3_%2.exe").arg((BIN_DIR), ((IS_X64) ? "x64" : "x86"), ((IS_10BIT) ? "10bit" : "8bit"))
|
2012-03-29 15:20:26 +02:00
|
|
|
|
2012-02-01 01:08:54 +01:00
|
|
|
///////////////////////////////////////////////////////////////////////////////
|
|
|
|
// Constructor & Destructor
|
|
|
|
///////////////////////////////////////////////////////////////////////////////
|
|
|
|
|
2012-03-29 15:20:26 +02:00
|
|
|
HelpDialog::HelpDialog(QWidget *parent, bool avs2yuv, bool x64supported, bool use10BitEncoding)
|
2012-02-01 01:08:54 +01:00
|
|
|
:
|
|
|
|
QDialog(parent),
|
2012-03-29 15:20:26 +02:00
|
|
|
m_appDir(QApplication::applicationDirPath() + "/toolset"),
|
2012-02-12 15:58:28 +01:00
|
|
|
m_avs2yuv(avs2yuv),
|
2012-02-03 12:31:51 +01:00
|
|
|
m_x64supported(x64supported),
|
2012-03-29 15:20:26 +02:00
|
|
|
m_use10BitEncoding(use10BitEncoding),
|
2013-11-14 02:29:18 +01:00
|
|
|
m_process(new QProcess()),
|
|
|
|
ui(new Ui::HelpDialog())
|
2012-02-01 01:08:54 +01:00
|
|
|
{
|
|
|
|
//Init the dialog, from the .ui file
|
2013-11-14 02:29:18 +01:00
|
|
|
ui->setupUi(this);
|
2012-02-01 01:08:54 +01:00
|
|
|
setWindowFlags(windowFlags() & (~Qt::WindowContextHelpButtonHint));
|
|
|
|
|
|
|
|
//Fix size
|
|
|
|
setMinimumSize(size());
|
|
|
|
|
|
|
|
//Prepare process
|
|
|
|
m_process->setReadChannelMode(QProcess::MergedChannels);
|
|
|
|
m_process->setReadChannel(QProcess::StandardOutput);
|
|
|
|
connect(m_process, SIGNAL(readyRead()), this, SLOT(readyRead()));
|
|
|
|
connect(m_process, SIGNAL(finished(int, QProcess::ExitStatus)), this, SLOT(finished()));
|
|
|
|
|
|
|
|
m_startAgain = true;
|
|
|
|
}
|
|
|
|
|
|
|
|
HelpDialog::~HelpDialog(void)
|
|
|
|
{
|
|
|
|
delete m_process;
|
2013-11-14 02:29:18 +01:00
|
|
|
delete ui;
|
2012-02-01 01:08:54 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
///////////////////////////////////////////////////////////////////////////////
|
|
|
|
// Events
|
|
|
|
///////////////////////////////////////////////////////////////////////////////
|
|
|
|
|
|
|
|
void HelpDialog::showEvent(QShowEvent *event)
|
|
|
|
{
|
2013-11-14 02:29:18 +01:00
|
|
|
ui->logo_x264->setHidden(m_avs2yuv);
|
|
|
|
ui->logo_avisynth->setVisible(m_avs2yuv);
|
2012-02-13 16:44:50 +01:00
|
|
|
|
2012-02-01 01:08:54 +01:00
|
|
|
QDialog::showEvent(event);
|
2012-02-13 16:44:50 +01:00
|
|
|
|
2012-02-01 01:08:54 +01:00
|
|
|
m_startAgain = true;
|
2012-02-12 15:58:28 +01:00
|
|
|
|
|
|
|
if(!m_avs2yuv)
|
|
|
|
{
|
2012-03-29 15:20:26 +02:00
|
|
|
m_process->start(X264_BINARY(m_appDir, m_use10BitEncoding, m_x64supported), QStringList() << "--version");
|
2012-02-12 15:58:28 +01:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2013-05-23 22:15:33 +02:00
|
|
|
m_process->start(AVS2_BINARY(m_appDir, m_x64supported), QStringList());
|
2012-02-12 15:58:28 +01:00
|
|
|
}
|
2012-02-01 01:08:54 +01:00
|
|
|
|
|
|
|
if(!m_process->waitForStarted())
|
|
|
|
{
|
2013-11-14 02:29:18 +01:00
|
|
|
ui->plainTextEdit->appendPlainText(tr("Failed to create x264 process :-("));
|
2012-02-01 01:08:54 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void HelpDialog::closeEvent(QCloseEvent *e)
|
|
|
|
{
|
|
|
|
if(m_process->state() != QProcess::NotRunning)
|
|
|
|
{
|
|
|
|
e->ignore();
|
2013-11-03 18:34:20 +01:00
|
|
|
x264_beep(x264_beep_warning);
|
2012-02-01 01:08:54 +01:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
QDialog::closeEvent(e);
|
|
|
|
}
|
|
|
|
|
|
|
|
///////////////////////////////////////////////////////////////////////////////
|
|
|
|
// Slots
|
|
|
|
///////////////////////////////////////////////////////////////////////////////
|
|
|
|
|
|
|
|
void HelpDialog::readyRead(void)
|
|
|
|
{
|
|
|
|
while(m_process->canReadLine())
|
|
|
|
{
|
|
|
|
QString line = QString::fromLatin1(m_process->readLine());
|
|
|
|
while(line.endsWith('\r') || line.endsWith('\n'))
|
|
|
|
{
|
|
|
|
line = line.left(line.length() - 1);
|
|
|
|
}
|
2013-11-14 02:29:18 +01:00
|
|
|
ui->plainTextEdit->appendPlainText(line);
|
2012-02-01 01:08:54 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void HelpDialog::finished(void)
|
|
|
|
{
|
|
|
|
if(m_startAgain)
|
|
|
|
{
|
|
|
|
m_startAgain = false;
|
2012-02-12 15:58:28 +01:00
|
|
|
if(!m_avs2yuv)
|
2012-02-01 01:08:54 +01:00
|
|
|
{
|
2012-03-29 15:20:26 +02:00
|
|
|
m_process->start(X264_BINARY(m_appDir, m_use10BitEncoding, m_x64supported), QStringList() << "--fullhelp");
|
2013-11-14 02:29:18 +01:00
|
|
|
ui->plainTextEdit->appendPlainText("\n--------\n");
|
2012-02-12 15:58:28 +01:00
|
|
|
|
|
|
|
if(!m_process->waitForStarted())
|
|
|
|
{
|
2013-11-14 02:29:18 +01:00
|
|
|
ui->plainTextEdit->appendPlainText(tr("Failed to create x264 process :-("));
|
2012-02-12 15:58:28 +01:00
|
|
|
}
|
2012-02-01 01:08:54 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2013-11-14 02:29:18 +01:00
|
|
|
ui->plainTextEdit->verticalScrollBar()->setSliderPosition(0);
|
2012-02-01 01:08:54 +01:00
|
|
|
}
|
|
|
|
}
|