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