]> git.sesse.net Git - vlc/blob - modules/gui/qt4/components/simple_preferences.cpp
Qt4 - Simple Prefs: add a Prefer System Codecs checkBox in Simple Preferences Panel...
[vlc] / modules / gui / qt4 / components / simple_preferences.cpp
1 /*****************************************************************************
2  * simple_preferences.cpp : "Simple preferences"
3  ****************************************************************************
4  * Copyright (C) 2006-2007 the VideoLAN team
5  * $Id: preferences.cpp 16348 2006-08-25 21:10:10Z zorglub $
6  *
7  * Authors: ClĂ©ment Stenac <zorglub@videolan.org>
8  *          Antoine Cellerier <dionoea@videolan.org>
9  *          Jean-Baptiste Kempf <jb@videolan.org>
10  *
11  * This program is free software; you can redistribute it and/or modify
12  * it under the terms of the GNU General Public License as published by
13  * the Free Software Foundation; either version 2 of the License, or
14  * (at your option) any later version.
15  *
16  * This program is distributed in the hope that it will be useful,
17  * but WITHOUT ANY WARRANTY; without even the implied warranty of
18  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
19  * GNU General Public License for more details.
20  *
21  * You should have received a copy of the GNU General Public License
22  * along with this program; if not, write to the Free Software
23  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston MA 02110-1301, USA.
24  *****************************************************************************/
25
26 #include <QString>
27 #include <QFont>
28 #include <QToolButton>
29 #include <QButtonGroup>
30 #include <QUrl>
31
32 #include "components/simple_preferences.hpp"
33 #include "components/preferences_widgets.hpp"
34 #include "qt4.hpp"
35
36 #include <vlc_config_cat.h>
37
38 #include "ui/sprefs_audio.h"
39 #include "ui/sprefs_input.h"
40 #include "ui/sprefs_video.h"
41 #include "ui/sprefs_subtitles.h"
42 #include "ui/sprefs_hotkeys.h"
43 #include "ui/sprefs_interface.h"
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"),
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     this->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
107 #define CONFIG_GENERIC( option, type, label, qcontrol )                   \
108             p_config =  config_FindConfig( VLC_OBJECT(p_intf), option );  \
109             if( p_config )                                                \
110             {                                                             \
111                 control =  new type ## ConfigControl( VLC_OBJECT(p_intf), \
112                            p_config, label, ui.qcontrol, false );         \
113                 controls.append( control );                               \
114             }
115
116 #define CONFIG_GENERIC_NO_BOOL( option, type, label, qcontrol )           \
117             p_config =  config_FindConfig( VLC_OBJECT(p_intf), option );  \
118             if( p_config )                                                \
119             {                                                             \
120                 control =  new type ## ConfigControl( VLC_OBJECT(p_intf), \
121                            p_config, label, ui.qcontrol );                \
122                 controls.append( control );                               \
123             }
124
125 #define CONFIG_GENERIC_FILE( option, type, label, qcontrol, qbutton )         \
126                 p_config =  config_FindConfig( VLC_OBJECT(p_intf), option );  \
127                 if( p_config )                                                \
128                 {                                                             \
129                     control =  new type ## ConfigControl( VLC_OBJECT(p_intf), \
130                                p_config, label, ui.qcontrol, ui.qbutton,      \
131                             false );                                          \
132                     controls.append( control );                               \
133                 }
134
135 #define START_SPREFS_CAT( name , label )    \
136         case SPrefs ## name:                \
137         {                                   \
138             Ui::SPrefs ## name ui;          \
139             ui.setupUi( panel );            \
140             panel_label->setText( qtr( label ) );
141
142 #define END_SPREFS_CAT      \
143             break;          \
144         }
145
146     QVBoxLayout *panel_layout = new QVBoxLayout();
147     QWidget *panel = new QWidget();
148     panel_layout->setMargin( 3 );
149
150     // Title Label
151     QLabel *panel_label = new QLabel;
152     QFont labelFont = QApplication::font( static_cast<QWidget*>(0) );
153     labelFont.setPointSize( labelFont.pointSize() + 6 );
154     labelFont.setFamily( "Verdana" );
155     panel_label->setFont( labelFont );
156
157     // Title <hr>
158     QFrame *title_line = new QFrame;
159     title_line->setFrameShape(QFrame::HLine);
160     title_line->setFrameShadow(QFrame::Sunken);
161
162     QFont italicFont = QApplication::font( static_cast<QWidget*>(0) );
163     italicFont.setItalic( true );
164
165     switch( number )
166     {
167         /* Video Panel Implementation */
168         START_SPREFS_CAT( Video , "General video settings" );
169            CONFIG_GENERIC( "video", Bool, NULL, enableVideo );
170
171             CONFIG_GENERIC( "fullscreen", Bool, NULL, fullscreen );
172             CONFIG_GENERIC( "overlay", Bool, NULL, overlay );
173             CONFIG_GENERIC( "video-on-top", Bool, NULL, alwaysOnTop );
174             CONFIG_GENERIC( "video-deco", Bool, NULL, windowDecorations );
175             CONFIG_GENERIC( "skip-frames" , Bool, NULL, skipFrames);
176             CONFIG_GENERIC( "vout", Module, NULL, outputModule );
177
178 #ifdef WIN32
179             CONFIG_GENERIC( "directx-wallpaper" , Bool , NULL, wallpaperMode );
180             CONFIG_GENERIC( "directx-device", StringList, NULL,
181                     dXdisplayDevice );
182 #else
183             ui.directXBox->setVisible( false );
184 #endif
185
186             CONFIG_GENERIC_FILE( "snapshot-path", Directory, NULL,
187                     snapshotsDirectory, snapshotsDirectoryBrowse );
188             CONFIG_GENERIC( "snapshot-prefix", String, NULL, snapshotsPrefix );
189             CONFIG_GENERIC( "snapshot-sequential", Bool, NULL,
190                             snapshotsSequentialNumbering );
191             CONFIG_GENERIC( "snapshot-format", StringList, NULL,
192                             snapshotsFormat );
193          END_SPREFS_CAT;
194
195          /* Audio Panel Implementation */
196         START_SPREFS_CAT( Audio,  "General audio settings" );
197 #ifdef WIN32
198             ui.OSSBrowse->hide();
199             ui.OSSDevice->hide();
200             ui.OSSLabel->hide();
201             ui.alsaDevice->hide();
202             ui.alsaLabel->hide();
203 #else
204             ui.DirectXLabel->setVisible( false );
205             ui.DirectXDevice->setVisible( false );
206 #endif
207          CONFIG_GENERIC( "audio", Bool, NULL, enableAudio );
208
209          CONFIG_GENERIC_NO_BOOL( "volume" ,  IntegerRangeSlider, NULL,
210                  defaultVolume );
211          CONFIG_GENERIC( "audio-language" , String , NULL,
212                     preferredAudioLanguage );
213
214          CONFIG_GENERIC( "spdif" , Bool , NULL, spdifBox );
215          CONFIG_GENERIC( "force-dolby-surround" , IntegerList , NULL,
216                     detectionDolby );
217
218          CONFIG_GENERIC( "aout" , Module , NULL, outputModule );
219 #ifndef WIN32
220          CONFIG_GENERIC( "alsadev" , StringList , NULL, alsaDevice );
221          CONFIG_GENERIC_FILE( "dspdev" , File , NULL, OSSDevice, OSSBrowse );
222 #else
223          CONFIG_GENERIC( "directx-audio-device" , IntegerList, NULL,
224                  DirectXDevice );
225 #endif
226          CONFIG_GENERIC_FILE( "audiofile-file" , File , NULL, FileName,
227                  fileBrowseButton );
228
229          CONFIG_GENERIC( "headphone-dolby" , Bool , NULL, headphoneEffect );
230 //         CONFIG_GENERIC( "" , Bool, NULL, ); activation of normalizer //FIXME
231          CONFIG_GENERIC_NO_BOOL( "norm-max-level" , Float , NULL,
232                  volNormalizer );
233          CONFIG_GENERIC( "audio-visual" , Module , NULL, visualisation);
234         END_SPREFS_CAT;
235
236         /* Input and Codecs Panel Implementation */
237         START_SPREFS_CAT( InputAndCodecs, "Input & Codecs settings"  );
238           /* Disk Devices */
239 /*          CONFIG_GENERIC( );*/ //FIXME
240
241           CONFIG_GENERIC_NO_BOOL( "server-port", Integer, NULL, UDPPort );
242           CONFIG_GENERIC( "http-proxy", String , NULL, proxy );
243
244           /* Caching */
245 /*          CONFIG_GENERIC( );*/ //FIXME
246
247           CONFIG_GENERIC_NO_BOOL( "ffmpeg-pp-q", Integer, NULL, PostProcLevel );
248           CONFIG_GENERIC( "avi-index", IntegerList, NULL, AviRepair );
249           CONFIG_GENERIC( "rtsp-tcp", Bool, NULL, RTSP_TCPBox );
250 #ifdef WIN32
251           CONFIG_GENERIC( "prefer-system-codecs", Bool, NULL, systemCodecBox );
252 #else
253           ui.systemCodecBox->hide();
254 #endif
255           CONFIG_GENERIC( "timeshift-force", Bool, NULL, timeshiftBox );
256           CONFIG_GENERIC( "dump-force", Bool, NULL, DumpBox );
257 //        CONFIG_GENERIC( "", Bool, NULL, RecordBox ); //FIXME activate record 
258         END_SPREFS_CAT;
259
260         /* Interface Panel */
261         START_SPREFS_CAT( Interface, "Interface settings" );
262             ui.defaultLabel->setFont( italicFont );
263             ui.skinsLabel->setFont( italicFont );
264
265 #if defined( WIN32 ) || defined (__APPLE__)
266             CONFIG_GENERIC( "language", StringList, NULL, language );
267 #else
268             ui.language->hide();
269             ui.languageLabel->hide();
270 #endif
271
272            /* interface */
273             p_config = config_FindConfig( VLC_OBJECT(p_intf), "intf" );
274             if( p_config->value.psz && strcmp( p_config->value.psz, "qt4" ))
275             {
276                 ui.qt4->setChecked( true );
277             }
278             if( p_config->value.psz && strcmp( p_config->value.psz, "skins2" ))
279             {
280                     ui.skins->setChecked( true );
281             }
282             //FIXME interface choice
283
284             CONFIG_GENERIC( "qt-always-video", Bool, NULL, qtAlwaysVideo );
285             CONFIG_GENERIC_FILE( "skins2-last", File, NULL, fileSkin, 
286                     skinBrowse );
287 #if defined( WIN32 ) || defined(HAVE_DBUS_3)
288             CONFIG_GENERIC( "one-instance", Bool, NULL, OneInterfaceMode );
289             CONFIG_GENERIC( "playlist-enqueue", Bool, NULL, 
290                     EnqueueOneInterfaceMode );
291 #else
292             ui.OneInterfaceBox->hide();
293 #endif
294         END_SPREFS_CAT;
295
296         START_SPREFS_CAT( Subtitles, "Subtitles & OSD settings" );
297             CONFIG_GENERIC( "osd", Bool, NULL, OSDBox);
298
299             CONFIG_GENERIC( "subsdec-encoding", StringList, NULL, encoding );
300             CONFIG_GENERIC( "sub-language", String, NULL, preferredLanguage );
301             CONFIG_GENERIC_FILE( "freetype-font", File, NULL, font,
302                             fontBrowse );
303             CONFIG_GENERIC( "freetype-color", IntegerList, NULL, fontColor );
304             CONFIG_GENERIC( "freetype-rel-fontsize", IntegerList, NULL,
305                             fontSize );
306             CONFIG_GENERIC( "freetype-effect", IntegerList, NULL, effect );
307
308         END_SPREFS_CAT;
309
310         START_SPREFS_CAT( Hotkeys, "Configure Hotkeys" );
311         //FIMXE
312         END_SPREFS_CAT;
313         }
314
315     panel_layout->addWidget(panel_label);
316     panel_layout->addWidget(title_line);
317     panel_layout->addWidget( panel );
318     panel_layout->addStretch( 2 );
319
320     this->setLayout(panel_layout);
321 }
322
323 void SPrefsPanel::apply()
324 {
325     QList<ConfigControl *>::Iterator i;
326     for( i = controls.begin() ; i != controls.end() ; i++ )
327     {
328         ConfigControl *c = qobject_cast<ConfigControl *>(*i);
329         c->doApply( p_intf );
330     }
331 }
332
333 void SPrefsPanel::clean()
334 {}
335