Commit 23c9bffb authored by Rémi Denis-Courmont's avatar Rémi Denis-Courmont

Qt4: use var_Inherit

parent 68684aa4
...@@ -688,7 +688,7 @@ FullscreenControllerWidget::FullscreenControllerWidget( intf_thread_t *_p_i, QWi ...@@ -688,7 +688,7 @@ FullscreenControllerWidget::FullscreenControllerWidget( intf_thread_t *_p_i, QWi
/* First Move */ /* First Move */
QRect rect1 = getSettings()->value( "FullScreen/screen" ).toRect(); QRect rect1 = getSettings()->value( "FullScreen/screen" ).toRect();
QPoint pos1 = getSettings()->value( "FullScreen/pos" ).toPoint(); QPoint pos1 = getSettings()->value( "FullScreen/pos" ).toPoint();
int number = config_GetInt( p_intf, "qt-fullscreen-screennumber" ); int number = var_InheritInteger( p_intf, "qt-fullscreen-screennumber" );
if( number == -1 || number > QApplication::desktop()->numScreens() ) if( number == -1 || number > QApplication::desktop()->numScreens() )
number = QApplication::desktop()->screenNumber( p_intf->p_sys->p_mi ); number = QApplication::desktop()->screenNumber( p_intf->p_sys->p_mi );
...@@ -746,7 +746,7 @@ void FullscreenControllerWidget::showFSC() ...@@ -746,7 +746,7 @@ void FullscreenControllerWidget::showFSC()
} }
#if HAVE_TRANSPARENCY #if HAVE_TRANSPARENCY
setWindowOpacity( config_GetFloat( p_intf, "qt-fs-opacity" ) ); setWindowOpacity( var_InheritFloat( p_intf, "qt-fs-opacity" ) );
#endif #endif
show(); show();
......
...@@ -87,15 +87,15 @@ SoundWidget::SoundWidget( QWidget *_parent, intf_thread_t * _p_intf, ...@@ -87,15 +87,15 @@ SoundWidget::SoundWidget( QWidget *_parent, intf_thread_t * _p_intf,
{ {
volumeSlider = new SoundSlider( this, volumeSlider = new SoundSlider( this,
config_GetInt( p_intf, "volume-step" ), config_GetInt( p_intf, "volume-step" ),
config_GetInt( p_intf, "qt-volume-complete" ), var_InheritInteger( p_intf, "qt-volume-complete" ),
config_GetPsz( p_intf, "qt-slider-colours" ) ); var_InheritString( p_intf, "qt-slider-colours" ) );
} }
else else
{ {
volumeSlider = new QSlider( NULL ); volumeSlider = new QSlider( NULL );
volumeSlider->setOrientation( b_special ? Qt::Vertical volumeSlider->setOrientation( b_special ? Qt::Vertical
: Qt::Horizontal ); : Qt::Horizontal );
volumeSlider->setMaximum( config_GetInt( p_intf, "qt-volume-complete" ) volumeSlider->setMaximum( var_InheritBool( p_intf, "qt-volume-complete" )
? 400 : 200 ); ? 400 : 200 );
} }
if( volumeSlider->orientation() == Qt::Horizontal ) if( volumeSlider->orientation() == Qt::Horizontal )
......
...@@ -202,7 +202,7 @@ void VideoWidget::SetFullScreen( bool b_fs ) ...@@ -202,7 +202,7 @@ void VideoWidget::SetFullScreen( bool b_fs )
if( b_fs ) if( b_fs )
{ /* Go full-screen */ { /* Go full-screen */
int numscreen = config_GetInt( p_intf, "qt-fullscreen-screennumber" ); int numscreen = var_InheritInteger( p_intf, "qt-fullscreen-screennumber" );
/* if user hasn't defined screennumber, or screennumber that is bigger /* if user hasn't defined screennumber, or screennumber that is bigger
* than current number of screens, take screennumber where current interface * than current number of screens, take screennumber where current interface
* is * is
......
...@@ -76,7 +76,7 @@ FileOpenPanel::FileOpenPanel( QWidget *_parent, intf_thread_t *_p_intf ) : ...@@ -76,7 +76,7 @@ FileOpenPanel::FileOpenPanel( QWidget *_parent, intf_thread_t *_p_intf ) :
QCompleter *fileCompleter = new QCompleter( fileCompleteList, this ); QCompleter *fileCompleter = new QCompleter( fileCompleteList, this );
fileCompleter->setModel( new QDirModel( fileCompleter ) ); fileCompleter->setModel( new QDirModel( fileCompleter ) );
lineFileEdit->setCompleter( fileCompleter );*/ lineFileEdit->setCompleter( fileCompleter );*/
if( config_GetInt( p_intf, "qt-embedded-open" ) ) if( var_InheritBool( p_intf, "qt-embedded-open" ) )
{ {
ui.tempWidget->hide(); ui.tempWidget->hide();
BuildOldPanel(); BuildOldPanel();
...@@ -274,9 +274,9 @@ DiscOpenPanel::DiscOpenPanel( QWidget *_parent, intf_thread_t *_p_intf ) : ...@@ -274,9 +274,9 @@ DiscOpenPanel::DiscOpenPanel( QWidget *_parent, intf_thread_t *_p_intf ) :
ui.setupUi( this ); ui.setupUi( this );
/* Get the default configuration path for the devices */ /* Get the default configuration path for the devices */
psz_dvddiscpath = config_GetPsz( p_intf, "dvd" ); psz_dvddiscpath = var_InheritString( p_intf, "dvd" );
psz_vcddiscpath = config_GetPsz( p_intf, "vcd" ); psz_vcddiscpath = var_InheritString( p_intf, "vcd" );
psz_cddadiscpath = config_GetPsz( p_intf, "cd-audio" ); psz_cddadiscpath = var_InheritString( p_intf, "cd-audio" );
/* State to avoid overwritting the users changes with the configuration */ /* State to avoid overwritting the users changes with the configuration */
b_firstdvd = true; b_firstdvd = true;
...@@ -494,7 +494,7 @@ NetOpenPanel::NetOpenPanel( QWidget *_parent, intf_thread_t *_p_intf ) : ...@@ -494,7 +494,7 @@ NetOpenPanel::NetOpenPanel( QWidget *_parent, intf_thread_t *_p_intf ) :
/* CONNECTs */ /* CONNECTs */
CONNECT( ui.urlText, textChanged( const QString& ), this, updateMRL()); CONNECT( ui.urlText, textChanged( const QString& ), this, updateMRL());
if( config_GetInt( p_intf, "qt-recentplay" ) ) if( var_InheritBool( p_intf, "qt-recentplay" ) )
{ {
mrlList = new QStringListModel( mrlList = new QStringListModel(
getSettings()->value( "Open/netMRL" ).toStringList() ); getSettings()->value( "Open/netMRL" ).toStringList() );
......
...@@ -34,7 +34,7 @@ ...@@ -34,7 +34,7 @@
BookmarksDialog::BookmarksDialog( intf_thread_t *_p_intf ):QVLCFrame( _p_intf ) BookmarksDialog::BookmarksDialog( intf_thread_t *_p_intf ):QVLCFrame( _p_intf )
{ {
setWindowFlags( Qt::Tool ); setWindowFlags( Qt::Tool );
setWindowOpacity( config_GetFloat( p_intf, "qt-opacity" ) ); setWindowOpacity( var_InheritFloat( p_intf, "qt-opacity" ) );
setWindowTitle( qtr( "Edit Bookmarks" ) ); setWindowTitle( qtr( "Edit Bookmarks" ) );
setWindowRole( "vlc-bookmarks" ); setWindowRole( "vlc-bookmarks" );
......
...@@ -36,7 +36,7 @@ ...@@ -36,7 +36,7 @@
ExtendedDialog::ExtendedDialog( intf_thread_t *_p_intf ): QVLCFrame( _p_intf ) ExtendedDialog::ExtendedDialog( intf_thread_t *_p_intf ): QVLCFrame( _p_intf )
{ {
setWindowFlags( Qt::Tool ); setWindowFlags( Qt::Tool );
setWindowOpacity( config_GetFloat( p_intf, "qt-opacity" ) ); setWindowOpacity( var_InheritFloat( p_intf, "qt-opacity" ) );
setWindowTitle( qtr( "Adjustments and Effects" ) ); setWindowTitle( qtr( "Adjustments and Effects" ) );
setWindowRole( "vlc-extended" ); setWindowRole( "vlc-extended" );
......
...@@ -81,7 +81,7 @@ int DialogHandler::error (vlc_object_t *obj, const char *, ...@@ -81,7 +81,7 @@ int DialogHandler::error (vlc_object_t *obj, const char *,
const dialog_fatal_t *dialog = (const dialog_fatal_t *)value.p_address; const dialog_fatal_t *dialog = (const dialog_fatal_t *)value.p_address;
DialogHandler *self = static_cast<DialogHandler *>(data); DialogHandler *self = static_cast<DialogHandler *>(data);
if (config_GetInt (obj, "qt-error-dialogs")) if (var_InheritBool (obj, "qt-error-dialogs"))
emit self->error (qfu(dialog->title), qfu(dialog->message)); emit self->error (qfu(dialog->title), qfu(dialog->message));
return VLC_SUCCESS; return VLC_SUCCESS;
} }
......
...@@ -35,7 +35,7 @@ class FirstRun : public QWidget ...@@ -35,7 +35,7 @@ class FirstRun : public QWidget
{ {
if( getSettings()->value( "IsFirstRun", 1 ).toInt() ) if( getSettings()->value( "IsFirstRun", 1 ).toInt() )
{ {
if( config_GetInt( p_intf, "qt-privacy-ask") ) if( var_InheritBool( p_intf, "qt-privacy-ask") )
{ {
new FirstRun( _p, p_intf ); new FirstRun( _p, p_intf );
} }
......
...@@ -114,7 +114,7 @@ MessagesDialog::MessagesDialog( intf_thread_t *_p_intf) ...@@ -114,7 +114,7 @@ MessagesDialog::MessagesDialog( intf_thread_t *_p_intf)
verbosityBox = new QSpinBox(); verbosityBox = new QSpinBox();
verbosityBox->setRange( 0, 2 ); verbosityBox->setRange( 0, 2 );
verbosityBox->setValue( config_GetInt( p_intf, "verbose" ) ); verbosityBox->setValue( var_InheritInteger( p_intf, "verbose" ) );
verbosityBox->setWrapping( true ); verbosityBox->setWrapping( true );
verbosityBox->setMaximumWidth( 50 ); verbosityBox->setMaximumWidth( 50 );
......
...@@ -167,7 +167,7 @@ OpenDialog::OpenDialog( QWidget *parent, ...@@ -167,7 +167,7 @@ OpenDialog::OpenDialog( QWidget *parent,
BUTTONACT( cancelButton, cancel() ); BUTTONACT( cancelButton, cancel() );
/* Hide the advancedPanel */ /* Hide the advancedPanel */
if( !config_GetInt( p_intf, "qt-adv-options" ) ) if( !var_InheritBool( p_intf, "qt-adv-options" ) )
ui.advancedFrame->hide(); ui.advancedFrame->hide();
else else
ui.advancedCheckBox->setChecked( true ); ui.advancedCheckBox->setChecked( true );
...@@ -406,11 +406,8 @@ void OpenDialog::updateMRL() { ...@@ -406,11 +406,8 @@ void OpenDialog::updateMRL() {
if( ui.slaveCheckbox->isChecked() ) { if( ui.slaveCheckbox->isChecked() ) {
mrl += " :input-slave=" + ui.slaveText->text(); mrl += " :input-slave=" + ui.slaveText->text();
} }
int i_cache = config_GetInt( p_intf, qtu( storedMethod ) );
if( i_cache != ui.cacheSpinBox->value() ) {
mrl += QString( " :%1=%2" ).arg( storedMethod ). mrl += QString( " :%1=%2" ).arg( storedMethod ).
arg( ui.cacheSpinBox->value() ); arg( ui.cacheSpinBox->value() );
}
if( ui.startTimeDoubleSpinBox->value() ) { if( ui.startTimeDoubleSpinBox->value() ) {
mrl += " :start-time=" + QString::number( ui.startTimeDoubleSpinBox->value() ); mrl += " :start-time=" + QString::number( ui.startTimeDoubleSpinBox->value() );
} }
...@@ -422,7 +419,7 @@ void OpenDialog::newCachingMethod( const QString& method ) ...@@ -422,7 +419,7 @@ void OpenDialog::newCachingMethod( const QString& method )
{ {
if( method != storedMethod ) { if( method != storedMethod ) {
storedMethod = method; storedMethod = method;
int i_value = config_GetInt( p_intf, qtu( storedMethod ) ); int i_value = var_InheritInteger( p_intf, qtu( storedMethod ) );
ui.cacheSpinBox->setValue( i_value ); ui.cacheSpinBox->setValue( i_value );
} }
} }
......
...@@ -40,7 +40,7 @@ PlaylistDialog::PlaylistDialog( intf_thread_t *_p_intf ) ...@@ -40,7 +40,7 @@ PlaylistDialog::PlaylistDialog( intf_thread_t *_p_intf )
setCentralWidget( main ); setCentralWidget( main );
setWindowTitle( qtr( "Playlist" ) ); setWindowTitle( qtr( "Playlist" ) );
setWindowRole( "vlc-playlist" ); setWindowRole( "vlc-playlist" );
setWindowOpacity( config_GetFloat( p_intf, "qt-opacity" ) ); setWindowOpacity( var_InheritFloat( p_intf, "qt-opacity" ) );
QHBoxLayout *l = new QHBoxLayout( centralWidget() ); QHBoxLayout *l = new QHBoxLayout( centralWidget() );
......
...@@ -115,7 +115,8 @@ PrefsDialog::PrefsDialog( QWidget *parent, intf_thread_t *_p_intf ) ...@@ -115,7 +115,8 @@ PrefsDialog::PrefsDialog( QWidget *parent, intf_thread_t *_p_intf )
setMaximumHeight( p_intf->p_sys->i_screenHeight ); setMaximumHeight( p_intf->p_sys->i_screenHeight );
for( int i = 0; i < SPrefsMax ; i++ ) simple_panels[i] = NULL; for( int i = 0; i < SPrefsMax ; i++ ) simple_panels[i] = NULL;
if( config_GetInt( p_intf, "qt-advanced-pref" ) || config_GetInt( p_intf, "advanced" ) ) if( var_InheritBool( p_intf, "qt-advanced-pref" )
|| var_InheritBool( p_intf, "advanced" ) )
setAdvanced(); setAdvanced();
else else
setSmall(); setSmall();
......
...@@ -834,7 +834,7 @@ void InputManager::setRate( int new_rate ) ...@@ -834,7 +834,7 @@ void InputManager::setRate( int new_rate )
void InputManager::jumpFwd() void InputManager::jumpFwd()
{ {
int i_interval = config_GetInt( p_input, "short-jump-size" ); int i_interval = var_InheritInteger( p_input, "short-jump-size" );
if( i_interval > 0 ) if( i_interval > 0 )
{ {
mtime_t val = (mtime_t)(i_interval) * 1000000L; mtime_t val = (mtime_t)(i_interval) * 1000000L;
...@@ -844,7 +844,7 @@ void InputManager::jumpFwd() ...@@ -844,7 +844,7 @@ void InputManager::jumpFwd()
void InputManager::jumpBwd() void InputManager::jumpBwd()
{ {
int i_interval = config_GetInt( p_input, "short-jump-size" ); int i_interval = var_InheritInteger( p_input, "short-jump-size" );
if( i_interval > 0 ) if( i_interval > 0 )
{ {
mtime_t val = -1 *(mtime_t)(i_interval) * 1000000L; mtime_t val = -1 *(mtime_t)(i_interval) * 1000000L;
......
...@@ -111,19 +111,19 @@ MainInterface::MainInterface( intf_thread_t *_p_intf ) : QVLCMW( _p_intf ) ...@@ -111,19 +111,19 @@ MainInterface::MainInterface( intf_thread_t *_p_intf ) : QVLCMW( _p_intf )
setAcceptDrops( true ); setAcceptDrops( true );
setWindowRole( "vlc-main" ); setWindowRole( "vlc-main" );
setWindowIcon( QApplication::windowIcon() ); setWindowIcon( QApplication::windowIcon() );
setWindowOpacity( config_GetFloat( p_intf, "qt-opacity" ) ); setWindowOpacity( var_InheritFloat( p_intf, "qt-opacity" ) );
/* Set The Video In emebedded Mode or not */ /* Set The Video In emebedded Mode or not */
videoEmbeddedFlag = config_GetInt( p_intf, "embedded-video" ); videoEmbeddedFlag = var_InheritBool( p_intf, "embedded-video" );
/* Does the interface resize to video size or the opposite */ /* Does the interface resize to video size or the opposite */
b_keep_size = !config_GetInt( p_intf, "qt-video-autoresize" ); b_keep_size = !var_InheritBool( p_intf, "qt-video-autoresize" );
/* Are we in the enhanced always-video mode or not ? */ /* Are we in the enhanced always-video mode or not ? */
i_visualmode = config_GetInt( p_intf, "qt-display-mode" ); i_visualmode = var_InheritInteger( p_intf, "qt-display-mode" );
/* Do we want anoying popups or not */ /* Do we want anoying popups or not */
notificationEnabled = (bool)config_GetInt( p_intf, "qt-notification" ); notificationEnabled = (bool)var_InheritBool( p_intf, "qt-notification" );
/* Set the other interface settings */ /* Set the other interface settings */
settings = getSettings(); settings = getSettings();
...@@ -190,7 +190,7 @@ MainInterface::MainInterface( intf_thread_t *_p_intf ) : QVLCMW( _p_intf ) ...@@ -190,7 +190,7 @@ MainInterface::MainInterface( intf_thread_t *_p_intf ) : QVLCMW( _p_intf )
} }
#endif #endif
/* and title of the Main Interface*/ /* and title of the Main Interface*/
if( config_GetInt( p_intf, "qt-name-in-title" ) ) if( var_InheritBool( p_intf, "qt-name-in-title" ) )
{ {
CONNECT( THEMIM->getIM(), nameChanged( const QString& ), CONNECT( THEMIM->getIM(), nameChanged( const QString& ),
this, setVLCWindowsTitle( const QString& ) ); this, setVLCWindowsTitle( const QString& ) );
...@@ -443,7 +443,7 @@ void MainInterface::createMainWidget( QSettings *settings ) ...@@ -443,7 +443,7 @@ void MainInterface::createMainWidget( QSettings *settings )
if ( depth() > 8 ) if ( depth() > 8 )
#endif #endif
/* Create the FULLSCREEN CONTROLS Widget */ /* Create the FULLSCREEN CONTROLS Widget */
if( config_GetInt( p_intf, "qt-fs-controller" ) ) if( var_InheritBool( p_intf, "qt-fs-controller" ) )
{ {
fullscreenControls = new FullscreenControllerWidget( p_intf, this ); fullscreenControls = new FullscreenControllerWidget( p_intf, this );
CONNECT( fullscreenControls, keyPressed( QKeyEvent * ), CONNECT( fullscreenControls, keyPressed( QKeyEvent * ),
...@@ -455,9 +455,9 @@ inline void MainInterface::initSystray() ...@@ -455,9 +455,9 @@ inline void MainInterface::initSystray()
{ {
#ifndef HAVE_MAEMO #ifndef HAVE_MAEMO
bool b_systrayAvailable = QSystemTrayIcon::isSystemTrayAvailable(); bool b_systrayAvailable = QSystemTrayIcon::isSystemTrayAvailable();
bool b_systrayWanted = config_GetInt( p_intf, "qt-system-tray" ); bool b_systrayWanted = var_InheritBool( p_intf, "qt-system-tray" );
if( config_GetInt( p_intf, "qt-start-minimized") > 0 ) if( var_InheritBool( p_intf, "qt-start-minimized") )
{ {
if( b_systrayAvailable ) if( b_systrayAvailable )
{ {
......
...@@ -325,7 +325,7 @@ QMenu *QVLCMenu::FileMenu( intf_thread_t *p_intf, QWidget *parent ) ...@@ -325,7 +325,7 @@ QMenu *QVLCMenu::FileMenu( intf_thread_t *p_intf, QWidget *parent )
addDPStaticEntry( menu, qtr( "Open &Location from clipboard" ), addDPStaticEntry( menu, qtr( "Open &Location from clipboard" ),
NULL, SLOT( openUrlDialog() ), "Ctrl+V" ); NULL, SLOT( openUrlDialog() ), "Ctrl+V" );
if( config_GetInt( p_intf, "qt-recentplay" ) ) if( var_InheritBool( p_intf, "qt-recentplay" ) )
{ {
recentsMenu = new QMenu( qtr( "&Recent Media" ), menu ); recentsMenu = new QMenu( qtr( "&Recent Media" ), menu );
updateRecents( p_intf ); updateRecents( p_intf );
......
...@@ -394,10 +394,10 @@ static void *Thread( void *obj ) ...@@ -394,10 +394,10 @@ static void *Thread( void *obj )
#ifdef UPDATE_CHECK #ifdef UPDATE_CHECK
/* Checking for VLC updates */ /* Checking for VLC updates */
if( config_GetInt( p_intf, "qt-updates-notif" ) && if( var_InheritBool( p_intf, "qt-updates-notif" ) &&
!config_GetInt( p_intf, "qt-privacy-ask" ) ) !var_InheritBool( p_intf, "qt-privacy-ask" ) )
{ {
int interval = config_GetInt( p_intf, "qt-updates-days" ); int interval = var_InheritInteger( p_intf, "qt-updates-days" );
if( QDate::currentDate() > if( QDate::currentDate() >
getSettings()->value( "updatedate" ).toDate().addDays( interval ) ) getSettings()->value( "updatedate" ).toDate().addDays( interval ) )
{ {
......
...@@ -49,7 +49,7 @@ RecentsMRL::RecentsMRL( intf_thread_t *_p_intf ) : p_intf( _p_intf ) ...@@ -49,7 +49,7 @@ RecentsMRL::RecentsMRL( intf_thread_t *_p_intf ) : p_intf( _p_intf )
playMRL( const QString & ) ); playMRL( const QString & ) );
/* Load the filter psz */ /* Load the filter psz */
char* psz_tmp = config_GetPsz( p_intf, "qt-recentplay-filter" ); char* psz_tmp = var_InheritString( p_intf, "qt-recentplay-filter" );
if( psz_tmp && *psz_tmp ) if( psz_tmp && *psz_tmp )
filter = new QRegExp( psz_tmp, Qt::CaseInsensitive ); filter = new QRegExp( psz_tmp, Qt::CaseInsensitive );
else else
...@@ -57,7 +57,7 @@ RecentsMRL::RecentsMRL( intf_thread_t *_p_intf ) : p_intf( _p_intf ) ...@@ -57,7 +57,7 @@ RecentsMRL::RecentsMRL( intf_thread_t *_p_intf ) : p_intf( _p_intf )
free( psz_tmp ); free( psz_tmp );
load(); load();
isActive = config_GetInt( p_intf, "qt-recentplay" ); isActive = var_InheritBool( p_intf, "qt-recentplay" );
if( !isActive ) clear(); if( !isActive ) clear();
} }
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment