]> git.sesse.net Git - vlc/blob - modules/gui/qt4/qt4.cpp
Message deactivation in Interface due to new API. Not functionnal change but compiles.
[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 #include <QMutex>
33 #include <QMutexLocker>
34 #include <QWaitCondition>
35 #include <QPointer>
36
37 #include "qt4.hpp"
38 #include "dialogs_provider.hpp"
39 #include "input_manager.hpp"
40 #include "main_interface.hpp"
41 #include "dialogs/help.hpp" /* update */
42
43 #ifdef HAVE_X11_XLIB_H
44 #include <X11/Xlib.h>
45 #endif
46
47 #include "../../../share/vlc32x32.xpm"
48 #include "../../../share/vlc32x32-christmas.xpm"
49 #include <vlc_plugin.h>
50
51 #ifdef WIN32
52  #include <QtPlugin>
53  Q_IMPORT_PLUGIN(qjpeg)
54 #endif
55
56 /*****************************************************************************
57  * Local prototypes.
58  *****************************************************************************/
59 static int  Open         ( vlc_object_t * );
60 static void Close        ( vlc_object_t * );
61 static int  OpenDialogs  ( vlc_object_t * );
62 static int  WindowOpen   ( vlc_object_t * );
63 static void WindowClose  ( vlc_object_t * );
64 static void Run          ( intf_thread_t * );
65 static void *Init        ( vlc_object_t * );
66 static void ShowDialog   ( intf_thread_t *, int, int, intf_dialog_args_t * );
67
68 /*****************************************************************************
69  * Module descriptor
70  *****************************************************************************/
71 #define ADVANCED_PREFS_TEXT N_( "Show advanced preferences over simple ones" )
72 #define ADVANCED_PREFS_LONGTEXT N_( "Show advanced preferences and not simple "\
73                                     "preferences when opening the preferences "\
74                                     "dialog." )
75
76 #define SYSTRAY_TEXT N_( "Systray icon" )
77 #define SYSTRAY_LONGTEXT N_( "Show an icon in the systray " \
78                              "allowing you to control VLC media player " \
79                              "for basic actions." )
80
81 #define MINIMIZED_TEXT N_( "Start VLC with only a systray icon" )
82 #define MINIMIZED_LONGTEXT N_( "VLC will start with just an icon in " \
83                                "your taskbar" )
84
85 #define TITLE_TEXT N_( "Show playing item name in window title" )
86 #define TITLE_LONGTEXT N_( "Show the name of the song or video in the " \
87                            "controler window title." )
88
89 #define FILEDIALOG_PATH_TEXT N_( "Path to use in openfile dialog" )
90
91 #define NOTIFICATION_TEXT N_( "Show notification popup on track change" )
92 #define NOTIFICATION_LONGTEXT N_( \
93     "Show a notification popup with the artist and track name when " \
94     "the current playlist item changes, when VLC is minimized or hidden." )
95
96 #define ADVANCED_OPTIONS_TEXT N_( "Advanced options" )
97 #define ADVANCED_OPTIONS_LONGTEXT N_( "Show all the advanced options " \
98                                       "in the dialogs." )
99
100 #define OPACITY_TEXT N_( "Windows opacity between 0.1 and 1." )
101 #define OPACITY_LONGTEXT N_( "Sets the windows opacity between 0.1 and 1 " \
102                              "for main interface, playlist and extended panel."\
103                              " This option only works with Windows and " \
104                              "X11 with composite extensions." )
105
106 #define ERROR_TEXT N_( "Show unimportant error and warnings dialogs" )
107
108 #define UPDATER_TEXT N_( "Activate the updates availability notification" )
109 #define UPDATER_LONGTEXT N_( "Activate the automatic notification of new " \
110                             "versions of the software. It runs once every " \
111                             "two weeks." )
112 #define UPDATER_DAYS_TEXT N_("Number of days between two update checks")
113
114 #define COMPLETEVOL_TEXT N_( "Allow the volume to be set to 400%" )
115 #define COMPLETEVOL_LONGTEXT N_( "Allow the volume to have range from 0% to " \
116                                  "400%, instead of 0% to 200%. This option " \
117                                  "can distort the audio, since it uses " \
118                                  "software amplification." )
119
120 #define SAVEVOL_TEXT N_( "Automatically save the volume on exit" )
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 SLIDERCOL_TEXT N_( "Define the colors of the volume slider " )
127 #define SLIDERCOL_LONGTEXT N_( "Define the colors of the volume slider\n" \
128                        "By specifying the 12 numbers separated by a ';'\n" \
129             "Default is '255;255;255;20;226;20;255;176;15;235;30;20'\n" \
130             "An alternative can be '30;30;50;40;40;100;50;50;160;150;150;255' ")
131
132 #define QT_MODE_TEXT N_( "Selection of the starting mode and look " )
133 #define QT_MODE_LONGTEXT N_( "Start VLC with:\n" \
134                              " - normal mode\n"  \
135                              " - a zone always present to show information " \
136                                   "as lyrics, album arts...\n" \
137                              " - minimal mode with limited controls" )
138
139 #define QT_NORMAL_MODE_TEXT N_( "Classic look" )
140 #define QT_ALWAYS_VIDEO_MODE_TEXT N_( "Complete look with information area" )
141 #define QT_MINIMAL_MODE_TEXT N_( "Minimal look with no menus" )
142
143 #define QT_FULLSCREEN_TEXT N_( "Show a controller in fullscreen mode" )
144
145 static const int i_mode_list[] =
146     { QT_NORMAL_MODE, QT_ALWAYS_VIDEO_MODE, QT_MINIMAL_MODE };
147 static const char *const psz_mode_list_text[] =
148     { QT_NORMAL_MODE_TEXT, QT_ALWAYS_VIDEO_MODE_TEXT, QT_MINIMAL_MODE_TEXT };
149
150 vlc_module_begin();
151     set_shortname( "Qt" );
152     set_description( N_("Qt interface") );
153     set_category( CAT_INTERFACE ) ;
154     set_subcategory( SUBCAT_INTERFACE_MAIN );
155     set_capability( "interface", 151 );
156     set_callbacks( Open, Close );
157
158     add_shortcut("qt");
159
160     add_submodule();
161         set_description( "Dialogs provider" );
162         set_capability( "dialogs provider", 51 );
163
164         add_integer( "qt-display-mode", QT_NORMAL_MODE, NULL,
165                      QT_MODE_TEXT, QT_MODE_LONGTEXT, false );
166             change_integer_list( i_mode_list, psz_mode_list_text, NULL );
167
168         add_bool( "qt-notification", true, NULL, NOTIFICATION_TEXT,
169                   NOTIFICATION_LONGTEXT, false );
170
171         add_float_with_range( "qt-opacity", 1., 0.1, 1., NULL, OPACITY_TEXT,
172                   OPACITY_LONGTEXT, false );
173         add_bool( "qt-blingbling", true, NULL, BLING_TEXT,
174                   BLING_TEXT, false );
175
176         add_bool( "qt-system-tray", true, NULL, SYSTRAY_TEXT,
177                 SYSTRAY_LONGTEXT, false);
178         add_bool( "qt-start-minimized", false, NULL, MINIMIZED_TEXT,
179                 MINIMIZED_LONGTEXT, true);
180         add_bool( "qt-name-in-title", true, NULL, TITLE_TEXT,
181                   TITLE_LONGTEXT, false );
182         add_bool( "qt-fs-controller", true, NULL, QT_FULLSCREEN_TEXT,
183                   QT_FULLSCREEN_TEXT, false );
184
185         add_bool( "qt-volume-complete", false, NULL, COMPLETEVOL_TEXT,
186                 COMPLETEVOL_LONGTEXT, true );
187         add_bool( "qt-autosave-volume", false, NULL, SAVEVOL_TEXT,
188                 SAVEVOL_TEXT, true );
189         add_string( "qt-filedialog-path", NULL, NULL, FILEDIALOG_PATH_TEXT,
190                 FILEDIALOG_PATH_TEXT, true );
191             change_autosave();
192             change_internal();
193
194         add_bool( "qt-adv-options", false, NULL, ADVANCED_OPTIONS_TEXT,
195                   ADVANCED_OPTIONS_LONGTEXT, true );
196         add_bool( "qt-advanced-pref", false, NULL, ADVANCED_PREFS_TEXT,
197                 ADVANCED_PREFS_LONGTEXT, false );
198         add_bool( "qt-error-dialogs", true, NULL, ERROR_TEXT,
199                 ERROR_TEXT, false );
200 #ifdef UPDATE_CHECK
201         add_bool( "qt-updates-notif", true, NULL, UPDATER_TEXT,
202                 UPDATER_LONGTEXT, false );
203         add_integer( "qt-updates-days", 7, NULL, UPDATER_DAYS_TEXT,
204                 UPDATER_DAYS_TEXT, false );
205 #endif
206         add_string( "qt-slider-colours",
207                 "255;255;255;20;226;20;255;176;15;235;30;20",
208                 NULL, SLIDERCOL_TEXT, SLIDERCOL_LONGTEXT, false );
209
210         add_bool( "qt-privacy-ask", true, NULL, PRIVACY_TEXT, PRIVACY_TEXT,
211                 false );
212             change_internal();
213
214         set_callbacks( OpenDialogs, Close );
215
216 #if !defined (Q_WS_X11) || HAS_QT43
217     add_submodule();
218         set_capability( "vout window", 50 );
219         set_callbacks( WindowOpen, WindowClose );
220 #endif
221 vlc_module_end();
222
223 #if defined(Q_WS_WIN)
224 bool WinQtApp::winEventFilter( MSG *msg, long *result )
225 {
226     switch( msg->message )
227     {
228         case 0x0319: /* WM_APPCOMMAND 0x0319 */
229         DefWindowProc( msg->hwnd, msg->message, msg->wParam, msg->lParam );
230         break;
231     }
232     return false;
233 }
234 #endif /* Q_WS_WIN */
235
236 /*****************************************************************************
237  * Module callbacks
238  *****************************************************************************/
239 static int Open( vlc_object_t *p_this )
240 {
241     intf_thread_t *p_intf = (intf_thread_t *)p_this;
242
243 #if defined Q_WS_X11 && defined HAVE_X11_XLIB_H
244     /* Thanks for libqt4 calling exit() in QApplication::QApplication()
245      * instead of returning an error, we have to check the X11 display */
246     Display *p_display = XOpenDisplay( NULL );
247     if( !p_display )
248     {
249         msg_Err( p_intf, "Could not connect to X server" );
250         return VLC_EGENERIC;
251     }
252     XCloseDisplay( p_display );
253 #endif
254
255     /* Allocations */
256     p_intf->p_sys = (intf_sys_t *)malloc( sizeof( intf_sys_t ) );
257     if( !p_intf->p_sys )
258         return VLC_ENOMEM;
259     memset( p_intf->p_sys, 0, sizeof( intf_sys_t ) );
260
261     p_intf->pf_run = Run;
262     p_intf->p_sys->p_mi = NULL;
263
264     /* Access to the playlist */
265     p_intf->p_sys->p_playlist = pl_Hold( p_intf );
266     /* Listen to the messages */
267 <<<<<<< Updated upstream:modules/gui/qt4/qt4.cpp
268     //p_intf->p_sys->p_sub = msg_Subscribe( p_intf->p_libvlc, NULL, NULL );
269 =======
270     //p_intf->p_sys->p_sub = msg_Subscribe( p_intf );
271 >>>>>>> Stashed changes:modules/gui/qt4/qt4.cpp
272     /* one settings to rule them all */
273
274     var_Create( p_this, "window_widget", VLC_VAR_ADDRESS );
275     return VLC_SUCCESS;
276 }
277
278 static int OpenDialogs( vlc_object_t *p_this )
279 {
280     intf_thread_t *p_intf = (intf_thread_t *)p_this;
281     int val = Open( p_this );
282     if( val )
283         return val;
284
285     p_intf->pf_show_dialog = ShowDialog;
286     return VLC_SUCCESS;
287 }
288
289 static void Close( vlc_object_t *p_this )
290 {
291     intf_thread_t *p_intf = (intf_thread_t *)p_this;
292
293     if( p_intf->p_sys->b_isDialogProvider )
294     {
295         if( DialogsProvider::isAlive() )
296         {
297             msg_Dbg( p_intf, "Asking the DP to quit nicely" );
298             DialogEvent *event = new DialogEvent( INTF_DIALOG_EXIT, 0, NULL );
299             QApplication::postEvent( THEDP, static_cast<QEvent*>(event) );
300         }
301         vlc_thread_join( p_intf );
302     }
303
304     vlc_object_release( p_intf->p_sys->p_playlist );
305     //msg_Unsubscribe( p_intf->p_sys->p_sub );
306     free( p_intf->p_sys );
307 }
308
309
310 /*****************************************************************************
311  * Initialize the interface or the dialogs provider
312  *****************************************************************************/
313 static void Run( intf_thread_t *p_intf )
314 {
315     if( p_intf->pf_show_dialog )
316     {
317         if( vlc_thread_create( p_intf, "Qt dialogs", Init, 0, true ) )
318             msg_Err( p_intf, "failed to create Qt dialogs thread" );
319     }
320     else
321     {
322         int canc = vlc_savecancel ();
323         Init( VLC_OBJECT(p_intf) );
324         vlc_restorecancel( canc );
325     }
326 }
327
328 static QMutex windowLock;
329 static QWaitCondition windowWait;
330
331 static void *Init( vlc_object_t *obj )
332 {
333     intf_thread_t *p_intf = (intf_thread_t *)obj;
334     vlc_value_t val;
335     char dummy[] = "";
336     char *argv[] = { dummy };
337     int argc = 1;
338     int canc = vlc_savecancel ();
339
340     Q_INIT_RESOURCE( vlc );
341
342 #if !defined(WIN32) && !defined(__APPLE__)
343     /* KLUDGE:
344      * disables icon theme use because that makes Cleanlooks style bug
345      * because it asks gconf for some settings that timeout because of threads
346      * see commits 21610 21622 21654 for reference */
347
348     /* If you don't have a gconftool-2 binary, you should comment this line */
349     if( strcmp( qVersion(), "4.4.0" ) < 0 ) /* fixed in Qt 4.4.0 */
350         QApplication::setDesktopSettingsAware( false );
351 #endif
352
353     /* Start the QApplication here */
354 #ifdef WIN32
355     WinQtApp *app = new WinQtApp( argc, argv , true );
356 #else
357     QApplication *app = new QApplication( argc, argv , true );
358 #endif
359     p_intf->p_sys->p_app = app;
360
361     p_intf->p_sys->mainSettings = new QSettings(
362 #ifdef WIN32
363             QSettings::IniFormat,
364 #else
365             QSettings::NativeFormat,
366 #endif
367             QSettings::UserScope, "vlc", "vlc-qt-interface" );
368
369     /* Icon setting */
370     if( QDate::currentDate().dayOfYear() >= 354 )
371         app->setWindowIcon( QIcon( QPixmap(vlc_christmas_xpm) ) );
372     else
373         app->setWindowIcon( QIcon( QPixmap(vlc_xpm) ) );
374
375     /* Initialize timers and the Dialog Provider */
376     DialogsProvider::getInstance( p_intf );
377
378     QPointer<MainInterface> *miP = NULL;
379
380 #ifdef UPDATE_CHECK
381     /* Checking for VLC updates */
382     if( config_GetInt( p_intf, "qt-updates-notif" ) &&
383         !config_GetInt( p_intf, "qt-privacy-ask" ) )
384     {
385         int interval = config_GetInt( p_intf, "qt-updates-days" );
386         if( QDate::currentDate() >
387              getSettings()->value( "updatedate" ).toDate().addDays( interval ) )
388         {
389             /* The constructor of the update Dialog will do the 1st request */
390             UpdateDialog::getInstance( p_intf );
391             getSettings()->setValue( "updatedate", QDate::currentDate() );
392         }
393     }
394 #endif
395
396     /* Create the normal interface in non-DP mode */
397     if( !p_intf->pf_show_dialog )
398     {
399         p_intf->p_sys->p_mi = new MainInterface( p_intf );
400         /* We don't show it because it is done in the MainInterface constructor
401         p_mi->show(); */
402         p_intf->p_sys->b_isDialogProvider = false;
403
404         miP = new QPointer<MainInterface> (p_intf->p_sys->p_mi);
405         val.p_address = miP;
406         QMutexLocker locker (&windowLock);
407         var_Set (p_intf, "window_widget", val);
408         windowWait.wakeAll ();
409     }
410     else
411     {
412         vlc_thread_ready( p_intf );
413         p_intf->p_sys->b_isDialogProvider = true;
414     }
415
416     /* Explain to the core how to show a dialog :D */
417     p_intf->pf_show_dialog = ShowDialog;
418
419 #ifdef ENABLE_NLS
420     // Translation - get locale
421 #   if defined (WIN32) || defined (__APPLE__)
422     char* psz_tmp = config_GetPsz( p_intf, "language" );
423     QString lang = qfu( psz_tmp );
424     free( psz_tmp);
425     if (lang == "auto")
426         lang = QLocale::system().name();
427 #   else
428     QString lang = QLocale::system().name();
429 #   endif
430     // Translations for qt's own dialogs
431     QTranslator qtTranslator( 0 );
432     // Let's find the right path for the translation file
433 #if !defined( WIN32 )
434     QString path =  QString( QT4LOCALEDIR );
435 #else
436     QString path = QString( QString(config_GetDataDir()) + DIR_SEP +
437                             "locale" + DIR_SEP + "qt4" + DIR_SEP );
438 #endif
439     // files depending on locale
440     bool b_loaded = qtTranslator.load( path + "qt_" + lang );
441     if (!b_loaded)
442         msg_Dbg( p_intf, "Error while initializing qt-specific localization" );
443     app->installTranslator( &qtTranslator );
444 #endif  //ENABLE_NLS
445
446     /* Last settings */
447     app->setQuitOnLastWindowClosed( false );
448
449     /* Retrieve last known path used in file browsing */
450     char *psz_path = config_GetPsz( p_intf, "qt-filedialog-path" );
451     p_intf->p_sys->psz_filepath = EMPTY_STR( psz_path ) ? config_GetHomeDir()
452                                                         : psz_path;
453
454     /* Launch */
455     app->exec();
456
457     /* And quit */
458     msg_Dbg( p_intf, "Quitting the Qt4 Interface" );
459
460     if (miP)
461     {
462         QMutexLocker locker (&windowLock);
463
464         /* We need to warn to detach from any vout before
465          * deleting miP (WindowClose will not be called after it) */
466         p_intf->p_sys->p_mi->releaseVideo( NULL );
467
468         val.p_address = NULL;
469         var_Set (p_intf, "window_widget", val);
470         delete miP;
471     }
472
473     /* Destroy first the main interface because it is connected to some slots
474        in the MainInputManager */
475     delete p_intf->p_sys->p_mi;
476
477     /* Destroy all remaining windows,
478        because some are connected to some slots
479        in the MainInputManager
480        Settings must be destroyed after that.
481      */
482     DialogsProvider::killInstance();
483
484     /* Delete the configuration. Application has to be deleted after that. */
485     delete p_intf->p_sys->mainSettings;
486
487     /* Destroy the MainInputManager */
488     MainInputManager::killInstance();
489
490     /* Delete the application */
491     delete app;
492
493     /* Save the path */
494     config_PutPsz( p_intf, "qt-filedialog-path", p_intf->p_sys->psz_filepath );
495     free( psz_path );
496     vlc_restorecancel (canc);
497     return NULL;
498 }
499
500 /*****************************************************************************
501  * Callback to show a dialog
502  *****************************************************************************/
503 static void ShowDialog( intf_thread_t *p_intf, int i_dialog_event, int i_arg,
504                         intf_dialog_args_t *p_arg )
505 {
506     DialogEvent *event = new DialogEvent( i_dialog_event, i_arg, p_arg );
507     QApplication::postEvent( THEDP, static_cast<QEvent*>(event) );
508 }
509
510 /*****************************************************************************
511  * PopupMenuCB: callback to show the popupmenu.
512  *  We don't show the menu directly here because we don't want the
513  *  caller to block for a too long time.
514  *****************************************************************************/
515 static int PopupMenuCB( vlc_object_t *p_this, const char *psz_variable,
516                         vlc_value_t old_val, vlc_value_t new_val, void *param )
517 {
518     intf_thread_t *p_intf = (intf_thread_t *)param;
519     ShowDialog( p_intf, INTF_DIALOG_POPUPMENU, new_val.b_bool, 0 );
520     return VLC_SUCCESS;
521 }
522
523 /**
524  * Video output window provider
525  */
526 #include <vlc_window.h>
527
528 static int WindowControl (vout_window_t *, int, va_list);
529
530 static int WindowOpen (vlc_object_t *obj)
531 {
532     vout_window_t *wnd = (vout_window_t *)obj;
533
534     if (config_GetInt (obj, "embedded-video") <= 0)
535         return VLC_EGENERIC;
536
537     intf_thread_t *intf = (intf_thread_t *)
538         vlc_object_find_name (obj, "qt4", FIND_ANYWHERE);
539     if (intf == NULL)
540         return VLC_EGENERIC; /* Qt4 not in use */
541     assert (intf->i_object_type == VLC_OBJECT_INTF);
542
543     var_Create (intf, "window_widget", VLC_VAR_ADDRESS);
544
545     vlc_value_t ptrval;
546
547     windowLock.lock ();
548     msg_Dbg (obj, "waiting for interface...");
549     for (;;)
550     {
551         var_Get (intf, "window_widget", &ptrval);
552         if (ptrval.p_address != NULL)
553             break;
554         windowWait.wait (&windowLock);
555     }
556
557     msg_Dbg (obj, "requesting window...");
558     QPointer<MainInterface> *miP = (QPointer<MainInterface> *)ptrval.p_address;
559     miP = new QPointer<MainInterface> (*miP); /* create our own copy */
560     vlc_object_release (intf);
561
562     if (miP->isNull ())
563         return VLC_EGENERIC;
564
565     wnd->handle = (*miP)->requestVideo (wnd->vout, &wnd->pos_x, &wnd->pos_y,
566                                         &wnd->width, &wnd->height);
567     windowLock.unlock ();
568
569     if (!wnd->handle)
570         return VLC_EGENERIC;
571
572     wnd->control = WindowControl;
573     wnd->p_private = miP;
574     return VLC_SUCCESS;
575 }
576
577 static int WindowControl (vout_window_t *wnd, int query, va_list args)
578 {
579     QPointer<MainInterface> *miP = (QPointer<MainInterface> *)wnd->p_private;
580     QMutexLocker locker (&windowLock);
581
582     if (miP->isNull ())
583         return VLC_EGENERIC;
584     return (*miP)->controlVideo (wnd->handle, query, args);
585 }
586
587 static void WindowClose (vlc_object_t *obj)
588 {
589     vout_window_t *wnd = (vout_window_t *)obj;
590     QPointer<MainInterface> *miP = (QPointer<MainInterface> *)wnd->p_private;
591     QMutexLocker locker (&windowLock);
592
593     if (!miP->isNull ())
594         (*miP)->releaseVideo( wnd->handle );
595     delete miP;
596 }