qt4.cpp 19.9 KB
Newer Older
Clément Stenac's avatar
Clément Stenac committed
1 2 3
/*****************************************************************************
 * qt4.cpp : QT4 interface
 ****************************************************************************
Jean-Baptiste Kempf's avatar
Jean-Baptiste Kempf committed
4
 * Copyright © 2006-2009 the VideoLAN team
5
 * $Id$
Clément Stenac's avatar
Clément Stenac committed
6 7
 *
 * Authors: Clément Stenac <zorglub@videolan.org>
8
 *          Jean-Baptiste Kempf <jb@videolan.org>
Clément Stenac's avatar
Clément Stenac committed
9 10 11 12 13 14 15 16 17 18 19 20 21
 *
 * This program is free software; you can redistribute it and/or modify
 * it under the terms of the GNU General Public License as published by
 * the Free Software Foundation; either version 2 of the License, or
 * (at your option) any later version.
 *
 * This program is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 * GNU General Public License for more details.
 *
 * You should have received a copy of the GNU General Public License
 * 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 26 27
#ifdef HAVE_CONFIG_H
# include "config.h"
#endif
Clément Stenac's avatar
Clément Stenac committed
28 29

#include <QApplication>
30
#include <QDate>
31

Clément Stenac's avatar
Clément Stenac committed
32
#include "qt4.hpp"
Jean-Baptiste Kempf's avatar
Jean-Baptiste Kempf committed
33

34 35 36 37 38
#include "input_manager.hpp"    /* THEMIM creation */
#include "dialogs_provider.hpp" /* THEDP creation */
#include "main_interface.hpp"   /* MainInterface creation */
#include "dialogs/help.hpp"     /* Launch Update */
#include "recents.hpp"          /* Recents Item destruction */
Jean-Baptiste Kempf's avatar
Jean-Baptiste Kempf committed
39
#include "util/qvlcapp.hpp"     /* QVLCApplication definition */
40

41
#ifdef Q_WS_X11
Jean-Baptiste Kempf's avatar
Jean-Baptiste Kempf committed
42
 #include <X11/Xlib.h>
Rafaël Carré's avatar
Rafaël Carré committed
43 44
#endif

Clément Stenac's avatar
Clément Stenac committed
45
#include "../../../share/vlc32x32.xpm"
46
#include "../../../share/vlc32x32-christmas.xpm"
47
#include <vlc_plugin.h>
Clément Stenac's avatar
Clément Stenac committed
48

49
#ifdef WIN32 /* For static builds */
50 51
 #include <QtPlugin>
 Q_IMPORT_PLUGIN(qjpeg)
52
 Q_IMPORT_PLUGIN(qtaccessiblewidgets)
53 54
#endif

Clément Stenac's avatar
Clément Stenac committed
55 56 57
/*****************************************************************************
 * Local prototypes.
 *****************************************************************************/
58
static int  OpenIntf     ( vlc_object_t * );
Clément Stenac's avatar
Clément Stenac committed
59
static int  OpenDialogs  ( vlc_object_t * );
60 61
static int  Open         ( vlc_object_t *, bool );
static void Close        ( vlc_object_t * );
62 63
static int  WindowOpen   ( vlc_object_t * );
static void WindowClose  ( vlc_object_t * );
64
static void *Thread      ( void * );
Clément Stenac's avatar
Clément Stenac committed
65 66 67 68 69
static void ShowDialog   ( intf_thread_t *, int, int, intf_dialog_args_t * );

/*****************************************************************************
 * Module descriptor
 *****************************************************************************/
70
#define ADVANCED_PREFS_TEXT N_( "Show advanced preferences over simple ones" )
71 72
#define ADVANCED_PREFS_LONGTEXT N_( "Show advanced preferences and not simple "\
                                    "preferences when opening the preferences "\
73
                                    "dialog." )
74

75 76 77
#define SYSTRAY_TEXT N_( "Systray icon" )
#define SYSTRAY_LONGTEXT N_( "Show an icon in the systray " \
                             "allowing you to control VLC media player " \
78
                             "for basic actions." )
79

80
#define MINIMIZED_TEXT N_( "Start VLC with only a systray icon" )
81 82
#define MINIMIZED_LONGTEXT N_( "VLC will start with just an icon in " \
                               "your taskbar" )
83

84 85 86 87 88
#define KEEPSIZE_TEXT N_( "Resize interface to the native video size" )
#define KEEPSIZE_LONGTEXT N_( "You have two choices:\n" \
            " - The interface will resize to the native video size\n" \
            " - The video will fit to the interface size\n " \
            "By default, interface resize to the native video size." )
89

90 91
#define TITLE_TEXT N_( "Show playing item name in window title" )
#define TITLE_LONGTEXT N_( "Show the name of the song or video in the " \
92
                           "controler window title." )
93

94
#define NOTIFICATION_TEXT N_( "Show notification popup on track change" )
95 96
#define NOTIFICATION_LONGTEXT N_( \
    "Show a notification popup with the artist and track name when " \
97
    "the current playlist item changes, when VLC is minimized or hidden." )
98

99 100
#define ADVANCED_OPTIONS_TEXT N_( "Advanced options" )
#define ADVANCED_OPTIONS_LONGTEXT N_( "Show all the advanced options " \
101
                                      "in the dialogs." )
102

103
#define OPACITY_TEXT N_( "Windows opacity between 0.1 and 1" )
104
#define OPACITY_LONGTEXT N_( "Sets the windows opacity between 0.1 and 1 " \
Jean-Baptiste Kempf's avatar
Jean-Baptiste Kempf committed
105
                             "for main interface, playlist and extended panel."\
106 107
                             " This option only works with Windows and " \
                             "X11 with composite extensions." )
108

109
#define OPACITY_FS_TEXT N_( "Fullscreen controller opacity opacity between 0.1 and 1" )
110 111 112 113 114 115
#define OPACITY_FS_LONGTEXT N_( "Sets the fullscreen controller opacity between 0.1 and 1 " \
                             "for main interface, playlist and extended panel."\
                             " This option only works with Windows and " \
                             "X11 with composite extensions." )


116
#define ERROR_TEXT N_( "Show unimportant error and warnings dialogs" )
117

118
#define UPDATER_TEXT N_( "Activate the updates availability notification" )
119
#define UPDATER_LONGTEXT N_( "Activate the automatic notification of new " \
120 121
                            "versions of the software. It runs once every " \
                            "two weeks." )
Antoine Cellerier's avatar
Antoine Cellerier committed
122
#define UPDATER_DAYS_TEXT N_("Number of days between two update checks")
123

124 125 126 127 128
#define COMPLETEVOL_TEXT N_( "Allow the volume to be set to 400%" )
#define COMPLETEVOL_LONGTEXT N_( "Allow the volume to have range from 0% to " \
                                 "400%, instead of 0% to 200%. This option " \
                                 "can distort the audio, since it uses " \
                                 "software amplification." )
129

130 131
#define SAVEVOL_TEXT N_( "Automatically save the volume on exit" )

132
#define PRIVACY_TEXT N_( "Ask for network policy at start" )
133

Ludovic Fauvet's avatar
Ludovic Fauvet committed
134
#define RECENTPLAY_TEXT N_( "Save the recently played items in the menu" )
135

Ludovic Fauvet's avatar
Ludovic Fauvet committed
136
#define RECENTPLAY_FILTER_TEXT N_( "List of words separated by | to filter" )
137 138
#define RECENTPLAY_FILTER_LONGTEXT N_( "Regular expression used to filter " \
        "the recent items played in the player" )
Ludovic Fauvet's avatar
Ludovic Fauvet committed
139

140 141 142 143
#define SLIDERCOL_TEXT N_( "Define the colors of the volume slider " )
#define SLIDERCOL_LONGTEXT N_( "Define the colors of the volume slider\n" \
                       "By specifying the 12 numbers separated by a ';'\n" \
            "Default is '255;255;255;20;226;20;255;176;15;235;30;20'\n" \
144
            "An alternative can be '30;30;50;40;40;100;50;50;160;150;150;255' ")
145 146 147 148

#define QT_MODE_TEXT N_( "Selection of the starting mode and look " )
#define QT_MODE_LONGTEXT N_( "Start VLC with:\n" \
                             " - normal mode\n"  \
149
                             " - a zone always present to show information " \
150 151 152
                                  "as lyrics, album arts...\n" \
                             " - minimal mode with limited controls" )

153
#define QT_FULLSCREEN_TEXT N_( "Show a controller in fullscreen mode" )
Rémi Denis-Courmont's avatar
Rémi Denis-Courmont committed
154
#define QT_NATIVEOPEN_TEXT N_( "Embed the file browser in open dialog" )
155

156 157 158 159
#define FULLSCREEN_NUMBER_TEXT N_( "Define which screen fullscreen goes" )
#define FULLSCREEN_NUMBER_LONGTEXT N_( "Screennumber of fullscreen, instead of" \
                                       "same screen where interface is" )

160 161 162 163
#define QT_AUTOLOAD_EXTENSIONS_TEXT N_( "Load extensions on startup" )
#define QT_AUTOLOAD_EXTENSIONS_LONGTEXT N_( "Automatically load the "\
                                            "extensions module on startup" )

164
#define QT_MINIMAL_MODE_TEXT N_("Start in minimal view (without menus)" )
Jean-Baptiste Kempf's avatar
Jean-Baptiste Kempf committed
165 166

/**********************************************************************/
167 168 169
vlc_module_begin ()
    set_shortname( "Qt" )
    set_description( N_("Qt interface") )
170
    set_category( CAT_INTERFACE )
171 172
    set_subcategory( SUBCAT_INTERFACE_MAIN )
    set_capability( "interface", 151 )
173
    set_callbacks( OpenIntf, Close )
174 175

    add_shortcut("qt")
176 177 178

    add_bool( "qt-minimal-view", false, NULL, QT_MINIMAL_MODE_TEXT,
              QT_MINIMAL_MODE_TEXT, false );
179 180

    add_bool( "qt-notification", true, NULL, NOTIFICATION_TEXT,
Rémi Denis-Courmont's avatar
Rémi Denis-Courmont committed
181
              NOTIFICATION_LONGTEXT, false )
182 183

    add_float_with_range( "qt-opacity", 1., 0.1, 1., NULL, OPACITY_TEXT,
Rémi Denis-Courmont's avatar
Rémi Denis-Courmont committed
184
                          OPACITY_LONGTEXT, false )
185 186
    add_float_with_range( "qt-fs-opacity", 0.8, 0.1, 1., NULL, OPACITY_FS_TEXT,
                          OPACITY_FS_LONGTEXT, false )
187 188

    add_bool( "qt-system-tray", true, NULL, SYSTRAY_TEXT,
Rémi Denis-Courmont's avatar
Rémi Denis-Courmont committed
189
              SYSTRAY_LONGTEXT, false)
190
    add_bool( "qt-start-minimized", false, NULL, MINIMIZED_TEXT,
Rémi Denis-Courmont's avatar
Rémi Denis-Courmont committed
191
              MINIMIZED_LONGTEXT, true)
192
    add_bool( "qt-video-autoresize", true, NULL, KEEPSIZE_TEXT,
193
              KEEPSIZE_LONGTEXT, false )
194
    add_bool( "qt-name-in-title", true, NULL, TITLE_TEXT,
Rémi Denis-Courmont's avatar
Rémi Denis-Courmont committed
195
              TITLE_LONGTEXT, false )
196
    add_bool( "qt-fs-controller", true, NULL, QT_FULLSCREEN_TEXT,
Rémi Denis-Courmont's avatar
Rémi Denis-Courmont committed
197
              QT_FULLSCREEN_TEXT, false )
198 199

    add_bool( "qt-volume-complete", false, NULL, COMPLETEVOL_TEXT,
Rémi Denis-Courmont's avatar
Rémi Denis-Courmont committed
200
              COMPLETEVOL_LONGTEXT, true )
201
    add_bool( "qt-autosave-volume", false, NULL, SAVEVOL_TEXT,
Rémi Denis-Courmont's avatar
Rémi Denis-Courmont committed
202
              SAVEVOL_TEXT, true )
203

204 205
    add_bool( "qt-embedded-open", false, NULL, QT_NATIVEOPEN_TEXT,
               QT_NATIVEOPEN_TEXT, false )
206
    add_bool( "qt-recentplay", true, NULL, RECENTPLAY_TEXT,
Rémi Denis-Courmont's avatar
Rémi Denis-Courmont committed
207
              RECENTPLAY_TEXT, false )
208
    add_string( "qt-recentplay-filter", "", NULL,
Rémi Denis-Courmont's avatar
Rémi Denis-Courmont committed
209
                RECENTPLAY_FILTER_TEXT, RECENTPLAY_FILTER_LONGTEXT, false )
210

211
    add_bool( "qt-adv-options", false, NULL, ADVANCED_OPTIONS_TEXT,
Rémi Denis-Courmont's avatar
Rémi Denis-Courmont committed
212
              ADVANCED_OPTIONS_LONGTEXT, true )
213
    add_bool( "qt-advanced-pref", false, NULL, ADVANCED_PREFS_TEXT,
Rémi Denis-Courmont's avatar
Rémi Denis-Courmont committed
214
              ADVANCED_PREFS_LONGTEXT, false )
215
    add_bool( "qt-error-dialogs", true, NULL, ERROR_TEXT,
Rémi Denis-Courmont's avatar
Rémi Denis-Courmont committed
216
              ERROR_TEXT, false )
217
#ifdef UPDATE_CHECK
218
    add_bool( "qt-updates-notif", true, NULL, UPDATER_TEXT,
Rémi Denis-Courmont's avatar
Rémi Denis-Courmont committed
219
              UPDATER_LONGTEXT, false )
220
    add_integer( "qt-updates-days", 7, NULL, UPDATER_DAYS_TEXT,
Rémi Denis-Courmont's avatar
Rémi Denis-Courmont committed
221
                 UPDATER_DAYS_TEXT, false )
222
#endif
223
    add_string( "qt-slider-colours",
224
                "255;255;255;20;210;20;255;199;15;245;39;29",
Rémi Denis-Courmont's avatar
Rémi Denis-Courmont committed
225
                NULL, SLIDERCOL_TEXT, SLIDERCOL_LONGTEXT, false )
226

227
    add_bool( "qt-privacy-ask", true, NULL, PRIVACY_TEXT, PRIVACY_TEXT,
Rémi Denis-Courmont's avatar
Rémi Denis-Courmont committed
228
              false )
229
        change_private ()
230

231 232 233
    add_integer( "qt-fullscreen-screennumber", -1, NULL, FULLSCREEN_NUMBER_TEXT,
               FULLSCREEN_NUMBER_LONGTEXT, false );

234 235 236 237
    add_bool( "qt-autoload-extensions", true, NULL,
              QT_AUTOLOAD_EXTENSIONS_TEXT, QT_AUTOLOAD_EXTENSIONS_LONGTEXT,
              false )

238
    add_obsolete_bool( "qt-blingbling" ) /* Suppressed since 1.0.0 */
239
    add_obsolete_integer( "qt-display-mode" ) /* Suppressed since 1.1.0 */
240

241
#ifdef WIN32
242
    cannot_unload_broken_library()
243 244
#endif

245 246 247
    add_submodule ()
        set_description( "Dialogs provider" )
        set_capability( "dialogs provider", 51 )
