X-Git-Url: https://git.sesse.net/?a=blobdiff_plain;f=modules%2Fgui%2Fqt4%2Fdialogs%2Fpreferences.cpp;h=b22288cf89f8deca0947b28921d78d4762ebaf73;hb=47e69cf6132dfd1daa1ef8fb17fa6b2af5c16e18;hp=30fe02ec4c08b40a00ea0eccce985b4fd6b529fb;hpb=5b41c88864e2e6cb57cc9d37ca8ba35263827063;p=vlc diff --git a/modules/gui/qt4/dialogs/preferences.cpp b/modules/gui/qt4/dialogs/preferences.cpp index 30fe02ec4c..b22288cf89 100644 --- a/modules/gui/qt4/dialogs/preferences.cpp +++ b/modules/gui/qt4/dialogs/preferences.cpp @@ -22,6 +22,10 @@ * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston MA 02110-1301, USA. *****************************************************************************/ +#ifdef HAVE_CONFIG_H +# include "config.h" +#endif + #include "dialogs/preferences.hpp" #include "dialogs_provider.hpp" #include "util/qvlcframe.hpp" @@ -40,11 +44,15 @@ PrefsDialog *PrefsDialog::instance = NULL; -PrefsDialog::PrefsDialog( intf_thread_t *_p_intf ) : QVLCFrame( _p_intf ) +PrefsDialog::PrefsDialog( QWidget *parent, intf_thread_t *_p_intf ) + : QVLCDialog( parent, _p_intf ) { QGridLayout *main_layout = new QGridLayout( this ); setWindowTitle( qtr( "Preferences" ) ); - resize( 750, 550 ); + + /* Whether we want it or not, we need to destroy on close to get + consistency when reset */ + setAttribute( Qt::WA_DeleteOnClose ); /* Create Panels */ tree_panel = new QWidget; @@ -59,9 +67,11 @@ PrefsDialog::PrefsDialog( intf_thread_t *_p_intf ) : QVLCFrame( _p_intf ) types->setAlignment( Qt::AlignHCenter ); QHBoxLayout *types_l = new QHBoxLayout; types_l->setSpacing( 3 ); types_l->setMargin( 3 ); - small = new QRadioButton( qtr("Basic"), types ); + small = new QRadioButton( qtr( "Simple" ), types ); + small->setToolTip( qtr( "Switch to simple preferences" ) ); types_l->addWidget( small ); all = new QRadioButton( qtr("All"), types ); types_l->addWidget( all ); + all->setToolTip( qtr( "Switch to complete preferences" ) ); types->setLayout( types_l ); small->setChecked( true ); @@ -79,25 +89,28 @@ PrefsDialog::PrefsDialog( intf_thread_t *_p_intf ) : QVLCFrame( _p_intf ) buttonsBox->addButton( save, QDialogButtonBox::AcceptRole ); buttonsBox->addButton( cancel, QDialogButtonBox::RejectRole ); - buttonsBox->addButton( reset, QDialogButtonBox::ActionRole ); + buttonsBox->addButton( reset, QDialogButtonBox::ResetRole ); /* Layout */ main_layout->addWidget( tree_panel, 0, 0, 3, 1 ); main_layout->addWidget( types, 3, 0, 2, 1 ); - main_layout->addWidget( main_panel, 0, 1, 4, 1 ); - main_layout->addWidget( buttonsBox, 4, 1, 1 ,2 ); + main_layout->addWidget( main_panel, 0, 1, 4, 2 ); + main_layout->addWidget( buttonsBox, 4, 2, 1 ,1 ); main_layout->setColumnMinimumWidth( 0, 150 ); + main_layout->setColumnMinimumWidth( 1, 10 ); main_layout->setColumnStretch( 0, 1 ); - main_layout->setColumnStretch( 1, 3 ); + main_layout->setColumnStretch( 1, 0 ); + main_layout->setColumnStretch( 2, 3 ); main_layout->setRowStretch( 2, 4 ); + main_layout->setMargin( 9 ); setLayout( main_layout ); /* Margins */ tree_panel_l->setMargin( 1 ); - main_panel_l->setMargin( 3 ); + main_panel_l->setLayoutMargins( 6, 0, 0, 3, 3 ); for( int i = 0; i < SPrefsMax ; i++ ) simple_panels[i] = NULL; @@ -112,6 +125,8 @@ PrefsDialog::PrefsDialog( intf_thread_t *_p_intf ) : QVLCFrame( _p_intf ) BUTTONACT( small, setSmall() ); BUTTONACT( all, setAdvanced() ); + + resize( 750, sizeHint().height() ); } void PrefsDialog::setAdvanced() @@ -147,6 +162,11 @@ void PrefsDialog::setAdvanced() } advanced_panel->show(); + /* Select the first Item of the preferences. Maybe you want to select a specified + category... */ + advanced_tree->setCurrentIndex( + advanced_tree->model()->index( 0, 0, QModelIndex() ) ); + all->setChecked( true ); } @@ -273,6 +293,14 @@ void PrefsDialog::save() /* Save to file */ config_SaveConfigFile( p_intf, NULL ); + destroyPanels(); + + hide(); +} + +void PrefsDialog::destroyPanels() +{ + msg_Dbg( p_intf, "Destroying the Panels" ); /* Delete the other panel in order to force its reload after clicking on apply. In fact, if we don't do that, the preferences from the other panels won't be accurate, so we would have to recreate the whole dialog, @@ -297,10 +325,9 @@ void PrefsDialog::save() } current_simple_panel = NULL; } - - hide(); } + /* Clean the preferences, dunno if it does something really */ void PrefsDialog::cancel() { @@ -332,5 +359,9 @@ void PrefsDialog::reset() { config_ResetAll( p_intf ); config_SaveConfigFile( p_intf, NULL ); + + instance = NULL; + close(); + PrefsDialog::getInstance( p_intf )->show(); } }