]> git.sesse.net Git - vlc/blob - modules/gui/qt4/qt4.cpp
Qt4 - Reorder the options in order of importance.
[vlc] / modules / gui / qt4 / qt4.cpp
1 /*****************************************************************************
2  * qt4.cpp : QT4 interface
3  ****************************************************************************
4  * Copyright (C) 2006-2007 the VideoLAN team
5  * $Id$
6  *
7  * Authors: ClĂ©ment Stenac <zorglub@videolan.org>
8  *          Jean-Baptiste Kempf <jb@videolan.org>
9  *
10  * This program is free software; you can redistribute it and/or modify
11  * it under the terms of the GNU General Public License as published by
12  * the Free Software Foundation; either version 2 of the License, or
13  * (at your option) any later version.
14  *
15  * This program is distributed in the hope that it will be useful,
16  * but WITHOUT ANY WARRANTY; without even the implied warranty of
17  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
18  * GNU General Public License for more details.
19  *
20  * You should have received a copy of the GNU General Public License
21  * along with this program; if not, write to the Free Software
22  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston MA 02110-1301, USA.
23  *****************************************************************************/
24
25 #include <QApplication>
26 #include <QLocale>
27 #include <QTranslator>
28 #include <QDate>
29
30 #include "qt4.hpp"
31 #include <vlc_os_specific.h>
32 #include "dialogs_provider.hpp"
33 #include "input_manager.hpp"
34 #include "main_interface.hpp"
35
36 #ifdef HAVE_X11_XLIB_H
37 #include <X11/Xlib.h>
38 #endif
39
40 #include "../../../share/vlc32x32.xpm"
41 #include "../../../share/vlc32x32-christmas.xpm"
42
43 /*****************************************************************************
44  * Local prototypes.
45  *****************************************************************************/
46 static int  Open         ( vlc_object_t * );
47 static void Close        ( vlc_object_t * );
48 static int  OpenDialogs  ( vlc_object_t * );
49 static void Run          ( intf_thread_t * );
50 static void Init         ( intf_thread_t * );
51 static void ShowDialog   ( intf_thread_t *, int, int, intf_dialog_args_t * );
52
53 /*****************************************************************************
54  * Module descriptor
55  *****************************************************************************/
56 #define ALWAYS_VIDEO_TEXT N_( "Always an area for information when there " \
57                               "is no video played" )
58 #define ALWAYS_VIDEO_LONGTEXT N_( "Start VLC with a cone image, and " \
59                                   "use this zone to show information as " \
60                                   "lyrics, album arts or visualisation " \
61                                   " when there is no video track." )
62
63 #define ADVANCED_PREFS_TEXT N_( "Show advanced prefs over simple ones" )
64 #define ADVANCED_PREFS_LONGTEXT N_( "Show advanced preferences and not simple " \
65                                     "preferences when opening the preferences " \
66                                     "dialog." )
67
68 #define SYSTRAY_TEXT N_( "Systray icon" )
69 #define SYSTRAY_LONGTEXT N_( "Show an icon in the systray " \
70                              "allowing you to control VLC media player " \
71                              "for basic actions" )
72
73 #define MINIMIZED_TEXT N_( "Start VLC with only a systray icon" )
74 #define MINIMIZED_LONGTEXT N_( "When you launch VLC with that option, " \
75                                "VLC will start with just an icon in" \
76                                "your taskbar" )
77
78 #define TITLE_TEXT N_( "Show playing item name in window title" )
79 #define TITLE_LONGTEXT N_( "Show the name of the song or video in the " \
80                            "controler window title" )
81
82 #define FILEDIALOG_PATH_TEXT N_( "Path to use in openfile dialog" )
83
84 #define NOTIFICATION_TEXT N_( "Show notification popup on track change" )
85 #define NOTIFICATION_LONGTEXT N_( \
86     "Show a notification popup with the artist and track name when " \
87     "the current playlist item changes, when VLC is minimized or hidden." )
88
89 #define ADVANCED_OPTIONS_TEXT N_( "Advanced options" )
90 #define ADVANCED_OPTIONS_LONGTEXT N_( "Show all the advanced options " \
91                                       "in the dialogs" )
92
93 #define OPACITY_TEXT N_( "Windows opacity between 0.1 and 1." )
94 #define OPACITY_LONGTEXT N_( "Sets the windows opacity between 0.1 and 1 " \
95                              "for main interface, playlist and extended panel." \
96                              " This option only works with Windows and " \
97                              "X11 with composite extensions." )
98
99 #define SHOWFLAGS_TEXT N_( "Define what columns to show in playlist window" )
100 #define SHOWFLAGS_LONGTEXT N_( "Enter the sum of the options that you want: \n" \
101                                "Title: 1; Duration: 2; Artist: 4; Genre: 8; " \
102                                "Copyright: 16; Collection/album: 32; Rating: 256." )
103
104 #define ERROR_TEXT N_( "Show unimportant error and warnings dialogs" )
105 #define MINIMAL_TEXT N_( "Start in minimal view (menus hidden)." )
106
107 #define UPDATER_TEXT N_( "Activate the new updates notification" )
108 #define UPDATER_LONGTEXT N_( "Activate the automatic notification of new " \
109                             "versions of the software. It runs once a week." )
110
111 #define COMPLETEVOL_TEXT N_( "Allow the volume to be set to 400%" )
112 #define COMPLETEVOL_LONGTEXT N_( "Allow the volume to have range from 0% to " \
113                                  "400%, instead of 0% to 200%. This option " \
114                                  "can distort the audio, since it uses " \
115                                  "software amplification." )
116
117 #define BLING_TEXT N_( "Use non native buttons and volume slider" )
118
119 #define PRIVACY_TEXT N_( "Ask for network policy at start" )
120
121 vlc_module_begin();
122     set_shortname( (char *)"Qt" );
123     set_description( (char*)_("Qt interface") );
124     set_category( CAT_INTERFACE ) ;
125     set_subcategory( SUBCAT_INTERFACE_MAIN );
126     set_capability( "interface", 151 );
127     set_callbacks( Open, Close );
128
129     add_shortcut("qt");
130
131     add_submodule();
132         set_description( "Dialogs provider" );
133         set_capability( "dialogs provider", 51 );
134
135         add_bool( "qt-always-video", VLC_FALSE, NULL, ALWAYS_VIDEO_TEXT,
136                 ALWAYS_VIDEO_LONGTEXT, VLC_TRUE );
137         add_bool( "qt-minimal-view", VLC_FALSE, NULL, MINIMAL_TEXT,
138                 MINIMAL_TEXT, VLC_TRUE );
139
140         add_bool( "qt-notification", VLC_TRUE, NULL, NOTIFICATION_TEXT,
141                   NOTIFICATION_LONGTEXT, VLC_FALSE );
142
143         add_float_with_range( "qt-opacity", 1., 0.1, 1., NULL, OPACITY_TEXT,
144                   OPACITY_LONGTEXT, VLC_FALSE );
145         add_bool( "qt-blingbling", VLC_TRUE, NULL, BLING_TEXT,
146                   BLING_TEXT, VLC_FALSE );
147
148         add_bool( "qt-system-tray", VLC_TRUE, NULL, SYSTRAY_TEXT,
149                 SYSTRAY_LONGTEXT, VLC_FALSE);
150         add_bool( "qt-start-minimized", VLC_FALSE, NULL, MINIMIZED_TEXT,
151                 MINIMIZED_LONGTEXT, VLC_TRUE);
152         add_bool( "qt-name-in-title", VLC_TRUE, NULL, TITLE_TEXT,
153                   TITLE_LONGTEXT, VLC_FALSE );
154
155         add_bool( "qt-volume-complete", VLC_FALSE, NULL, COMPLETEVOL_TEXT,
156                 COMPLETEVOL_LONGTEXT, VLC_TRUE );
157         add_string( "qt-filedialog-path", NULL, NULL, FILEDIALOG_PATH_TEXT,
158                 FILEDIALOG_PATH_TEXT, VLC_TRUE );
159             change_autosave();
160             change_internal();
161
162         add_bool( "qt-adv-options", VLC_FALSE, NULL, ADVANCED_OPTIONS_TEXT,
163                   ADVANCED_OPTIONS_LONGTEXT, VLC_TRUE );
164         add_bool( "qt-advanced-pref", VLC_FALSE, NULL, ADVANCED_PREFS_TEXT,
165                 ADVANCED_PREFS_LONGTEXT, VLC_FALSE );
166         add_bool( "qt-error-dialogs", VLC_TRUE, NULL, ERROR_TEXT,
167                 ERROR_TEXT, VLC_FALSE );
168         add_bool( "qt-updates-notif", VLC_TRUE, NULL, UPDATER_TEXT,
169                 UPDATER_LONGTEXT, VLC_FALSE );
170
171         add_integer( "qt-pl-showflags",
172                 VLC_META_ENGINE_ARTIST|VLC_META_ENGINE_TITLE|
173                 VLC_META_ENGINE_DURATION|VLC_META_ENGINE_COLLECTION,
174                 NULL, SHOWFLAGS_TEXT,
175                 SHOWFLAGS_LONGTEXT, VLC_TRUE );
176             change_autosave();
177
178         add_bool( "privacy-ask", VLC_TRUE, NULL, PRIVACY_TEXT, PRIVACY_TEXT,
179                 VLC_FALSE );
180         set_callbacks( OpenDialogs, Close );
181 vlc_module_end();
182
183 /*****************************************************************************
184  * Module callbacks
185  *****************************************************************************/
186 static int Open( vlc_object_t *p_this )
187 {
188     intf_thread_t *p_intf = (intf_thread_t *)p_this;
189     p_intf->pf_run = Run;
190 #if defined Q_WS_X11 && defined HAVE_X11_XLIB_H
191     /* Thanks for libqt4 calling exit() in QApplication::QApplication()
192      * instead of returning an error, we have to check the X11 display */
193     Display *p_display = XOpenDisplay( NULL );
194     if( !p_display )
195     {
196         msg_Err( p_intf, "Could not connect to X server" );
197         return VLC_EGENERIC;
198     }
199     XCloseDisplay( p_display );
200 #endif
201     p_intf->p_sys = (intf_sys_t *)malloc( sizeof( intf_sys_t ) );
202     if( !p_intf->p_sys )
203     {
204         msg_Err( p_intf, "Out of memory" );
205         return VLC_ENOMEM;
206     }
207     memset( p_intf->p_sys, 0, sizeof( intf_sys_t ) );
208
209     p_intf->p_sys->p_playlist = pl_Yield( p_intf );
210     p_intf->p_sys->p_sub = msg_Subscribe( p_intf, MSG_QUEUE_NORMAL );
211
212     p_intf->b_play = VLC_TRUE;
213
214     return VLC_SUCCESS;
215 }
216
217 static int OpenDialogs( vlc_object_t *p_this )
218 {
219     intf_thread_t *p_intf = (intf_thread_t *)p_this;
220     int val = Open( p_this );
221     if( val )
222         return val;
223
224     p_intf->pf_show_dialog = ShowDialog;
225     return VLC_SUCCESS;
226 }
227
228 static void Close( vlc_object_t *p_this )
229 {
230     intf_thread_t *p_intf = (intf_thread_t *)p_this;
231     vlc_mutex_lock( &p_intf->object_lock );
232     p_intf->b_dead = VLC_TRUE;
233     vlc_mutex_unlock( &p_intf->object_lock );
234
235     vlc_object_release( p_intf->p_sys->p_playlist );
236     msg_Unsubscribe( p_intf, p_intf->p_sys->p_sub );
237     free( p_intf->p_sys );
238 }
239
240
241 /*****************************************************************************
242  * Initialize the interface or the dialogs provider
243  *****************************************************************************/
244 static void Run( intf_thread_t *p_intf )
245 {
246     if( p_intf->pf_show_dialog )
247     {
248         if( vlc_thread_create( p_intf, "Qt dialogs", Init, 0, VLC_TRUE ) )
249             msg_Err( p_intf, "failed to create Qt dialogs thread" );
250     }
251     else
252         Init( p_intf );
253 }
254
255 static void Init( intf_thread_t *p_intf )
256 {
257     char dummy[] = "";
258     char *argv[] = { dummy };
259     int argc = 1;
260
261     Q_INIT_RESOURCE( vlc );
262
263 #ifndef WIN32
264     /* KLUDGE:
265      * disables icon theme use because that makes Cleanlooks style bug
266      * because it asks gconf for some settings that timeout because of threads
267      * see commits 21610 21622 21654 for reference */
268
269     /* If you are under KDE, Xfce or e17, you should comment this line */
270     QApplication::setDesktopSettingsAware( false );
271 #endif
272
273     /* Start the QApplication here */
274     QApplication *app = new QApplication( argc, argv , true );
275     if( QDate::currentDate().dayOfYear() >= 354 )
276         app->setWindowIcon( QIcon( QPixmap(vlc_christmas_xpm) ) );
277     else
278         app->setWindowIcon( QIcon( QPixmap(vlc_xpm) ) );
279     p_intf->p_sys->p_app = app;
280
281     // Initialize timers and the Dialog Provider
282     DialogsProvider::getInstance( p_intf );
283
284     // Create the normal interface
285     if( !p_intf->pf_show_dialog )
286     {
287         MainInterface *p_mi = new MainInterface( p_intf );
288         p_intf->p_sys->p_mi = p_mi;
289         p_mi->show();
290     }
291     else
292     /*if( p_intf->pf_show_dialog )*/
293         vlc_thread_ready( p_intf );
294
295 #ifdef ENABLE_NLS
296     // Translation - get locale
297     QLocale ql = QLocale::system();
298     // Translations for qt's own dialogs
299     QTranslator qtTranslator( 0 );
300     // Let's find the right path for the translation file
301 #if !defined( WIN32 )
302     QString path =  QString( QT4LOCALEDIR );
303 #else
304     QString path = QString( QString(system_VLCPath()) + DIR_SEP +
305                             "locale" + DIR_SEP );
306 #endif
307     // files depending on locale
308     bool b_loaded = qtTranslator.load( path + "qt_" + ql.name());
309     if (!b_loaded)
310         msg_Dbg( p_intf, "Error while initializing qt-specific localization" );
311     app->installTranslator( &qtTranslator );
312 #endif  //ENABLE_NLS
313
314     /* Start playing if needed */
315     if( !p_intf->pf_show_dialog && p_intf->b_play )
316     {
317         playlist_Control( THEPL, PLAYLIST_AUTOPLAY, VLC_FALSE );
318     }
319
320     /* Explain to the core how to show a dialog :D */
321     p_intf->pf_show_dialog = ShowDialog;
322
323     /* Last settings */
324     app->setQuitOnLastWindowClosed( false );
325
326     /* Launch */
327     app->exec();
328
329     /* And quit */
330     MainInputManager::killInstance();
331     DialogsProvider::killInstance();
332     delete app;
333 }
334
335 /*****************************************************************************
336  * Callback to show a dialog
337  *****************************************************************************/
338 static void ShowDialog( intf_thread_t *p_intf, int i_dialog_event, int i_arg,
339                         intf_dialog_args_t *p_arg )
340 {
341     DialogEvent *event = new DialogEvent( i_dialog_event, i_arg, p_arg );
342     QApplication::postEvent( THEDP, static_cast<QEvent*>(event) );
343 }
344
345 /*****************************************************************************
346  * PopupMenuCB: callback to show the popupmenu.
347  *  We don't show the menu directly here because we don't want the
348  *  caller to block for a too long time.
349  *****************************************************************************/
350 static int PopupMenuCB( vlc_object_t *p_this, const char *psz_variable,
351                         vlc_value_t old_val, vlc_value_t new_val, void *param )
352 {
353     intf_thread_t *p_intf = (intf_thread_t *)param;
354     ShowDialog( p_intf, INTF_DIALOG_POPUPMENU, new_val.b_bool, 0 );
355     return VLC_SUCCESS;
356 }