248

249
        set_callbacks( OpenDialogs, Close )
250

251
#if defined(Q_WS_X11) || defined(Q_WS_WIN)
252
    add_submodule ()
253 254
#if defined(Q_WS_X11)
        set_capability( "vout window xid", 50 )
255
#elif defined(Q_WS_WIN)
256 257
        set_capability( "vout window hwnd", 50 )
#endif
258
        set_callbacks( WindowOpen, WindowClose )
259
#endif
260

261
vlc_module_end ()
Clément Stenac's avatar
Clément Stenac committed
262

Jean-Baptiste Kempf's avatar
Jean-Baptiste Kempf committed
263 264
/*****************************************/

Rémi Denis-Courmont's avatar
Rémi Denis-Courmont committed
265
/* Ugly, but the Qt4 interface assumes single instance anyway */
Rémi Denis-Courmont's avatar
Rémi Denis-Courmont committed
266
static vlc_sem_t ready;
267 268 269
#ifdef Q_WS_X11
static char *x11_display = NULL;
#endif
270 271 272 273 274
static struct
{
    vlc_mutex_t lock;
    bool busy;
} one = { VLC_STATIC_MUTEX, false };
275

Clément Stenac's avatar
Clément Stenac committed
276 277 278
/*****************************************************************************
 * Module callbacks
 *****************************************************************************/
Jean-Baptiste Kempf's avatar
Jean-Baptiste Kempf committed
279 280

/* Open Interface */
281
static int Open( vlc_object_t *p_this, bool isDialogProvider )
Clément Stenac's avatar
Clément Stenac committed
282 283
{
    intf_thread_t *p_intf = (intf_thread_t *)p_this;
284

285
#ifdef Q_WS_X11
286 287
    if( !XInitThreads() )
        return VLC_EGENERIC;
288 289

    char *display = var_CreateGetNonEmptyString( p_intf, "x11-display" );
290
    Display *p_display = XOpenDisplay( x11_display );
Rafaël Carré's avatar
Rafaël Carré committed
291 292
    if( !p_display )
    {
293
        msg_Err( p_intf, "Could not connect to X server" );
294
        free (display);
295 296
        return VLC_EGENERIC;
    }
297
    XCloseDisplay( p_display );
298 299
#else
    char *display = NULL;
300
#endif
301

302 303 304 305 306 307
    bool busy;
    vlc_mutex_lock (&one.lock);
    busy = one.busy;
    one.busy = true;
    vlc_mutex_unlock (&one.lock);
    if (busy)
308 309
    {
        msg_Err (p_this, "cannot start Qt4 multiple times");
310
        free (display);
311 312 313
        return VLC_EGENERIC;
    }

Jean-Baptiste Kempf's avatar
Jean-Baptiste Kempf committed
314 315
    /* Allocations of p_sys */
    intf_sys_t *p_sys = p_intf->p_sys = new intf_sys_t;
316
    p_intf->p_sys->b_isDialogProvider = isDialogProvider;
317
    p_sys->p_mi = NULL;
318
    p_sys->p_playlist = pl_Get( p_intf );
319

Jean-Baptiste Kempf's avatar
Jean-Baptiste Kempf committed
320
    /* */
Rémi Denis-Courmont's avatar
Rémi Denis-Courmont committed
321 322 323
#ifdef Q_WS_X11
    x11_display = display;
#endif
Rémi Denis-Courmont's avatar
Rémi Denis-Courmont committed
324
    vlc_sem_init (&ready, 0);
325
    if( vlc_clone( &p_sys->thread, Thread, p_intf, VLC_THREAD_PRIORITY_LOW ) )
326 327
    {
        delete p_sys;
328
        free (display);
329 330 331
        vlc_mutex_lock (&one.lock);
        one.busy = false;
        vlc_mutex_unlock (&one.lock);
Christophe Mutricy's avatar
Christophe Mutricy committed
332
        return VLC_ENOMEM;
333
    }
334 335

    /* */
Rémi Denis-Courmont's avatar
Rémi Denis-Courmont committed
336 337
    vlc_sem_wait (&ready);
    vlc_sem_destroy (&ready);
338

339 340
    if( !p_sys->b_isDialogProvider )
    {
341 342 343
        playlist_t *pl = pl_Get(p_this);
        var_Create (pl, "qt4-iface", VLC_VAR_ADDRESS);
        var_SetAddress (pl, "qt4-iface", p_this);
344
    }
Clément Stenac's avatar
Clément Stenac committed
345 346 347
    return VLC_SUCCESS;
}

