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