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