]> git.sesse.net Git - vlc/blob - modules/gui/qt4/qt4.cpp
Remove useless test before a delete.
[vlc] / modules / gui / qt4 / qt4.cpp
1 /*****************************************************************************
2  * qt4.cpp : QT4 interface
3  ****************************************************************************
4  * Copyright © 2006-2008 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 #ifdef HAVE_CONFIG_H
25 # include "config.h"
26 #endif
27
28 #include <QApplication>
29 #include <QLocale>
30 #include <QTranslator>
31 #include <QDate>
32
33 #include "qt4.hpp"
34 #include "dialogs_provider.hpp"
35 #include "input_manager.hpp"
36 #include "main_interface.hpp"
37 #include "dialogs/help.hpp" /* update */
38
39 #ifdef HAVE_X11_XLIB_H
40 #include <X11/Xlib.h>
41 #endif
42
43 #include "../../../share/vlc32x32.xpm"
44 #include "../../../share/vlc32x32-christmas.xpm"
45
46 /*****************************************************************************
47  * Local prototypes.
48  *****************************************************************************/
49 static int  Open         ( vlc_object_t * );
50 static void Close        ( vlc_object_t * );
51 static int  OpenDialogs  ( vlc_object_t * );
52 static void Run          ( intf_thread_t * );
53 static void Init         ( intf_thread_t * );
54 static void ShowDialog   ( intf_thread_t *, int, int, intf_dialog_args_t * );
55
56 /*****************************************************************************
57  * Module descriptor
58  *****************************************************************************/
59 #define ADVANCED_PREFS_TEXT N_( "Show advanced prefs over simple ones" )
60 #define ADVANCED_PREFS_LONGTEXT N_( "Show advanced preferences and not simple "\
61                                     "preferences when opening the preferences "\
62                                     "dialog." )
63
64 #define SYSTRAY_TEXT N_( "Systray icon" )
65 #define SYSTRAY_LONGTEXT N_( "Show an icon in the systray " \
66                              "allowing you to control VLC media player " \
67                              "for basic actions" )
68
69 #define MINIMIZED_TEXT N_( "Start VLC with only a systray icon" )
70 #define MINIMIZED_LONGTEXT N_( "When you launch VLC with that option, " \
71                                "VLC will start with just an icon in" \
72                                "your taskbar" )
73
74 #define TITLE_TEXT N_( "Show playing item name in window title" )
75 #define TITLE_LONGTEXT N_( "Show the name of the song or video in the " \
76                            "controler window title" )
77
78 #define FILEDIALOG_PATH_TEXT N_( "Path to use in openfile dialog" )
79
80 #define NOTIFICATION_TEXT N_( "Show notification popup on track change" )
81 #define NOTIFICATION_LONGTEXT N_( \
82     "Show a notification popup with the artist and track name when " \
83     "the current playlist item changes, when VLC is minimized or hidden." )
84
85 #define ADVANCED_OPTIONS_TEXT N_( "Advanced options" )
86 #define ADVANCED_OPTIONS_LONGTEXT N_( "Show all the advanced options " \
87                                       "in the dialogs" )
88
89 #define OPACITY_TEXT N_( "Windows opacity between 0.1 and 1." )
90 #define OPACITY_LONGTEXT N_( "Sets the windows opacity between 0.1 and 1 " \
91                              "for main interface, playlist and extended panel." \
92                              " This option only works with Windows and " \
93                              "X11 with composite extensions." )
94
95 #define ERROR_TEXT N_( "Show unimportant error and warnings dialogs" )
96
97 #define UPDATER_TEXT N_( "Activate the updates availability notification" )
98 #define UPDATER_LONGTEXT N_( "Activate the automatic notification of new " \
99                             "versions of the software. It runs once a week." )
100 #define UPDATER_DAYS_TEXT N_("Number of days between two update checks")
101
102 #define COMPLETEVOL_TEXT N_( "Allow the volume to be set to 400%" )
103 #define COMPLETEVOL_LONGTEXT N_( "Allow the volume to have range from 0% to " \
104                                  "400%, instead of 0% to 200%. This option " \
105                                  "can distort the audio, since it uses " \
106                                  "software amplification." )
107
108 #define SAVEVOL_TEXT N_( "Automatically save the volume on exit" )
109
110 #define BLING_TEXT N_( "Use non native buttons and volume slider" )
111
112 #define PRIVACY_TEXT N_( "Ask for network policy at start" )
113
114
115 #define VIEWDETAIL_TEXT N_( "Show the opening dialog view in detail mode" )
116
117 #define QT_MODE_TEXT N_( "Selection of the starting mode and look " )
118 #define QT_MODE_LONGTEXT N_( "Start VLC with:\n" \
119                              " - normal mode\n"  \
120                              " - a zone always present to show information" \
121                                   "as lyrics, album arts...\n" \
122                              " - minimal mode with limited controls" )
123
124 #define QT_NORMAL_MODE_TEXT N_( "Classic look" )
125 #define QT_ALWAYS_VIDEO_MODE_TEXT N_( "Complete look with information area" )
126 #define QT_MINIMAL_MODE_TEXT N_( "Minimal look with no menus" )
127
128 static int i_mode_list[] =
129     { QT_NORMAL_MODE, QT_ALWAYS_VIDEO_MODE, QT_MINIMAL_MODE };
130 static const char *psz_mode_list_text[] =
131     { QT_NORMAL_MODE_TEXT, QT_ALWAYS_VIDEO_MODE_TEXT, QT_MINIMAL_MODE_TEXT };
132
133 vlc_module_begin();
134     set_shortname( (char *)"Qt" );
135     set_description( (char*)_("Qt interface") );
136     set_category( CAT_INTERFACE ) ;
137     set_subcategory( SUBCAT_INTERFACE_MAIN );
138     set_capability( "interface", 151 );
139     set_callbacks( Open, Close );
140
141     add_shortcut("qt");
142
143     add_submodule();
144         set_description( "Dialogs provider" );
145         set_capability( "dialogs provider", 51 );
146
147         add_integer( "qt-display-mode", QT_NORMAL_MODE, NULL,
148                      QT_MODE_TEXT, QT_MODE_LONGTEXT, VLC_FALSE );
149             change_integer_list( i_mode_list, psz_mode_list_text, 0 );
150
151         add_bool( "qt-notification", VLC_TRUE, NULL, NOTIFICATION_TEXT,
152                   NOTIFICATION_LONGTEXT, VLC_FALSE );
153
154         add_float_with_range( "qt-opacity", 1., 0.1, 1., NULL, OPACITY_TEXT,
155                   OPACITY_LONGTEXT, VLC_FALSE );
156         add_bool( "qt-blingbling", VLC_TRUE, NULL, BLING_TEXT,
157                   BLING_TEXT, VLC_FALSE );
158
159         add_bool( "qt-system-tray", VLC_TRUE, NULL, SYSTRAY_TEXT,
160                 SYSTRAY_LONGTEXT, VLC_FALSE);
161         add_bool( "qt-start-minimized", VLC_FALSE, NULL, MINIMIZED_TEXT,
162                 MINIMIZED_LONGTEXT, VLC_TRUE);
163         add_bool( "qt-name-in-title", VLC_TRUE, NULL, TITLE_TEXT,
164                   TITLE_LONGTEXT, VLC_FALSE );
165
166         add_bool( "qt-volume-complete", VLC_FALSE, NULL, COMPLETEVOL_TEXT,
167                 COMPLETEVOL_LONGTEXT, VLC_TRUE );
168         add_bool( "qt-autosave-volume", VLC_FALSE, NULL, SAVEVOL_TEXT,
169                 SAVEVOL_TEXT, VLC_TRUE );
170         add_string( "qt-filedialog-path", NULL, NULL, FILEDIALOG_PATH_TEXT,
171                 FILEDIALOG_PATH_TEXT, VLC_TRUE );
172             change_autosave();
173             change_internal();
174
175         add_bool( "qt-adv-options", VLC_FALSE, NULL, ADVANCED_OPTIONS_TEXT,
176                   ADVANCED_OPTIONS_LONGTEXT, VLC_TRUE );
177         add_bool( "qt-advanced-pref", VLC_FALSE, NULL, ADVANCED_PREFS_TEXT,
178                 ADVANCED_PREFS_LONGTEXT, VLC_FALSE );
179         add_bool( "qt-error-dialogs", VLC_TRUE, NULL, ERROR_TEXT,
180                 ERROR_TEXT, VLC_FALSE );
181 #ifdef UPDATE_CHECK
182         add_bool( "qt-updates-notif", VLC_TRUE, NULL, UPDATER_TEXT,
183                 UPDATER_LONGTEXT, VLC_FALSE );
184         add_integer( "qt-updates-days", 14, NULL, UPDATER_DAYS_TEXT,
185                 UPDATER_DAYS_TEXT, VLC_FALSE );
186 #endif
187
188         add_bool( "qt-open-detail", VLC_FALSE, NULL, VIEWDETAIL_TEXT,
189                 VIEWDETAIL_TEXT, VLC_FALSE );
190
191         add_bool( "qt-privacy-ask", VLC_TRUE, NULL, PRIVACY_TEXT, PRIVACY_TEXT,
192                 VLC_FALSE );
193
194         set_callbacks( OpenDialogs, Close );
195 vlc_module_end();
196
197 /*****************************************************************************
198  * Module callbacks
199  *****************************************************************************/
200 static int Open( vlc_object_t *p_this )
201 {
202     intf_thread_t *p_intf = (intf_thread_t *)p_this;
203
204 #if defined Q_WS_X11 && defined HAVE_X11_XLIB_H
205     /* Thanks for libqt4 calling exit() in QApplication::QApplication()
206      * instead of returning an error, we have to check the X11 display */
207     Display *p_display = XOpenDisplay( NULL );
208     if( !p_display )
209     {
210         msg_Err( p_intf, "Could not connect to X server" );
211         return VLC_EGENERIC;
212     }
213     XCloseDisplay( p_display );
214 #endif
215
216     p_intf->p_sys = (intf_sys_t *)malloc( sizeof( intf_sys_t ) );
217     if( !p_intf->p_sys )
218     {
219         msg_Err( p_intf, "Out of memory" );
220         return VLC_ENOMEM;
221     }
222     memset( p_intf->p_sys, 0, sizeof( intf_sys_t ) );
223
224     p_intf->pf_run = Run;
225
226     p_intf->p_sys->p_playlist = pl_Yield( p_intf );
227     p_intf->p_sys->p_sub = msg_Subscribe( p_intf, MSG_QUEUE_NORMAL );
228
229     /* We support play on start */
230     p_intf->b_play = VLC_TRUE;
231
232     return VLC_SUCCESS;
233 }
234
235 static int OpenDialogs( vlc_object_t *p_this )
236 {
237     intf_thread_t *p_intf = (intf_thread_t *)p_this;
238     int val = Open( p_this );
239     if( val )
240         return val;
241
242     p_intf->pf_show_dialog = ShowDialog;
243     return VLC_SUCCESS;
244 }
245
246 static void Close( vlc_object_t *p_this )
247 {
248     intf_thread_t *p_intf = (intf_thread_t *)p_this;
249
250     vlc_mutex_lock( &p_intf->object_lock );
251     p_intf->b_dead = VLC_TRUE;
252     vlc_mutex_unlock( &p_intf->object_lock );
253
254     if( p_intf->p_sys->b_isDialogProvider )
255     {
256         DialogEvent *event = new DialogEvent( INTF_DIALOG_EXIT, 0, NULL );
257         QApplication::postEvent( THEDP, static_cast<QEvent*>(event) );
258
259         vlc_thread_join( p_intf );
260     }
261
262     vlc_object_release( p_intf->p_sys->p_playlist );
263     msg_Unsubscribe( p_intf, p_intf->p_sys->p_sub );
264     free( p_intf->p_sys );
265 }
266
267
268 /*****************************************************************************
269  * Initialize the interface or the dialogs provider
270  *****************************************************************************/
271 static void Run( intf_thread_t *p_intf )
272 {
273     if( p_intf->pf_show_dialog )
274     {
275         if( vlc_thread_create( p_intf, "Qt dialogs", Init, 0, VLC_TRUE ) )
276             msg_Err( p_intf, "failed to create Qt dialogs thread" );
277     }
278     else
279         Init( p_intf );
280 }
281
282 static void Init( intf_thread_t *p_intf )
283 {
284     char dummy[] = "";
285     char *argv[] = { dummy };
286     int argc = 1;
287
288     Q_INIT_RESOURCE( vlc );
289
290 #if !defined(WIN32) && !defined(__APPLE__)
291     /* KLUDGE:
292      * disables icon theme use because that makes Cleanlooks style bug
293      * because it asks gconf for some settings that timeout because of threads
294      * see commits 21610 21622 21654 for reference */
295
296     /* If you don't have a gconftool-2 binary, you should comment this line */
297     if( strcmp( qVersion(), "4.4.0" ) < 0 ) /* fixed in Qt 4.4.0 */
298         QApplication::setDesktopSettingsAware( false );
299 #endif
300
301     /* Start the QApplication here */
302     QApplication *app = new QApplication( argc, argv , true );
303     if( QDate::currentDate().dayOfYear() >= 354 )
304         app->setWindowIcon( QIcon( QPixmap(vlc_christmas_xpm) ) );
305     else
306         app->setWindowIcon( QIcon( QPixmap(vlc_xpm) ) );
307     p_intf->p_sys->p_app = app;
308
309     // Initialize timers and the Dialog Provider
310     DialogsProvider::getInstance( p_intf );
311
312     // Create the normal interface
313     if( !p_intf->pf_show_dialog )
314     {
315         MainInterface *p_mi = new MainInterface( p_intf );
316         p_intf->p_sys->p_mi = p_mi;
317         /* We don't show it because it is done in the MainInterface constructor
318         p_mi->show(); */
319         p_intf->p_sys->b_isDialogProvider = false;
320     }
321     else
322     {
323         vlc_thread_ready( p_intf );
324         p_intf->p_sys->b_isDialogProvider = true;
325     }
326
327
328 #ifdef ENABLE_NLS
329     // Translation - get locale
330     QLocale ql = QLocale::system();
331     // Translations for qt's own dialogs
332     QTranslator qtTranslator( 0 );
333     // Let's find the right path for the translation file
334 #if !defined( WIN32 )
335     QString path =  QString( QT4LOCALEDIR );
336 #else
337     QString path = QString( QString(config_GetDataDir()) + DIR_SEP +
338                             "locale" + DIR_SEP );
339 #endif
340     // files depending on locale
341     bool b_loaded = qtTranslator.load( path + "qt_" + ql.name());
342     if (!b_loaded)
343         msg_Dbg( p_intf, "Error while initializing qt-specific localization" );
344     app->installTranslator( &qtTranslator );
345 #endif  //ENABLE_NLS
346
347     /* Start playing if needed */
348     if( !p_intf->pf_show_dialog && p_intf->b_play )
349     {
350         playlist_Control( THEPL, PLAYLIST_PLAY, VLC_FALSE );
351     }
352
353     /* Explain to the core how to show a dialog :D */
354     p_intf->pf_show_dialog = ShowDialog;
355
356     /* Last settings */
357     app->setQuitOnLastWindowClosed( false );
358
359     /*        retrieve last known path used in file browsing */
360     char *psz_path = config_GetPsz( p_intf, "qt-filedialog-path" );
361     p_intf->p_sys->psz_filepath = EMPTY_STR( psz_path ) ? psz_path
362                            : p_intf->p_libvlc->psz_homedir;
363
364 #ifdef UPDATE_CHECK
365     if( config_GetInt( p_intf, "qt-updates-notif" ) )
366     {
367         int interval = config_GetInt( p_intf, "qt-updates-days" );
368         QSettings settings( "vlc", "vlc-qt-interface" );
369         if( QDate::currentDate() >
370                 settings.value( "updatedate" ).toDate().addDays( interval ) )
371         {
372             msg_Dbg( p_intf, "Someone said I need to check updates" );
373             /* The constructor of the update Dialog will do the 1st request */
374             UpdateDialog::getInstance( p_intf );
375             settings.setValue( "updatedate", QDate::currentDate() );
376         }
377     }
378 #endif
379
380     /* Launch */
381     app->exec();
382
383     /* And quit */
384
385     /* Destroy first the main interface because it is connected to some slots
386        in the MainInputManager */
387     delete p_intf->p_sys->p_mi;
388
389     /* Destroy then other windows, because some are connected to some slots
390        in the MainInputManager */
391     DialogsProvider::killInstance();
392
393     /* Destroy the MainInputManager */
394     MainInputManager::killInstance();
395
396     delete app;
397
398     config_PutPsz( p_intf, "qt-filedialog-path", p_intf->p_sys->psz_filepath );
399     free( psz_path );
400 }
401
402 /*****************************************************************************
403  * Callback to show a dialog
404  *****************************************************************************/
405 static void ShowDialog( intf_thread_t *p_intf, int i_dialog_event, int i_arg,
406                         intf_dialog_args_t *p_arg )
407 {
408     DialogEvent *event = new DialogEvent( i_dialog_event, i_arg, p_arg );
409     QApplication::postEvent( THEDP, static_cast<QEvent*>(event) );
410 }
411
412 /*****************************************************************************
413  * PopupMenuCB: callback to show the popupmenu.
414  *  We don't show the menu directly here because we don't want the
415  *  caller to block for a too long time.
416  *****************************************************************************/
417 static int PopupMenuCB( vlc_object_t *p_this, const char *psz_variable,
418                         vlc_value_t old_val, vlc_value_t new_val, void *param )
419 {
420     intf_thread_t *p_intf = (intf_thread_t *)param;
421     ShowDialog( p_intf, INTF_DIALOG_POPUPMENU, new_val.b_bool, 0 );
422     return VLC_SUCCESS;
423 }