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