348 349 350 351 352 353
/* Open qt4 interface */
static int OpenIntf( vlc_object_t *p_this )
{
    return Open( p_this, false );
}

Jean-Baptiste Kempf's avatar
Jean-Baptiste Kempf committed
354
/* Open Dialog Provider */
Clément Stenac's avatar
Clément Stenac committed
355 356
static int OpenDialogs( vlc_object_t *p_this )
{
357
    return Open( p_this, true );
Clément Stenac's avatar
Clément Stenac committed
358 359 360 361 362
}

static void Close( vlc_object_t *p_this )
{
    intf_thread_t *p_intf = (intf_thread_t *)p_this;
363 364
    intf_sys_t *p_sys = p_intf->p_sys;

365
    if( !p_sys->b_isDialogProvider )
366
        var_Destroy (pl_Get(p_this), "qt4-iface");
367

368
    QVLCApp::triggerQuit();
369

370
    vlc_join (p_sys->thread, NULL);
371 372 373 374
#ifdef Q_WS_X11
    free (x11_display);
    x11_display = NULL;
#endif
375
    delete p_sys;
376 377 378
    vlc_mutex_lock (&one.lock);
    one.busy = false;
    vlc_mutex_unlock (&one.lock);
Clément Stenac's avatar
Clément Stenac committed
379 380
}

