]> git.sesse.net Git - vlc/blob - modules/gui/qt4/components/simple_preferences.cpp
Qt4 - Pref: start to track functionnalities missing. Directory still segfaults..
[vlc] / modules / gui / qt4 / components / simple_preferences.cpp
1 /*****************************************************************************
2  * simple_preferences.cpp : "Simple preferences"
3  ****************************************************************************
4  * Copyright (C) 2006 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 <QListWidget>
27 #include <QListWidgetItem>
28 #include <QString>
29 #include <QFont>
30
31 #include "components/simple_preferences.hpp"
32 #include "components/preferences_widgets.hpp"
33 #include "qt4.hpp"
34
35 #include <vlc_config_cat.h>
36
37 #include "pixmaps/hotkeys_50x50.xpm"
38 #include "pixmaps/audio_50x50.xpm"
39 #include "pixmaps/input_and_codecs_50x50.xpm"
40 #include "pixmaps/interface_50x50.xpm"
41 #include "pixmaps/subtitles_50x50.xpm"
42 #include "pixmaps/video_50x50.xpm"
43
44 #include "ui/sprefs_audio.h"
45 #include "ui/sprefs_input.h"
46 #include "ui/sprefs_video.h"
47 #include "ui/sprefs_subtitles.h"
48 #include "ui/sprefs_hotkeys.h"
49 #include "ui/sprefs_interface.h"
50
51 #define ITEM_HEIGHT 64
52
53 /*********************************************************************
54  * The List of categories
55  *********************************************************************/
56 SPrefsCatList::SPrefsCatList( intf_thread_t *_p_intf, QWidget *_parent ) :
57                                   QListWidget( _parent ), p_intf( _p_intf )
58 {
59     setIconSize( QSize( ITEM_HEIGHT, ITEM_HEIGHT ) );
60     setViewMode(QListView::ListMode);
61     setMovement(QListView::Static);
62     setMaximumWidth(200);
63     setSpacing(0);
64 //  setWordWrap(true);
65     setVerticalScrollMode(QAbstractItemView::ScrollPerPixel);
66     setHorizontalScrollBarPolicy(Qt::ScrollBarAlwaysOff);
67     setAlternatingRowColors( true );
68
69 #define ADD_CATEGORY( id, label, icon )                                  \
70     addItem( label );                                                    \
71     item( id )->setIcon( QIcon( ":/pixmaps/" #icon ) )  ;   \
72     item( id )->setTextAlignment( Qt::AlignLeft | Qt::AlignVCenter );      \
73     item( id )->setData( Qt::UserRole, qVariantFromValue( (int)id ) );   \
74     item( id )->setFlags( Qt::ItemIsSelectable | Qt::ItemIsEnabled );
75
76     ADD_CATEGORY( SPrefsInterface, qtr("Interface"),
77                   spref_cone_Interface_64.png );
78     ADD_CATEGORY( SPrefsAudio, qtr("Audio"), spref_cone_Audio_64.png );
79     ADD_CATEGORY( SPrefsVideo, qtr("Video"), spref_cone_Video_64.png );
80     ADD_CATEGORY( SPrefsSubtitles, qtr("Subtitles"),
81                   spref_cone_Subtitles_64.png );
82     ADD_CATEGORY( SPrefsInputAndCodecs, qtr("Input and Codecs"),
83                   spref_cone_Input_64.png );
84     ADD_CATEGORY( SPrefsHotkeys, qtr("Hotkeys"), spref_cone_Hotkeys_64.png );
85
86     setCurrentRow( SPrefsInterface );
87 }
88
89 /*********************************************************************
90  * The Panels
91  *********************************************************************/
92 SPrefsPanel::SPrefsPanel( intf_thread_t *_p_intf, QWidget *_parent,
93                           int number ) : QWidget( _parent ), p_intf( _p_intf )
94 {
95     module_config_t *p_config;
96     ConfigControl *control;
97
98 #define CONFIG_GENERIC( option, type, label, qcontrol )                   \
99             p_config =  config_FindConfig( VLC_OBJECT(p_intf), option );  \
100             if( p_config )                                                \
101             {                                                             \
102                 control =  new type ## ConfigControl( VLC_OBJECT(p_intf), \
103                            p_config, label, ui.qcontrol, false );         \
104                 controls.append( control );                               \
105             }
106
107 #define CONFIG_GENERIC_NO_BOOL( 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 );                \
113                 controls.append( control );                               \
114             }
115
116 #define CONFIG_GENERIC_FILE( option, type, label, qcontrol, qbutton )         \
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, ui.qbutton,      \
122                             false );                                          \
123                     controls.append( control );                               \
124                 }
125
126 #define START_SPREFS_CAT( name , label )    \
127         case SPrefs ## name:                \
128         {                                   \
129             Ui::SPrefs ## name ui;          \
130             ui.setupUi( panel );            \
131             panel_label->setText( qtr( label ) );
132
133 #define END_SPREFS_CAT      \
134             break;          \
135         }
136
137     QVBoxLayout *panel_layout = new QVBoxLayout();
138     QWidget *panel = new QWidget();
139
140     // Title Label
141     QLabel *panel_label = new QLabel;
142     QFont labelFont = QApplication::font( static_cast<QWidget*>(0) );
143     labelFont.setPointSize( labelFont.pointSize() + 6 );
144     labelFont.setFamily( "Verdana" );
145     panel_label->setFont( labelFont );
146
147     // Title <hr>
148     QFrame *title_line = new QFrame;
149     title_line->setFrameShape(QFrame::HLine);
150     title_line->setFrameShadow(QFrame::Sunken);
151
152     switch( number )
153     {
154         /* Video Panel Implementation */
155         START_SPREFS_CAT( Video , "General video settings" );
156          #ifndef WIN32
157             ui.directXBox->setVisible( false );
158          #endif
159             CONFIG_GENERIC( "video", Bool, NULL, enableVideo );
160
161             CONFIG_GENERIC( "fullscreen", Bool, NULL, fullscreen );
162             CONFIG_GENERIC( "overlay", Bool, NULL, overlay );
163             CONFIG_GENERIC( "video-on-top", Bool, NULL, alwaysOnTop );
164             CONFIG_GENERIC( "video-deco", Bool, NULL, windowDecorations );
165             CONFIG_GENERIC( "skip-frames" , Bool, NULL, skipFrames);
166             CONFIG_GENERIC( "vout", Module, NULL, outputModule );
167
168 #ifdef WIN32
169             CONFIG_GENERIC( "directx-wallpaper" , Bool , NULL, wallpaperMode );
170             CONFIG_GENERIC( "directx-device", StringList, NULL, 
171                     dXdisplayDevice );
172 #endif
173
174             CONFIG_GENERIC_FILE( "snapshot-path", Directory, NULL,
175                     snapshotsDirectory, snapshotsDirectoryBrowse );
176             CONFIG_GENERIC( "snapshot-prefix", String, NULL, snapshotsPrefix );
177             CONFIG_GENERIC( "snapshot-sequential", Bool, NULL,
178                             snapshotsSequentialNumbering );
179             CONFIG_GENERIC( "snapshot-format", StringList, NULL,
180                             snapshotsFormat );
181          END_SPREFS_CAT;
182
183          /* Audio Panel Implementation */
184         START_SPREFS_CAT( Audio,  "General audio settings" );
185 #ifdef WIN32
186             ui.OSSBrowse->hide();
187             ui.OSSDevice->hide();
188             ui.OSSLabel->hide();
189             ui.alsaDevice->hide();
190             ui.alsaLabel->hide();
191 #else
192             ui.DirectXLabel->setVisible( false );
193             ui.DirectXDevice->setVisible( false );
194 #endif
195          CONFIG_GENERIC( "audio", Bool, NULL, enableAudio );
196
197          CONFIG_GENERIC_NO_BOOL( "volume" ,  IntegerRangeSlider, NULL, 
198                  defaultVolume );
199          CONFIG_GENERIC( "audio-language" , StringList , NULL, 
200                     preferredAudioLanguage ); //FIXME
201
202          CONFIG_GENERIC( "spdif" , Bool , NULL, spdifBox );
203          CONFIG_GENERIC( "force-dolby-surround" , IntegerList , NULL, 
204                     detectionDolby );
205
206          CONFIG_GENERIC( "aout" , Module , NULL, outputModule );
207 #ifndef WIN32
208          CONFIG_GENERIC( "alsadev" , StringList , NULL, alsaDevice );
209          CONFIG_GENERIC_FILE( "dspdev" , File , NULL, OSSDevice, OSSBrowse );
210 #else
211          CONFIG_GENERIC( "directx-audio-device" , IntegerList, NULL, 
212                  DirectXDevice );
213 #endif
214          CONFIG_GENERIC_FILE( "audiofile-file" , File , NULL, FileName, 
215                  fileBrowseButton );
216
217          CONFIG_GENERIC( "headphone-dolby" , Bool , NULL, headphoneEffect );
218 //         CONFIG_GENERIC( "" , Bool, NULL, ); activation of normalizer //FIXME
219          CONFIG_GENERIC_NO_BOOL( "norm-max-level" , Float , NULL, 
220                  volNormalizer );
221          CONFIG_GENERIC( "audio-visual" , Module , NULL, visualisation);
222         END_SPREFS_CAT;
223
224         /* Input and Codecs Panel Implementation */
225         START_SPREFS_CAT( InputAndCodecs, "Input & Codecs settings"  );
226           /* Disk Devices */
227 /*          CONFIG_GENERIC( );*/ //FIXME
228
229           CONFIG_GENERIC_NO_BOOL( "server-port", Integer, NULL, UDPPort );
230           CONFIG_GENERIC( "http-proxy", String , NULL, proxy );
231
232           /* Caching */
233 /*          CONFIG_GENERIC( );*/ //FIXME
234
235           CONFIG_GENERIC_NO_BOOL( "ffmpeg-pp-q", Integer, NULL, PostProcLevel );
236           CONFIG_GENERIC( "avi-index", IntegerList, NULL, AviRepair );
237           CONFIG_GENERIC( "rtsp-tcp", Bool, NULL, RTSP_TCPBox );
238
239           CONFIG_GENERIC( "timeshift-force", Bool, NULL, timeshiftBox );
240           CONFIG_GENERIC( "dump-force", Bool, NULL, DumpBox );
241 //        CONFIG_GENERIC( "", Bool, NULL, RecordBox ); //FIXME activate record 
242         END_SPREFS_CAT;
243
244         /* Interface Panel */
245         START_SPREFS_CAT( Interface, "Interfaces settings" );
246             
247             CONFIG_GENERIC( "language", StringList, NULL, language );//FIXME
248 #if !defined( WIN32 ) && !defined( HAVE_DBUS_3 )
249             ui.OneInterfaceBox->hide();
250 #endif
251             /* interface */
252 /*            p_config = config_FindConfig( VLC_OBJECT(p_intf), "intf" );
253             if( p_config->value.psz && strcmp( p_config->value.psz, "qt4" ))
254                     ui.qt4->setChecked( true );
255             if( p_config->value.psz && strcmp( p_config->value.psz, "skins2" ))
256                     ui.skins->setChecked( true );*/
257 /*            CONFIG_GENERIC( "intf", Module, NULL, ??? ); */ //FIXME interface choice
258             CONFIG_GENERIC( "qt-always-video", Bool, NULL, qtAlwaysVideo );
259             CONFIG_GENERIC_FILE( "skins2-last", File, NULL, fileSkin, 
260                     skinBrowse );
261 #if defined( WIN32 ) || defined(HAVE_DBUS_3)
262             CONFIG_GENERIC( "one-instance", Bool, NULL, OneInterfaceMode );
263             CONFIG_GENERIC( "playlist-enqueue", Bool, NULL, 
264                     EnqueueOneInterfaceMode );
265 #endif
266         END_SPREFS_CAT;
267
268         START_SPREFS_CAT( Subtitles, "Subtitles & OSD settings" );
269             CONFIG_GENERIC( "osd", Bool, NULL, OSDBox);
270
271             CONFIG_GENERIC( "subsdec-encoding", StringList, NULL, encoding );
272             CONFIG_GENERIC( "sub-language", String, NULL, preferredLanguage );//FIXME
273             CONFIG_GENERIC_FILE( "freetype-font", File, NULL, font, 
274                     fontBrowse ); 
275             CONFIG_GENERIC( "freetype-color", IntegerList, NULL, fontColor );
276             CONFIG_GENERIC( "freetype-rel-fontsize", IntegerList, NULL,
277                             fontSize );
278             CONFIG_GENERIC( "freetype-effect", IntegerList, NULL, effect );
279
280         END_SPREFS_CAT;
281
282         START_SPREFS_CAT( Hotkeys, "Configure Hotkeys" );
283         //FIMXE
284         END_SPREFS_CAT;
285         }
286
287     panel_layout->addWidget(panel_label);
288     panel_layout->addWidget(title_line);
289     panel_layout->addWidget( panel );
290     panel_layout->addStretch( 2 );
291
292     this->setLayout(panel_layout);
293 }
294
295 void SPrefsPanel::apply()
296 {
297     QList<ConfigControl *>::Iterator i;
298     for( i = controls.begin() ; i != controls.end() ; i++ )
299     {
300         ConfigControl *c = qobject_cast<ConfigControl *>(*i);
301         c->doApply( p_intf );
302     }
303 }
304
305 void SPrefsPanel::clean()
306 {}