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