]> git.sesse.net Git - vlc/blob - modules/gui/qt4/main_interface.cpp
Qt: fix video widget size
[vlc] / modules / gui / qt4 / main_interface.cpp
1 /*****************************************************************************
2  * main_interface.cpp : Main interface
3  ****************************************************************************
4  * Copyright (C) 2006-2008 the VideoLAN team
5  * $Id$
6  *
7  * Authors: ClĂ©ment Stenac <zorglub@videolan.org>
8  *          Jean-Baptiste Kempf <jb@videolan.org>
9  *          Ilkka Ollakka <ileoo@videolan.org>
10  *
11  * This program is free software; you can redistribute it and/or modify
12  * it under the terms of the GNU General Public License as published by
13  * the Free Software Foundation; either version 2 of the License, or
14  * (at your option) any later version.
15  *
16  * This program is distributed in the hope that it will be useful,
17  * but WITHOUT ANY WARRANTY; without even the implied warranty of
18  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
19  * GNU General Public License for more details.
20  *
21  * You should have received a copy of the GNU General Public License
22  * along with this program; if not, write to the Free Software
23  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston MA 02110-1301, USA.
24  *****************************************************************************/
25
26 #ifdef HAVE_CONFIG_H
27 # include "config.h"
28 #endif
29
30 #include "qt4.hpp"
31
32 #include "main_interface.hpp"
33 #include "input_manager.hpp"
34 #include "actions_manager.hpp"
35
36 #include "util/customwidgets.hpp"
37 #include "util/qt_dirs.hpp"
38
39 #include "components/interface_widgets.hpp"
40 #include "components/controller.hpp"
41 #include "components/playlist/playlist.hpp"
42
43 #include "menus.hpp"
44 #include "recents.hpp"
45
46 #include <QCloseEvent>
47 #include <QKeyEvent>
48
49 #include <QUrl>
50 #include <QSize>
51 #include <QDate>
52
53 #include <QMenu>
54 #include <QMenuBar>
55 #include <QStatusBar>
56 #include <QLabel>
57 #include <QGroupBox>
58 #include <QPushButton>
59
60 #include <assert.h>
61
62 #include <vlc_keys.h> /* Wheel event */
63 #include <vlc_vout.h>
64
65 /* Callback prototypes */
66 static int PopupMenuCB( vlc_object_t *p_this, const char *psz_variable,
67                         vlc_value_t old_val, vlc_value_t new_val, void *param );
68 static int IntfShowCB( vlc_object_t *p_this, const char *psz_variable,
69                        vlc_value_t old_val, vlc_value_t new_val, void *param );
70 static int InteractCallback( vlc_object_t *, const char *, vlc_value_t,
71                              vlc_value_t, void *);
72
73 MainInterface::MainInterface( intf_thread_t *_p_intf ) : QVLCMW( _p_intf )
74 {
75     /* Variables initialisation */
76     // need_components_update = false;
77     bgWidget             = NULL;
78     videoWidget          = NULL;
79     playlistWidget       = NULL;
80     sysTray              = NULL;
81     videoIsActive        = false;
82     playlistVisible      = false;
83     input_name           = "";
84     fullscreenControls   = NULL;
85
86     /* Ask for privacy */
87     askForPrivacy();
88
89     /**
90      *  Configuration and settings
91      *  Pre-building of interface
92      **/
93     /* Main settings */
94     setFocusPolicy( Qt::StrongFocus );
95     setAcceptDrops( true );
96     setWindowIcon( QApplication::windowIcon() );
97     setWindowOpacity( config_GetFloat( p_intf, "qt-opacity" ) );
98
99     /* Set The Video In emebedded Mode or not */
100     videoEmbeddedFlag = config_GetInt( p_intf, "embedded-video" );
101
102     /* Does the interface resize to video size or the opposite */
103     b_keep_size = !config_GetInt( p_intf, "qt-video-autoresize" );
104
105     /* Are we in the enhanced always-video mode or not ? */
106     i_visualmode = config_GetInt( p_intf, "qt-display-mode" );
107
108     /* Set the other interface settings */
109     settings = getSettings();
110     settings->beginGroup( "MainWindow" );
111
112     /**
113      * Retrieve saved sizes for main window
114      *   mainBasedSize = based window size for normal mode
115      *                  (no video, no background)
116      *   mainVideoSize = window size with video (all modes)
117      **/
118     mainBasedSize = settings->value( "mainBasedSize", QSize( 350, 120 ) ).toSize();
119     mainVideoSize = settings->value( "mainVideoSize", QSize( 400, 300 ) ).toSize();
120
121     /* Visualisation, not really used yet */
122     visualSelectorEnabled = settings->value( "visual-selector", false).toBool();
123
124     /* Do we want anoying popups or not */
125     notificationEnabled = (bool)config_GetInt( p_intf, "qt-notification" );
126
127     /**************************
128      *  UI and Widgets design
129      **************************/
130     setVLCWindowsTitle();
131     handleMainUi( settings );
132
133 #if 0
134     /* Create a Dock to get the playlist */
135     dockPL = new QDockWidget( qtr( "Playlist" ), this );
136     dockPL->setSizePolicy( QSizePolicy::Preferred,
137                            QSizePolicy::Expanding );
138     dockPL->setFeatures( QDockWidget::AllDockWidgetFeatures );
139     dockPL->setAllowedAreas( Qt::LeftDockWidgetArea
140                            | Qt::RightDockWidgetArea
141                            | Qt::BottomDockWidgetArea );
142     dockPL->hide();
143 #endif
144
145     /**************************
146      * Menu Bar and Status Bar
147      **************************/
148     QVLCMenu::createMenuBar( this, p_intf, visualSelectorEnabled );
149
150     /* StatusBar Creation */
151     createStatusBar();
152
153     /********************
154      * Input Manager    *
155      ********************/
156     MainInputManager::getInstance( p_intf );
157
158     /**************************
159      * Various CONNECTs on IM *
160      **************************/
161     /* Connect the input manager to the GUI elements it manages */
162
163     /**
164      * Connects on nameChanged()
165      * Those connects are not merged because different options can trigger
166      * them down.
167      */
168     /* Naming in the controller statusbar */
169     CONNECT( THEMIM->getIM(), nameChanged( QString ),
170              this, setName( QString ) );
171     /* and in the systray */
172     if( sysTray )
173     {
174         CONNECT( THEMIM->getIM(), nameChanged( QString ), this,
175                  updateSystrayTooltipName( QString ) );
176     }
177     /* and in the title of the controller */
178     if( config_GetInt( p_intf, "qt-name-in-title" ) )
179     {
180         CONNECT( THEMIM->getIM(), nameChanged( QString ), this,
181              setVLCWindowsTitle( QString ) );
182     }
183
184     /**
185      * CONNECTS on PLAY_STATUS
186      **/
187     /* Status on the systray */
188     if( sysTray )
189     {
190         CONNECT( THEMIM->getIM(), statusChanged( int ),
191                  this, updateSystrayTooltipStatus( int ) );
192     }
193
194     /* END CONNECTS ON IM */
195
196
197     /************
198      * Callbacks
199      ************/
200     var_Create( p_intf, "interaction", VLC_VAR_ADDRESS );
201     var_AddCallback( p_intf, "interaction", InteractCallback, this );
202     interaction_Register( p_intf );
203
204     var_AddCallback( p_intf->p_libvlc, "intf-show", IntfShowCB, p_intf );
205
206     /* Register callback for the intf-popupmenu variable */
207     var_AddCallback( p_intf->p_libvlc, "intf-popupmenu", PopupMenuCB, p_intf );
208
209
210     /* VideoWidget connects to avoid different threads speaking to each other */
211     connect( this, SIGNAL(askReleaseVideo( void )),
212              this, SLOT(releaseVideoSlot( void )), Qt::BlockingQueuedConnection );
213
214     if( videoWidget )
215         CONNECT( this, askVideoToResize( unsigned int, unsigned int ),
216                  videoWidget, SetSizing( unsigned int, unsigned int ) );
217
218     CONNECT( this, askUpdate(), this, doComponentsUpdate() );
219
220     /* Size and placement of interface */
221     settings->beginGroup( "MainWindow" );
222     QVLCTools::restoreWidgetPosition( settings, this, QSize(380, 60) );
223
224     /* resize to previously saved main window size if appicable */
225     if( b_keep_size )
226     {
227        if( i_visualmode == QT_ALWAYS_VIDEO_MODE ||
228            i_visualmode == QT_MINIMAL_MODE )
229        {
230            resize( mainVideoSize );
231        }
232        else
233        {
234            resize( mainBasedSize );
235        }
236     }
237
238     bool b_visible = settings->value( "playlist-visible", 0 ).toInt();
239     settings->endGroup();
240
241     /* Playlist */
242     if( b_visible ) togglePlaylist();
243
244     /* Final sizing and showing */
245     setMinimumWidth( __MAX( controls->sizeHint().width(),
246                             menuBar()->sizeHint().width() ) );
247     show();
248
249     /* And switch to minimal view if needed
250        Must be called after the show() */
251     if( i_visualmode == QT_MINIMAL_MODE )
252         toggleMinimalView();
253
254     /* Update the geometry : It is useful if you switch between
255        qt-display-modes ?*/
256     updateGeometry();
257     resize( sizeHint() );
258
259     /*****************************************************
260      * End everything by creating the Systray Management *
261      *****************************************************/
262     initSystray();
263 }
264
265 MainInterface::~MainInterface()
266 {
267     msg_Dbg( p_intf, "Destroying the main interface" );
268
269     if( videoIsActive ) videoWidget->hide();
270
271     if( playlistWidget )
272     {
273         if( !isDocked() )
274             QVLCTools::saveWidgetPosition( p_intf, "Playlist", playlistWidget );
275
276         delete playlistWidget;
277     }
278
279     ActionsManager::killInstance();
280
281     settings->beginGroup( "MainWindow" );
282
283     settings->setValue( "pl-dock-status", (int)i_pl_dock );
284     settings->setValue( "playlist-visible", (int)playlistVisible );
285     settings->setValue( "adv-controls",
286                         getControlsVisibilityStatus() & CONTROLS_ADVANCED );
287
288     settings->setValue( "mainBasedSize", mainBasedSize );
289     settings->setValue( "mainVideoSize", mainVideoSize );
290
291     if( bgWidget )
292         settings->setValue( "backgroundSize", bgWidget->size() );
293
294     QVLCTools::saveWidgetPosition(settings, this);
295     settings->endGroup();
296
297     var_DelCallback( p_intf->p_libvlc, "intf-show", IntfShowCB, p_intf );
298
299     /* Unregister callback for the intf-popupmenu variable */
300     var_DelCallback( p_intf->p_libvlc, "intf-popupmenu", PopupMenuCB, p_intf );
301
302     interaction_Unregister( p_intf );
303     var_DelCallback( p_intf, "interaction", InteractCallback, this );
304
305     p_intf->p_sys->p_mi = NULL;
306 }
307
308 /*****************************
309  *   Main UI handling        *
310  *****************************/
311
312 inline void MainInterface::createStatusBar()
313 {
314     /****************
315      *  Status Bar  *
316      ****************/
317     /* Widgets Creation*/
318     TimeLabel *timeLabel = new TimeLabel( p_intf );
319     nameLabel = new QLabel;
320     nameLabel->setTextInteractionFlags( Qt::TextSelectableByMouse
321                                       | Qt::TextSelectableByKeyboard );
322     SpeedLabel *speedLabel = new SpeedLabel( p_intf, "1.00x" );
323
324     /* Styling those labels */
325     timeLabel->setFrameStyle( QFrame::Sunken | QFrame::Panel );
326     speedLabel->setFrameStyle( QFrame::Sunken | QFrame::Panel );
327     nameLabel->setFrameStyle( QFrame::Sunken | QFrame::StyledPanel);
328
329     /* and adding those */
330     statusBar()->addWidget( nameLabel, 8 );
331     statusBar()->addPermanentWidget( speedLabel, 0 );
332     statusBar()->addPermanentWidget( timeLabel, 0 );
333
334     /* timeLabel behaviour:
335        - double clicking opens the goto time dialog
336        - right-clicking and clicking just toggle between remaining and
337          elapsed time.*/
338     CONNECT( timeLabel, timeLabelDoubleClicked(), THEDP, gotoTimeDialog() );
339 }
340
341 inline void MainInterface::initSystray()
342 {
343     bool b_systrayAvailable = QSystemTrayIcon::isSystemTrayAvailable();
344     bool b_systrayWanted = config_GetInt( p_intf, "qt-system-tray" );
345
346     if( config_GetInt( p_intf, "qt-start-minimized") > 0 )
347     {
348         if( b_systrayAvailable )
349         {
350             b_systrayWanted = true;
351             hide();
352         }
353         else
354             msg_Err( p_intf, "cannot start minimized without system tray bar" );
355     }
356
357     if( b_systrayAvailable && b_systrayWanted )
358             createSystray();
359 }
360
361 /**
362  * Give the decorations of the Main Window a correct Name.
363  * If nothing is given, set it to VLC...
364  **/
365 void MainInterface::setVLCWindowsTitle( QString aTitle )
366 {
367     if( aTitle.isEmpty() )
368     {
369         setWindowTitle( qtr( "VLC media player" ) );
370     }
371     else
372     {
373         setWindowTitle( aTitle + " - " + qtr( "VLC media player" ) );
374     }
375 }
376
377 void MainInterface::handleMainUi( QSettings *settings )
378 {
379     /* Create the main Widget and the mainLayout */
380     QWidget *main = new QWidget;
381     setCentralWidget( main );
382     mainLayout = new QVBoxLayout( main );
383
384     /* Margins, spacing */
385     main->setContentsMargins( 0, 0, 0, 0 );
386     main->setSizePolicy( QSizePolicy::Preferred, QSizePolicy::Maximum );
387     mainLayout->setSpacing( 0 );
388     mainLayout->setMargin( 0 );
389
390     /* Create the CONTROLS Widget */
391     controls = new ControlsWidget( p_intf,
392                    settings->value( "adv-controls", false ).toBool(), this );
393     CONNECT( controls, advancedControlsToggled( bool ),
394              this, doComponentsUpdate() );
395     inputC = new InputControlsWidget( p_intf, this );
396
397         /* Visualisation */
398     /* Disabled for now, they SUCK */
399     #if 0
400     visualSelector = new VisualSelector( p_intf );
401     mainLayout->insertWidget( 0, visualSelector );
402     visualSelector->hide();
403     #endif
404
405     /* Bg Cone */
406     bgWidget = new BackgroundWidget( p_intf );
407     bgWidget->resize(
408             settings->value( "backgroundSize", QSize( 300, 200 ) ).toSize() );
409     bgWidget->updateGeometry();
410     CONNECT( this, askBgWidgetToToggle(), bgWidget, toggle() );
411
412     if( i_visualmode != QT_ALWAYS_VIDEO_MODE &&
413         i_visualmode != QT_MINIMAL_MODE )
414     {
415         bgWidget->hide();
416     }
417
418     /* And video Outputs */
419     if( videoEmbeddedFlag )
420         videoWidget = new VideoWidget( p_intf );
421
422     /* Add the controls Widget to the main Widget */
423     mainLayout->insertWidget( 0, bgWidget );
424     if( videoWidget ) mainLayout->insertWidget( 0, videoWidget, 10 );
425     mainLayout->insertWidget( 2, inputC, 0, Qt::AlignBottom );
426     mainLayout->insertWidget( settings->value( "ToolbarPos", 0 ).toInt() ? 0: 3,
427                               controls, 0, Qt::AlignBottom );
428
429     /* Finish the sizing */
430     main->updateGeometry();
431
432     getSettings()->endGroup();
433 #ifdef WIN32
434     if ( depth() > 8 )
435 #endif
436     /* Create the FULLSCREEN CONTROLS Widget */
437     if( config_GetInt( p_intf, "qt-fs-controller" ) )
438     {
439         fullscreenControls = new FullscreenControllerWidget( p_intf );
440     }
441 }
442
443 inline void MainInterface::askForPrivacy()
444 {
445     /**
446      * Ask for the network policy on FIRST STARTUP
447      **/
448     if( config_GetInt( p_intf, "qt-privacy-ask") )
449     {
450         QList<ConfigControl *> controls;
451         if( privacyDialog( &controls ) == QDialog::Accepted )
452         {
453             QList<ConfigControl *>::Iterator i;
454             for(  i = controls.begin() ; i != controls.end() ; i++ )
455             {
456                 ConfigControl *c = qobject_cast<ConfigControl *>(*i);
457                 c->doApply( p_intf );
458             }
459
460             config_PutInt( p_intf,  "qt-privacy-ask" , 0 );
461             /* We have to save here because the user may not launch Prefs */
462             config_SaveConfigFile( p_intf, NULL );
463         }
464     }
465 }
466
467 int MainInterface::privacyDialog( QList<ConfigControl *> *controls )
468 {
469     QDialog *privacy = new QDialog();
470
471     privacy->setWindowTitle( qtr( "Privacy and Network Policies" ) );
472
473     QGridLayout *gLayout = new QGridLayout( privacy );
474
475     QGroupBox *blabla = new QGroupBox( qtr( "Privacy and Network Warning" ) );
476     QGridLayout *blablaLayout = new QGridLayout( blabla );
477     QLabel *text = new QLabel( qtr(
478         "<p>The <i>VideoLAN Team</i> doesn't like when an application goes "
479         "online without authorization.</p>\n "
480         "<p><i>VLC media player</i> can retreive limited information from "
481         "the Internet in order to get CD covers or to check "
482         "for available updates.</p>\n"
483         "<p><i>VLC media player</i> <b>DOES NOT</b> send or collect <b>ANY</b> "
484         "information, even anonymously, about your usage.</p>\n"
485         "<p>Therefore please select from the following options, the default being "
486         "almost no access to the web.</p>\n") );
487     text->setWordWrap( true );
488     text->setTextFormat( Qt::RichText );
489
490     blablaLayout->addWidget( text, 0, 0 ) ;
491
492     QGroupBox *options = new QGroupBox;
493     QGridLayout *optionsLayout = new QGridLayout( options );
494
495     gLayout->addWidget( blabla, 0, 0, 1, 3 );
496     gLayout->addWidget( options, 1, 0, 1, 3 );
497     module_config_t *p_config;
498     ConfigControl *control;
499     int line = 0;
500
501 #define CONFIG_GENERIC( option, type )                            \
502     p_config =  config_FindConfig( VLC_OBJECT(p_intf), option );  \
503     if( p_config )                                                \
504     {                                                             \
505         control =  new type ## ConfigControl( VLC_OBJECT(p_intf), \
506                 p_config, options, false, optionsLayout, line );  \
507         controls->append( control );                               \
508     }
509
510 #define CONFIG_GENERIC_NOBOOL( option, type )                     \
511     p_config =  config_FindConfig( VLC_OBJECT(p_intf), option );  \
512     if( p_config )                                                \
513     {                                                             \
514         control =  new type ## ConfigControl( VLC_OBJECT(p_intf), \
515                 p_config, options, optionsLayout, line );  \
516         controls->append( control );                               \
517     }
518
519     CONFIG_GENERIC( "album-art", IntegerList ); line++;
520 #ifdef UPDATE_CHECK
521     CONFIG_GENERIC_NOBOOL( "qt-updates-notif", Bool ); line++;
522     CONFIG_GENERIC_NOBOOL( "qt-updates-days", Integer ); line++;
523 #endif
524
525     QPushButton *ok = new QPushButton( qtr( "OK" ) );
526
527     gLayout->addWidget( ok, 2, 2 );
528
529     CONNECT( ok, clicked(), privacy, accept() );
530     return privacy->exec();
531 }
532
533
534 /**********************************************************************
535  * Handling of sizing of the components
536  **********************************************************************/
537
538 /* This function is probably wrong, but we don't have many many choices...
539    Since we can't know from the playlist Widget if we are inside a dock or not,
540    because the playlist Widget can be called by THEDP, as a separate windows for
541    the skins.
542    Maybe the other solution is to redefine the sizeHint() of the playlist and
543    ask _parent->isFloating()...
544    If you think this would be better, please FIXME it...
545 */
546
547 QSize MainInterface::sizeHint() const
548 {
549     if( b_keep_size )
550     {
551         if( i_visualmode == QT_ALWAYS_VIDEO_MODE ||
552             i_visualmode == QT_MINIMAL_MODE )
553         {
554                 return mainVideoSize;
555         }
556         else
557         {
558             if( VISIBLE( bgWidget) ||
559                 ( videoIsActive && videoWidget->isVisible() )
560               )
561                 return mainVideoSize;
562             else
563                 return mainBasedSize;
564         }
565     }
566
567     int nwidth  = controls->sizeHint().width();
568     int nheight = controls->isVisible() ?
569                   controls->size().height()
570                   + inputC->size().height()
571                   + menuBar()->size().height()
572                   + statusBar()->size().height()
573                   : 0 ;
574
575     if( VISIBLE( bgWidget ) )
576     {
577         nheight += bgWidget->size().height();
578         nwidth  = bgWidget->size().width();
579     }
580     else if( videoIsActive && videoWidget->isVisible() )
581     {
582         nheight += videoWidget->sizeHint().height();
583         nwidth  = videoWidget->sizeHint().width();
584     }
585 #if 0
586     if( !dockPL->isFloating() && dockPL->isVisible() && dockPL->widget()  )
587     {
588         nheight += dockPL->size().height();
589         nwidth = __MAX( nwidth, dockPL->size().width() );
590         msg_Warn( p_intf, "3 %i %i", nheight, nwidth );
591     }
592 #endif
593     return QSize( nwidth, nheight );
594 }
595
596 void MainInterface::toggleFSC()
597 {
598    if( !fullscreenControls ) return;
599
600    IMEvent *eShow = new IMEvent( FullscreenControlToggle_Type, 0 );
601    QApplication::postEvent( fullscreenControls, eShow );
602 }
603
604 void MainInterface::debug()
605 {
606 #ifndef NDEBUG
607     msg_Dbg( p_intf, "size: %i - %i", size().height(), size().width() );
608     msg_Dbg( p_intf, "sizeHint: %i - %i", sizeHint().height(), sizeHint().width() );
609     if( videoWidget && videoWidget->isVisible() )
610     {
611         msg_Dbg( p_intf, "size: %i - %i", size().height(), size().width() );
612         msg_Dbg( p_intf, "sizeHint: %i - %i", sizeHint().height(), sizeHint().width() );
613     }
614 #endif
615 }
616
617 /****************************************************************************
618  * Video Handling
619  ****************************************************************************/
620
621 /* This event is used to deal with the fullscreen and always on top
622    issue conflict (bug in wx) */
623 class SetVideoOnTopQtEvent : public QEvent
624 {
625 public:
626     SetVideoOnTopQtEvent( bool _onTop ) :
627       QEvent( (QEvent::Type)SetVideoOnTopEvent_Type ), onTop( _onTop)
628     {}
629
630     bool OnTop() const { return onTop; }
631
632 private:
633     bool onTop;
634 };
635
636 /**
637  * README
638  * Thou shall not call/resize/hide widgets from on another thread.
639  * This is wrong, and this is THE reason to emit signals on those Video Functions
640  **/
641 void *MainInterface::requestVideo( vout_thread_t *p_nvout, int *pi_x,
642                                    int *pi_y, unsigned int *pi_width,
643                                    unsigned int *pi_height )
644 {
645     /* Request the videoWidget */
646     void *ret = videoWidget->request( p_nvout,pi_x, pi_y,
647                                       pi_width, pi_height, b_keep_size );
648     if( ret ) /* The videoWidget is available */
649     {
650         /* Did we have a bg ? Hide it! */
651         if( VISIBLE( bgWidget) )
652         {
653             bgWasVisible = true;
654             emit askBgWidgetToToggle();
655         }
656         else
657             bgWasVisible = false;
658
659         /* Consider the video active now */
660         videoIsActive = true;
661
662         emit askUpdate();
663     }
664     return ret;
665 }
666
667 /* Call from the WindowClose function */
668 void MainInterface::releaseVideo( void )
669 {
670     emit askReleaseVideo( );
671 }
672
673 /* Function that is CONNECTED to the previous emit */
674 void MainInterface::releaseVideoSlot( void )
675 {
676     videoWidget->release( );
677
678     if( bgWasVisible )
679     {
680         /* Reset the bg state */
681         bgWasVisible = false;
682         bgWidget->show();
683     }
684
685     videoIsActive = false;
686
687     /* Try to resize, except when you are in Fullscreen mode */
688     if( !isFullScreen() ) doComponentsUpdate();
689 }
690
691 /* Call from WindowControl function */
692 int MainInterface::controlVideo( void *p_window, int i_query, va_list args )
693 {
694     VLC_UNUSED( p_window ); //FIXME remove this param
695     int i_ret = VLC_SUCCESS;
696     switch( i_query )
697     {
698         case VOUT_GET_SIZE:
699         {
700             unsigned int *pi_width  = va_arg( args, unsigned int * );
701             unsigned int *pi_height = va_arg( args, unsigned int * );
702             *pi_width = videoWidget->videoSize.width();
703             *pi_height = videoWidget->videoSize.height();
704             break;
705         }
706         case VOUT_SET_SIZE:
707         {
708             unsigned int i_width  = va_arg( args, unsigned int );
709             unsigned int i_height = va_arg( args, unsigned int );
710             emit askVideoToResize( i_width, i_height );
711             emit askUpdate();
712             break;
713         }
714         case VOUT_SET_STAY_ON_TOP:
715         {
716             int i_arg = va_arg( args, int );
717             QApplication::postEvent( this, new SetVideoOnTopQtEvent( i_arg ) );
718             break;
719         }
720         default:
721             i_ret = VLC_EGENERIC;
722             msg_Warn( p_intf, "unsupported control query" );
723             break;
724     }
725     return i_ret;
726 }
727
728 /*****************************************************************************
729  * Playlist, Visualisation and Menus handling
730  *****************************************************************************/
731 /**
732  * Toggle the playlist widget or dialog
733  **/
734 void MainInterface::togglePlaylist()
735 {
736     /* CREATION
737     If no playlist exist, then create one and attach it to the DockPL*/
738     if( !playlistWidget )
739     {
740         playlistWidget = new PlaylistWidget( p_intf );
741
742         i_pl_dock = PL_UNDOCKED;
743 /*        i_pl_dock = (pl_dock_e)getSettings()
744                          ->value( "pl-dock-status", PL_UNDOCKED ).toInt(); */
745
746         if( i_pl_dock == PL_UNDOCKED )
747         {
748             playlistWidget->setWindowFlags( Qt::Window );
749
750             /* This will restore the geometry but will not work for position,
751                because of parenting */
752             QVLCTools::restoreWidgetPosition( p_intf, "Playlist",
753                     playlistWidget, QSize( 600, 300 ) );
754         }
755         else
756         {
757             mainLayout->insertWidget( 4, playlistWidget );
758         }
759         playlistVisible = true;
760
761         playlistWidget->show();
762     }
763     else
764     {
765     /* toggle the visibility of the playlist */
766        TOGGLEV( playlistWidget );
767        playlistVisible = !playlistVisible;
768        //doComponentsUpdate(); //resize( sizeHint() );
769     }
770 }
771
772 /* Function called from the menu to undock the playlist */
773 void MainInterface::undockPlaylist()
774 {
775 //    dockPL->setFloating( true );
776 //    adjustSize();
777 }
778
779 void MainInterface::dockPlaylist( pl_dock_e i_pos )
780 {
781 }
782
783 void MainInterface::toggleMinimalView()
784 {
785     /* HACK for minimalView, see menus.cpp */
786     if( !menuBar()->isVisible() ) QVLCMenu::minimalViewAction->toggle();
787
788     if( i_visualmode != QT_ALWAYS_VIDEO_MODE &&
789         i_visualmode != QT_MINIMAL_MODE )
790     { /* NORMAL MODE then */
791         if( !videoWidget || videoWidget->isHidden() ) emit askBgWidgetToToggle();
792         else
793         {
794             /* If video is visible, then toggle the status of bgWidget */
795             bgWasVisible = !bgWasVisible;
796         }
797     }
798
799     TOGGLEV( menuBar() );
800     TOGGLEV( controls );
801     TOGGLEV( statusBar() );
802     TOGGLEV( inputC );
803     doComponentsUpdate();
804 }
805
806 /* Video widget cannot do this synchronously as it runs in another thread */
807 /* Well, could it, actually ? Probably dangerous ... */
808
809 /* This function is called:
810    - toggling of minimal View
811    - through askUpdate() by Vout thread request video and resize video (zoom)
812    - Advanced buttons toggled
813  */
814 void MainInterface::doComponentsUpdate()
815 {
816     msg_Dbg( p_intf, "Updating the geometry" );
817     /* Here we resize to sizeHint() and not adjustsize because we want
818        the videoWidget to be exactly the correctSize */
819     resize( sizeHint() );
820     //    adjustSize()  ;
821 #ifndef NDEBUG
822     debug();
823 #endif
824 }
825
826 /* toggling advanced controls buttons */
827 void MainInterface::toggleAdvanced()
828 {
829     controls->toggleAdvanced();
830 //    if( fullscreenControls ) fullscreenControls->toggleAdvanced();
831 }
832
833 /* Get the visibility status of the controls (hidden or not, advanced or not) */
834 int MainInterface::getControlsVisibilityStatus()
835 {
836     return( (controls->isVisible() ? CONTROLS_VISIBLE : CONTROLS_HIDDEN )
837                 + CONTROLS_ADVANCED * controls->b_advancedVisible );
838 }
839
840 #if 0
841 void MainInterface::visual()
842 {
843     if( !VISIBLE( visualSelector) )
844     {
845         visualSelector->show();
846         if( !THEMIM->getIM()->hasVideo() )
847         {
848             /* Show the background widget */
849         }
850         visualSelectorEnabled = true;
851     }
852     else
853     {
854         /* Stop any currently running visualization */
855         visualSelector->hide();
856         visualSelectorEnabled = false;
857     }
858     doComponentsUpdate();
859 }
860 #endif
861
862 /************************************************************************
863  * Other stuff
864  ************************************************************************/
865 void MainInterface::setName( QString name )
866 {
867     input_name = name; /* store it for the QSystray use */
868     /* Display it in the status bar, but also as a Tooltip in case it doesn't
869        fit in the label */
870     nameLabel->setText( " " + name + " " );
871     nameLabel->setToolTip( " " + name +" " );
872 }
873
874 /*****************************************************************************
875  * Systray Icon and Systray Menu
876  *****************************************************************************/
877
878 /**
879  * Create a SystemTray icon and a menu that would go with it.
880  * Connects to a click handler on the icon.
881  **/
882 void MainInterface::createSystray()
883 {
884     QIcon iconVLC;
885     if( QDate::currentDate().dayOfYear() >= 354 )
886         iconVLC =  QIcon( QPixmap( ":/vlc128-christmas.png" ) );
887     else
888         iconVLC =  QIcon( QPixmap( ":/vlc128.png" ) );
889     sysTray = new QSystemTrayIcon( iconVLC, this );
890     sysTray->setToolTip( qtr( "VLC media player" ));
891
892     systrayMenu = new QMenu( qtr( "VLC media player" ), this );
893     systrayMenu->setIcon( iconVLC );
894
895     QVLCMenu::updateSystrayMenu( this, p_intf, true );
896     sysTray->show();
897
898     CONNECT( sysTray, activated( QSystemTrayIcon::ActivationReason ),
899             this, handleSystrayClick( QSystemTrayIcon::ActivationReason ) );
900 }
901
902 /**
903  * Updates the Systray Icon's menu and toggle the main interface
904  */
905 void MainInterface::toggleUpdateSystrayMenu()
906 {
907     /* If hidden, show it */
908     if( isHidden() )
909     {
910         show();
911         activateWindow();
912     }
913     else if( isMinimized() )
914     {
915         /* Minimized */
916         showNormal();
917         activateWindow();
918     }
919     else
920     {
921         /* Visible (possibly under other windows) */
922 #ifdef WIN32
923         /* check if any visible window is above vlc in the z-order,
924          * but ignore the ones always on top
925          * and the ones which can't be activated */
926         WINDOWINFO wi;
927         HWND hwnd;
928         wi.cbSize = sizeof( WINDOWINFO );
929         for( hwnd = GetNextWindow( internalWinId(), GW_HWNDPREV );
930                 hwnd && ( !IsWindowVisible( hwnd ) ||
931                     ( GetWindowInfo( hwnd, &wi ) &&
932                       (wi.dwExStyle&WS_EX_NOACTIVATE) ) );
933                 hwnd = GetNextWindow( hwnd, GW_HWNDPREV ) );
934             if( !hwnd || !GetWindowInfo( hwnd, &wi ) ||
935                 (wi.dwExStyle&WS_EX_TOPMOST) )
936             {
937                 hide();
938             }
939             else
940             {
941                 activateWindow();
942             }
943 #else
944         hide();
945 #endif
946     }
947     QVLCMenu::updateSystrayMenu( this, p_intf );
948 }
949
950 void MainInterface::handleSystrayClick(
951                                     QSystemTrayIcon::ActivationReason reason )
952 {
953     switch( reason )
954     {
955         case QSystemTrayIcon::Trigger:
956         case QSystemTrayIcon::DoubleClick:
957             toggleUpdateSystrayMenu();
958             break;
959         case QSystemTrayIcon::MiddleClick:
960         case QSystemTrayIcon::Context:
961             sysTray->showMessage( qtr( "VLC media player" ),
962                     qtr( "Control menu for the player" ),
963                     QSystemTrayIcon::Information, 3000 );
964             break;
965         default:
966             break;
967     }
968 }
969
970 /**
971  * Updates the name of the systray Icon tooltip.
972  * Doesn't check if the systray exists, check before you call it.
973  **/
974 void MainInterface::updateSystrayTooltipName( QString name )
975 {
976     if( name.isEmpty() )
977     {
978         sysTray->setToolTip( qtr( "VLC media player" ) );
979     }
980     else
981     {
982         sysTray->setToolTip( name );
983         if( notificationEnabled && ( isHidden() || isMinimized() ) )
984         {
985             sysTray->showMessage( qtr( "VLC media player" ), name,
986                     QSystemTrayIcon::NoIcon, 3000 );
987         }
988     }
989
990     QVLCMenu::updateSystrayMenu( this, p_intf );
991 }
992
993 /**
994  * Updates the status of the systray Icon tooltip.
995  * Doesn't check if the systray exists, check before you call it.
996  **/
997 void MainInterface::updateSystrayTooltipStatus( int i_status )
998 {
999     switch( i_status )
1000     {
1001         case  0:
1002         case  END_S:
1003             {
1004                 sysTray->setToolTip( qtr( "VLC media player" ) );
1005                 break;
1006             }
1007         case PLAYING_S:
1008             {
1009                 sysTray->setToolTip( input_name );
1010                 break;
1011             }
1012         case PAUSE_S:
1013             {
1014                 sysTray->setToolTip( input_name + " - "
1015                         + qtr( "Paused") );
1016                 break;
1017             }
1018     }
1019 }
1020
1021 /************************************************************************
1022  * D&D Events
1023  ************************************************************************/
1024 void MainInterface::dropEvent(QDropEvent *event)
1025 {
1026     dropEventPlay( event, true );
1027 }
1028
1029 void MainInterface::dropEventPlay( QDropEvent *event, bool b_play )
1030 {
1031      const QMimeData *mimeData = event->mimeData();
1032
1033      /* D&D of a subtitles file, add it on the fly */
1034      if( mimeData->urls().size() == 1 )
1035      {
1036         if( THEMIM->getIM()->hasInput() )
1037         {
1038             if( !input_AddSubtitle( THEMIM->getInput(),
1039                                     qtu( toNativeSeparators(
1040                                          mimeData->urls()[0].toLocalFile() ) ),
1041                                     true ) )
1042             {
1043                 event->acceptProposedAction();
1044                 return;
1045             }
1046         }
1047      }
1048      bool first = b_play;
1049      foreach( const QUrl &url, mimeData->urls() )
1050      {
1051         QString s = toNativeSeparators( url.toLocalFile() );
1052
1053         if( s.length() > 0 ) {
1054             playlist_Add( THEPL, qtu(s), NULL,
1055                           PLAYLIST_APPEND | (first ? PLAYLIST_GO: 0),
1056                           PLAYLIST_END, true, false );
1057             first = false;
1058             RecentsMRL::getInstance( p_intf )->addRecent( s );
1059         }
1060      }
1061      event->acceptProposedAction();
1062 }
1063 void MainInterface::dragEnterEvent(QDragEnterEvent *event)
1064 {
1065      event->acceptProposedAction();
1066 }
1067 void MainInterface::dragMoveEvent(QDragMoveEvent *event)
1068 {
1069      event->acceptProposedAction();
1070 }
1071 void MainInterface::dragLeaveEvent(QDragLeaveEvent *event)
1072 {
1073      event->accept();
1074 }
1075
1076 /************************************************************************
1077  * Events stuff
1078  ************************************************************************/
1079 void MainInterface::customEvent( QEvent *event )
1080 {
1081 #if 0
1082     if( event->type() == PLDockEvent_Type )
1083     {
1084         PlaylistDialog::killInstance();
1085         playlistEmbeddedFlag = true;
1086         menuBar()->clear();
1087         QVLCMenu::createMenuBar(this, p_intf, true, visualSelectorEnabled);
1088         togglePlaylist();
1089     }
1090 #endif
1091     /*else */
1092     if ( event->type() == (int)SetVideoOnTopEvent_Type )
1093     {
1094         SetVideoOnTopQtEvent* p_event = (SetVideoOnTopQtEvent*)event;
1095         if( p_event->OnTop() )
1096             setWindowFlags(windowFlags() | Qt::WindowStaysOnTopHint);
1097         else
1098             setWindowFlags(windowFlags() & ~Qt::WindowStaysOnTopHint);
1099         show(); /* necessary to apply window flags?? */
1100     }
1101 }
1102
1103 void MainInterface::keyPressEvent( QKeyEvent *e )
1104 {
1105     if( ( e->modifiers() &  Qt::ControlModifier ) && ( e->key() == Qt::Key_H )
1106           && menuBar()->isHidden() )
1107     {
1108         toggleMinimalView();
1109         e->accept();
1110     }
1111
1112     int i_vlck = qtEventToVLCKey( e );
1113     if( i_vlck > 0 )
1114     {
1115         var_SetInteger( p_intf->p_libvlc, "key-pressed", i_vlck );
1116         e->accept();
1117     }
1118     else
1119         e->ignore();
1120 }
1121
1122 void MainInterface::resizeEvent( QResizeEvent * event )
1123 {
1124     if( b_keep_size )
1125     {
1126         if( i_visualmode == QT_ALWAYS_VIDEO_MODE ||
1127             i_visualmode == QT_MINIMAL_MODE )
1128         {
1129                 mainVideoSize = size();
1130         }
1131         else
1132         {
1133             if( VISIBLE( bgWidget) ||
1134                 ( videoIsActive && videoWidget->isVisible() )
1135               )
1136                 mainVideoSize = size();
1137             else
1138                 mainBasedSize = size();
1139         }
1140     }
1141 }
1142
1143 void MainInterface::wheelEvent( QWheelEvent *e )
1144 {
1145     int i_vlckey = qtWheelEventToVLCKey( e );
1146     var_SetInteger( p_intf->p_libvlc, "key-pressed", i_vlckey );
1147     e->accept();
1148 }
1149
1150 void MainInterface::closeEvent( QCloseEvent *e )
1151 {
1152     e->accept();
1153     hide();
1154     THEDP->quit();
1155 }
1156
1157 void MainInterface::toggleFullScreen( void )
1158 {
1159     if( isFullScreen() )
1160     {
1161         showNormal();
1162         emit askUpdate(); // Needed if video was launched after the F11
1163     }
1164     else
1165         showFullScreen();
1166 }
1167
1168 /*****************************************************************************
1169  * Callbacks
1170  *****************************************************************************/
1171 static int InteractCallback( vlc_object_t *p_this,
1172                              const char *psz_var, vlc_value_t old_val,
1173                              vlc_value_t new_val, void *param )
1174 {
1175     intf_dialog_args_t *p_arg = new intf_dialog_args_t;
1176     p_arg->p_dialog = (interaction_dialog_t *)(new_val.p_address);
1177     DialogEvent *event = new DialogEvent( INTF_DIALOG_INTERACTION, 0, p_arg );
1178     QApplication::postEvent( THEDP, event );
1179     return VLC_SUCCESS;
1180 }
1181
1182 /*****************************************************************************
1183  * PopupMenuCB: callback triggered by the intf-popupmenu playlist variable.
1184  *  We don't show the menu directly here because we don't want the
1185  *  caller to block for a too long time.
1186  *****************************************************************************/
1187 static int PopupMenuCB( vlc_object_t *p_this, const char *psz_variable,
1188                         vlc_value_t old_val, vlc_value_t new_val, void *param )
1189 {
1190     intf_thread_t *p_intf = (intf_thread_t *)param;
1191
1192     if( p_intf->pf_show_dialog )
1193     {
1194         p_intf->pf_show_dialog( p_intf, INTF_DIALOG_POPUPMENU,
1195                                 new_val.b_bool, NULL );
1196     }
1197
1198     return VLC_SUCCESS;
1199 }
1200
1201 /*****************************************************************************
1202  * IntfShowCB: callback triggered by the intf-show libvlc variable.
1203  *****************************************************************************/
1204 static int IntfShowCB( vlc_object_t *p_this, const char *psz_variable,
1205                        vlc_value_t old_val, vlc_value_t new_val, void *param )
1206 {
1207     intf_thread_t *p_intf = (intf_thread_t *)param;
1208     p_intf->p_sys->p_mi->toggleFSC();
1209
1210     /* Show event */
1211      return VLC_SUCCESS;
1212 }
1213