381
static void *Thread( void *obj )
Clément Stenac's avatar
Clément Stenac committed
382
{
Rémi Denis-Courmont's avatar
Rémi Denis-Courmont committed
383
    intf_thread_t *p_intf = (intf_thread_t *)obj;
384
    MainInterface *p_mi;
385
    char dummy[] = "vlc"; /* for WM_CLASS */
386
    char *argv[4] = { dummy, NULL, };
Clément Stenac's avatar
Clément Stenac committed
387
    int argc = 1;
388

Rafaël Carré's avatar
Rafaël Carré committed
389
    Q_INIT_RESOURCE( vlc );
390 391

    /* Start the QApplication here */
392
#ifdef Q_WS_X11
393
    if( x11_display != NULL )
394 395
    {
        argv[argc++] = const_cast<char *>("-display");
396
        argv[argc++] = x11_display;
397 398
        argv[argc] = NULL;
    }
399
#endif
400

401
    QVLCApp app( argc, argv );
402

403
    p_intf->p_sys->p_app = &app;
Jean-Baptiste Kempf's avatar
Jean-Baptiste Kempf committed
404

Jean-Baptiste Kempf's avatar
Jean-Baptiste Kempf committed
405 406

    /* All the settings are in the .conf/.ini style */
407 408 409 410 411 412 413 414
    p_intf->p_sys->mainSettings = new QSettings(
#ifdef WIN32
            QSettings::IniFormat,
#else
            QSettings::NativeFormat,
#endif
            QSettings::UserScope, "vlc", "vlc-qt-interface" );

Jean-Baptiste Kempf's avatar
Jean-Baptiste Kempf committed
415
    /* Icon setting */
Jean-Baptiste Kempf's avatar
Jean-Baptiste Kempf committed
416
    if( QDate::currentDate().dayOfYear() >= 352 ) /* One Week before Xmas */
417
        app.setWindowIcon( QIcon(vlc_christmas_xpm) );
418
    else
419
        app.setWindowIcon( QIcon(vlc_xpm) );
Rafaël Carré's avatar
Rafaël Carré committed
420

Jean-Baptiste Kempf's avatar
Jean-Baptiste Kempf committed
421
    /* Initialize timers and the Dialog Provider */
422
    DialogsProvider::getInstance( p_intf );
Clément Stenac's avatar
Clément Stenac committed
423

424 425
    /* Detect screensize for small screens like TV or EEEpc*/
    p_intf->p_sys->i_screenHeight =
426
        app.QApplication::desktop()->availableGeometry().height();
427

428 429
#ifdef UPDATE_CHECK
    /* Checking for VLC updates */
Rémi Denis-Courmont's avatar
Rémi Denis-Courmont committed
430 431
    if( var_InheritBool( p_intf, "qt-updates-notif" ) &&
        !var_InheritBool( p_intf, "qt-privacy-ask" ) )
432
    {
Rémi Denis-Courmont's avatar
Rémi Denis-Courmont committed
433
        int interval = var_InheritInteger( p_intf, "qt-updates-days" );
434 435 436 437 438 439 440 441 442 443
        if( QDate::currentDate() >
             getSettings()->value( "updatedate" ).toDate().addDays( interval ) )
        {
            /* The constructor of the update Dialog will do the 1st request */
            UpdateDialog::getInstance( p_intf );
            getSettings()->setValue( "updatedate", QDate::currentDate() );
        }
    }
#endif

Jean-Baptiste Kempf's avatar
Jean-Baptiste Kempf committed
444
    /* Create the normal interface in non-DP mode */
445
    if( !p_intf->p_sys->b_isDialogProvider )
446
        p_mi = new MainInterface( p_intf );
447
    else
448
        p_mi = NULL;
449
    p_intf->p_sys->p_mi = p_mi;
450

451 452 453
    /* Explain how to show a dialog :D */
    p_intf->pf_show_dialog = ShowDialog;

454
    /* */
Rémi Denis-Courmont's avatar
Rémi Denis-Courmont committed
455
    vlc_sem_post (&ready);
456

457
    /* Last settings */
458
    app.setQuitOnLastWindowClosed( false );
459

Jean-Baptiste Kempf's avatar
Jean-Baptiste Kempf committed
460
    /* Retrieve last known path used in file browsing */
461
    p_intf->p_sys->filepath =
462
         getSettings()->value( "filedialog-path", QVLCUserDir( VLC_HOME_DIR ) ).toString();
463

464 465 466 467 468
    /* Loads and tries to apply the preferred QStyle */
    QString s_style = getSettings()->value( "MainWindow/QtStyle", "" ).toString();
    if( s_style.compare("") != 0 )
        QApplication::setStyle( s_style );

469
    /* Launch */
470
    app.exec();
471 472

    /* And quit */
473 474
    QApplication::closeAllWindows();

475
    if (p_mi != NULL)
476
    {
Rémi Denis-Courmont's avatar
Rémi Denis-Courmont committed
477 478 479
#warning BUG!
        /* FIXME: the video window may still be registerd at this point */
        /* See LP#448082 as an example. */
480

Rémi Denis-Courmont's avatar
Rémi Denis-Courmont committed
481
        p_intf->p_sys->p_mi = NULL;
482 483
        /* Destroy first the main interface because it is connected to some
           slots in the MainInputManager */
484
        delete p_mi;
485
    }
486

487 488 489 490 491
    /* Destroy all remaining windows,
       because some are connected to some slots
       in the MainInputManager
       Settings must be destroyed after that.
     */
Clément Stenac's avatar
Clément Stenac committed
492
    DialogsProvider::killInstance();
493

Ludovic Fauvet's avatar
Ludovic Fauvet committed
494 495 496
    /* Delete the recentsMRL object before the configuration */
    RecentsMRL::killInstance();

497 498 499
    /* Save the path */
    getSettings()->setValue( "filedialog-path", p_intf->p_sys->filepath );

500 501
    /* Delete the configuration. Application has to be deleted after that. */
    delete p_intf->p_sys->mainSettings;
502 503 504 505

    /* Destroy the MainInputManager */
    MainInputManager::killInstance();

506
    /* Delete the application automatically */
507
    return NULL;
Clément Stenac's avatar
Clément Stenac committed
508 509 510 511 512 513 514 515
}

