]> git.sesse.net Git - vlc/blob - modules/gui/qt4/dialogs/preferences.cpp
Added window roles for X11
[vlc] / modules / gui / qt4 / dialogs / preferences.cpp
1 /*****************************************************************************
2  * preferences.cpp : Preferences
3  *****************************************************************************
4  * Copyright (C) 2006-2007 the VideoLAN team
5  * $Id$
6  *
7  * Authors: ClĂ©ment Stenac <zorglub@videolan.org>
8  *          Jean-Baptiste Kempf <jb@videolan.org>
9  *
10  * This program is free software; you can redistribute it and/or modify
11  * it under the terms of the GNU General Public License as published by
12  * the Free Software Foundation; either version 2 of the License, or
13  * (at your option) any later version.
14  *
15  * This program is distributed in the hope that it will be useful,
16  * but WITHOUT ANY WARRANTY; without even the implied warranty of
17  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
18  * GNU General Public License for more details.
19  *
20  * You should have received a copy of the GNU General Public License
21  * along with this program; if not, write to the Free Software
22  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston MA 02110-1301, USA.
23  *****************************************************************************/
24
25 #ifdef HAVE_CONFIG_H
26 # include "config.h"
27 #endif
28
29 #include "dialogs/preferences.hpp"
30 #include "util/qvlcframe.hpp"
31
32 #include "components/complete_preferences.hpp"
33 #include "components/simple_preferences.hpp"
34
35 #include <QHBoxLayout>
36 #include <QGroupBox>
37 #include <QRadioButton>
38 #include <QPushButton>
39 #include <QMessageBox>
40 #include <QDialogButtonBox>
41
42 PrefsDialog::PrefsDialog( QWidget *parent, intf_thread_t *_p_intf )
43             : QVLCDialog( parent, _p_intf )
44 {
45     QGridLayout *main_layout = new QGridLayout( this );
46     setWindowTitle( qtr( "Preferences" ) );
47     setWindowRole( "vlc-preferences" );
48
49     /* Whether we want it or not, we need to destroy on close to get
50        consistency when reset */
51     setAttribute( Qt::WA_DeleteOnClose );
52
53     /* Create Panels */
54     tree_panel = new QWidget;
55     tree_panel_l = new QHBoxLayout;
56     tree_panel->setLayout( tree_panel_l );
57     main_panel = new QWidget;
58     main_panel_l = new QHBoxLayout;
59     main_panel->setLayout( main_panel_l );
60
61     /* Choice for types */
62     types = new QGroupBox( qtr("Show settings") );
63     types->setAlignment( Qt::AlignHCenter );
64     QHBoxLayout *types_l = new QHBoxLayout;
65     types_l->setSpacing( 3 ); types_l->setMargin( 3 );
66     small = new QRadioButton( qtr( "Simple" ), types );
67     small->setToolTip( qtr( "Switch to simple preferences view" ) );
68     types_l->addWidget( small );
69     all = new QRadioButton( qtr("All"), types ); types_l->addWidget( all );
70     all->setToolTip( qtr( "Switch to full preferences view" ) );
71     types->setLayout( types_l );
72     small->setChecked( true );
73
74     /* Tree and panel initialisations */
75     advanced_tree = NULL;
76     simple_tree = NULL;
77     current_simple_panel  = NULL;
78     advanced_panel = NULL;
79
80     /* Buttons */
81     QDialogButtonBox *buttonsBox = new QDialogButtonBox();
82     QPushButton *save = new QPushButton( qtr( "&Save" ) );
83     save->setToolTip( qtr( "Save and close the dialog" ) );
84     QPushButton *cancel = new QPushButton( qtr( "&Cancel" ) );
85     QPushButton *reset = new QPushButton( qtr( "&Reset Preferences" ) );
86
87     buttonsBox->addButton( save, QDialogButtonBox::AcceptRole );
88     buttonsBox->addButton( cancel, QDialogButtonBox::RejectRole );
89     buttonsBox->addButton( reset, QDialogButtonBox::ResetRole );
90
91     /* Layout  */
92     main_layout->addWidget( tree_panel, 0, 0, 3, 1 );
93     main_layout->addWidget( types, 3, 0, 2, 1 );
94     main_layout->addWidget( main_panel, 0, 1, 4, 2 );
95     main_layout->addWidget( buttonsBox, 4, 2, 1 ,1 );
96
97     main_layout->setColumnMinimumWidth( 0, 150 );
98     main_layout->setColumnMinimumWidth( 1, 10 );
99     main_layout->setColumnStretch( 0, 1 );
100     main_layout->setColumnStretch( 1, 0 );
101     main_layout->setColumnStretch( 2, 10 );
102
103     main_layout->setRowStretch( 2, 4 );
104
105     main_layout->setMargin( 9 );
106     setLayout( main_layout );
107
108     /* Margins */
109     tree_panel_l->setMargin( 1 );
110     main_panel_l->setLayoutMargins( 6, 0, 0, 3, 3 );
111
112     b_small = (p_intf->p_sys->i_screenHeight < 750);
113     if( b_small ) msg_Dbg( p_intf, "Small");
114     setMaximumHeight( p_intf->p_sys->i_screenHeight );
115     for( int i = 0; i < SPrefsMax ; i++ ) simple_panels[i] = NULL;
116
117     if( config_GetInt( p_intf, "qt-advanced-pref" ) || config_GetInt( p_intf, "advanced" ) )
118         setAdvanced();
119     else
120         setSmall();
121
122     BUTTONACT( save, save() );
123     BUTTONACT( cancel, cancel() );
124     BUTTONACT( reset, reset() );
125
126     BUTTONACT( small, setSmall() );
127     BUTTONACT( all, setAdvanced() );
128
129     resize( 780, sizeHint().height() );
130 }
131
132 void PrefsDialog::setAdvanced()
133 {
134     /* We already have a simple TREE, and we just want to hide it */
135     if( simple_tree )
136         if( simple_tree->isVisible() ) simple_tree->hide();
137
138     /* If don't have already and advanced TREE, then create it */
139     if( !advanced_tree )
140     {
141         /* Creation */
142          advanced_tree = new PrefsTree( p_intf, tree_panel );
143         /* and connections */
144          CONNECT( advanced_tree,
145                   currentItemChanged( QTreeWidgetItem *, QTreeWidgetItem * ),
146                   this, changeAdvPanel( QTreeWidgetItem * ) );
147         tree_panel_l->addWidget( advanced_tree );
148     }
149
150     /* Show it */
151     advanced_tree->show();
152
153     /* Remove the simple current panel from the main panels*/
154     if( current_simple_panel )
155         if( current_simple_panel->isVisible() ) current_simple_panel->hide();
156
157     /* If no advanced Panel exist, create one, attach it and show it*/
158     if( !advanced_panel )
159     {
160         advanced_panel = new AdvPrefsPanel( main_panel );
161         main_panel_l->addWidget( advanced_panel );
162     }
163     advanced_panel->show();
164
165     /* Select the first Item of the preferences. Maybe you want to select a specified
166        category... */
167     advanced_tree->setCurrentIndex(
168             advanced_tree->model()->index( 0, 0, QModelIndex() ) );
169
170     all->setChecked( true );
171 }
172
173 void PrefsDialog::setSmall()
174 {
175     /* If an advanced TREE exists, remove and hide it */
176     if( advanced_tree )
177         if( advanced_tree->isVisible() ) advanced_tree->hide();
178
179     /* If no simple_tree, create one, connect it */
180     if( !simple_tree )
181     {
182          simple_tree = new SPrefsCatList( p_intf, tree_panel, b_small );
183          CONNECT( simple_tree,
184                   currentItemChanged( int ),
185                   this,  changeSimplePanel( int ) );
186         tree_panel_l->addWidget( simple_tree );
187     }
188
189     /*show it */
190     simple_tree->show();
191
192     /* If an Advanced PANEL exists, remove it */
193     if( advanced_panel )
194         if( advanced_panel->isVisible() ) advanced_panel->hide();
195
196     if( !current_simple_panel )
197     {
198         current_simple_panel =
199             new SPrefsPanel( p_intf, main_panel, SPrefsDefaultCat, b_small );
200         simple_panels[SPrefsDefaultCat] =  current_simple_panel;
201         main_panel_l->addWidget( current_simple_panel );
202     }
203
204     current_simple_panel->show();
205     small->setChecked( true );
206 }
207
208 /* Switching from on simple panel to another */
209 void PrefsDialog::changeSimplePanel( int number )
210 {
211     if( current_simple_panel )
212         if( current_simple_panel->isVisible() ) current_simple_panel->hide();
213
214     current_simple_panel = simple_panels[number];
215     if( !current_simple_panel )
216     {
217         current_simple_panel  = new SPrefsPanel( p_intf, main_panel, number, b_small );
218         simple_panels[number] = current_simple_panel;
219         main_panel_l->addWidget( current_simple_panel );
220     }
221
222     current_simple_panel->show();
223 }
224
225 /* Changing from one Advanced Panel to another */
226 void PrefsDialog::changeAdvPanel( QTreeWidgetItem *item )
227 {
228     if( item == NULL ) return;
229     PrefsItemData *data = item->data( 0, Qt::UserRole ).value<PrefsItemData*>();
230
231     if( advanced_panel )
232         if( advanced_panel->isVisible() ) advanced_panel->hide();
233
234     if( !data->panel )
235     {
236         data->panel = new AdvPrefsPanel( p_intf, main_panel , data );
237         main_panel_l->addWidget( data->panel );
238     }
239
240     advanced_panel = data->panel;
241     advanced_panel->show();
242 }
243
244 #if 0
245 /*Called from extended settings, is not used anymore, but could be useful one day*/
246 void PrefsDialog::showModulePrefs( char *psz_module )
247 {
248     setAdvanced();
249     all->setChecked( true );
250     for( int i_cat_index = 0 ; i_cat_index < advanced_tree->topLevelItemCount();
251          i_cat_index++ )
252     {
253         QTreeWidgetItem *cat_item = advanced_tree->topLevelItem( i_cat_index );
254         PrefsItemData *data = cat_item->data( 0, Qt::UserRole ).
255                                                    value<PrefsItemData *>();
256         for( int i_sc_index = 0; i_sc_index < cat_item->childCount();
257                                   i_sc_index++ )
258         {
259             QTreeWidgetItem *subcat_item = cat_item->child( i_sc_index );
260             PrefsItemData *sc_data = subcat_item->data(0, Qt::UserRole).
261                                                     value<PrefsItemData *>();
262             for( int i_module = 0; i_module < subcat_item->childCount();
263                                    i_module++ )
264             {
265                 QTreeWidgetItem *module_item = subcat_item->child( i_module );
266                 PrefsItemData *mod_data = module_item->data( 0, Qt::UserRole ).
267                                                     value<PrefsItemData *>();
268                 if( !strcmp( mod_data->psz_name, psz_module ) ) {
269                     advanced_tree->setCurrentItem( module_item );
270                 }
271             }
272         }
273     }
274     show();
275 }
276 #endif
277
278 /* Actual apply and save for the preferences */
279 void PrefsDialog::save()
280 {
281     if( small->isChecked() && simple_tree->isVisible() )
282     {
283         msg_Dbg( p_intf, "Saving the simple preferences" );
284         for( int i = 0 ; i< SPrefsMax; i++ ){
285             if( simple_panels[i] )simple_panels[i]->apply();
286         }
287     }
288     else if( all->isChecked() && advanced_tree->isVisible() )
289     {
290         msg_Dbg( p_intf, "Saving the advanced preferences" );
291         advanced_tree->applyAll();
292     }
293
294     /* Save to file */
295     config_SaveConfigFile( p_intf, NULL );
296     accept();
297 }
298
299 /* Clean the preferences, dunno if it does something really */
300 void PrefsDialog::cancel()
301 {
302     reject();
303 }
304
305 /* Reset all the preferences, when you click the button */
306 void PrefsDialog::reset()
307 {
308     int ret = QMessageBox::question(
309                  this,
310                  qtr( "Reset Preferences" ),
311                  qtr( "Are you sure you want to reset your VLC media player preferences?" ),
312                  QMessageBox::Ok | QMessageBox::Cancel,
313                  QMessageBox::Ok);
314
315     if( ret == QMessageBox::Ok )
316     {
317         config_ResetAll( p_intf );
318         config_SaveConfigFile( p_intf, NULL );
319         getSettings()->clear();
320
321         accept();
322     }
323 }