]> git.sesse.net Git - vlc/blob - modules/gui/qt4/qt4.cpp
43d7ba93eedce5fd53c6eb373cc53d4db46d8535
[vlc] / modules / gui / qt4 / qt4.cpp
1 /*****************************************************************************
2  * qt4.cpp : Qt interface
3  ****************************************************************************
4  * Copyright © 2006-2009 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
25 #ifdef HAVE_CONFIG_H
26 # include "config.h"
27 #endif
28
29 #include <QApplication>
30 #include <QDate>
31 #include <QMutex>
32
33 #include "qt4.hpp"
34
35 #include "input_manager.hpp"    /* THEMIM destruction */
36 #include "dialogs_provider.hpp" /* THEDP creation */
37 #include "main_interface.hpp"   /* MainInterface creation */
38 #include "extensions_manager.hpp" /* Extensions manager */
39 #include "managers/addons_manager.hpp" /* Addons manager */
40 #include "dialogs/help.hpp"     /* Launch Update */
41 #include "recents.hpp"          /* Recents Item destruction */
42 #include "util/qvlcapp.hpp"     /* QVLCApplication definition */
43 #include "components/playlist/playlist_model.hpp" /* for ~PLModel() */
44
45 #if defined (QT5_HAS_X11) || defined (Q_WS_X11)
46  #include <vlc_xlib.h>
47 #endif
48
49 #include <vlc_plugin.h>
50 #include <vlc_vout_window.h>
51
52 #ifdef _WIN32 /* For static builds */
53  #include <QtPlugin>
54  #if HAS_QT5
55   #ifdef QT_STATICPLUGIN
56    Q_IMPORT_PLUGIN(QWindowsIntegrationPlugin)
57    Q_IMPORT_PLUGIN(AccessibleFactory)
58   #endif
59  #else
60   Q_IMPORT_PLUGIN(qjpeg)
61   Q_IMPORT_PLUGIN(qtaccessiblewidgets)
62  #endif
63 #endif
64
65 /*****************************************************************************
66  * Local prototypes.
67  *****************************************************************************/
68 static int  OpenIntf     ( vlc_object_t * );
69 static int  OpenDialogs  ( vlc_object_t * );
70 static int  Open         ( vlc_object_t *, bool );
71 static void Close        ( vlc_object_t * );
72 static int  WindowOpen   ( vout_window_t *, const vout_window_cfg_t * );
73 static void WindowClose  ( vout_window_t * );
74 static void *Thread      ( void * );
75 static void ShowDialog   ( intf_thread_t *, int, int, intf_dialog_args_t * );
76
77 /*****************************************************************************
78  * Module descriptor
79  *****************************************************************************/
80 #define ADVANCED_PREFS_TEXT N_( "Show advanced preferences over simple ones" )
81 #define ADVANCED_PREFS_LONGTEXT N_( "Show advanced preferences and not simple "\
82                                     "preferences when opening the preferences "\
83                                     "dialog." )
84
85 #define SYSTRAY_TEXT N_( "Systray icon" )
86 #define SYSTRAY_LONGTEXT N_( "Show an icon in the systray " \
87                              "allowing you to control VLC media player " \
88                              "for basic actions." )
89
90 #define MINIMIZED_TEXT N_( "Start VLC with only a systray icon" )
91 #define MINIMIZED_LONGTEXT N_( "VLC will start with just an icon in " \
92                                "your taskbar" )
93
94 #define KEEPSIZE_TEXT N_( "Resize interface to the native video size" )
95 #define KEEPSIZE_LONGTEXT N_( "You have two choices:\n" \
96             " - The interface will resize to the native video size\n" \
97             " - The video will fit to the interface size\n " \
98             "By default, interface resize to the native video size." )
99
100 #define TITLE_TEXT N_( "Show playing item name in window title" )
101 #define TITLE_LONGTEXT N_( "Show the name of the song or video in the " \
102                            "controller window title." )
103
104 #define NOTIFICATION_TEXT N_( "Show notification popup on track change" )
105 #define NOTIFICATION_LONGTEXT N_( \
106     "Show a notification popup with the artist and track name when " \
107     "the current playlist item changes, when VLC is minimized or hidden." )
108
109 #define OPACITY_TEXT N_( "Windows opacity between 0.1 and 1" )
110 #define OPACITY_LONGTEXT N_( "Sets the windows opacity between 0.1 and 1 " \
111                              "for main interface, playlist and extended panel."\
112                              " This option only works with Windows and " \
113                              "X11 with composite extensions." )
114
115 #define OPACITY_FS_TEXT N_( "Fullscreen controller opacity between 0.1 and 1" )
116 #define OPACITY_FS_LONGTEXT N_( "Sets the fullscreen controller opacity between 0.1 and 1 " \
117                              "for main interface, playlist and extended panel."\
118                              " This option only works with Windows and " \
119                              "X11 with composite extensions." )
120
121
122 #define ERROR_TEXT N_( "Show unimportant error and warnings dialogs" )
123
124 #define UPDATER_TEXT N_( "Activate the updates availability notification" )
125 #define UPDATER_LONGTEXT N_( "Activate the automatic notification of new " \
126                             "versions of the software. It runs once every " \
127                             "two weeks." )
128 #define UPDATER_DAYS_TEXT N_("Number of days between two update checks")
129
130 #define PRIVACY_TEXT N_( "Ask for network policy at start" )
131
132 #define RECENTPLAY_TEXT N_( "Save the recently played items in the menu" )
133
134 #define RECENTPLAY_FILTER_TEXT N_( "List of words separated by | to filter" )
135 #define RECENTPLAY_FILTER_LONGTEXT N_( "Regular expression used to filter " \
136         "the recent items played in the player" )
137
138 #define SLIDERCOL_TEXT N_( "Define the colors of the volume slider " )
139 #define SLIDERCOL_LONGTEXT N_( "Define the colors of the volume slider\n" \
140                        "By specifying the 12 numbers separated by a ';'\n" \
141             "Default is '255;255;255;20;226;20;255;176;15;235;30;20'\n" \
142             "An alternative can be '30;30;50;40;40;100;50;50;160;150;150;255' ")
143
144 #define QT_MODE_TEXT N_( "Selection of the starting mode and look " )
145 #define QT_MODE_LONGTEXT N_( "Start VLC with:\n" \
146                              " - normal mode\n"  \
147                              " - a zone always present to show information " \
148                                   "as lyrics, album arts...\n" \
149                              " - minimal mode with limited controls" )
150
151 #define QT_FULLSCREEN_TEXT N_( "Show a controller in fullscreen mode" )
152 #define QT_NATIVEOPEN_TEXT N_( "Embed the file browser in open dialog" )
153
154 #define FULLSCREEN_NUMBER_TEXT N_( "Define which screen fullscreen goes" )
155 #define FULLSCREEN_NUMBER_LONGTEXT N_( "Screennumber of fullscreen, instead of " \
156                                        "same screen where interface is" )
157
158 #define QT_AUTOLOAD_EXTENSIONS_TEXT N_( "Load extensions on startup" )
159 #define QT_AUTOLOAD_EXTENSIONS_LONGTEXT N_( "Automatically load the "\
160                                             "extensions module on startup" )
161
162 #define QT_MINIMAL_MODE_TEXT N_("Start in minimal view (without menus)" )
163
164 #define QT_BGCONE_TEXT N_( "Display background cone or art" )
165 #define QT_BGCONE_LONGTEXT N_( "Display background cone or current album art " \
166                             "when not playing. " \
167                             "Can be disabled to prevent burning screen." )
168 #define QT_BGCONE_EXPANDS_TEXT N_( "Expanding background cone or art." )
169 #define QT_BGCONE_EXPANDS_LONGTEXT N_( "Background art fits window's size" )
170
171 #define QT_DISABLE_VOLUME_KEYS_TEXT N_( "Ignore keyboard volume buttons." )
172 #define QT_DISABLE_VOLUME_KEYS_LONGTEXT N_(                                             \
173     "With this option checked, the volume up, volume down and mute buttons on your "    \
174     "keyboard will always change your system volume. With this option unchecked, the "  \
175     "volume buttons will change VLC's volume when VLC is selected and change the "      \
176     "system volume when VLC is not selected." )
177
178 #define QT_PAUSE_MINIMIZED_TEXT N_( "Pause the video playback when minimized" )
179 #define QT_PAUSE_MINIMIZED_LONGTEXT N_( \
180     "With this option enabled, the playback will be automatically paused when minimizing the window." )
181
182 #define ICONCHANGE_TEXT N_( "Allow automatic icon changes")
183 #define ICONCHANGE_LONGTEXT N_( \
184     "This option allows the interface to change its icon on various occasions.")
185
186 #define VOLUME_MAX_TEXT N_( "Maximum Volume displayed" )
187
188 #define FULLSCREEN_CONTROL_PIXELS N_( "Fullscreen controller mouse sensitivity" )
189
190 #define CONTINUE_PLAYBACK_TEXT N_("Continue playback?")
191
192 static const int i_notification_list[] =
193     { NOTIFICATION_NEVER, NOTIFICATION_MINIMIZED, NOTIFICATION_ALWAYS };
194
195 static const char *const psz_notification_list_text[] =
196     { N_("Never"), N_("When minimized"), N_("Always") };
197
198 static const int i_continue_list[] =
199     { 0, 1, 2 };
200
201 static const char *const psz_continue_list_text[] =
202     { N_("Never"), N_("Ask"), N_("Always") };
203
204
205 /**********************************************************************/
206 vlc_module_begin ()
207     set_shortname( "Qt" )
208     set_description( N_("Qt interface") )
209     set_category( CAT_INTERFACE )
210     set_subcategory( SUBCAT_INTERFACE_MAIN )
211     set_capability( "interface", 151 )
212     set_callbacks( OpenIntf, Close )
213
214     add_shortcut("qt")
215
216     add_bool( "qt-minimal-view", false, QT_MINIMAL_MODE_TEXT,
217               QT_MINIMAL_MODE_TEXT, false );
218
219     add_bool( "qt-system-tray", true, SYSTRAY_TEXT, SYSTRAY_LONGTEXT, false)
220
221     add_integer( "qt-notification", NOTIFICATION_MINIMIZED,
222                  NOTIFICATION_TEXT,
223                  NOTIFICATION_LONGTEXT, false )
224             change_integer_list( i_notification_list, psz_notification_list_text )
225
226     add_bool( "qt-start-minimized", false, MINIMIZED_TEXT,
227               MINIMIZED_LONGTEXT, true)
228     add_bool( "qt-pause-minimized", false, QT_PAUSE_MINIMIZED_TEXT,
229               QT_PAUSE_MINIMIZED_LONGTEXT, false )
230
231     add_float_with_range( "qt-opacity", 1., 0.1, 1., OPACITY_TEXT,
232                           OPACITY_LONGTEXT, false )
233     add_float_with_range( "qt-fs-opacity", 0.8, 0.1, 1., OPACITY_FS_TEXT,
234                           OPACITY_FS_LONGTEXT, false )
235
236     add_bool( "qt-video-autoresize", true, KEEPSIZE_TEXT,
237               KEEPSIZE_LONGTEXT, false )
238     add_bool( "qt-name-in-title", true, TITLE_TEXT,
239               TITLE_LONGTEXT, false )
240     add_bool( "qt-fs-controller", true, QT_FULLSCREEN_TEXT,
241               QT_FULLSCREEN_TEXT, false )
242
243     add_bool( "qt-recentplay", true, RECENTPLAY_TEXT,
244               RECENTPLAY_TEXT, false )
245     add_string( "qt-recentplay-filter", "",
246                 RECENTPLAY_FILTER_TEXT, RECENTPLAY_FILTER_LONGTEXT, false )
247     add_integer( "qt-continue", 1, CONTINUE_PLAYBACK_TEXT, CONTINUE_PLAYBACK_TEXT, false )
248             change_integer_list(i_continue_list, psz_continue_list_text )
249
250 #ifdef UPDATE_CHECK
251     add_bool( "qt-updates-notif", true, UPDATER_TEXT,
252               UPDATER_LONGTEXT, false )
253     add_integer_with_range( "qt-updates-days", 3, 0, 180,
254               UPDATER_DAYS_TEXT, UPDATER_DAYS_TEXT, false )
255 #endif
256
257 #ifdef _WIN32
258     add_bool( "qt-disable-volume-keys"             /* name */,
259               true                                 /* default value */,
260               QT_DISABLE_VOLUME_KEYS_TEXT          /* text */,
261               QT_DISABLE_VOLUME_KEYS_LONGTEXT      /* longtext */,
262               false                                /* advanced mode only */)
263 #endif
264
265     add_bool( "qt-embedded-open", false, QT_NATIVEOPEN_TEXT,
266                QT_NATIVEOPEN_TEXT, false )
267
268
269     add_bool( "qt-advanced-pref", false, ADVANCED_PREFS_TEXT,
270               ADVANCED_PREFS_LONGTEXT, false )
271     add_bool( "qt-error-dialogs", true, ERROR_TEXT,
272               ERROR_TEXT, false )
273
274     add_string( "qt-slider-colours", "153;210;153;20;210;20;255;199;15;245;39;29",
275                 SLIDERCOL_TEXT, SLIDERCOL_LONGTEXT, false )
276
277     add_bool( "qt-privacy-ask", true, PRIVACY_TEXT, PRIVACY_TEXT,
278               false )
279         change_private ()
280
281     add_integer( "qt-fullscreen-screennumber", -1, FULLSCREEN_NUMBER_TEXT,
282                FULLSCREEN_NUMBER_LONGTEXT, false );
283
284     add_bool( "qt-autoload-extensions", true,
285               QT_AUTOLOAD_EXTENSIONS_TEXT, QT_AUTOLOAD_EXTENSIONS_LONGTEXT,
286               false )
287
288     add_bool( "qt-bgcone", true, QT_BGCONE_TEXT, QT_BGCONE_LONGTEXT, true )
289     add_bool( "qt-bgcone-expands", false, QT_BGCONE_EXPANDS_TEXT,
290               QT_BGCONE_EXPANDS_LONGTEXT, true )
291
292     add_bool( "qt-icon-change", true, ICONCHANGE_TEXT, ICONCHANGE_LONGTEXT, true )
293
294     add_integer_with_range( "qt-max-volume", 125, 60, 300, VOLUME_MAX_TEXT, VOLUME_MAX_TEXT, true)
295
296     add_integer_with_range( "qt-fs-sensitivity", 3, 0, 4000, FULLSCREEN_CONTROL_PIXELS,
297             FULLSCREEN_CONTROL_PIXELS, true)
298
299     add_obsolete_bool( "qt-blingbling" )      /* Suppressed since 1.0.0 */
300     add_obsolete_integer( "qt-display-mode" ) /* Suppressed since 1.1.0 */
301
302     add_obsolete_bool( "qt-adv-options" )     /* Since 2.0.0 */
303     add_obsolete_bool( "qt-volume-complete" ) /* Since 2.0.0 */
304     add_obsolete_integer( "qt-startvolume" )  /* Since 2.0.0 */
305
306     cannot_unload_broken_library()
307
308     add_submodule ()
309         set_description( "Dialogs provider" )
310         set_capability( "dialogs provider", 51 )
311
312         set_callbacks( OpenDialogs, Close )
313
314     add_submodule ()
315         set_capability( "vout window", 0 )
316         set_callbacks( WindowOpen, WindowClose )
317
318 vlc_module_end ()
319
320 /*****************************************/
321
322 /* Ugly, but the Qt interface assumes single instance anyway */
323 static vlc_sem_t ready;
324 static QMutex lock;
325 static bool busy = false;
326 static bool active = false;
327
328 /*****************************************************************************
329  * Module callbacks
330  *****************************************************************************/
331
332 #ifdef Q_OS_MAC
333 /* Used to abort the app.exec() on OSX after libvlc_Quit is called */
334 #include "../../../lib/libvlc_internal.h" /* libvlc_SetExitHandler */
335 static void Abort( void *obj )
336 {
337     QVLCApp::triggerQuit();
338 }
339 #endif
340
341 static void RegisterIntf( intf_thread_t *p_this )
342 {
343     playlist_t *pl = p_this->p_sys->p_playlist;
344     var_Create (pl, "qt4-iface", VLC_VAR_ADDRESS);
345     var_SetAddress (pl, "qt4-iface", p_this);
346     var_Create (pl, "window", VLC_VAR_STRING);
347     var_SetString (pl, "window", "qt4,any");
348 }
349
350 /* Open Interface */
351 static int Open( vlc_object_t *p_this, bool isDialogProvider )
352 {
353     intf_thread_t *p_intf = (intf_thread_t *)p_this;
354
355 #if defined (QT5_HAS_X11) || defined (Q_WS_X11)
356     if( !vlc_xlib_init( p_this ) )
357         return VLC_EGENERIC;
358
359     Display *p_display = XOpenDisplay( NULL );
360     if( !p_display )
361     {
362         msg_Err( p_intf, "Could not connect to X server" );
363         return VLC_EGENERIC;
364     }
365     XCloseDisplay( p_display );
366 #endif
367
368     QMutexLocker locker (&lock);
369     if (busy)
370     {
371         msg_Err (p_this, "cannot start Qt multiple times");
372         return VLC_EGENERIC;
373     }
374
375     /* Allocations of p_sys */
376     intf_sys_t *p_sys = p_intf->p_sys = new intf_sys_t;
377     p_intf->p_sys->b_isDialogProvider = isDialogProvider;
378     p_sys->p_mi = NULL;
379     p_sys->pl_model = NULL;
380
381     /* set up the playlist to work on */
382     if( isDialogProvider )
383         p_intf->p_sys->p_playlist = pl_Get( (intf_thread_t *)p_intf->p_parent );
384     else
385         p_intf->p_sys->p_playlist = pl_Get( p_intf );
386
387     /* */
388     vlc_sem_init (&ready, 0);
389 #ifdef Q_OS_MAC
390     /* Run mainloop on the main thread as Cocoa requires */
391     libvlc_SetExitHandler( p_intf->p_libvlc, Abort, p_intf );
392     Thread( (void *)p_intf );
393 #else
394     if( vlc_clone( &p_sys->thread, Thread, p_intf, VLC_THREAD_PRIORITY_LOW ) )
395     {
396         delete p_sys;
397         return VLC_ENOMEM;
398     }
399 #endif
400
401     /* Wait for the interface to be ready. This prevents the main
402      * LibVLC thread from starting video playback before we can create
403      * an embedded video window. */
404     vlc_sem_wait (&ready);
405     vlc_sem_destroy (&ready);
406     busy = active = true;
407
408 #ifndef Q_OS_MAC
409     if( !isDialogProvider )
410         RegisterIntf( p_intf );
411 #endif
412
413     return VLC_SUCCESS;
414 }
415
416 /* Open Qt interface */
417 static int OpenIntf( vlc_object_t *p_this )
418 {
419     return Open( p_this, false );
420 }
421
422 /* Open Dialog Provider */
423 static int OpenDialogs( vlc_object_t *p_this )
424 {
425     return Open( p_this, true );
426 }
427
428 static void Close( vlc_object_t *p_this )
429 {
430     intf_thread_t *p_intf = (intf_thread_t *)p_this;
431     intf_sys_t *p_sys = p_intf->p_sys;
432
433     if( !p_sys->b_isDialogProvider )
434     {
435         playlist_t *pl = THEPL;
436
437         var_Destroy (pl, "window");
438         var_Destroy (pl, "qt4-iface");
439         playlist_Deactivate (pl); /* release window provider if needed */
440     }
441
442     /* And quit */
443     msg_Dbg( p_this, "requesting exit..." );
444     QVLCApp::triggerQuit();
445
446     msg_Dbg( p_this, "waiting for UI thread..." );
447 #ifndef Q_OS_MAC
448     vlc_join (p_sys->thread, NULL);
449 #endif
450     delete p_sys;
451
452     QMutexLocker locker (&lock);
453     assert (busy);
454     busy = false;
455 }
456
457 static void *Thread( void *obj )
458 {
459     intf_thread_t *p_intf = (intf_thread_t *)obj;
460     MainInterface *p_mi;
461     char vlc_name[] = "vlc"; /* for WM_CLASS */
462 #ifdef QT5_HAS_X11
463     char platform_parm[] = "-platform";
464     char platform_value[] = "xcb";
465 #endif
466     char *argv[] = {
467         vlc_name,
468 #ifdef QT5_HAS_X11
469         platform_parm, platform_value,
470 #endif
471         NULL,
472     };
473     int argc = sizeof(argv) / sizeof(argv[0]) - 1;
474
475     Q_INIT_RESOURCE( vlc );
476
477     /* Start the QApplication here */
478     QVLCApp app( argc, argv );
479
480     p_intf->p_sys->p_app = &app;
481
482
483     /* All the settings are in the .conf/.ini style */
484     p_intf->p_sys->mainSettings = new QSettings(
485 #ifdef _WIN32
486             QSettings::IniFormat,
487 #else
488             QSettings::NativeFormat,
489 #endif
490             QSettings::UserScope, "vlc", "vlc-qt-interface" );
491
492     /* Icon setting, Mac uses icon from .icns */
493 #ifndef Q_OS_MAC
494     if( QDate::currentDate().dayOfYear() >= QT_XMAS_JOKE_DAY && var_InheritBool( p_intf, "qt-icon-change" ) )
495         app.setWindowIcon( QIcon::fromTheme( "vlc-xmas", QIcon( ":/logo/vlc128-xmas.png" ) ) );
496     else
497         app.setWindowIcon( QIcon::fromTheme( "vlc", QIcon( ":/logo/vlc256.png" ) ) );
498 #endif
499
500     /* Initialize the Dialog Provider and the Main Input Manager */
501     DialogsProvider::getInstance( p_intf );
502     MainInputManager *mim = MainInputManager::getInstance( p_intf );
503     /* initialize p_input (an input can already be running) */
504     input_thread_t *p_input = playlist_CurrentInput( THEPL );
505     if( p_input )
506         mim->getIM()->inputChangedHandler();
507
508 #ifdef UPDATE_CHECK
509     /* Checking for VLC updates */
510     if( var_InheritBool( p_intf, "qt-updates-notif" ) &&
511         !var_InheritBool( p_intf, "qt-privacy-ask" ) )
512     {
513         int interval = var_InheritInteger( p_intf, "qt-updates-days" );
514         if( QDate::currentDate() >
515              getSettings()->value( "updatedate" ).toDate().addDays( interval ) )
516         {
517             /* The constructor of the update Dialog will do the 1st request */
518             UpdateDialog::getInstance( p_intf );
519             getSettings()->setValue( "updatedate", QDate::currentDate() );
520         }
521     }
522 #endif
523
524     /* Create the normal interface in non-DP mode */
525     if( !p_intf->p_sys->b_isDialogProvider )
526     {
527         p_mi = new MainInterface( p_intf );
528         p_intf->p_sys->p_mi = p_mi;
529     }
530     else
531         p_mi = NULL;
532
533     /* Explain how to show a dialog :D */
534     p_intf->pf_show_dialog = ShowDialog;
535
536     /* Check window type from the Qt platform back-end */
537     p_intf->p_sys->voutWindowType = VOUT_WINDOW_TYPE_INVALID;
538 #if HAS_QT5 || defined (Q_WS_QPA)
539     QString platform = app.platformName();
540     if( platform == qfu("xcb") )
541         p_intf->p_sys->voutWindowType = VOUT_WINDOW_TYPE_XID;
542     else if( platform == qfu("windows") )
543         p_intf->p_sys->voutWindowType = VOUT_WINDOW_TYPE_HWND;
544     else if( platform == qfu("cocoa" ) )
545         p_intf->p_sys->voutWindowType = VOUT_WINDOW_TYPE_NSOBJECT;
546     else
547         msg_Err( p_intf, "unknown Qt platform: %s", qtu(platform) );
548 #elif defined (Q_WS_X11)
549     p_intf->p_sys->voutWindowType = VOUT_WINDOW_TYPE_XID;
550 #elif defined (Q_WS_WIN) || defined (Q_WS_PM)
551     p_intf->p_sys->voutWindowType = VOUT_WINDOW_TYPE_HWND;
552 #elif defined (Q_WS_MAC)
553     p_intf->p_sys->voutWindowType = VOUT_WINDOW_TYPE_NSOBJECT;
554 #endif
555
556     /* Tell the main LibVLC thread we are ready */
557     vlc_sem_post (&ready);
558
559 #ifdef Q_OS_MAC
560     /* We took over main thread, register and start here */
561     if( !p_intf->p_sys->b_isDialogProvider )
562     {
563         RegisterIntf( p_intf );
564         playlist_Play( THEPL );
565     }
566 #endif
567
568     /* Last settings */
569     app.setQuitOnLastWindowClosed( false );
570
571     /* Retrieve last known path used in file browsing */
572     p_intf->p_sys->filepath =
573          getSettings()->value( "filedialog-path", QVLCUserDir( VLC_HOME_DIR ) ).toString();
574
575     /* Loads and tries to apply the preferred QStyle */
576     QString s_style = getSettings()->value( "MainWindow/QtStyle", "" ).toString();
577     if( s_style.compare("") != 0 )
578         QApplication::setStyle( s_style );
579
580     /* Launch */
581     app.exec();
582
583     msg_Dbg( p_intf, "QApp exec() finished" );
584     if (p_mi != NULL)
585     {
586         QMutexLocker locker (&lock);
587         active = false;
588
589         p_intf->p_sys->p_mi = NULL;
590         /* Destroy first the main interface because it is connected to some
591            slots in the MainInputManager */
592         delete p_mi;
593     }
594
595     /* */
596     ExtensionsManager::killInstance();
597     AddonsManager::killInstance();
598
599     /* Destroy all remaining windows,
600        because some are connected to some slots
601        in the MainInputManager
602        Settings must be destroyed after that.
603      */
604     DialogsProvider::killInstance();
605
606     /* Delete the recentsMRL object before the configuration */
607     RecentsMRL::killInstance();
608
609     /* Save the path or delete if recent play are disabled */
610     if( var_InheritBool( p_intf, "qt-recentplay" ) )
611         getSettings()->setValue( "filedialog-path", p_intf->p_sys->filepath );
612     else
613         getSettings()->remove( "filedialog-path" );
614
615     /* */
616     delete p_intf->p_sys->pl_model;
617
618     /* Delete the configuration. Application has to be deleted after that. */
619     delete p_intf->p_sys->mainSettings;
620
621     /* Destroy the MainInputManager */
622     MainInputManager::killInstance();
623
624     /* Delete the application automatically */
625     return NULL;
626 }
627
628 /*****************************************************************************
629  * Callback to show a dialog
630  *****************************************************************************/
631 static void ShowDialog( intf_thread_t *p_intf, int i_dialog_event, int i_arg,
632                         intf_dialog_args_t *p_arg )
633 {
634     VLC_UNUSED( p_intf );
635     DialogEvent *event = new DialogEvent( i_dialog_event, i_arg, p_arg );
636     QApplication::postEvent( THEDP, event );
637 }
638
639 /**
640  * Video output window provider
641  *
642  * TODO move it out of here ?
643  */
644 static int WindowControl( vout_window_t *, int i_query, va_list );
645
646 static int WindowOpen( vout_window_t *p_wnd, const vout_window_cfg_t *cfg )
647 {
648     if( cfg->is_standalone )
649         return VLC_EGENERIC;
650
651     intf_thread_t *p_intf =
652         (intf_thread_t *)var_InheritAddress( p_wnd, "qt4-iface" );
653     if( !p_intf )
654     {   /* If another interface is used, this plugin cannot work */
655         msg_Dbg( p_wnd, "Qt interface not found" );
656         return VLC_EGENERIC;
657     }
658
659     if( cfg->type != VOUT_WINDOW_TYPE_INVALID
660      && cfg->type != p_intf->p_sys->voutWindowType )
661         return VLC_EGENERIC;
662
663     switch( p_intf->p_sys->voutWindowType )
664     {
665         case VOUT_WINDOW_TYPE_XID:
666             if( var_InheritBool( p_wnd, "video-wallpaper" ) )
667                 return VLC_EGENERIC;
668             break;
669     }
670
671     QMutexLocker locker (&lock);
672     if (unlikely(!active))
673         return VLC_EGENERIC;
674
675     MainInterface *p_mi = p_intf->p_sys->p_mi;
676     msg_Dbg( p_wnd, "requesting video window..." );
677
678     unsigned i_width = cfg->width;
679     unsigned i_height = cfg->height;
680
681     WId wid = p_mi->getVideo( p_wnd, &i_width, &i_height );
682     if( !wid )
683         return VLC_EGENERIC;
684
685     p_wnd->type = p_intf->p_sys->voutWindowType;
686
687     switch( p_wnd->type )
688     {
689         case VOUT_WINDOW_TYPE_XID:
690             p_wnd->handle.xid = (uintptr_t)wid;
691             p_wnd->display.x11 = NULL;
692             break;
693         case VOUT_WINDOW_TYPE_HWND:
694             p_wnd->handle.hwnd = (void *)wid;
695             break;
696         case VOUT_WINDOW_TYPE_NSOBJECT:
697             p_wnd->handle.nsobject = (void *)wid;
698             break;
699         default:
700             vlc_assert_unreachable();
701     }
702
703     p_wnd->control = WindowControl;
704     p_wnd->sys = (vout_window_sys_t*)p_mi;
705     return VLC_SUCCESS;
706 }
707
708 static int WindowControl( vout_window_t *p_wnd, int i_query, va_list args )
709 {
710     MainInterface *p_mi = (MainInterface *)p_wnd->sys;
711     QMutexLocker locker (&lock);
712
713     if (unlikely(!active))
714     {
715         msg_Warn (p_wnd, "video already released before control");
716         return VLC_EGENERIC;
717     }
718     return p_mi->controlVideo( i_query, args );
719 }
720
721 static void WindowClose( vout_window_t *p_wnd )
722 {
723     MainInterface *p_mi = (MainInterface *)p_wnd->sys;
724     QMutexLocker locker (&lock);
725
726     /* Normally, the interface terminates after the video. In the contrary, the
727      * Qt main loop is gone, so we cannot send any event to the user interface
728      * widgets. Ideally, we would keep the Qt main loop running until after
729      * the video window is released. But it is far simpler to just have the Qt
730      * thread destroy the window early, and to turn this function into a stub.
731      *
732      * That assumes the video output will behave sanely if it window is
733      * destroyed asynchronously.
734      * XCB and Xlib-XCB are fine with that. Plain Xlib wouldn't, */
735     if (unlikely(!active))
736     {
737         msg_Warn (p_wnd, "video already released");
738         return;
739     }
740     msg_Dbg (p_wnd, "releasing video...");
741     p_mi->releaseVideo();
742 }