/*****************************************************************************
 * Callback to show a dialog
 *****************************************************************************/
static void ShowDialog( intf_thread_t *p_intf, int i_dialog_event, int i_arg,
                        intf_dialog_args_t *p_arg )
{
516
    VLC_UNUSED( p_intf );
Clément Stenac's avatar
Clément Stenac committed
517
    DialogEvent *event = new DialogEvent( i_dialog_event, i_arg, p_arg );
518
    QApplication::postEvent( THEDP, event );
Clément Stenac's avatar
Clément Stenac committed
519
}
520

521 522
/**
 * Video output window provider
523 524
 *
 * TODO move it out of here ?
525
 */
526
#include <vlc_vout_window.h>
527

528
static int WindowControl( vout_window_t *, int i_query, va_list );
529

530
static int WindowOpen( vlc_object_t *p_obj )
531
{
532 533 534 535
    vout_window_t *p_wnd = (vout_window_t*)p_obj;

    /* */
    if( p_wnd->cfg->is_standalone )
536
        return VLC_EGENERIC;
537 538 539 540
#if defined (Q_WS_X11)
    if( var_InheritBool( p_obj, "video-wallpaper" ) )
        return VLC_EGENERIC;
#endif
541

542
    vlc_value_t val;
543
    if( var_Inherit( p_obj, "qt4-iface", VLC_VAR_ADDRESS, &val ) )
544 545 546 547 548
        val.p_address = NULL;

    intf_thread_t *p_intf = (intf_thread_t *)val.p_address;

    if( !p_intf )
549
    {   /* If another interface is used, this plugin cannot work */
550
        msg_Dbg( p_obj, "Qt4 interface not found" );
551 552
        return VLC_EGENERIC;
    }
553

554 555 556 557 558 559 560
    MainInterface *p_mi = p_intf->p_sys->p_mi;
    msg_Dbg( p_obj, "requesting video..." );

    int i_x = p_wnd->cfg->x;
    int i_y = p_wnd->cfg->y;
    unsigned i_width = p_wnd->cfg->width;
    unsigned i_height = p_wnd->cfg->height;
561

562
#if defined (Q_WS_X11)
563 564
    p_wnd->handle.xid = p_mi->getVideo( &i_x, &i_y, &i_width, &i_height );
    if( !p_wnd->handle.xid )
565
        return VLC_EGENERIC;
566
    p_wnd->display.x11 = x11_display;
567

568
#elif defined (Q_WS_WIN)
569 570
    p_wnd->handle.hwnd = p_mi->getVideo( &i_x, &i_y, &i_width, &i_height );
    if( !p_wnd->handle.hwnd )
571
        return VLC_EGENERIC;
572 573
#else
# error FIXME
574 575
#endif

576 577
    p_wnd->control = WindowControl;
    p_wnd->sys = (vout_window_sys_t*)p_mi;
578 579 580
    return VLC_SUCCESS;
}

581
static int WindowControl( vout_window_t *p_wnd, int i_query, va_list args )
582
{
583 584
    MainInterface *p_mi = (MainInterface *)p_wnd->sys;
    return p_mi->controlVideo( i_query, args );
585 586
}

587
static void WindowClose( vlc_object_t *p_obj )
588
{
589 590 591 592 593
    vout_window_t *p_wnd = (vout_window_t*)p_obj;
    MainInterface *p_mi = (MainInterface *)p_wnd->sys;

    msg_Dbg( p_obj, "releasing video..." );
    p_mi->releaseVideo();
594
}
595