]> git.sesse.net Git - vlc/blob - modules/gui/qt4/components/simple_preferences.cpp
Qt4 - Windows. Put the file extensions in a tree and in categories. Various checks...
[vlc] / modules / gui / qt4 / components / simple_preferences.cpp
1 /*****************************************************************************
2  * simple_preferences.cpp : "Simple preferences"
3  ****************************************************************************
4  * Copyright (C) 2006-2007 the VideoLAN team
5  * $Id: preferences.cpp 16348 2006-08-25 21:10:10Z zorglub $
6  *
7  * Authors: ClĂ©ment Stenac <zorglub@videolan.org>
8  *          Antoine Cellerier <dionoea@videolan.org>
9  *          Jean-Baptiste Kempf <jb@videolan.org>
10  *
11  * This program is free software; you can redistribute it and/or modify
12  * it under the terms of the GNU General Public License as published by
13  * the Free Software Foundation; either version 2 of the License, or
14  * (at your option) any later version.
15  *
16  * This program is distributed in the hope that it will be useful,
17  * but WITHOUT ANY WARRANTY; without even the implied warranty of
18  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
19  * GNU General Public License for more details.
20  *
21  * You should have received a copy of the GNU General Public License
22  * along with this program; if not, write to the Free Software
23  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston MA 02110-1301, USA.
24  *****************************************************************************/
25 #ifdef HAVE_CONFIG_H
26 # include "config.h"
27 #endif
28
29 #include "components/simple_preferences.hpp"
30 #include "components/preferences_widgets.hpp"
31
32 #include <vlc_config_cat.h>
33 #include <vlc_configuration.h>
34
35 #include <QString>
36 #include <QFont>
37 #include <QToolButton>
38 #include <QButtonGroup>
39 #include <QUrl>
40 #include <QVBoxLayout>
41
42 #define ICON_HEIGHT 64
43 #define BUTTON_HEIGHT 74
44
45 /*********************************************************************
46  * The List of categories
47  *********************************************************************/
48 SPrefsCatList::SPrefsCatList( intf_thread_t *_p_intf, QWidget *_parent ) :
49                                   QWidget( _parent ), p_intf( _p_intf )
50 {
51     QVBoxLayout *layout = new QVBoxLayout();
52
53     QButtonGroup *buttonGroup = new QButtonGroup( this );
54     buttonGroup->setExclusive ( true );
55     CONNECT( buttonGroup, buttonClicked ( int ),
56             this, switchPanel( int ) );
57
58 #define ADD_CATEGORY( button, label, icon, numb )                           \
59     QToolButton * button = new QToolButton( this );                         \
60     button->setIcon( QIcon( ":/pixmaps/" #icon ) );                         \
61     button->setIconSize( QSize( ICON_HEIGHT , ICON_HEIGHT ) );              \
62     button->setText( label );                                               \
63     button->setToolButtonStyle( Qt::ToolButtonTextUnderIcon );              \
64     button->resize( BUTTON_HEIGHT , BUTTON_HEIGHT);                         \
65     button->setSizePolicy(QSizePolicy::Expanding,QSizePolicy::Expanding) ;  \
66     button->setAutoRaise( true );                                           \
67     button->setCheckable( true );                                           \
68     buttonGroup->addButton( button, numb );                                 \
69     layout->addWidget( button );
70
71     ADD_CATEGORY( SPrefsInterface, qtr("Interface"),
72                   spref_cone_Interface_64.png, 0 );
73     ADD_CATEGORY( SPrefsAudio, qtr("Audio"), spref_cone_Audio_64.png, 1 );
74     ADD_CATEGORY( SPrefsVideo, qtr("Video"), spref_cone_Video_64.png, 2 );
75     ADD_CATEGORY( SPrefsSubtitles, qtr("Subtitles"),
76                   spref_cone_Subtitles_64.png, 3 );
77     ADD_CATEGORY( SPrefsInputAndCodecs, qtr("Input and Codecs"),
78                   spref_cone_Input_64.png, 4 );
79     ADD_CATEGORY( SPrefsHotkeys, qtr("Hotkeys"), spref_cone_Hotkeys_64.png, 5 );
80
81     SPrefsInterface->setChecked( true );
82     layout->setMargin( 0 );
83     layout->setSpacing( 1 );
84
85     this->setSizePolicy(QSizePolicy::Expanding,QSizePolicy::Expanding);
86     setLayout( layout );
87
88 }
89
90 void SPrefsCatList::switchPanel( int i )
91 {
92     emit currentItemChanged( i );
93 }
94
95 /*********************************************************************
96  * The Panels
97  *********************************************************************/
98 SPrefsPanel::SPrefsPanel( intf_thread_t *_p_intf, QWidget *_parent,
99                           int _number ) : QWidget( _parent ), p_intf( _p_intf )
100 {
101     module_config_t *p_config;
102     ConfigControl *control;
103     number = _number;
104
105 #define CONFIG_GENERIC( option, type, label, qcontrol )                   \
106             p_config =  config_FindConfig( VLC_OBJECT(p_intf), option );  \
107             if( p_config )                                                \
108             {                                                             \
109                 control =  new type ## ConfigControl( VLC_OBJECT(p_intf), \
110                            p_config, label, ui.qcontrol, false );         \
111                 controls.append( control );                               \
112             }
113
114 #define CONFIG_GENERIC_NO_BOOL( option, type, label, qcontrol )           \
115             p_config =  config_FindConfig( VLC_OBJECT(p_intf), option );  \
116             if( p_config )                                                \
117             {                                                             \
118                 control =  new type ## ConfigControl( VLC_OBJECT(p_intf), \
119                            p_config, label, ui.qcontrol );                \
120                 controls.append( control );                               \
121             }
122
123 #define CONFIG_GENERIC_FILE( option, type, label, qcontrol, qbutton )         \
124                 p_config =  config_FindConfig( VLC_OBJECT(p_intf), option );  \
125                 if( p_config )                                                \
126                 {                                                             \
127                     control =  new type ## ConfigControl( VLC_OBJECT(p_intf), \
128                                p_config, label, ui.qcontrol, ui.qbutton,      \
129                             false );                                          \
130                     controls.append( control );                               \
131                 }
132
133 #define START_SPREFS_CAT( name , label )    \
134         case SPrefs ## name:                \
135         {                                   \
136             Ui::SPrefs ## name ui;      \
137             ui.setupUi( panel );            \
138             panel_label->setText( label );
139
140 #define END_SPREFS_CAT      \
141             break;          \
142         }
143
144     QVBoxLayout *panel_layout = new QVBoxLayout();
145     QWidget *panel = new QWidget();
146     panel_layout->setMargin( 3 );
147
148     // Title Label
149     QLabel *panel_label = new QLabel;
150     QFont labelFont = QApplication::font( static_cast<QWidget*>(0) );
151     labelFont.setPointSize( labelFont.pointSize() + 6 );
152     labelFont.setFamily( "Verdana" );
153     panel_label->setFont( labelFont );
154
155     // Title <hr>
156     QFrame *title_line = new QFrame;
157     title_line->setFrameShape(QFrame::HLine);
158     title_line->setFrameShadow(QFrame::Sunken);
159
160     QFont italicFont = QApplication::font( static_cast<QWidget*>(0) );
161     italicFont.setItalic( true );
162
163     switch( number )
164     {
165         /******************************
166          * VIDEO Panel Implementation *
167          ******************************/
168         START_SPREFS_CAT( Video , qtr("General video settings") );
169             CONFIG_GENERIC( "video", Bool, NULL, enableVideo );
170
171             CONFIG_GENERIC( "fullscreen", Bool, NULL, fullscreen );
172             CONFIG_GENERIC( "overlay", Bool, NULL, overlay );
173             CONFIG_GENERIC( "video-on-top", Bool, NULL, alwaysOnTop );
174             CONFIG_GENERIC( "video-deco", Bool, NULL, windowDecorations );
175             CONFIG_GENERIC( "skip-frames" , Bool, NULL, skipFrames );
176             CONFIG_GENERIC( "vout", Module, NULL, outputModule );
177
178 #ifdef WIN32
179             CONFIG_GENERIC( "directx-wallpaper" , Bool , NULL, wallpaperMode );
180             CONFIG_GENERIC( "directx-device", StringList, NULL,
181                             dXdisplayDevice );
182 #else
183             ui.directXBox->setVisible( false );
184 #endif
185
186             CONFIG_GENERIC_FILE( "snapshot-path", Directory, NULL,
187                                  snapshotsDirectory, snapshotsDirectoryBrowse );
188             CONFIG_GENERIC( "snapshot-prefix", String, NULL, snapshotsPrefix );
189             CONFIG_GENERIC( "snapshot-sequential", Bool, NULL,
190                             snapshotsSequentialNumbering );
191             CONFIG_GENERIC( "snapshot-format", StringList, NULL,
192                             snapshotsFormat );
193          END_SPREFS_CAT;
194
195         /******************************
196          * AUDIO Panel Implementation *
197          ******************************/
198         START_SPREFS_CAT( Audio, qtr("General audio settings") );
199
200             CONFIG_GENERIC( "audio", Bool, NULL, enableAudio );
201
202             /* hide if necessary */
203 #ifdef WIN32
204             ui.OSSControl->hide();
205             ui.alsaControl->hide();
206 #else
207             ui.DirectXControl->hide();
208 #endif
209             ui.lastfm_user_edit->hide();
210             ui.lastfm_user_label->hide();
211             ui.lastfm_pass_edit->hide();
212             ui.lastfm_pass_label->hide();
213
214             /* General Audio Options */
215             CONFIG_GENERIC_NO_BOOL( "volume" , IntegerRangeSlider, NULL,
216                                      defaultVolume );
217             CONFIG_GENERIC( "audio-language" , String , NULL,
218                             preferredAudioLanguage );
219
220             CONFIG_GENERIC( "spdif", Bool, NULL, spdifBox );
221             CONFIG_GENERIC( "force-dolby-surround" , IntegerList , NULL,
222                             detectionDolby );
223
224             CONFIG_GENERIC( "headphone-dolby" , Bool , NULL, headphoneEffect );
225
226             CONFIG_GENERIC_NO_BOOL( "norm-max-level" , Float , NULL,
227                                     volNormSpin );
228             CONFIG_GENERIC( "audio-visual" , Module , NULL, visualisation);
229
230             /* Audio Output Specifics */
231             CONFIG_GENERIC( "aout", Module, NULL, outputModule );
232
233             CONNECT( ui.outputModule, currentIndexChanged( int ),
234                      this, updateAudioOptions( int ) );
235
236 #ifndef WIN32
237             if( module_Exists( p_intf, "alsa" ) )
238             {
239                 CONFIG_GENERIC( "alsadev" , StringList , ui.alsaLabel,
240                                 alsaDevice );
241             }
242             if( module_Exists( p_intf, "oss" ) )
243             {
244                 CONFIG_GENERIC_FILE( "dspdev" , File , ui.OSSLabel, OSSDevice,
245                                  OSSBrowse );
246             }
247 #else
248             CONFIG_GENERIC( "directx-audio-device", IntegerList,
249                     ui.DirectXLabel, DirectXDevice );
250 #endif
251         // File exists everywhere
252             CONFIG_GENERIC_FILE( "audiofile-file" , File , ui.fileLabel,
253                                  fileName, fileBrowseButton );
254
255             optionWidgets.append( ui.alsaControl );
256             optionWidgets.append( ui.OSSControl );
257             optionWidgets.append( ui.DirectXControl );
258             optionWidgets.append( ui.fileControl );
259             optionWidgets.append( ui.outputModule );
260             optionWidgets.append( ui.volNormBox );
261             updateAudioOptions( ui.outputModule->currentIndex() );
262
263             /* LastFM */
264             if( module_Exists( p_intf, "audioscrobbler" ) )
265             {
266                 CONFIG_GENERIC( "lastfm-username", String, ui.lastfm_user_label,
267                         lastfm_user_edit );
268                 CONFIG_GENERIC( "lastfm-password", String, ui.lastfm_pass_label,
269                         lastfm_pass_edit );
270
271                 if( config_ExistIntf( VLC_OBJECT( p_intf ), "audioscrobbler" ) )
272                     ui.lastfm->setChecked( true );
273                 else
274                     ui.lastfm->setChecked( false );
275                 CONNECT( ui.lastfm, stateChanged( int ), this ,
276                         lastfm_Changed( int ) );
277             }
278             else
279                 ui.lastfm->hide();
280
281             /* Normalizer */
282
283             CONNECT( ui.volNormBox, toggled( bool ), ui.volNormSpin,
284                      setEnabled( bool ) );
285             qs_filter = qfu( config_GetPsz( p_intf, "audio-filter" ) );
286             bool b_normalizer = ( qs_filter.contains( "volnorm" ) );
287             {
288                 ui.volNormBox->setChecked( b_normalizer );
289                 ui.volNormSpin->setEnabled( b_normalizer );
290             }
291
292         END_SPREFS_CAT;
293
294         /* Input and Codecs Panel Implementation */
295         START_SPREFS_CAT( InputAndCodecs, qtr("Input & Codecs settings") );
296
297             /* Disk Devices */
298             {
299                 ui.DVDDevice->setToolTip(
300                     //TODO: make this sentence understandable
301                     qtr( "If this property is blank, then you have\n"
302                          "values for DVD, VCD, and CDDA.\n"
303                          "You can define a unique one or set that in"
304                          "the advanced preferences" ) );
305                 char *psz_dvddiscpath = config_GetPsz( p_intf, "dvd" );
306                 char *psz_vcddiscpath = config_GetPsz( p_intf, "vcd" );
307                 char *psz_cddadiscpath = config_GetPsz( p_intf, "cd-audio" );
308                 if( psz_dvddiscpath && psz_vcddiscpath && psz_cddadiscpath )
309                 if( !strcmp( psz_cddadiscpath, psz_dvddiscpath ) &&
310                     !strcmp( psz_dvddiscpath, psz_vcddiscpath ) )
311                 {
312                     ui.DVDDevice->setText( qfu( psz_dvddiscpath ) );
313                 }
314                 delete psz_cddadiscpath; delete psz_dvddiscpath;
315                 delete psz_vcddiscpath;
316             }
317
318             CONFIG_GENERIC_NO_BOOL( "server-port", Integer, NULL, UDPPort );
319             CONFIG_GENERIC( "http-proxy", String , NULL, proxy );
320             CONFIG_GENERIC_NO_BOOL( "ffmpeg-pp-q", Integer, NULL, PostProcLevel );
321             CONFIG_GENERIC( "avi-index", IntegerList, NULL, AviRepair );
322             CONFIG_GENERIC( "rtsp-tcp", Bool, NULL, RTSP_TCPBox );
323 #ifdef WIN32
324             CONFIG_GENERIC( "prefer-system-codecs", Bool, NULL, systemCodecBox );
325 #else
326             ui.systemCodecBox->hide();
327 #endif
328             /* Access Filters */
329             qs_filter = qfu( config_GetPsz( p_intf, "access-filter" ) );
330             ui.timeshiftBox->setChecked( qs_filter.contains( "timeshift" ) );
331             ui.dumpBox->setChecked( qs_filter.contains( "dump" ) );
332             ui.recordBox->setChecked( qs_filter.contains( "record" ) );
333             ui.bandwidthBox->setChecked( qs_filter.contains( "bandwidth" ) );
334
335             optionWidgets.append( ui.recordBox );
336             optionWidgets.append( ui.dumpBox );
337             optionWidgets.append( ui.bandwidthBox );
338             optionWidgets.append( ui.timeshiftBox );
339             optionWidgets.append( ui.DVDDevice );
340             optionWidgets.append( ui.cachingCombo );
341
342             /* Caching */
343             /* Add the things to the ComboBox */
344             #define addToCachingBox( str, cachingNumber ) \
345                 ui.cachingCombo->addItem( str, QVariant( cachingNumber ) );
346             addToCachingBox( "Custom", CachingCustom );
347             addToCachingBox( "Lowest latency", CachingLowest );
348             addToCachingBox( "Low latency", CachingLow );
349             addToCachingBox( "Normal", CachingNormal );
350             addToCachingBox( "High latency", CachingHigh );
351             addToCachingBox( "Higher latency", CachingHigher );
352
353 #define TestCaC( name ) \
354     b_cache_equal =  b_cache_equal && \
355      ( i_cache == config_GetInt( p_intf, name ) )
356
357 #define TestCaCi( name, int ) \
358     b_cache_equal = b_cache_equal &&  \
359     ( ( i_cache * int ) == config_GetInt( p_intf, name ) )
360             /* Select the accurate value of the ComboBox */
361             bool b_cache_equal = true;
362             int i_cache = config_GetInt( p_intf, "file-caching");
363
364             TestCaC( "udp-caching" );
365             if (module_Exists (p_intf, "dvdread"))
366                 TestCaC( "dvdread-caching" );
367             if (module_Exists (p_intf, "dvdnav"))
368                 TestCaC( "dvdnav-caching" );
369             TestCaC( "tcp-caching" );
370             TestCaC( "fake-caching" ); TestCaC( "cdda-caching" );
371             TestCaC( "screen-caching" ); TestCaC( "vcd-caching" );
372             #ifdef WIN32
373             TestCaC( "dshow-caching" );
374             #else
375             if (module_Exists (p_intf, "v4l"))
376                 TestCaC( "v4l-caching" );
377             if (module_Exists (p_intf, "access_jack"))
378                 TestCaC( "jack-input-caching" );
379             if (module_Exists (p_intf, "v4l2"))
380                 TestCaC( "v4l2-caching" );
381             if (module_Exists (p_intf, "pvr"))
382                 TestCaC( "pvr-caching" );
383             #endif
384             TestCaCi( "rtsp-caching", 4 ); TestCaCi( "ftp-caching", 2 );
385             TestCaCi( "http-caching", 4 );
386             if (module_Exists (p_intf, "access_realrtsp"))
387                 TestCaCi( "realrtsp-caching", 10 );
388             TestCaCi( "mms-caching", 19 );
389             if( b_cache_equal ) ui.cachingCombo->setCurrentIndex(
390                 ui.cachingCombo->findData( QVariant( i_cache ) ) );
391
392         END_SPREFS_CAT;
393         /*******************
394          * Interface Panel *
395          *******************/
396         START_SPREFS_CAT( Interface, qtr("Interface settings") );
397             ui.defaultLabel->setFont( italicFont );
398             ui.skinsLabel->setFont( italicFont );
399
400 #if defined( WIN32 ) || defined (__APPLE__)
401             CONFIG_GENERIC( "language", StringList, NULL, language );
402             BUTTONACT( ui.assoButton, assoDialog() );
403 #else
404             ui.language->hide();
405             ui.languageLabel->hide();
406             ui.assoName->hide();
407             ui.assoButton->hide();
408 #endif
409
410             /* interface */
411             char *psz_intf = config_GetPsz( p_intf, "intf" );
412             if( psz_intf )
413             {
414                 msg_Dbg( p_intf, "Interface in config file: %s", psz_intf );
415                 if( strstr( psz_intf, "skin" ) )
416                     ui.skins->setChecked( true );
417                 else if( strstr( psz_intf, "qt" ) )
418                     ui.qt4->setChecked( true );
419             }
420             delete psz_intf;
421
422             optionWidgets.append( ui.skins );
423             optionWidgets.append( ui.qt4 );
424
425             CONFIG_GENERIC( "album-art", IntegerList, ui.artFetchLabel, artFetcher );
426             CONFIG_GENERIC( "fetch-meta", Bool, NULL, metaFetcher );
427 #ifdef UPDATE_CHECK
428             CONFIG_GENERIC( "qt-updates-notif", Bool, NULL, qtUpdates );
429 #endif
430             CONFIG_GENERIC( "qt-always-video", Bool, NULL, qtAlwaysVideo );
431             CONFIG_GENERIC( "embeded-video", Bool, NULL, embedVideo );
432             CONFIG_GENERIC_FILE( "skins2-last", File, NULL, fileSkin,
433                     skinBrowse );
434 #if defined( WIN32 ) || defined( HAVE_DBUS_3 )
435             CONFIG_GENERIC( "one-instance", Bool, NULL, OneInterfaceMode );
436             CONFIG_GENERIC( "playlist-enqueue", Bool, NULL,
437                     EnqueueOneInterfaceMode );
438 #else
439             ui.OneInterfaceBox->hide();
440 #endif
441         END_SPREFS_CAT;
442
443         START_SPREFS_CAT( Subtitles, qtr("Subtitles & OSD settings") );
444             CONFIG_GENERIC( "osd", Bool, NULL, OSDBox);
445
446             CONFIG_GENERIC( "subsdec-encoding", StringList, NULL, encoding );
447             CONFIG_GENERIC( "sub-language", String, NULL, preferredLanguage );
448             CONFIG_GENERIC_FILE( "freetype-font", File, NULL, font,
449                             fontBrowse );
450             CONFIG_GENERIC( "freetype-color", IntegerList, NULL, fontColor );
451             CONFIG_GENERIC( "freetype-rel-fontsize", IntegerList, NULL,
452                             fontSize );
453             CONFIG_GENERIC( "freetype-effect", IntegerList, NULL, effect );
454
455         END_SPREFS_CAT;
456
457         case SPrefsHotkeys:
458         {
459             p_config = config_FindConfig( VLC_OBJECT(p_intf), "key-fullscreen" );
460
461             QGridLayout *gLayout = new QGridLayout;
462             panel->setLayout( gLayout );
463             int line = 0;
464
465             control = new KeySelectorControl( VLC_OBJECT(p_intf), p_config ,
466                                                 this, gLayout, line );
467
468             panel_label->setText( qtr( "Configure Hotkeys" ) );
469             controls.append( control );
470
471             break;
472         }
473     }
474
475     panel_layout->addWidget( panel_label );
476     panel_layout->addWidget( title_line );
477     panel_layout->addWidget( panel );
478     if( number != SPrefsHotkeys ) panel_layout->addStretch( 2 );
479
480     setLayout( panel_layout );
481 }
482
483 void SPrefsPanel::updateAudioOptions( int number)
484 {
485     QString value = qobject_cast<QComboBox *>(optionWidgets[audioOutCoB])
486                                             ->itemData( number ).toString();
487
488 #ifndef WIN32
489     optionWidgets[ossW]->setVisible( ( value == "oss" ) );
490     optionWidgets[alsaW]->setVisible( ( value == "alsa" ) );
491 #else
492     optionWidgets[directxW]->setVisible( ( value == "directx" ) );
493 #endif
494     optionWidgets[fileW]->setVisible( ( value == "aout_file" ) );
495 }
496
497 /* Function called from the main Preferences dialog on each SPrefs Panel */
498 void SPrefsPanel::apply()
499 {
500     msg_Dbg( p_intf, "Trying to save the %i simple panel", number );
501
502     /* Generic save for ever panel */
503     QList<ConfigControl *>::Iterator i;
504     for( i = controls.begin() ; i != controls.end() ; i++ )
505     {
506         ConfigControl *c = qobject_cast<ConfigControl *>(*i);
507         c->doApply( p_intf );
508     }
509
510     switch( number )
511     {
512     case SPrefsInputAndCodecs:
513     {
514         /* Device default selection */
515         char *psz_devicepath =
516               qtu( qobject_cast<QLineEdit *>(optionWidgets[inputLE] )->text() );
517         if( !EMPTY_STR( psz_devicepath ) )
518         {
519             config_PutPsz( p_intf, "dvd", psz_devicepath );
520             config_PutPsz( p_intf, "vcd", psz_devicepath );
521             config_PutPsz( p_intf, "cd-audio", psz_devicepath );
522         }
523
524         /* Access filters */
525 #define saveBox( name, box ) {\
526         if( box->isChecked() ) { \
527             if( b_first ) { \
528                 qs_filter.append( name ); \
529                 b_first = false; \
530             } \
531             else qs_filter.append( ":" ).append( name ); \
532         } }
533
534         bool b_first = true;
535         qs_filter.clear();
536         saveBox( "record", qobject_cast<QCheckBox *>(optionWidgets[recordChB]) );
537         saveBox( "dump", qobject_cast<QCheckBox *>(optionWidgets[dumpChB]) );
538         saveBox( "timeshift", qobject_cast<QCheckBox *>(optionWidgets[timeshiftChB]) );
539         saveBox( "bandwidth", qobject_cast<QCheckBox *>(optionWidgets[bandwidthChB] ) );
540         config_PutPsz( p_intf, "access-filter", qtu( qs_filter ) );
541
542 #define CaCi( name, int ) config_PutInt( p_intf, name, int * i_comboValue )
543 #define CaC( name ) CaCi( name, 1 )
544         /* Caching */
545         QComboBox *cachingCombo = qobject_cast<QComboBox *>(optionWidgets[cachingCoB]);
546         int i_comboValue = cachingCombo->itemData( cachingCombo->currentIndex() ).toInt();
547         if( i_comboValue )
548         {
549             msg_Dbg( p_intf, "Adjusting all cache values at: %i", i_comboValue );
550             CaC( "udp-caching" );
551             if (module_Exists (p_intf, "dvdread" ))
552                 CaC( "dvdread-caching" );
553             if (module_Exists (p_intf, "dvdnav" ))
554                 CaC( "dvdnav-caching" );
555             CaC( "tcp-caching" ); CaC( "vcd-caching" );
556             CaC( "fake-caching" ); CaC( "cdda-caching" ); CaC( "file-caching" );
557             CaC( "screen-caching" );
558             CaCi( "rtsp-caching", 4 ); CaCi( "ftp-caching", 2 );
559             CaCi( "http-caching", 4 );
560             if (module_Exists (p_intf, "access_realrtsp" ))
561                 CaCi( "realrtsp-caching", 10 );
562             CaCi( "mms-caching", 19 );
563             #ifdef WIN32
564             CaC( "dshow-caching" );
565             #else
566             if (module_Exists (p_intf, "v4l" ))
567                 CaC( "v4l-caching" );
568             if (module_Exists (p_intf, "access_jack" ))
569             CaC( "jack-input-caching" );
570             if (module_Exists (p_intf, "v4l2" ))
571                 CaC( "v4l2-caching" );
572             if (module_Exists (p_intf, "pvr" ))
573                 CaC( "pvr-caching" );
574             #endif
575             //CaCi( "dv-caching" ) too short...
576         }
577         break;
578     }
579
580     /* Interfaces */
581     case SPrefsInterface:
582     {
583         if( qobject_cast<QRadioButton *>(optionWidgets[skinRB])->isChecked() )
584             config_PutPsz( p_intf, "intf", "skins2" );
585         if( qobject_cast<QRadioButton *>(optionWidgets[qtRB])->isChecked() )
586             config_PutPsz( p_intf, "intf", "qt4" );
587         break;
588     }
589
590     case SPrefsAudio:
591     {
592         bool b_normChecked =
593             qobject_cast<QCheckBox *>(optionWidgets[normalizerChB])->isChecked();
594         if( qs_filter.isEmpty() )
595         {
596             /* the psz_filter is already empty, so we just append it needed */
597             if( b_normChecked ) qs_filter = "volnorm";
598         }
599         else /* Not Empty */
600         {
601             if( qs_filter.contains( "volnorm" ) )
602             {
603                 /* The qs_filter not empty and contains "volnorm"
604                    that we have to remove */
605                 if( !b_normChecked )
606                 {
607                     /* Ugly :D */
608                     qs_filter.remove( "volnorm:" );
609                     qs_filter.remove( ":volnorm" );
610                     qs_filter.remove( "volnorm" );
611                 }
612             }
613             else /* qs_filter not empty, but doesn't have volnorm inside */
614                 if( b_normChecked ) qs_filter.append( ":volnorm" );
615         }
616         config_PutPsz( p_intf, "audio-filter", qtu( qs_filter ) );
617         break;
618     }
619     }
620 }
621
622 void SPrefsPanel::clean()
623 {}
624
625 void SPrefsPanel::lastfm_Changed( int i_state )
626 {
627     if( i_state == Qt::Checked )
628         config_AddIntf( VLC_OBJECT( p_intf ), "audioscrobbler" );
629     else if( i_state == Qt::Unchecked )
630         config_RemoveIntf( VLC_OBJECT( p_intf ), "audioscrobbler" );
631 }
632
633 #ifdef WIN32
634 #include <QListWidget>
635 #include <QDialogButtonBox>
636 #include <QHeaderView>
637 #include "util/registry.hpp"
638
639 bool SPrefsPanel::addType( const char * psz_ext, QTreeWidgetItem* current,
640                            QTreeWidgetItem* parent, QVLCRegistry *qvReg )
641 {
642     bool b_temp;
643     const char* psz_VLC = "VLC";
644     current = new QTreeWidgetItem( parent, QStringList( psz_ext ) );
645
646     if( strstr( qvReg->ReadRegistryString( psz_ext, "", ""  ), psz_VLC ) )
647     {
648         current->setCheckState( 0, Qt::Checked );
649         b_temp = false;
650     }
651     else
652     {
653         current->setCheckState( 0, Qt::Unchecked );
654         b_temp = true;
655     }
656     listAsso.append( current );
657     return b_temp;
658 }
659
660 void SPrefsPanel::assoDialog()
661 {
662     QDialog *d = new QDialog( this );
663     QGridLayout *assoLayout = new QGridLayout( d );
664
665     QTreeWidget *filetypeList = new QTreeWidget;
666     assoLayout->addWidget( filetypeList, 0, 0, 1, 4 );
667     filetypeList->header()->hide();
668
669     QVLCRegistry * qvReg = new QVLCRegistry( HKEY_CLASSES_ROOT );
670
671     QTreeWidgetItem *audioType = new QTreeWidgetItem( QStringList( qtr( "Audio Files" ) ) );
672     QTreeWidgetItem *videoType = new QTreeWidgetItem( QStringList( qtr( "Video Files" ) ) );
673     QTreeWidgetItem *otherType = new QTreeWidgetItem( QStringList( qtr( "Playlist Files" ) ) );
674
675     filetypeList->addTopLevelItem( audioType );
676     filetypeList->addTopLevelItem( videoType );
677     filetypeList->addTopLevelItem( otherType );
678
679     audioType->setExpanded( true ); audioType->setCheckState( 0, Qt::Unchecked );
680     videoType->setExpanded( true ); videoType->setCheckState( 0, Qt::Unchecked );
681     otherType->setExpanded( true ); otherType->setCheckState( 0, Qt::Unchecked );
682
683     QTreeWidgetItem *currentItem;
684
685     int i_temp = 0;
686 #define aTa( name ) i_temp += addType( name, currentItem, audioType, qvReg )
687 #define aTv( name ) i_temp += addType( name, currentItem, videoType, qvReg )
688 #define aTo( name ) i_temp += addType( name, currentItem, otherType, qvReg )
689
690     aTa( ".a52" ); aTa( ".aac" ); aTa( ".ac3" ); aTa( ".dts" ); aTa( ".flac" );
691     aTa( ".m4a" ); aTa( ".m4p" ); aTa( ".mka" ); aTa( ".mod" ); aTa( ".mp1" );
692     aTa( ".mp2" ); aTa( ".mp3" ); aTa( ".ogg" ); aTa( ".spx" ); aTa( ".wav" );
693     aTa( ".wma" ); aTa( ".xm" );
694     audioType->setCheckState( 0, ( i_temp > 0 ) ? 
695                               ( ( i_temp == audioType->childCount() ) ?
696                                Qt::Checked : Qt::PartiallyChecked )
697                             : Qt::Unchecked );
698
699     i_temp = 0;
700     aTv( ".asf" ); aTv( ".avi" ); aTv( ".divx" ); aTv( ".dv" ); aTv( ".flv" );
701     aTv( ".gxf" ); aTv( ".m1v" ); aTv( ".m2v" ); aTv( ".m4v" ); aTv( ".mkv" );
702     aTv( ".mov" ); aTv( ".mp2" ); aTv( ".mp4" ); aTv( ".mpeg" );
703     aTv( ".mpeg1" ); aTv( ".mpeg2" ); aTv( ".mpeg4" ); aTv( ".mpg" );
704     aTv( ".mxf" ); aTv( ".ogm" ); aTv( ".ps" ); aTv( ".ts" );
705     aTv( ".vob" ); aTv( ".wmv" );
706     videoType->setCheckState( 0, ( i_temp > 0 ) ? 
707                               ( ( i_temp == audioType->childCount() ) ?
708                                Qt::Checked : Qt::PartiallyChecked )
709                             : Qt::Unchecked );
710
711     i_temp = 0;
712     aTo( ".asx" ); aTo( ".b4s" ); aTo( ".m3u" ); aTo( ".pls" ); aTo( ".vlc" );
713     aTo( ".xspf" );
714     otherType->setCheckState( 0, ( i_temp > 0 ) ? 
715                               ( ( i_temp == audioType->childCount() ) ?
716                                Qt::Checked : Qt::PartiallyChecked )
717                             : Qt::Unchecked );
718
719     QDialogButtonBox *buttonBox = new QDialogButtonBox( d );
720     QPushButton *closeButton = new QPushButton( qtr( "&Apply" ) );
721     QPushButton *clearButton = new QPushButton( qtr( "&Cancel" ) );
722     buttonBox->addButton( closeButton, QDialogButtonBox::AcceptRole );
723     buttonBox->addButton( clearButton, QDialogButtonBox::ActionRole );
724
725     assoLayout->addWidget( buttonBox, 1, 2, 1, 2 );
726
727     CONNECT( closeButton, clicked(), this, saveAsso() );
728     CONNECT( clearButton, clicked(), d, reject() );
729     d->resize( 300, 400 );
730     d->exec();
731     delete d;
732     delete qvReg;
733     listAsso.clear();
734 }
735
736 void addAsso( QVLCRegistry *qvReg, char *psz_ext )
737 {
738     std::string s_path( "VLC" ); s_path += psz_ext;
739     std::string s_path2 = s_path;
740
741     /* Save a backup if already assigned */
742     char *psz_value = qvReg->ReadRegistryString( psz_ext, "", ""  );
743     
744     if( psz_value && strlen( psz_value ) > 0 )
745         qvReg->WriteRegistryString( psz_ext, "VLC.backup", psz_value );
746     delete psz_value;
747         
748     /* Put a "link" to VLC.EXT as default */
749     qvReg->WriteRegistryString( psz_ext, "", s_path.c_str() );
750     
751     /* Create the needed Key if they weren't done in the installer */
752     if( !qvReg->RegistryKeyExists( s_path.c_str() ) )
753     {
754         qvReg->WriteRegistryString( psz_ext, "", s_path.c_str() );
755         qvReg->WriteRegistryString( s_path.c_str(), "", "Media file" );
756         qvReg->WriteRegistryString( s_path.append( "\\shell" ).c_str() , "", "Play" );
757
758         /* Get the installer path */
759         QVLCRegistry *qvReg2 = new QVLCRegistry( HKEY_LOCAL_MACHINE );
760         std::string str_temp; str_temp.assign( 
761             qvReg2->ReadRegistryString( "Software\\VideoLAN\\VLC", "", "" ) );
762         
763         if( str_temp.size() )
764         {
765             qvReg->WriteRegistryString( s_path.append( "\\Play\\command" ).c_str(),
766                 "", str_temp.append(" --started-from-file \"%1\"" ).c_str() );
767
768             qvReg->WriteRegistryString( s_path2.append( "\\DefaultIcon" ).c_str(), 
769                         "", str_temp.append(",0").c_str() );
770         }
771         delete qvReg2;
772     }
773 }
774
775 void delAsso( QVLCRegistry *qvReg, char *psz_ext )
776 {
777     char psz_VLC[] = "VLC";
778     char *psz_value = qvReg->ReadRegistryString( psz_ext, "", ""  );
779
780     if( psz_value && !strcmp( strcat( psz_VLC, psz_ext ), psz_value ) )
781     {
782         free( psz_value );
783         psz_value = qvReg->ReadRegistryString( psz_ext, "VLC.backup", "" );
784         if( psz_value )
785             qvReg->WriteRegistryString( psz_ext, "", psz_value );
786
787         qvReg->DeleteKey( psz_ext, "VLC.backup" );
788     }
789     delete( psz_value );
790 }
791 void SPrefsPanel::saveAsso()
792 {
793     QVLCRegistry * qvReg;
794     for( int i = 0; i < listAsso.size(); i ++ )
795     {
796         qvReg  = new QVLCRegistry( HKEY_CLASSES_ROOT );
797         if( listAsso[i]->checkState( 0 ) > 0 )
798         {
799             addAsso( qvReg, qtu( listAsso[i]->text( 0 ) ) );
800         }
801         else
802         {
803             delAsso( qvReg, qtu( listAsso[i]->text( 0 ) ) );
804         }
805     }
806     /* Gruik ? Naaah */
807     qobject_cast<QDialog *>(listAsso[0]->treeWidget()->parent())->accept();
808     delete qvReg;
809 }
810
811 #endif /* WIN32 */
812