2012-02-03 00:53:14 +01:00
///////////////////////////////////////////////////////////////////////////////
// Simple x264 Launcher
2015-01-31 19:56:04 +01:00
// Copyright (C) 2004-2015 LoRd_MuldeR <MuldeR2@GMX.de>
2012-02-03 00:53:14 +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_preferences.h"
2015-02-01 16:33:31 +01:00
# include "UIC_win_preferences.h"
2012-02-03 00:53:14 +01:00
2015-02-02 22:11:06 +01:00
//Internal
2012-02-03 00:53:14 +01:00
# include "global.h"
2013-07-03 21:34:21 +02:00
# include "model_preferences.h"
2014-02-12 19:34:14 +01:00
# include "model_sysinfo.h"
2012-02-03 00:53:14 +01:00
2015-02-02 22:11:06 +01:00
//MUtils
# include <MUtils/GUI.h>
//Qt
2012-02-03 00:53:14 +01:00
# include <QSettings>
# include <QDesktopServices>
2012-02-04 01:12:21 +01:00
# include <QMouseEvent>
2012-03-25 22:11:07 +02:00
# include <QMessageBox>
2012-02-03 00:53:14 +01:00
2013-12-14 22:30:19 +01:00
static inline void UPDATE_CHECKBOX ( QCheckBox * const chkbox , const bool value , const bool block = false )
2013-11-14 02:29:18 +01:00
{
if ( block ) { chkbox - > blockSignals ( true ) ; }
if ( chkbox - > isChecked ( ) ! = value ) chkbox - > click ( ) ;
if ( chkbox - > isChecked ( ) ! = value ) chkbox - > setChecked ( value ) ;
if ( block ) { chkbox - > blockSignals ( false ) ; }
}
static inline void UPDATE_COMBOBOX ( QComboBox * const cobox , const int value , const int defVal )
{
const int count = cobox - > count ( ) ;
for ( int i = 0 ; i < count ; i + + )
{
const int current = cobox - > itemData ( i ) . toInt ( ) ;
if ( ( current = = value ) | | ( current = = defVal ) )
{
cobox - > setCurrentIndex ( i ) ;
if ( ( current = = value ) ) break ;
}
}
}
2012-02-06 16:13:24 +01:00
2014-02-12 19:34:14 +01:00
PreferencesDialog : : PreferencesDialog ( QWidget * parent , PreferencesModel * preferences , const SysinfoModel * sysinfo )
2012-02-03 00:53:14 +01:00
:
2012-02-05 02:49:08 +01:00
QDialog ( parent ) ,
2014-02-12 19:34:14 +01:00
m_sysinfo ( sysinfo ) ,
2013-11-14 02:29:18 +01:00
ui ( new Ui : : PreferencesDialog ( ) )
2012-02-03 00:53:14 +01:00
{
2013-11-14 02:29:18 +01:00
ui - > setupUi ( this ) ;
2012-02-03 00:53:14 +01:00
setWindowFlags ( windowFlags ( ) & ( ~ Qt : : WindowContextHelpButtonHint ) ) ;
2012-02-04 01:12:21 +01:00
setFixedSize ( minimumSize ( ) ) ;
2015-02-02 22:11:06 +01:00
MUtils : : GUI : : enable_close_button ( this , false ) ;
2013-07-03 23:56:41 +02:00
2013-11-14 02:29:18 +01:00
ui - > comboBoxPriority - > setItemData ( 0 , QVariant : : fromValue ( 1 ) ) ; //Above Normal
ui - > comboBoxPriority - > setItemData ( 1 , QVariant : : fromValue ( 0 ) ) ; //Normal
ui - > comboBoxPriority - > setItemData ( 2 , QVariant : : fromValue ( - 1 ) ) ; //Below Normal
ui - > comboBoxPriority - > setItemData ( 3 , QVariant : : fromValue ( - 2 ) ) ; //Idle
ui - > labelRunNextJob - > installEventFilter ( this ) ;
ui - > labelUse64BitAvs2YUV - > installEventFilter ( this ) ;
ui - > labelShutdownComputer - > installEventFilter ( this ) ;
ui - > labelSaveLogFiles - > installEventFilter ( this ) ;
ui - > labelSaveToSourceFolder - > installEventFilter ( this ) ;
ui - > labelEnableSounds - > installEventFilter ( this ) ;
ui - > labelDisableWarnings - > installEventFilter ( this ) ;
2013-12-14 22:30:19 +01:00
ui - > labelNoUpdateReminder - > installEventFilter ( this ) ;
ui - > checkBoxDummy1 - > installEventFilter ( this ) ;
ui - > checkBoxDummy2 - > installEventFilter ( this ) ;
2013-11-14 02:29:18 +01:00
connect ( ui - > resetButton , SIGNAL ( clicked ( ) ) , this , SLOT ( resetButtonPressed ( ) ) ) ;
connect ( ui - > checkDisableWarnings , SIGNAL ( toggled ( bool ) ) , this , SLOT ( disableWarningsToggled ( bool ) ) ) ;
2013-08-09 13:41:02 +02:00
2012-02-03 00:53:14 +01:00
m_preferences = preferences ;
}
PreferencesDialog : : ~ PreferencesDialog ( void )
{
2013-11-14 02:29:18 +01:00
delete ui ;
2012-02-03 00:53:14 +01:00
}
void PreferencesDialog : : showEvent ( QShowEvent * event )
{
2012-02-05 15:42:41 +01:00
if ( event ) QDialog : : showEvent ( event ) ;
2012-02-04 01:12:21 +01:00
2014-02-14 00:01:00 +01:00
UPDATE_CHECKBOX ( ui - > checkRunNextJob , m_preferences - > getAutoRunNextJob ( ) ) ;
UPDATE_CHECKBOX ( ui - > checkShutdownComputer , m_preferences - > getShutdownComputer ( ) ) ;
UPDATE_CHECKBOX ( ui - > checkUse64BitAvs2YUV , m_preferences - > getUseAvisyth64Bit ( ) & & m_sysinfo - > hasX64Support ( ) ) ;
UPDATE_CHECKBOX ( ui - > checkSaveLogFiles , m_preferences - > getSaveLogFiles ( ) ) ;
UPDATE_CHECKBOX ( ui - > checkSaveToSourceFolder , m_preferences - > getSaveToSourcePath ( ) ) ;
UPDATE_CHECKBOX ( ui - > checkEnableSounds , m_preferences - > getEnableSounds ( ) ) ;
UPDATE_CHECKBOX ( ui - > checkNoUpdateReminder , m_preferences - > getNoUpdateReminder ( ) ) ;
UPDATE_CHECKBOX ( ui - > checkDisableWarnings , m_preferences - > getDisableWarnings ( ) , true ) ;
2014-02-11 02:33:17 +01:00
2014-02-14 00:01:00 +01:00
ui - > spinBoxJobCount - > setValue ( m_preferences - > getMaxRunningJobCount ( ) ) ;
2013-11-12 23:29:13 +01:00
2014-02-14 00:01:00 +01:00
UPDATE_COMBOBOX ( ui - > comboBoxPriority , qBound ( - 2 , m_preferences - > getProcessPriority ( ) , 1 ) , 0 ) ;
2013-11-12 23:29:13 +01:00
2014-02-12 19:34:14 +01:00
ui - > checkUse64BitAvs2YUV - > setEnabled ( m_sysinfo - > hasX64Support ( ) ) ;
ui - > labelUse64BitAvs2YUV - > setEnabled ( m_sysinfo - > hasX64Support ( ) ) ;
2012-02-03 00:53:14 +01:00
}
2012-02-04 01:12:21 +01:00
bool PreferencesDialog : : eventFilter ( QObject * o , QEvent * e )
{
2013-12-14 22:30:19 +01:00
if ( e - > type ( ) = = QEvent : : Paint )
{
if ( o = = ui - > checkBoxDummy1 ) return true ;
if ( o = = ui - > checkBoxDummy2 ) return true ;
}
else if ( ( e - > type ( ) = = QEvent : : MouseButtonPress ) | | ( e - > type ( ) = = QEvent : : MouseButtonRelease ) )
{
emulateMouseEvent ( o , e , ui - > labelRunNextJob , ui - > checkRunNextJob ) ;
emulateMouseEvent ( o , e , ui - > labelShutdownComputer , ui - > checkShutdownComputer ) ;
emulateMouseEvent ( o , e , ui - > labelUse64BitAvs2YUV , ui - > checkUse64BitAvs2YUV ) ;
emulateMouseEvent ( o , e , ui - > labelSaveLogFiles , ui - > checkSaveLogFiles ) ;
emulateMouseEvent ( o , e , ui - > labelSaveToSourceFolder , ui - > checkSaveToSourceFolder ) ;
emulateMouseEvent ( o , e , ui - > labelEnableSounds , ui - > checkEnableSounds ) ;
emulateMouseEvent ( o , e , ui - > labelDisableWarnings , ui - > checkDisableWarnings ) ;
emulateMouseEvent ( o , e , ui - > labelNoUpdateReminder , ui - > checkNoUpdateReminder ) ;
}
2012-02-05 04:41:42 +01:00
return false ;
}
void PreferencesDialog : : emulateMouseEvent ( QObject * object , QEvent * event , QWidget * source , QWidget * target )
{
if ( object = = source )
2012-02-04 01:12:21 +01:00
{
2013-12-14 22:30:19 +01:00
if ( QMouseEvent * mouseEvent = dynamic_cast < QMouseEvent * > ( event ) )
2012-02-04 01:12:21 +01:00
{
2013-12-14 22:30:19 +01:00
qApp - > postEvent ( target , new QMouseEvent
(
event - > type ( ) ,
( qApp - > widgetAt ( mouseEvent - > globalPos ( ) ) = = source ) ? QPoint ( 1 , 1 ) : QPoint ( INT_MAX , INT_MAX ) ,
Qt : : LeftButton ,
0 , 0
) ) ;
2012-02-04 01:12:21 +01:00
}
}
}
2012-02-05 15:42:41 +01:00
void PreferencesDialog : : done ( int n )
2012-02-03 00:53:14 +01:00
{
2013-11-14 02:29:18 +01:00
m_preferences - > setAutoRunNextJob ( ui - > checkRunNextJob - > isChecked ( ) ) ;
m_preferences - > setShutdownComputer ( ui - > checkShutdownComputer - > isChecked ( ) ) ;
m_preferences - > setUseAvisyth64Bit ( ui - > checkUse64BitAvs2YUV - > isChecked ( ) ) ;
m_preferences - > setSaveLogFiles ( ui - > checkSaveLogFiles - > isChecked ( ) ) ;
m_preferences - > setSaveToSourcePath ( ui - > checkSaveToSourceFolder - > isChecked ( ) ) ;
m_preferences - > setMaxRunningJobCount ( ui - > spinBoxJobCount - > value ( ) ) ;
m_preferences - > setProcessPriority ( ui - > comboBoxPriority - > itemData ( ui - > comboBoxPriority - > currentIndex ( ) ) . toInt ( ) ) ;
m_preferences - > setEnableSounds ( ui - > checkEnableSounds - > isChecked ( ) ) ;
m_preferences - > setDisableWarnings ( ui - > checkDisableWarnings - > isChecked ( ) ) ;
2013-12-14 22:30:19 +01:00
m_preferences - > setNoUpdateReminder ( ui - > checkNoUpdateReminder - > isChecked ( ) ) ;
2013-07-03 21:34:21 +02:00
PreferencesModel : : savePreferences ( m_preferences ) ;
2012-02-05 15:42:41 +01:00
QDialog : : done ( n ) ;
}
void PreferencesDialog : : resetButtonPressed ( void )
{
2013-07-03 21:34:21 +02:00
PreferencesModel : : initPreferences ( m_preferences ) ;
2012-02-05 15:42:41 +01:00
showEvent ( NULL ) ;
}
2014-02-12 19:34:14 +01:00
//void PreferencesDialog::use10BitEncodingToggled(bool checked)
//{
// if(checked)
// {
// QString text;
// text += QString("<nobr>%1</nobr><br>").arg(tr("Please note that 10−Bit H.264 streams are <b>not</b> currently supported by hardware (standalone) players!"));
// text += QString("<nobr>%1</nobr><br>").arg(tr("To play such streams, you will need an <i>up−to−date</i> ffdshow−tryouts, CoreAVC 3.x or another supported s/w decoder."));
// text += QString("<nobr>%1</nobr><br>").arg(tr("Also be aware that hardware−acceleration (CUDA, DXVA, etc) usually will <b>not</b> work with 10−Bit H.264 streams."));
//
// if(QMessageBox::warning(this, tr("10-Bit Encoding"), text.replace("-", "−"), tr("Continue"), tr("Revert"), QString(), 1) != 0)
// {
// UPDATE_CHECKBOX(ui->checkUse10BitEncoding, false, true);
// }
// }
//}
2013-08-09 13:41:02 +02:00
void PreferencesDialog : : disableWarningsToggled ( bool checked )
{
if ( checked )
{
QString text ;
text + = QString ( " <nobr>%1</nobr><br> " ) . arg ( tr ( " Please note that Avisynth and/or VapourSynth support might be unavailable <b>without</b> any notice! " ) ) ;
text + = QString ( " <nobr>%1</nobr><br> " ) . arg ( tr ( " Also note that the CLI option <tt>--console</tt> may be used to get more diagnostic infomation. " ) ) ;
if ( QMessageBox : : warning ( this , tr ( " Avisynth/VapourSynth Warnings " ) , text . replace ( " - " , " − " ) , tr ( " Continue " ) , tr ( " Revert " ) , QString ( ) , 1 ) ! = 0 )
{
2013-11-14 02:29:18 +01:00
UPDATE_CHECKBOX ( ui - > checkDisableWarnings , false , true ) ;
2013-08-09 13:41:02 +02:00
}
}
}