]> git.sesse.net Git - vlc/blob - modules/gui/qt4/components/simple_preferences.cpp
Qt4: remove fetch-meta - fixes #1670
[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/" #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 and 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             qs_filter = qfu( config_GetPsz( p_intf, "audio-filter" ) );
338             bool b_normalizer = ( qs_filter.contains( "volnorm" ) );
339             {
340                 ui.volNormBox->setChecked( b_normalizer );
341                 ui.volNormSpin->setEnabled( b_normalizer );
342             }
343
344             /* Volume Label */
345             updateAudioVolume( ui.defaultVolume->value() ); // First time init
346
347         END_SPREFS_CAT;
348
349         /* Input and Codecs Panel Implementation */
350         START_SPREFS_CAT( InputAndCodecs, qtr("Input & Codecs Settings") );
351
352             /* Disk Devices */
353             {
354                 ui.DVDDevice->setToolTip(
355                     //TODO: make this sentence understandable
356                     qtr( "If this property is blank, then you have\n"
357                          "values for DVD, VCD, and CDDA.\n"
358                          "You can define a unique one or set that in"
359                          "the advanced preferences" ) );
360                 char *psz_dvddiscpath = config_GetPsz( p_intf, "dvd" );
361                 char *psz_vcddiscpath = config_GetPsz( p_intf, "vcd" );
362                 char *psz_cddadiscpath = config_GetPsz( p_intf, "cd-audio" );
363                 if( psz_dvddiscpath && psz_vcddiscpath && psz_cddadiscpath )
364                 if( !strcmp( psz_cddadiscpath, psz_dvddiscpath ) &&
365                     !strcmp( psz_dvddiscpath, psz_vcddiscpath ) )
366                 {
367                     ui.DVDDevice->setText( qfu( psz_dvddiscpath ) );
368                 }
369                 delete psz_cddadiscpath; delete psz_dvddiscpath;
370                 delete psz_vcddiscpath;
371             }
372
373             CONFIG_GENERIC_NO_BOOL( "server-port", Integer, NULL, UDPPort );
374             CONFIG_GENERIC( "http-proxy", String , NULL, proxy );
375             CONFIG_GENERIC_NO_BOOL( "ffmpeg-pp-q", Integer, NULL, PostProcLevel );
376             CONFIG_GENERIC( "avi-index", IntegerList, NULL, AviRepair );
377             CONFIG_GENERIC( "rtsp-tcp", Bool, NULL, RTSP_TCPBox );
378 #ifdef WIN32
379             CONFIG_GENERIC( "prefer-system-codecs", Bool, NULL, systemCodecBox );
380 #else
381             ui.systemCodecBox->hide();
382 #endif
383             /* Access Filters */
384             qs_filter = qfu( config_GetPsz( p_intf, "access-filter" ) );
385             ui.timeshiftBox->setChecked( qs_filter.contains( "timeshift" ) );
386             ui.dumpBox->setChecked( qs_filter.contains( "dump" ) );
387             ui.recordBox->setChecked( qs_filter.contains( "record" ) );
388             ui.bandwidthBox->setChecked( qs_filter.contains( "bandwidth" ) );
389
390             optionWidgets.append( ui.recordBox );
391             optionWidgets.append( ui.dumpBox );
392             optionWidgets.append( ui.bandwidthBox );
393             optionWidgets.append( ui.timeshiftBox );
394             optionWidgets.append( ui.DVDDevice );
395             optionWidgets.append( ui.cachingCombo );
396
397             /* Caching */
398             /* Add the things to the ComboBox */
399             #define addToCachingBox( str, cachingNumber ) \
400                 ui.cachingCombo->addItem( str, QVariant( cachingNumber ) );
401             addToCachingBox( "Custom", CachingCustom );
402             addToCachingBox( "Lowest latency", CachingLowest );
403             addToCachingBox( "Low latency", CachingLow );
404             addToCachingBox( "Normal", CachingNormal );
405             addToCachingBox( "High latency", CachingHigh );
406             addToCachingBox( "Higher latency", CachingHigher );
407
408 #define TestCaC( name ) \
409     b_cache_equal =  b_cache_equal && \
410      ( i_cache == config_GetInt( p_intf, name ) )
411
412 #define TestCaCi( name, int ) \
413     b_cache_equal = b_cache_equal &&  \
414     ( ( i_cache * int ) == config_GetInt( p_intf, name ) )
415             /* Select the accurate value of the ComboBox */
416             bool b_cache_equal = true;
417             int i_cache = config_GetInt( p_intf, "file-caching");
418
419             TestCaC( "udp-caching" );
420             if (module_Exists (p_intf, "dvdread"))
421                 TestCaC( "dvdread-caching" );
422             if (module_Exists (p_intf, "dvdnav"))
423                 TestCaC( "dvdnav-caching" );
424             TestCaC( "tcp-caching" );
425             TestCaC( "fake-caching" ); TestCaC( "cdda-caching" );
426             TestCaC( "screen-caching" ); TestCaC( "vcd-caching" );
427             #ifdef WIN32
428             TestCaC( "dshow-caching" );
429             #else
430             if (module_Exists (p_intf, "v4l"))
431                 TestCaC( "v4l-caching" );
432             if (module_Exists (p_intf, "access_jack"))
433                 TestCaC( "jack-input-caching" );
434             if (module_Exists (p_intf, "v4l2"))
435                 TestCaC( "v4l2-caching" );
436             if (module_Exists (p_intf, "pvr"))
437                 TestCaC( "pvr-caching" );
438             #endif
439             TestCaCi( "rtsp-caching", 4 ); TestCaCi( "ftp-caching", 2 );
440             TestCaCi( "http-caching", 4 );
441             if (module_Exists (p_intf, "access_realrtsp"))
442                 TestCaCi( "realrtsp-caching", 10 );
443             TestCaCi( "mms-caching", 19 );
444             if( b_cache_equal ) ui.cachingCombo->setCurrentIndex(
445                 ui.cachingCombo->findData( QVariant( i_cache ) ) );
446
447         END_SPREFS_CAT;
448         /*******************
449          * Interface Panel *
450          *******************/
451         START_SPREFS_CAT( Interface, qtr("Interface Settings") );
452             ui.defaultLabel->setFont( italicFont );
453             ui.skinsLabel->setFont( italicFont );
454
455 #if defined( WIN32 )
456             CONFIG_GENERIC( "language", StringList, NULL, language );
457             BUTTONACT( ui.assoButton, assoDialog() );
458 #else
459             ui.language->hide();
460             ui.languageLabel->hide();
461             ui.assoName->hide();
462             ui.assoButton->hide();
463 #endif
464
465             /* interface */
466             char *psz_intf = config_GetPsz( p_intf, "intf" );
467             if( psz_intf )
468             {
469                 if( strstr( psz_intf, "skin" ) )
470                     ui.skins->setChecked( true );
471                 else if( strstr( psz_intf, "qt" ) )
472                     ui.qt4->setChecked( true );
473             }
474             delete psz_intf;
475
476             optionWidgets.append( ui.skins );
477             optionWidgets.append( ui.qt4 );
478
479             CONFIG_GENERIC( "qt-display-mode", IntegerList, NULL,
480                             displayModeBox );
481             CONFIG_GENERIC( "embedded-video", Bool, NULL, embedVideo );
482             CONFIG_GENERIC_FILE( "skins2-last", File, NULL, ui.fileSkin,
483                     ui.skinBrowse );
484
485             CONFIG_GENERIC( "album-art", IntegerList, ui.artFetchLabel,
486                                                       artFetcher );
487
488             /* UPDATE options */
489 #ifdef UPDATE_CHECK
490             CONFIG_GENERIC( "qt-updates-notif", Bool, NULL, updatesBox );
491             CONFIG_GENERIC_NO_BOOL( "qt-updates-days", Integer, NULL,
492                     updatesDays );
493             CONNECT( ui.updatesBox, toggled( bool ),
494                      ui.updatesDays, setEnabled( bool ) );
495 #else
496             ui.updatesBox->hide();
497             ui.updatesDays->hide();
498 #endif
499             /* ONE INSTANCE options */
500 #if defined( WIN32 ) || defined( HAVE_DBUS ) || defined(__APPLE__)
501             CONFIG_GENERIC( "one-instance", Bool, NULL, OneInterfaceMode );
502             CONFIG_GENERIC( "playlist-enqueue", Bool, NULL,
503                     EnqueueOneInterfaceMode );
504 #else
505             ui.OneInterfaceBox->hide();
506 #endif
507         END_SPREFS_CAT;
508
509         START_SPREFS_CAT( Subtitles, qtr("Subtitles & OSD Settings") );
510             CONFIG_GENERIC( "osd", Bool, NULL, OSDBox);
511
512             CONFIG_GENERIC( "subsdec-encoding", StringList, NULL, encoding );
513             CONFIG_GENERIC( "sub-language", String, NULL, preferredLanguage );
514             CONFIG_GENERIC_FILE( "freetype-font", File, NULL, ui.font,
515                             ui.fontBrowse );
516             CONFIG_GENERIC( "freetype-color", IntegerList, NULL, fontColor );
517             CONFIG_GENERIC( "freetype-rel-fontsize", IntegerList, NULL,
518                             fontSize );
519             CONFIG_GENERIC( "freetype-effect", IntegerList, NULL, effect );
520
521         END_SPREFS_CAT;
522
523         case SPrefsHotkeys:
524         {
525             p_config = config_FindConfig( VLC_OBJECT(p_intf), "key-fullscreen" );
526
527             QGridLayout *gLayout = new QGridLayout;
528             panel->setLayout( gLayout );
529             int line = 0;
530
531             control = new KeySelectorControl( VLC_OBJECT(p_intf), p_config ,
532                                                 this, gLayout, line );
533
534             panel_label->setText( qtr( "Configure Hotkeys" ) );
535             controls.append( control );
536
537             break;
538         }
539     }
540
541     panel_layout->addWidget( panel_label );
542     panel_layout->addWidget( title_line );
543     panel_layout->addWidget( panel );
544     if( number != SPrefsHotkeys ) panel_layout->addStretch( 2 );
545
546     setLayout( panel_layout );
547 }
548
549 void SPrefsPanel::updateAudioOptions( int number)
550 {
551     QString value = qobject_cast<QComboBox *>(optionWidgets[audioOutCoB])
552                                             ->itemData( number ).toString();
553 #ifdef WIN32
554     optionWidgets[directxW]->setVisible( ( value == "directx" ) );
555 #else
556     /* optionWidgets[ossW] can be NULL */
557     if( optionWidgets[ossW] )
558         optionWidgets[ossW]->setVisible( ( value == "oss" ) );
559     /* optionWidgets[alsaW] can be NULL */
560     if( optionWidgets[alsaW] )
561         optionWidgets[alsaW]->setVisible( ( value == "alsa" ) );
562 #endif
563     optionWidgets[fileW]->setVisible( ( value == "aout_file" ) );
564 }
565
566 void SPrefsPanel::updateAudioVolume( int volume )
567 {
568     qobject_cast<QSpinBox *>(optionWidgets[volLW])
569         ->setValue( volume * 100 / 256 );
570 }
571
572
573 /* Function called from the main Preferences dialog on each SPrefs Panel */
574 void SPrefsPanel::apply()
575 {
576     /* Generic save for ever panel */
577     QList<ConfigControl *>::Iterator i;
578     for( i = controls.begin() ; i != controls.end() ; i++ )
579     {
580         ConfigControl *c = qobject_cast<ConfigControl *>(*i);
581         c->doApply( p_intf );
582     }
583
584     switch( number )
585     {
586     case SPrefsInputAndCodecs:
587     {
588         /* Device default selection */
589         char *psz_devicepath =
590               qtu( qobject_cast<QLineEdit *>(optionWidgets[inputLE] )->text() );
591         if( !EMPTY_STR( psz_devicepath ) )
592         {
593             config_PutPsz( p_intf, "dvd", psz_devicepath );
594             config_PutPsz( p_intf, "vcd", psz_devicepath );
595             config_PutPsz( p_intf, "cd-audio", psz_devicepath );
596         }
597
598         /* Access filters */
599 #define saveBox( name, box ) {\
600         if( box->isChecked() ) { \
601             if( b_first ) { \
602                 qs_filter.append( name ); \
603                 b_first = false; \
604             } \
605             else qs_filter.append( ":" ).append( name ); \
606         } }
607
608         bool b_first = true;
609         qs_filter.clear();
610         saveBox( "record", qobject_cast<QCheckBox *>(optionWidgets[recordChB]) );
611         saveBox( "dump", qobject_cast<QCheckBox *>(optionWidgets[dumpChB]) );
612         saveBox( "timeshift", qobject_cast<QCheckBox *>(optionWidgets[timeshiftChB]) );
613         saveBox( "bandwidth", qobject_cast<QCheckBox *>(optionWidgets[bandwidthChB] ) );
614         config_PutPsz( p_intf, "access-filter", qtu( qs_filter ) );
615
616 #define CaCi( name, int ) config_PutInt( p_intf, name, int * i_comboValue )
617 #define CaC( name ) CaCi( name, 1 )
618         /* Caching */
619         QComboBox *cachingCombo = qobject_cast<QComboBox *>(optionWidgets[cachingCoB]);
620         int i_comboValue = cachingCombo->itemData( cachingCombo->currentIndex() ).toInt();
621         if( i_comboValue )
622         {
623             CaC( "udp-caching" );
624             if (module_Exists (p_intf, "dvdread" ))
625                 CaC( "dvdread-caching" );
626             if (module_Exists (p_intf, "dvdnav" ))
627                 CaC( "dvdnav-caching" );
628             CaC( "tcp-caching" ); CaC( "vcd-caching" );
629             CaC( "fake-caching" ); CaC( "cdda-caching" ); CaC( "file-caching" );
630             CaC( "screen-caching" );
631             CaCi( "rtsp-caching", 4 ); CaCi( "ftp-caching", 2 );
632             CaCi( "http-caching", 4 );
633             if (module_Exists (p_intf, "access_realrtsp" ))
634                 CaCi( "realrtsp-caching", 10 );
635             CaCi( "mms-caching", 19 );
636             #ifdef WIN32
637             CaC( "dshow-caching" );
638             #else
639             if (module_Exists (p_intf, "v4l" ))
640                 CaC( "v4l-caching" );
641             if (module_Exists (p_intf, "access_jack" ))
642             CaC( "jack-input-caching" );
643             if (module_Exists (p_intf, "v4l2" ))
644                 CaC( "v4l2-caching" );
645             if (module_Exists (p_intf, "pvr" ))
646                 CaC( "pvr-caching" );
647             #endif
648             //CaCi( "dv-caching" ) too short...
649         }
650         break;
651     }
652
653     /* Interfaces */
654     case SPrefsInterface:
655     {
656         if( qobject_cast<QRadioButton *>(optionWidgets[skinRB])->isChecked() )
657             config_PutPsz( p_intf, "intf", "skins2" );
658         if( qobject_cast<QRadioButton *>(optionWidgets[qtRB])->isChecked() )
659             config_PutPsz( p_intf, "intf", "qt4" );
660         break;
661     }
662
663     case SPrefsAudio:
664     {
665         bool b_normChecked =
666             qobject_cast<QCheckBox *>(optionWidgets[normalizerChB])->isChecked();
667         if( qs_filter.isEmpty() )
668         {
669             /* the psz_filter is already empty, so we just append it needed */
670             if( b_normChecked ) qs_filter = "volnorm";
671         }
672         else /* Not Empty */
673         {
674             if( qs_filter.contains( "volnorm" ) )
675             {
676                 /* The qs_filter not empty and contains "volnorm"
677                    that we have to remove */
678                 if( !b_normChecked )
679                 {
680                     /* Ugly :D */
681                     qs_filter.remove( "volnorm:" );
682                     qs_filter.remove( ":volnorm" );
683                     qs_filter.remove( "volnorm" );
684                 }
685             }
686             else /* qs_filter not empty, but doesn't have volnorm inside */
687                 if( b_normChecked ) qs_filter.append( ":volnorm" );
688         }
689         config_PutPsz( p_intf, "audio-filter", qtu( qs_filter ) );
690         break;
691     }
692     }
693 }
694
695 void SPrefsPanel::clean()
696 {}
697
698 void SPrefsPanel::lastfm_Changed( int i_state )
699 {
700     if( i_state == Qt::Checked )
701         config_AddIntf( VLC_OBJECT( p_intf ), "audioscrobbler" );
702     else if( i_state == Qt::Unchecked )
703         config_RemoveIntf( VLC_OBJECT( p_intf ), "audioscrobbler" );
704 }
705
706 #ifdef WIN32
707 #include <QDialogButtonBox>
708 #include <QHeaderView>
709 #include "util/registry.hpp"
710
711 bool SPrefsPanel::addType( const char * psz_ext, QTreeWidgetItem* current,
712                            QTreeWidgetItem* parent, QVLCRegistry *qvReg )
713 {
714     bool b_temp;
715     const char* psz_VLC = "VLC";
716     current = new QTreeWidgetItem( parent, QStringList( psz_ext ) );
717
718     if( strstr( qvReg->ReadRegistryString( psz_ext, "", ""  ), psz_VLC ) )
719     {
720         current->setCheckState( 0, Qt::Checked );
721         b_temp = false;
722     }
723     else
724     {
725         current->setCheckState( 0, Qt::Unchecked );
726         b_temp = true;
727     }
728     listAsso.append( current );
729     return b_temp;
730 }
731
732 void SPrefsPanel::assoDialog()
733 {
734     QDialog *d = new QDialog( this );
735     QGridLayout *assoLayout = new QGridLayout( d );
736
737     QTreeWidget *filetypeList = new QTreeWidget;
738     assoLayout->addWidget( filetypeList, 0, 0, 1, 4 );
739     filetypeList->header()->hide();
740
741     QVLCRegistry * qvReg = new QVLCRegistry( HKEY_CLASSES_ROOT );
742
743     QTreeWidgetItem *audioType = new QTreeWidgetItem( QStringList( qtr( "Audio Files" ) ) );
744     QTreeWidgetItem *videoType = new QTreeWidgetItem( QStringList( qtr( "Video Files" ) ) );
745     QTreeWidgetItem *otherType = new QTreeWidgetItem( QStringList( qtr( "Playlist Files" ) ) );
746
747     filetypeList->addTopLevelItem( audioType );
748     filetypeList->addTopLevelItem( videoType );
749     filetypeList->addTopLevelItem( otherType );
750
751     audioType->setExpanded( true ); audioType->setCheckState( 0, Qt::Unchecked );
752     videoType->setExpanded( true ); videoType->setCheckState( 0, Qt::Unchecked );
753     otherType->setExpanded( true ); otherType->setCheckState( 0, Qt::Unchecked );
754
755     QTreeWidgetItem *currentItem;
756
757     int i_temp = 0;
758 #define aTa( name ) i_temp += addType( name, currentItem, audioType, qvReg )
759 #define aTv( name ) i_temp += addType( name, currentItem, videoType, qvReg )
760 #define aTo( name ) i_temp += addType( name, currentItem, otherType, qvReg )
761
762     aTa( ".a52" ); aTa( ".aac" ); aTa( ".ac3" ); aTa( ".dts" ); aTa( ".flac" );
763     aTa( ".m4a" ); aTa( ".m4p" ); aTa( ".mka" ); aTa( ".mod" ); aTa( ".mp1" );
764     aTa( ".mp2" ); aTa( ".mp3" ); aTa( ".ogg" ); aTa( ".spx" ); aTa( ".wav" );
765     aTa( ".wma" ); aTa( ".xm" );
766     audioType->setCheckState( 0, ( i_temp > 0 ) ?
767                               ( ( i_temp == audioType->childCount() ) ?
768                                Qt::Checked : Qt::PartiallyChecked )
769                             : Qt::Unchecked );
770
771     i_temp = 0;
772     aTv( ".asf" ); aTv( ".avi" ); aTv( ".divx" ); aTv( ".dv" ); aTv( ".flv" );
773     aTv( ".gxf" ); aTv( ".m1v" ); aTv( ".m2v" ); aTv( ".m4v" ); aTv( ".mkv" );
774     aTv( ".mov" ); aTv( ".mp2" ); aTv( ".mp4" ); aTv( ".mpeg" );
775     aTv( ".mpeg1" ); aTv( ".mpeg2" ); aTv( ".mpeg4" ); aTv( ".mpg" );
776     aTv( ".mxf" ); aTv( ".ogm" ); aTv( ".ps" ); aTv( ".ts" );
777     aTv( ".vob" ); aTv( ".wmv" );
778     videoType->setCheckState( 0, ( i_temp > 0 ) ?
779                               ( ( i_temp == audioType->childCount() ) ?
780                                Qt::Checked : Qt::PartiallyChecked )
781                             : Qt::Unchecked );
782
783     i_temp = 0;
784     aTo( ".asx" ); aTo( ".b4s" ); aTo( ".m3u" ); aTo( ".pls" ); aTo( ".vlc" );
785     aTo( ".xspf" );
786     otherType->setCheckState( 0, ( i_temp > 0 ) ?
787                               ( ( i_temp == audioType->childCount() ) ?
788                                Qt::Checked : Qt::PartiallyChecked )
789                             : Qt::Unchecked );
790
791     QDialogButtonBox *buttonBox = new QDialogButtonBox( d );
792     QPushButton *closeButton = new QPushButton( qtr( "&Apply" ) );
793     QPushButton *clearButton = new QPushButton( qtr( "&Cancel" ) );
794     buttonBox->addButton( closeButton, QDialogButtonBox::AcceptRole );
795     buttonBox->addButton( clearButton, QDialogButtonBox::ActionRole );
796
797     assoLayout->addWidget( buttonBox, 1, 2, 1, 2 );
798
799     CONNECT( closeButton, clicked(), this, saveAsso() );
800     CONNECT( clearButton, clicked(), d, reject() );
801     d->resize( 300, 400 );
802     d->exec();
803     delete d;
804     delete qvReg;
805     listAsso.clear();
806 }
807
808 void addAsso( QVLCRegistry *qvReg, char *psz_ext )
809 {
810     std::string s_path( "VLC" ); s_path += psz_ext;
811     std::string s_path2 = s_path;
812
813     /* Save a backup if already assigned */
814     char *psz_value = qvReg->ReadRegistryString( psz_ext, "", ""  );
815
816     if( psz_value && strlen( psz_value ) > 0 )
817         qvReg->WriteRegistryString( psz_ext, "VLC.backup", psz_value );
818     delete psz_value;
819
820     /* Put a "link" to VLC.EXT as default */
821     qvReg->WriteRegistryString( psz_ext, "", s_path.c_str() );
822
823     /* Create the needed Key if they weren't done in the installer */
824     if( !qvReg->RegistryKeyExists( s_path.c_str() ) )
825     {
826         qvReg->WriteRegistryString( psz_ext, "", s_path.c_str() );
827         qvReg->WriteRegistryString( s_path.c_str(), "", "Media file" );
828         qvReg->WriteRegistryString( s_path.append( "\\shell" ).c_str() , "", "Play" );
829
830         /* Get the installer path */
831         QVLCRegistry *qvReg2 = new QVLCRegistry( HKEY_LOCAL_MACHINE );
832         std::string str_temp; str_temp.assign(
833             qvReg2->ReadRegistryString( "Software\\VideoLAN\\VLC", "", "" ) );
834
835         if( str_temp.size() )
836         {
837             qvReg->WriteRegistryString( s_path.append( "\\Play\\command" ).c_str(),
838                 "", str_temp.append(" --started-from-file \"%1\"" ).c_str() );
839
840             qvReg->WriteRegistryString( s_path2.append( "\\DefaultIcon" ).c_str(),
841                         "", str_temp.append(",0").c_str() );
842         }
843         delete qvReg2;
844     }
845 }
846
847 void delAsso( QVLCRegistry *qvReg, char *psz_ext )
848 {
849     char psz_VLC[] = "VLC";
850     char *psz_value = qvReg->ReadRegistryString( psz_ext, "", ""  );
851
852     if( psz_value && !strcmp( strcat( psz_VLC, psz_ext ), psz_value ) )
853     {
854         free( psz_value );
855         psz_value = qvReg->ReadRegistryString( psz_ext, "VLC.backup", "" );
856         if( psz_value )
857             qvReg->WriteRegistryString( psz_ext, "", psz_value );
858
859         qvReg->DeleteKey( psz_ext, "VLC.backup" );
860     }
861     delete( psz_value );
862 }
863 void SPrefsPanel::saveAsso()
864 {
865     QVLCRegistry * qvReg;
866     for( int i = 0; i < listAsso.size(); i ++ )
867     {
868         qvReg  = new QVLCRegistry( HKEY_CLASSES_ROOT );
869         if( listAsso[i]->checkState( 0 ) > 0 )
870         {
871             addAsso( qvReg, qtu( listAsso[i]->text( 0 ) ) );
872         }
873         else
874         {
875             delAsso( qvReg, qtu( listAsso[i]->text( 0 ) ) );
876         }
877     }
878     /* Gruik ? Naaah */
879     qobject_cast<QDialog *>(listAsso[0]->treeWidget()->parent())->accept();
880     delete qvReg;
881 }
882
883 #endif /* WIN32 */
884