2012-01-28 16:40:14 +01:00
///////////////////////////////////////////////////////////////////////////////
// Simple x264 Launcher
// Copyright (C) 2004-2012 LoRd_MuldeR <MuldeR2@GMX.de>
//
// 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_main.h"
2012-01-28 18:55:40 +01:00
2012-01-28 16:40:14 +01:00
# include "global.h"
2012-01-28 18:55:40 +01:00
# include "model_jobList.h"
2012-01-29 19:14:46 +01:00
# include "model_options.h"
2012-01-29 04:06:07 +01:00
# include "win_addJob.h"
2012-01-28 18:55:40 +01:00
# include <QDate>
2012-01-28 19:59:04 +01:00
# include <QTimer>
2012-01-28 23:24:41 +01:00
# include <QCloseEvent>
# include <QMessageBox>
2012-01-29 15:57:23 +01:00
# include <QDesktopServices>
# include <QUrl>
2012-01-29 21:31:09 +01:00
# include <QDir>
2012-01-30 17:50:19 +01:00
# include <QLibrary>
2012-01-29 15:57:23 +01:00
const char * home_url = " http://mulder.brhack.net/ " ;
2012-01-28 16:40:14 +01:00
2012-02-02 02:13:02 +01:00
# define PRE_RELEASE (0)
2012-01-30 17:50:19 +01:00
2012-01-31 00:13:32 +01:00
# define SET_FONT_BOLD(WIDGET,BOLD) { QFont _font = WIDGET->font(); _font.setBold(BOLD); WIDGET->setFont(_font); }
# define SET_TEXT_COLOR(WIDGET,COLOR) { QPalette _palette = WIDGET->palette(); _palette.setColor(QPalette::WindowText, (COLOR)); _palette.setColor(QPalette::Text, (COLOR)); WIDGET->setPalette(_palette); }
2012-01-28 16:40:14 +01:00
///////////////////////////////////////////////////////////////////////////////
// Constructor & Destructor
///////////////////////////////////////////////////////////////////////////////
2012-01-29 01:19:50 +01:00
MainWindow : : MainWindow ( bool x64supported )
:
2012-01-29 21:31:09 +01:00
m_x64supported ( x64supported ) ,
m_appDir ( QApplication : : applicationDirPath ( ) ) ,
m_firstShow ( true )
2012-01-28 16:40:14 +01:00
{
//Init the dialog, from the .ui file
setupUi ( this ) ;
2012-01-29 19:14:46 +01:00
setWindowFlags ( windowFlags ( ) & ( ~ Qt : : WindowMaximizeButtonHint ) ) ;
2012-01-28 18:55:40 +01:00
//Register meta types
qRegisterMetaType < QUuid > ( " QUuid " ) ;
qRegisterMetaType < EncodeThread : : JobStatus > ( " EncodeThread::JobStatus " ) ;
//Freeze minimum size
setMinimumSize ( size ( ) ) ;
2012-01-31 00:13:32 +01:00
splitter - > setSizes ( QList < int > ( ) < < 16 < < 196 ) ;
2012-01-28 18:55:40 +01:00
2012-01-29 01:19:50 +01:00
//Update title
2012-01-29 21:31:09 +01:00
labelBuildDate - > setText ( tr ( " Built on %1 at %2 " ) . arg ( x264_version_date ( ) . toString ( Qt : : ISODate ) , QString : : fromLatin1 ( x264_version_time ( ) ) ) ) ;
2012-01-31 20:28:40 +01:00
labelBuildDate - > installEventFilter ( this ) ;
2012-01-30 17:50:19 +01:00
setWindowTitle ( QString ( " %1 (%2 Mode) " ) . arg ( windowTitle ( ) , m_x64supported ? " 64-Bit " : " 32-Bit " ) ) ;
if ( PRE_RELEASE ) setWindowTitle ( QString ( " %1 | PRE-RELEASE VERSION " ) . arg ( windowTitle ( ) ) ) ;
2012-01-28 18:55:40 +01:00
2012-01-31 20:28:40 +01:00
2012-01-28 18:55:40 +01:00
//Create model
m_jobList = new JobListModel ( ) ;
2012-01-28 23:24:41 +01:00
connect ( m_jobList , SIGNAL ( dataChanged ( QModelIndex , QModelIndex ) ) , this , SLOT ( jobChangedData ( QModelIndex , QModelIndex ) ) ) ;
2012-01-28 18:55:40 +01:00
jobsView - > setModel ( m_jobList ) ;
2012-01-31 00:13:32 +01:00
2012-01-28 18:55:40 +01:00
//Setup view
2012-01-28 23:24:41 +01:00
jobsView - > horizontalHeader ( ) - > setSectionHidden ( 3 , true ) ;
2012-01-28 18:55:40 +01:00
jobsView - > horizontalHeader ( ) - > setResizeMode ( 0 , QHeaderView : : Stretch ) ;
jobsView - > horizontalHeader ( ) - > setResizeMode ( 1 , QHeaderView : : Fixed ) ;
jobsView - > horizontalHeader ( ) - > setResizeMode ( 2 , QHeaderView : : Fixed ) ;
jobsView - > horizontalHeader ( ) - > resizeSection ( 1 , 150 ) ;
jobsView - > horizontalHeader ( ) - > resizeSection ( 2 , 90 ) ;
jobsView - > verticalHeader ( ) - > setResizeMode ( QHeaderView : : ResizeToContents ) ;
2012-01-28 19:59:04 +01:00
connect ( jobsView - > selectionModel ( ) , SIGNAL ( currentChanged ( QModelIndex , QModelIndex ) ) , this , SLOT ( jobSelected ( QModelIndex , QModelIndex ) ) ) ;
2012-01-28 18:55:40 +01:00
2012-01-31 00:13:32 +01:00
//Create context menu
QAction * actionClipboard = new QAction ( QIcon ( " :/buttons/page_paste.png " ) , tr ( " Copy to Clipboard " ) , logView ) ;
logView - > addAction ( actionClipboard ) ;
connect ( actionClipboard , SIGNAL ( triggered ( bool ) ) , this , SLOT ( copyLogToClipboard ( bool ) ) ) ;
jobsView - > addActions ( menuJob - > actions ( ) ) ;
2012-01-28 18:55:40 +01:00
//Enable buttons
connect ( buttonAddJob , SIGNAL ( clicked ( ) ) , this , SLOT ( addButtonPressed ( ) ) ) ;
2012-01-28 23:24:41 +01:00
connect ( buttonStartJob , SIGNAL ( clicked ( ) ) , this , SLOT ( startButtonPressed ( ) ) ) ;
connect ( buttonAbortJob , SIGNAL ( clicked ( ) ) , this , SLOT ( abortButtonPressed ( ) ) ) ;
2012-02-02 02:13:02 +01:00
connect ( buttonPauseJob , SIGNAL ( toggled ( bool ) ) , this , SLOT ( pauseButtonPressed ( bool ) ) ) ;
2012-01-28 23:24:41 +01:00
//Enable menu
connect ( actionAbout , SIGNAL ( triggered ( ) ) , this , SLOT ( showAbout ( ) ) ) ;
2012-01-29 15:57:23 +01:00
connect ( actionWebMulder , SIGNAL ( triggered ( ) ) , this , SLOT ( showWebLink ( ) ) ) ;
connect ( actionWebX264 , SIGNAL ( triggered ( ) ) , this , SLOT ( showWebLink ( ) ) ) ;
connect ( actionWebKomisar , SIGNAL ( triggered ( ) ) , this , SLOT ( showWebLink ( ) ) ) ;
connect ( actionWebJarod , SIGNAL ( triggered ( ) ) , this , SLOT ( showWebLink ( ) ) ) ;
connect ( actionWebWiki , SIGNAL ( triggered ( ) ) , this , SLOT ( showWebLink ( ) ) ) ;
2012-01-30 17:50:19 +01:00
connect ( actionWebBluRay , SIGNAL ( triggered ( ) ) , this , SLOT ( showWebLink ( ) ) ) ;
2012-01-29 19:14:46 +01:00
2012-01-31 00:13:32 +01:00
//Create floating label
m_label = new QLabel ( jobsView ) ;
m_label - > setText ( tr ( " No job created yet. Please click the 'Add New Job' button! " ) ) ;
m_label - > setAlignment ( Qt : : AlignHCenter | Qt : : AlignVCenter ) ;
SET_TEXT_COLOR ( m_label , Qt : : darkGray ) ;
SET_FONT_BOLD ( m_label , true ) ;
m_label - > setVisible ( true ) ;
m_label - > setContextMenuPolicy ( Qt : : ActionsContextMenu ) ;
m_label - > addActions ( jobsView - > actions ( ) ) ;
connect ( splitter , SIGNAL ( splitterMoved ( int , int ) ) , this , SLOT ( updateLabel ( ) ) ) ;
updateLabel ( ) ;
2012-01-29 19:14:46 +01:00
//Create options object
m_options = new OptionsModel ( ) ;
2012-01-28 16:40:14 +01:00
}
MainWindow : : ~ MainWindow ( void )
{
2012-01-28 23:24:41 +01:00
X264_DELETE ( m_jobList ) ;
2012-01-29 19:14:46 +01:00
X264_DELETE ( m_options ) ;
2012-01-31 00:13:32 +01:00
X264_DELETE ( m_label ) ;
2012-01-29 21:31:09 +01:00
while ( ! m_toolsList . isEmpty ( ) )
{
QFile * temp = m_toolsList . takeFirst ( ) ;
X264_DELETE ( temp ) ;
}
2012-01-28 16:40:14 +01:00
}
2012-01-28 18:55:40 +01:00
///////////////////////////////////////////////////////////////////////////////
// Slots
///////////////////////////////////////////////////////////////////////////////
void MainWindow : : addButtonPressed ( void )
{
2012-01-29 19:14:46 +01:00
AddJobDialog * addDialog = new AddJobDialog ( this , m_options ) ;
2012-01-29 15:57:23 +01:00
addDialog - > setRunImmediately ( ! havePendingJobs ( ) ) ;
2012-01-29 04:06:07 +01:00
int result = addDialog - > exec ( ) ;
if ( result = = QDialog : : Accepted )
{
2012-01-30 17:50:19 +01:00
2012-01-29 15:57:23 +01:00
EncodeThread * thrd = new EncodeThread
(
addDialog - > sourceFile ( ) ,
2012-01-29 19:14:46 +01:00
addDialog - > outputFile ( ) ,
2012-01-29 21:31:09 +01:00
m_options ,
2012-01-30 17:50:19 +01:00
QString ( " %1/toolset " ) . arg ( m_appDir ) ,
m_x64supported
2012-01-29 15:57:23 +01:00
) ;
2012-01-29 04:06:07 +01:00
QModelIndex newIndex = m_jobList - > insertJob ( thrd ) ;
2012-01-29 15:57:23 +01:00
if ( addDialog - > runImmediately ( ) )
{
jobsView - > selectRow ( newIndex . row ( ) ) ;
QApplication : : processEvents ( QEventLoop : : ExcludeUserInputEvents ) ;
m_jobList - > startJob ( newIndex ) ;
}
2012-01-31 00:13:32 +01:00
m_label - > setVisible ( false ) ;
2012-01-29 04:06:07 +01:00
}
X264_DELETE ( addDialog ) ;
2012-01-28 23:24:41 +01:00
}
2012-01-28 19:59:04 +01:00
2012-01-28 23:24:41 +01:00
void MainWindow : : startButtonPressed ( void )
{
m_jobList - > startJob ( jobsView - > currentIndex ( ) ) ;
2012-01-28 19:59:04 +01:00
}
2012-01-28 23:24:41 +01:00
void MainWindow : : abortButtonPressed ( void )
{
m_jobList - > abortJob ( jobsView - > currentIndex ( ) ) ;
}
2012-01-29 00:57:47 +01:00
2012-02-02 02:13:02 +01:00
void MainWindow : : pauseButtonPressed ( bool checked )
{
if ( checked )
{
m_jobList - > pauseJob ( jobsView - > currentIndex ( ) ) ;
}
else
{
m_jobList - > resumeJob ( jobsView - > currentIndex ( ) ) ;
}
}
2012-01-28 19:59:04 +01:00
void MainWindow : : jobSelected ( const QModelIndex & current , const QModelIndex & previous )
{
qDebug ( " Job selected: %d " , current . row ( ) ) ;
2012-01-28 23:24:41 +01:00
if ( logView - > model ( ) )
{
disconnect ( logView - > model ( ) , SIGNAL ( rowsInserted ( QModelIndex , int , int ) ) , this , SLOT ( jobLogExtended ( QModelIndex , int , int ) ) ) ;
}
2012-01-28 19:59:04 +01:00
logView - > setModel ( m_jobList - > getLogFile ( current ) ) ;
2012-01-28 23:24:41 +01:00
connect ( logView - > model ( ) , SIGNAL ( rowsInserted ( QModelIndex , int , int ) ) , this , SLOT ( jobLogExtended ( QModelIndex , int , int ) ) ) ;
QTimer : : singleShot ( 0 , logView , SLOT ( scrollToBottom ( ) ) ) ;
progressBar - > setValue ( m_jobList - > getJobProgress ( current ) ) ;
editDetails - > setText ( m_jobList - > data ( m_jobList - > index ( current . row ( ) , 3 , QModelIndex ( ) ) , Qt : : DisplayRole ) . toString ( ) ) ;
updateButtons ( m_jobList - > getJobStatus ( current ) ) ;
2012-01-31 00:13:32 +01:00
progressBar - > repaint ( ) ;
2012-01-28 23:24:41 +01:00
}
void MainWindow : : jobChangedData ( const QModelIndex & topLeft , const QModelIndex & bottomRight )
{
int selected = jobsView - > currentIndex ( ) . row ( ) ;
if ( topLeft . column ( ) < = 1 & & bottomRight . column ( ) > = 1 )
{
for ( int i = topLeft . row ( ) ; i < = bottomRight . row ( ) ; i + + )
{
2012-01-29 00:57:47 +01:00
EncodeThread : : JobStatus status = m_jobList - > getJobStatus ( m_jobList - > index ( i , 0 , QModelIndex ( ) ) ) ;
2012-01-28 23:24:41 +01:00
if ( i = = selected )
{
qDebug ( " Current job changed status! " ) ;
2012-01-29 00:57:47 +01:00
updateButtons ( status ) ;
}
if ( status = = EncodeThread : : JobStatus_Completed )
{
QTimer : : singleShot ( 0 , this , SLOT ( launchNextJob ( ) ) ) ;
2012-01-28 23:24:41 +01:00
}
}
}
else if ( topLeft . column ( ) < = 2 & & bottomRight . column ( ) > = 2 )
{
for ( int i = topLeft . row ( ) ; i < = bottomRight . row ( ) ; i + + )
{
if ( i = = selected )
{
progressBar - > setValue ( m_jobList - > getJobProgress ( m_jobList - > index ( i , 0 , QModelIndex ( ) ) ) ) ;
break ;
}
}
}
else if ( topLeft . column ( ) < = 3 & & bottomRight . column ( ) > = 3 )
{
for ( int i = topLeft . row ( ) ; i < = bottomRight . row ( ) ; i + + )
{
if ( i = = selected )
{
editDetails - > setText ( m_jobList - > data ( m_jobList - > index ( i , 3 , QModelIndex ( ) ) , Qt : : DisplayRole ) . toString ( ) ) ;
break ;
}
}
}
}
void MainWindow : : jobLogExtended ( const QModelIndex & parent , int start , int end )
{
QTimer : : singleShot ( 0 , logView , SLOT ( scrollToBottom ( ) ) ) ;
}
void MainWindow : : showAbout ( void )
{
QString text ;
2012-01-29 00:57:47 +01:00
text + = QString ( ) . sprintf ( " <nobr><tt>Simple x264 Launcher v%u.%02u - use 64-Bit x264 with 32-Bit Avisynth<br> " , x264_version_major ( ) , x264_version_minor ( ) ) ;
text + = QString ( ) . sprintf ( " Copyright (c) 2004-%04d LoRd_MuldeR <mulder2@gmx.de>. Some rights reserved.<br> " , qMax ( x264_version_date ( ) . year ( ) , QDate : : currentDate ( ) . year ( ) ) ) ;
text + = QString ( ) . sprintf ( " Built on %s at %s with %s for Win-%s.<br><br> " , x264_version_date ( ) . toString ( Qt : : ISODate ) . toLatin1 ( ) . constData ( ) , x264_version_time ( ) , x264_version_compiler ( ) , x264_version_arch ( ) ) ;
2012-01-28 23:24:41 +01:00
text + = QString ( ) . sprintf ( " This program is free software: you can redistribute it and/or modify<br> " ) ;
text + = QString ( ) . sprintf ( " it under the terms of the GNU General Public License <http://www.gnu.org/>.<br> " ) ;
text + = QString ( ) . sprintf ( " Note that this program is distributed with ABSOLUTELY NO WARRANTY.<br><br> " ) ;
2012-01-29 15:57:23 +01:00
text + = QString ( ) . sprintf ( " Please check the web-site at <a href= \" %s \" >%s</a> for updates !!!<br></tt></nobr> " , home_url , home_url ) ;
2012-01-29 00:57:47 +01:00
2012-02-01 01:08:54 +01:00
QMessageBox : : information ( this , tr ( " About... " ) , text . replace ( " - " , " − " ) , tr ( " Close " ) ) ;
2012-01-29 00:57:47 +01:00
}
2012-01-29 15:57:23 +01:00
void MainWindow : : showWebLink ( void )
{
if ( QObject : : sender ( ) = = actionWebMulder ) QDesktopServices : : openUrl ( QUrl ( home_url ) ) ;
if ( QObject : : sender ( ) = = actionWebX264 ) QDesktopServices : : openUrl ( QUrl ( " http://www.x264.com/ " ) ) ;
if ( QObject : : sender ( ) = = actionWebKomisar ) QDesktopServices : : openUrl ( QUrl ( " http://komisar.gin.by/ " ) ) ;
if ( QObject : : sender ( ) = = actionWebJarod ) QDesktopServices : : openUrl ( QUrl ( " http://www.x264.nl/ " ) ) ;
if ( QObject : : sender ( ) = = actionWebWiki ) QDesktopServices : : openUrl ( QUrl ( " http://mewiki.project357.com/wiki/X264_Settings " ) ) ;
2012-01-30 17:50:19 +01:00
if ( QObject : : sender ( ) = = actionWebBluRay ) QDesktopServices : : openUrl ( QUrl ( " http://www.x264bluray.com/ " ) ) ;
2012-01-29 15:57:23 +01:00
}
2012-01-29 00:57:47 +01:00
void MainWindow : : launchNextJob ( void )
{
const int rows = m_jobList - > rowCount ( QModelIndex ( ) ) ;
for ( int i = 0 ; i < rows ; i + + )
{
EncodeThread : : JobStatus status = m_jobList - > getJobStatus ( m_jobList - > index ( i , 0 , QModelIndex ( ) ) ) ;
if ( status = = EncodeThread : : JobStatus_Running | | status = = EncodeThread : : JobStatus_Running_Pass1 | | status = = EncodeThread : : JobStatus_Running_Pass2 )
{
qWarning ( " Still have a job running, won't launch next yet! " ) ;
return ;
}
}
for ( int i = 0 ; i < rows ; i + + )
{
EncodeThread : : JobStatus status = m_jobList - > getJobStatus ( m_jobList - > index ( i , 0 , QModelIndex ( ) ) ) ;
if ( status = = EncodeThread : : JobStatus_Enqueued )
{
m_jobList - > startJob ( m_jobList - > index ( i , 0 , QModelIndex ( ) ) ) ;
return ;
}
}
2012-01-28 23:24:41 +01:00
2012-01-29 00:57:47 +01:00
qWarning ( " No enqueued jobs left! " ) ;
2012-01-28 23:24:41 +01:00
}
2012-01-29 21:31:09 +01:00
void MainWindow : : init ( void )
{
2012-01-31 15:15:15 +01:00
static const char * binFiles = " x264.exe:x264_x64.exe:avs2yuv.exe " ;
2012-01-29 21:31:09 +01:00
QStringList binaries = QString : : fromLatin1 ( binFiles ) . split ( " : " , QString : : SkipEmptyParts ) ;
2012-01-31 00:13:32 +01:00
updateLabel ( ) ;
2012-01-30 17:50:19 +01:00
//Check all binaries
2012-01-29 21:31:09 +01:00
while ( ! binaries . isEmpty ( ) )
{
QString current = binaries . takeFirst ( ) ;
QFile * file = new QFile ( QString ( " %1/toolset/%2 " ) . arg ( m_appDir , current ) ) ;
if ( file - > open ( QIODevice : : ReadOnly ) )
{
2012-02-02 04:12:58 +01:00
bool binaryTypeOkay = false ;
DWORD binaryType ;
if ( GetBinaryType ( QWCHAR ( file - > fileName ( ) ) , & binaryType ) )
{
binaryTypeOkay = ( binaryType = = SCS_32BIT_BINARY | | binaryType = = SCS_64BIT_BINARY ) ;
}
if ( ! binaryTypeOkay )
{
QMessageBox : : critical ( this , tr ( " Invalid File! " ) , tr ( " <nobr>At least on required tool is not a valid Win32 binary:<br>%1<br><br>Please re-install the program in order to fix the problem!</nobr> " ) . arg ( QDir : : toNativeSeparators ( QString ( " %1/toolset/%2 " ) . arg ( m_appDir , current ) ) ) . replace ( " - " , " − " ) ) ;
qFatal ( QString ( " Binary is invalid: %1/toolset/%2 " ) . arg ( m_appDir , current ) . toLatin1 ( ) . constData ( ) ) ;
close ( ) ; qApp - > exit ( - 1 ) ; return ;
}
2012-01-29 21:31:09 +01:00
m_toolsList < < file ;
}
else
{
X264_DELETE ( file ) ;
QMessageBox : : critical ( this , tr ( " File Not Found! " ) , tr ( " <nobr>At least on required tool could not be found:<br>%1<br><br>Please re-install the program in order to fix the problem!</nobr> " ) . arg ( QDir : : toNativeSeparators ( QString ( " %1/toolset/%2 " ) . arg ( m_appDir , current ) ) ) . replace ( " - " , " − " ) ) ;
qFatal ( QString ( " Binary not found: %1/toolset/%2 " ) . arg ( m_appDir , current ) . toLatin1 ( ) . constData ( ) ) ;
2012-01-30 17:50:19 +01:00
close ( ) ; qApp - > exit ( - 1 ) ; return ;
2012-01-29 21:31:09 +01:00
}
}
2012-01-30 17:50:19 +01:00
//Pre-release popup
if ( PRE_RELEASE )
{
qsrand ( time ( NULL ) ) ; int rnd = qrand ( ) % 3 ;
int val = QMessageBox : : information ( this , tr ( " Pre-Release Version " ) , tr ( " Note: This is a pre-release version. Please do NOT use for production!<br>Click the button #%1 in order to continue...<br><br>(There will be no such message box in the final version of this application) " ) . arg ( QString : : number ( rnd + 1 ) ) , tr ( " (1) " ) , tr ( " (2) " ) , tr ( " (3) " ) , qrand ( ) % 3 ) ;
if ( rnd ! = val ) { close ( ) ; qApp - > exit ( - 1 ) ; return ; }
}
//Check for Avisynth support
bool avsAvailable = false ;
QLibrary * avsLib = new QLibrary ( " avisynth.dll " ) ;
if ( avsLib - > load ( ) )
{
avsAvailable = ( avsLib - > resolve ( " avs_create_script_environment " ) ! = NULL ) ;
}
if ( ! avsAvailable )
{
avsLib - > unload ( ) ; X264_DELETE ( avsLib ) ;
int val = QMessageBox : : warning ( this , tr ( " Avisynth Missing " ) , tr ( " <nobr>It appears that Avisynth is not currently installed on your computer.<br>Thus Avisynth input will not be working at all!<br><br>Please download and install Avisynth:<br><a href= \" http://sourceforge.net/projects/avisynth2/files/AviSynth%202.5/ \" >http://sourceforge.net/projects/avisynth2/files/AviSynth 2.5/</a></nobr> " ) . replace ( " - " , " − " ) , tr ( " Quit " ) , tr ( " Ignore " ) ) ;
if ( val ! = 1 ) { close ( ) ; qApp - > exit ( - 1 ) ; return ; }
}
2012-02-02 02:13:02 +01:00
//Check for expiration
if ( x264_version_date ( ) . addMonths ( 6 ) < QDate : : currentDate ( ) )
{
QMessageBox msgBox ( this ) ;
msgBox . setIcon ( QMessageBox : : Information ) ;
msgBox . setWindowTitle ( tr ( " Update Notification " ) ) ;
msgBox . setWindowFlags ( Qt : : Window | Qt : : WindowTitleHint | Qt : : CustomizeWindowHint ) ;
msgBox . setText ( tr ( " <nobr><tt>Oups, this version of 'Simple x264 Launcher' is more than 6 months old.<br><br>Please check the official web-site at <a href= \" %1 \" >%1</a> for updates!<br></tt></nobr> " ) . replace ( " - " , " − " ) . arg ( home_url ) ) ;
QPushButton * btn1 = msgBox . addButton ( tr ( " Discard " ) , QMessageBox : : NoRole ) ;
QPushButton * btn2 = msgBox . addButton ( tr ( " Discard " ) , QMessageBox : : AcceptRole ) ;
btn1 - > setEnabled ( false ) ;
btn2 - > setVisible ( false ) ;
QTimer : : singleShot ( 5000 , btn1 , SLOT ( hide ( ) ) ) ;
QTimer : : singleShot ( 5000 , btn2 , SLOT ( show ( ) ) ) ;
msgBox . exec ( ) ;
}
2012-01-29 21:31:09 +01:00
}
2012-01-31 00:13:32 +01:00
void MainWindow : : updateLabel ( void )
{
m_label - > setGeometry ( 0 , 0 , jobsView - > width ( ) , jobsView - > height ( ) ) ;
}
void MainWindow : : copyLogToClipboard ( bool checked )
{
qDebug ( " copyLogToClipboard " ) ;
if ( LogFileModel * log = dynamic_cast < LogFileModel * > ( logView - > model ( ) ) )
{
log - > copyToClipboard ( ) ;
MessageBeep ( MB_ICONINFORMATION ) ;
}
}
2012-01-28 23:24:41 +01:00
///////////////////////////////////////////////////////////////////////////////
// Event functions
///////////////////////////////////////////////////////////////////////////////
2012-01-29 21:31:09 +01:00
void MainWindow : : showEvent ( QShowEvent * e )
{
QMainWindow : : showEvent ( e ) ;
if ( m_firstShow )
{
m_firstShow = false ;
QTimer : : singleShot ( 0 , this , SLOT ( init ( ) ) ) ;
}
}
2012-01-28 23:24:41 +01:00
void MainWindow : : closeEvent ( QCloseEvent * e )
2012-01-29 15:57:23 +01:00
{
if ( havePendingJobs ( ) )
{
e - > ignore ( ) ;
MessageBeep ( MB_ICONWARNING ) ;
return ;
}
QMainWindow : : closeEvent ( e ) ;
}
2012-01-31 00:13:32 +01:00
void MainWindow : : resizeEvent ( QResizeEvent * e )
{
QMainWindow : : resizeEvent ( e ) ;
updateLabel ( ) ;
}
2012-01-31 20:28:40 +01:00
bool MainWindow : : eventFilter ( QObject * o , QEvent * e )
{
if ( ( o = = labelBuildDate ) & & ( e - > type ( ) = = QEvent : : MouseButtonPress ) )
{
QTimer : : singleShot ( 0 , this , SLOT ( showAbout ( ) ) ) ;
return true ;
}
return false ;
}
2012-01-29 15:57:23 +01:00
///////////////////////////////////////////////////////////////////////////////
// Private functions
///////////////////////////////////////////////////////////////////////////////
bool MainWindow : : havePendingJobs ( void )
2012-01-28 23:24:41 +01:00
{
const int rows = m_jobList - > rowCount ( QModelIndex ( ) ) ;
2012-01-29 15:57:23 +01:00
2012-01-28 23:24:41 +01:00
for ( int i = 0 ; i < rows ; i + + )
{
EncodeThread : : JobStatus status = m_jobList - > getJobStatus ( m_jobList - > index ( i , 0 , QModelIndex ( ) ) ) ;
if ( status ! = EncodeThread : : JobStatus_Completed & & status ! = EncodeThread : : JobStatus_Aborted & & status ! = EncodeThread : : JobStatus_Failed )
{
2012-01-29 15:57:23 +01:00
return true ;
2012-01-28 23:24:41 +01:00
}
}
2012-01-29 15:57:23 +01:00
return false ;
}
2012-01-28 23:24:41 +01:00
void MainWindow : : updateButtons ( EncodeThread : : JobStatus status )
{
qDebug ( " MainWindow::updateButtons(void) " ) ;
buttonStartJob - > setEnabled ( status = = EncodeThread : : JobStatus_Enqueued ) ;
2012-02-02 02:13:02 +01:00
buttonAbortJob - > setEnabled ( status = = EncodeThread : : JobStatus_Indexing | | status = = EncodeThread : : JobStatus_Running | | status = = EncodeThread : : JobStatus_Running_Pass1 | | status = = EncodeThread : : JobStatus_Running_Pass2 | | status = = EncodeThread : : JobStatus_Paused ) ;
buttonPauseJob - > setEnabled ( status = = EncodeThread : : JobStatus_Indexing | | status = = EncodeThread : : JobStatus_Running | | status = = EncodeThread : : JobStatus_Paused | | status = = EncodeThread : : JobStatus_Running_Pass1 | | status = = EncodeThread : : JobStatus_Running_Pass2 ) ;
buttonPauseJob - > setChecked ( status = = EncodeThread : : JobStatus_Paused | | status = = EncodeThread : : JobStatus_Pausing ) ;
2012-01-31 00:13:32 +01:00
actionJob_Start - > setEnabled ( buttonStartJob - > isEnabled ( ) ) ;
actionJob_Abort - > setEnabled ( buttonAbortJob - > isEnabled ( ) ) ;
2012-02-02 02:13:02 +01:00
actionJob_Pause - > setEnabled ( buttonPauseJob - > isEnabled ( ) ) ;
actionJob_Pause - > setChecked ( buttonPauseJob - > isChecked ( ) ) ;
editDetails - > setEnabled ( status ! = EncodeThread : : JobStatus_Paused ) ;
2012-01-28 18:55:40 +01:00
}