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