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