]> git.sesse.net Git - vlc/blob - modules/gui/qt4/qt4.cpp
a94e94cb3aa2115802ae829e6de0c5030a4634d3
[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 #define VLC_MODULE_LICENSE VLC_LICENSE_GPL_2_PLUS
206
207 /**********************************************************************/
208 vlc_module_begin ()
209     set_shortname( "Qt" )
210     set_description( N_("Qt interface") )
211     set_category( CAT_INTERFACE )
212     set_subcategory( SUBCAT_INTERFACE_MAIN )
213     set_capability( "interface", 151 )
214     set_callbacks( OpenIntf, Close )
215
216     add_shortcut("qt")
217
218     add_bool( "qt-minimal-view", false, QT_MINIMAL_MODE_TEXT,
219               QT_MINIMAL_MODE_TEXT, false );
220
221     add_bool( "qt-system-tray", true, SYSTRAY_TEXT, SYSTRAY_LONGTEXT, false)
222
223     add_integer( "qt-notification", NOTIFICATION_MINIMIZED,
224                  NOTIFICATION_TEXT,
225                  NOTIFICATION_LONGTEXT, false )
226             change_integer_list( i_notification_list, psz_notification_list_text )
227
228     add_bool( "qt-start-minimized", false, MINIMIZED_TEXT,
229               MINIMIZED_LONGTEXT, true)
230     add_bool( "qt-pause-minimized", false, QT_PAUSE_MINIMIZED_TEXT,
231               QT_PAUSE_MINIMIZED_LONGTEXT, false )
232
233     add_float_with_range( "qt-opacity", 1., 0.1, 1., OPACITY_TEXT,
234                           OPACITY_LONGTEXT, false )
235     add_float_with_range( "qt-fs-opacity", 0.8, 0.1, 1., OPACITY_FS_TEXT,
236                           OPACITY_FS_LONGTEXT, false )
237
238     add_bool( "qt-video-autoresize", true, KEEPSIZE_TEXT,
239               KEEPSIZE_LONGTEXT, false )
240     add_bool( "qt-name-in-title", true, TITLE_TEXT,
241               TITLE_LONGTEXT, false )
242     add_bool( "qt-fs-controller", true, QT_FULLSCREEN_TEXT,
243               QT_FULLSCREEN_TEXT, false )
244
245     add_bool( "qt-recentplay", true, RECENTPLAY_TEXT,
246               RECENTPLAY_TEXT, false )
247     add_string( "qt-recentplay-filter", "",
248                 RECENTPLAY_FILTER_TEXT, RECENTPLAY_FILTER_LONGTEXT, false )
249     add_integer( "qt-continue", 1, CONTINUE_PLAYBACK_TEXT, CONTINUE_PLAYBACK_TEXT, false )
250             change_integer_list(i_continue_list, psz_continue_list_text )
251
252 #ifdef UPDATE_CHECK
253     add_bool( "qt-updates-notif", true, UPDATER_TEXT,
254               UPDATER_LONGTEXT, false )
255     add_integer_with_range( "qt-updates-days", 3, 0, 180,
256               UPDATER_DAYS_TEXT, UPDATER_DAYS_TEXT, false )
257 #endif
258
259 #ifdef _WIN32
260     add_bool( "qt-disable-volume-keys"             /* name */,
261               true                                 /* default value */,
262               QT_DISABLE_VOLUME_KEYS_TEXT          /* text */,
263               QT_DISABLE_VOLUME_KEYS_LONGTEXT      /* longtext */,
264               false                                /* advanced mode only */)
265 #endif
266
267     add_bool( "qt-embedded-open", false, QT_NATIVEOPEN_TEXT,
268                QT_NATIVEOPEN_TEXT, false )
269
270
271     add_bool( "qt-advanced-pref", false, ADVANCED_PREFS_TEXT,
272               ADVANCED_PREFS_LONGTEXT, false )
273     add_bool( "qt-error-dialogs", true, ERROR_TEXT,
274               ERROR_TEXT, false )
275
276     add_string( "qt-slider-colours", "153;210;153;20;210;20;255;199;15;245;39;29",
277                 SLIDERCOL_TEXT, SLIDERCOL_LONGTEXT, false )
278
279     add_bool( "qt-privacy-ask", true, PRIVACY_TEXT, PRIVACY_TEXT,
280               false )
281         change_private ()
282
283     add_integer( "qt-fullscreen-screennumber", -1, FULLSCREEN_NUMBER_TEXT,
284                FULLSCREEN_NUMBER_LONGTEXT, false );
285
286     add_bool( "qt-autoload-extensions", true,
287               QT_AUTOLOAD_EXTENSIONS_TEXT, QT_AUTOLOAD_EXTENSIONS_LONGTEXT,
288               false )
289
290     add_bool( "qt-bgcone", true, QT_BGCONE_TEXT, QT_BGCONE_LONGTEXT, true )
291     add_bool( "qt-bgcone-expands", false, QT_BGCONE_EXPANDS_TEXT,
292               QT_BGCONE_EXPANDS_LONGTEXT, true )
293
294     add_bool( "qt-icon-change", true, ICONCHANGE_TEXT, ICONCHANGE_LONGTEXT, true )
295
296     add_integer_with_range( "qt-max-volume", 125, 60, 300, VOLUME_MAX_TEXT, VOLUME_MAX_TEXT, true)
297
298     add_integer_with_range( "qt-fs-sensitivity", 3, 0, 4000, FULLSCREEN_CONTROL_PIXELS,
299             FULLSCREEN_CONTROL_PIXELS, true)
300
301     add_obsolete_bool( "qt-blingbling" )      /* Suppressed since 1.0.0 */
302     add_obsolete_integer( "qt-display-mode" ) /* Suppressed since 1.1.0 */
303
304     add_obsolete_bool( "qt-adv-options" )     /* Since 2.0.0 */
305     add_obsolete_bool( "qt-volume-complete" ) /* Since 2.0.0 */
306     add_obsolete_integer( "qt-startvolume" )  /* Since 2.0.0 */
307
308     cannot_unload_broken_library()
309
310     add_submodule ()
311         set_description( "Dialogs provider" )
312         set_capability( "dialogs provider", 51 )
313
314         set_callbacks( OpenDialogs, Close )
315
316     add_submodule ()
317         set_capability( "vout window", 0 )
318         set_callbacks( WindowOpen, WindowClose )
319
320 vlc_module_end ()
321
322 /*****************************************/
323
324 /* Ugly, but the Qt interface assumes single instance anyway */
325 static vlc_sem_t ready;
326 static QMutex lock;
327 static bool busy = false;
328 static bool active = false;
329
330 /*****************************************************************************
331  * Module callbacks
332  *****************************************************************************/
333
334 #ifdef Q_OS_MAC
335 /* Used to abort the app.exec() on OSX after libvlc_Quit is called */
336 #include "../../../lib/libvlc_internal.h" /* libvlc_SetExitHandler */
337 static void Abort( void *obj )
338 {
339     QVLCApp::triggerQuit();
340 }
341 #endif
342
343 static void RegisterIntf( intf_thread_t *p_this )
344 {
345     playlist_t *pl = p_this->p_sys->p_playlist;
346     var_Create (pl, "qt4-iface", VLC_VAR_ADDRESS);
347     var_SetAddress (pl, "qt4-iface", p_this);
348     var_Create (pl, "window", VLC_VAR_STRING);
349     var_SetString (pl, "window", "qt4,any");
350 }
351
352 /* Open Interface */
353 static int Open( vlc_object_t *p_this, bool isDialogProvider )
354 {
355     intf_thread_t *p_intf = (intf_thread_t *)p_this;
356
357 #if defined (QT5_HAS_X11) || defined (Q_WS_X11)
358     if( !vlc_xlib_init( p_this ) )
359         return VLC_EGENERIC;
360
361     Display *p_display = XOpenDisplay( NULL );
362     if( !p_display )
363     {
364         msg_Err( p_intf, "Could not connect to X server" );
365         return VLC_EGENERIC;
366     }
367     XCloseDisplay( p_display );
368 #endif
369
370     QMutexLocker locker (&lock);
371     if (busy)
372     {
373         msg_Err (p_this, "cannot start Qt multiple times");
374         return VLC_EGENERIC;
375     }
376
377     /* Allocations of p_sys */
378     intf_sys_t *p_sys = p_intf->p_sys = new intf_sys_t;
379     p_intf->p_sys->b_isDialogProvider = isDialogProvider;
380     p_sys->p_mi = NULL;
381     p_sys->pl_model = NULL;
382
383     /* set up the playlist to work on */
384     if( isDialogProvider )
385         p_intf->p_sys->p_playlist = pl_Get( (intf_thread_t *)p_intf->p_parent );
386     else
387         p_intf->p_sys->p_playlist = pl_Get( p_intf );
388
389     /* */
390     vlc_sem_init (&ready, 0);
391 #ifdef Q_OS_MAC
392     /* Run mainloop on the main thread as Cocoa requires */
393     libvlc_SetExitHandler( p_intf->p_libvlc, Abort, p_intf );
394     Thread( (void *)p_intf );
395 #else
396     if( vlc_clone( &p_sys->thread, Thread, p_intf, VLC_THREAD_PRIORITY_LOW ) )
397     {
398         delete p_sys;
399         return VLC_ENOMEM;
400     }
401 #endif
402
403     /* Wait for the interface to be ready. This prevents the main
404      * LibVLC thread from starting video playback before we can create
405      * an embedded video window. */
406     vlc_sem_wait (&ready);
407     vlc_sem_destroy (&ready);
408     busy = active = true;
409
410 #ifndef Q_OS_MAC
411     if( !isDialogProvider )
412         RegisterIntf( p_intf );
413 #endif
414
415     return VLC_SUCCESS;
416 }
417
418 /* Open Qt interface */
419 static int OpenIntf( vlc_object_t *p_this )
420 {
421     return Open( p_this, false );
422 }
423
424 /* Open Dialog Provider */
425 static int OpenDialogs( vlc_object_t *p_this )
426 {
427     return Open( p_this, true );
428 }
429
430 static void Close( vlc_object_t *p_this )
431 {
432     intf_thread_t *p_intf = (intf_thread_t *)p_this;
433     intf_sys_t *p_sys = p_intf->p_sys;
434
435     if( !p_sys->b_isDialogProvider )
436     {
437         playlist_t *pl = THEPL;
438
439         var_Destroy (pl, "window");
440         var_Destroy (pl, "qt4-iface");
441         playlist_Deactivate (pl); /* release window provider if needed */
442     }
443
444     /* And quit */
445     msg_Dbg( p_this, "requesting exit..." );
446     QVLCApp::triggerQuit();
447
448     msg_Dbg( p_this, "waiting for UI thread..." );
449 #ifndef Q_OS_MAC
450     vlc_join (p_sys->thread, NULL);
451 #endif
452     delete p_sys;
453
454     QMutexLocker locker (&lock);
455     assert (busy);
456     busy = false;
457 }
458
459 static void *Thread( void *obj )
460 {
461     intf_thread_t *p_intf = (intf_thread_t *)obj;
462     MainInterface *p_mi;
463     char vlc_name[] = "vlc"; /* for WM_CLASS */
464 #ifdef QT5_HAS_X11
465     char platform_parm[] = "-platform";
466     char platform_value[] = "xcb";
467 #endif
468     char *argv[] = {
469         vlc_name,
470 #ifdef QT5_HAS_X11
471         platform_parm, platform_value,
472 #endif
473         NULL,
474     };
475     int argc = sizeof(argv) / sizeof(argv[0]) - 1;
476
477     Q_INIT_RESOURCE( vlc );
478
479     /* Start the QApplication here */
480     QVLCApp app( argc, argv );
481
482     p_intf->p_sys->p_app = &app;
483
484
485     /* All the settings are in the .conf/.ini style */
486     p_intf->p_sys->mainSettings = new QSettings(
487 #ifdef _WIN32
488             QSettings::IniFormat,
489 #else
490             QSettings::NativeFormat,
491 #endif
492             QSettings::UserScope, "vlc", "vlc-qt-interface" );
493
494     /* Icon setting, Mac uses icon from .icns */
495 #ifndef Q_OS_MAC
496     if( QDate::currentDate().dayOfYear() >= QT_XMAS_JOKE_DAY && var_InheritBool( p_intf, "qt-icon-change" ) )
497         app.setWindowIcon( QIcon::fromTheme( "vlc-xmas", QIcon( ":/logo/vlc128-xmas.png" ) ) );
498     else
499         app.setWindowIcon( QIcon::fromTheme( "vlc", QIcon( ":/logo/vlc256.png" ) ) );
500 #endif
501
502     /* Initialize the Dialog Provider and the Main Input Manager */
503     DialogsProvider::getInstance( p_intf );
504     MainInputManager *mim = MainInputManager::getInstance( p_intf );
505     /* initialize p_input (an input can already be running) */
506     input_thread_t *p_input = playlist_CurrentInput( THEPL );
507     if( p_input )
508         mim->getIM()->inputChangedHandler();
509
510 #ifdef UPDATE_CHECK
511     /* Checking for VLC updates */
512     if( var_InheritBool( p_intf, "qt-updates-notif" ) &&
513         !var_InheritBool( p_intf, "qt-privacy-ask" ) )
514     {
515         int interval = var_InheritInteger( p_intf, "qt-updates-days" );
516         if( QDate::currentDate() >
517              getSettings()->value( "updatedate" ).toDate().addDays( interval ) )
518         {
519             /* The constructor of the update Dialog will do the 1st request */
520             UpdateDialog::getInstance( p_intf );
521             getSettings()->setValue( "updatedate", QDate::currentDate() );
522         }
523     }
524 #endif
525
526     /* Create the normal interface in non-DP mode */
527     if( !p_intf->p_sys->b_isDialogProvider )
528     {
529         p_mi = new MainInterface( p_intf );
530         p_intf->p_sys->p_mi = p_mi;
531     }
532     else
533         p_mi = NULL;
534
535     /* Explain how to show a dialog :D */
536     p_intf->pf_show_dialog = ShowDialog;
537
538     /* Check window type from the Qt platform back-end */
539     p_intf->p_sys->voutWindowType = VOUT_WINDOW_TYPE_INVALID;
540 #if HAS_QT5 || defined (Q_WS_QPA)
541     QString platform = app.platformName();
542     if( platform == qfu("xcb") )
543         p_intf->p_sys->voutWindowType = VOUT_WINDOW_TYPE_XID;
544     else if( platform == qfu("windows") )
545         p_intf->p_sys->voutWindowType = VOUT_WINDOW_TYPE_HWND;
546     else if( platform == qfu("cocoa" ) )
547         p_intf->p_sys->voutWindowType = VOUT_WINDOW_TYPE_NSOBJECT;
548     else
549         msg_Err( p_intf, "unknown Qt platform: %s", qtu(platform) );
550 #elif defined (Q_WS_X11)
551     p_intf->p_sys->voutWindowType = VOUT_WINDOW_TYPE_XID;
552 #elif defined (Q_WS_WIN) || defined (Q_WS_PM)
553     p_intf->p_sys->voutWindowType = VOUT_WINDOW_TYPE_HWND;
554 #elif defined (Q_WS_MAC)
555     p_intf->p_sys->voutWindowType = VOUT_WINDOW_TYPE_NSOBJECT;
556 #endif
557
558     /* Tell the main LibVLC thread we are ready */
559     vlc_sem_post (&ready);
560
561 #ifdef Q_OS_MAC
562     /* We took over main thread, register and start here */
563     if( !p_intf->p_sys->b_isDialogProvider )
564     {
565         RegisterIntf( p_intf );
566         playlist_Play( THEPL );
567     }
568 #endif
569
570     /* Last settings */
571     app.setQuitOnLastWindowClosed( false );
572
573     /* Retrieve last known path used in file browsing */
574     p_intf->p_sys->filepath =
575          getSettings()->value( "filedialog-path", QVLCUserDir( VLC_HOME_DIR ) ).toString();
576
577     /* Loads and tries to apply the preferred QStyle */
578     QString s_style = getSettings()->value( "MainWindow/QtStyle", "" ).toString();
579     if( s_style.compare("") != 0 )
580         QApplication::setStyle( s_style );
581
582     /* Launch */
583     app.exec();
584
585     msg_Dbg( p_intf, "QApp exec() finished" );
586     if (p_mi != NULL)
587     {
588         QMutexLocker locker (&lock);
589         active = false;
590
591         p_intf->p_sys->p_mi = NULL;
592         /* Destroy first the main interface because it is connected to some
593            slots in the MainInputManager */
594         delete p_mi;
595     }
596
597     /* */
598     ExtensionsManager::killInstance();
599     AddonsManager::killInstance();
600
601     /* Destroy all remaining windows,
602        because some are connected to some slots
603        in the MainInputManager
604        Settings must be destroyed after that.
605      */
606     DialogsProvider::killInstance();
607
608     /* Delete the recentsMRL object before the configuration */
609     RecentsMRL::killInstance();
610
611     /* Save the path or delete if recent play are disabled */
612     if( var_InheritBool( p_intf, "qt-recentplay" ) )
613         getSettings()->setValue( "filedialog-path", p_intf->p_sys->filepath );
614     else
615         getSettings()->remove( "filedialog-path" );
616
617     /* */
618     delete p_intf->p_sys->pl_model;
619
620     /* Delete the configuration. Application has to be deleted after that. */
621     delete p_intf->p_sys->mainSettings;
622
623     /* Destroy the MainInputManager */
624     MainInputManager::killInstance();
625
626     /* Delete the application automatically */
627     return NULL;
628 }
629
630 /*****************************************************************************
631  * Callback to show a dialog
632  *****************************************************************************/
633 static void ShowDialog( intf_thread_t *p_intf, int i_dialog_event, int i_arg,
634                         intf_dialog_args_t *p_arg )
635 {
636     VLC_UNUSED( p_intf );
637     DialogEvent *event = new DialogEvent( i_dialog_event, i_arg, p_arg );
638     QApplication::postEvent( THEDP, event );
639 }
640
641 /**
642  * Video output window provider
643  *
644  * TODO move it out of here ?
645  */
646 static int WindowControl( vout_window_t *, int i_query, va_list );
647
648 static int WindowOpen( vout_window_t *p_wnd, const vout_window_cfg_t *cfg )
649 {
650     if( cfg->is_standalone )
651         return VLC_EGENERIC;
652
653     intf_thread_t *p_intf =
654         (intf_thread_t *)var_InheritAddress( p_wnd, "qt4-iface" );
655     if( !p_intf )
656     {   /* If another interface is used, this plugin cannot work */
657         msg_Dbg( p_wnd, "Qt interface not found" );
658         return VLC_EGENERIC;
659     }
660
661     if( cfg->type != VOUT_WINDOW_TYPE_INVALID
662      && cfg->type != p_intf->p_sys->voutWindowType )
663         return VLC_EGENERIC;
664
665     switch( p_intf->p_sys->voutWindowType )
666     {
667         case VOUT_WINDOW_TYPE_XID:
668             if( var_InheritBool( p_wnd, "video-wallpaper" ) )
669                 return VLC_EGENERIC;
670             break;
671     }
672
673     QMutexLocker locker (&lock);
674     if (unlikely(!active))
675         return VLC_EGENERIC;
676
677     MainInterface *p_mi = p_intf->p_sys->p_mi;
678     msg_Dbg( p_wnd, "requesting video window..." );
679
680     unsigned i_width = cfg->width;
681     unsigned i_height = cfg->height;
682
683     WId wid = p_mi->getVideo( p_wnd, &i_width, &i_height );
684     if( !wid )
685         return VLC_EGENERIC;
686
687     p_wnd->type = p_intf->p_sys->voutWindowType;
688
689     switch( p_wnd->type )
690     {
691         case VOUT_WINDOW_TYPE_XID:
692             p_wnd->handle.xid = (uintptr_t)wid;
693             p_wnd->display.x11 = NULL;
694             break;
695         case VOUT_WINDOW_TYPE_HWND:
696             p_wnd->handle.hwnd = (void *)wid;
697             break;
698         case VOUT_WINDOW_TYPE_NSOBJECT:
699             p_wnd->handle.nsobject = (void *)wid;
700             break;
701         default:
702             vlc_assert_unreachable();
703     }
704
705     p_wnd->control = WindowControl;
706     p_wnd->sys = (vout_window_sys_t*)p_mi;
707     return VLC_SUCCESS;
708 }
709
710 static int WindowControl( vout_window_t *p_wnd, int i_query, va_list args )
711 {
712     MainInterface *p_mi = (MainInterface *)p_wnd->sys;
713     QMutexLocker locker (&lock);
714
715     if (unlikely(!active))
716     {
717         msg_Warn (p_wnd, "video already released before control");
718         return VLC_EGENERIC;
719     }
720     return p_mi->controlVideo( i_query, args );
721 }
722
723 static void WindowClose( vout_window_t *p_wnd )
724 {
725     MainInterface *p_mi = (MainInterface *)p_wnd->sys;
726     QMutexLocker locker (&lock);
727
728     /* Normally, the interface terminates after the video. In the contrary, the
729      * Qt main loop is gone, so we cannot send any event to the user interface
730      * widgets. Ideally, we would keep the Qt main loop running until after
731      * the video window is released. But it is far simpler to just have the Qt
732      * thread destroy the window early, and to turn this function into a stub.
733      *
734      * That assumes the video output will behave sanely if it window is
735      * destroyed asynchronously.
736      * XCB and Xlib-XCB are fine with that. Plain Xlib wouldn't, */
737     if (unlikely(!active))
738     {
739         msg_Warn (p_wnd, "video already released");
740         return;
741     }
742     msg_Dbg (p_wnd, "releasing video...");
743     p_mi->releaseVideo();
744 }