]> git.sesse.net Git - vlc/blob - modules/gui/qt4/main_interface.cpp
8f54f33843a300eef8f38dfc12ac80127f89f7cb
[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                   + menuBar()->size().height()
571                   + statusBar()->size().height()
572                   : 0 ;
573
574     if( VISIBLE( bgWidget ) )
575     {
576         nheight += bgWidget->size().height();
577         nwidth  = bgWidget->size().width();
578     }
579     else if( videoIsActive && videoWidget->isVisible() )
580     {
581         nheight += videoWidget->sizeHint().height();
582         nwidth  = videoWidget->sizeHint().width();
583     }
584 #if 0
585     if( !dockPL->isFloating() && dockPL->isVisible() && dockPL->widget()  )
586     {
587         nheight += dockPL->size().height();
588         nwidth = __MAX( nwidth, dockPL->size().width() );
589         msg_Warn( p_intf, "3 %i %i", nheight, nwidth );
590     }
591 #endif
592     return QSize( nwidth, nheight );
593 }
594
595 void MainInterface::toggleFSC()
596 {
597    if( !fullscreenControls ) return;
598
599    IMEvent *eShow = new IMEvent( FullscreenControlToggle_Type, 0 );
600    QApplication::postEvent( fullscreenControls, eShow );
601 }
602
603 void MainInterface::debug()
604 {
605 #ifndef NDEBUG
606     msg_Dbg( p_intf, "size: %i - %i", size().height(), size().width() );
607     msg_Dbg( p_intf, "sizeHint: %i - %i", sizeHint().height(), sizeHint().width() );
608     if( videoWidget && videoWidget->isVisible() )
609     {
610         msg_Dbg( p_intf, "size: %i - %i", size().height(), size().width() );
611         msg_Dbg( p_intf, "sizeHint: %i - %i", sizeHint().height(), sizeHint().width() );
612     }
613 #endif
614 }
615
616 /****************************************************************************
617  * Video Handling
618  ****************************************************************************/
619
620 /* This event is used to deal with the fullscreen and always on top
621    issue conflict (bug in wx) */
622 class SetVideoOnTopQtEvent : public QEvent
623 {
624 public:
625     SetVideoOnTopQtEvent( bool _onTop ) :
626       QEvent( (QEvent::Type)SetVideoOnTopEvent_Type ), onTop( _onTop)
627     {}
628
629     bool OnTop() const { return onTop; }
630
631 private:
632     bool onTop;
633 };
634
635 /**
636  * README
637  * Thou shall not call/resize/hide widgets from on another thread.
638  * This is wrong, and this is TEH reason to emit signals on those Video Functions
639  **/
640 void *MainInterface::requestVideo( vout_thread_t *p_nvout, int *pi_x,
641                                    int *pi_y, unsigned int *pi_width,
642                                    unsigned int *pi_height )
643 {
644     /* Request the videoWidget */
645     void *ret = videoWidget->request( p_nvout,pi_x, pi_y,
646                                       pi_width, pi_height, b_keep_size );
647     if( ret ) /* The videoWidget is available */
648     {
649         /* Did we have a bg ? Hide it! */
650         if( VISIBLE( bgWidget) )
651         {
652             bgWasVisible = true;
653             emit askBgWidgetToToggle();
654         }
655         else
656             bgWasVisible = false;
657
658         /* Consider the video active now */
659         videoIsActive = true;
660
661         emit askUpdate();
662     }
663     return ret;
664 }
665
666 /* Call from the WindowClose function */
667 void MainInterface::releaseVideo( void )
668 {
669     emit askReleaseVideo( );
670 }
671
672 /* Function that is CONNECTED to the previous emit */
673 void MainInterface::releaseVideoSlot( void )
674 {
675     videoWidget->release( );
676
677     if( bgWasVisible )
678     {
679         /* Reset the bg state */
680         bgWasVisible = false;
681         bgWidget->show();
682     }
683
684     videoIsActive = false;
685
686     /* Try to resize, except when you are in Fullscreen mode */
687     if( !isFullScreen() ) doComponentsUpdate();
688 }
689
690 /* Call from WindowControl function */
691 int MainInterface::controlVideo( void *p_window, int i_query, va_list args )
692 {
693     VLC_UNUSED( p_window ); //FIXME remove this param
694     int i_ret = VLC_SUCCESS;
695     switch( i_query )
696     {
697         case VOUT_GET_SIZE:
698         {
699             unsigned int *pi_width  = va_arg( args, unsigned int * );
700             unsigned int *pi_height = va_arg( args, unsigned int * );
701             *pi_width = videoWidget->videoSize.width();
702             *pi_height = videoWidget->videoSize.height();
703             break;
704         }
705         case VOUT_SET_SIZE:
706         {
707             unsigned int i_width  = va_arg( args, unsigned int );
708             unsigned int i_height = va_arg( args, unsigned int );
709             emit askVideoToResize( i_width, i_height );
710             emit askUpdate();
711             break;
712         }
713         case VOUT_SET_STAY_ON_TOP:
714         {
715             int i_arg = va_arg( args, int );
716             QApplication::postEvent( this, new SetVideoOnTopQtEvent( i_arg ) );
717             break;
718         }
719         default:
720             i_ret = VLC_EGENERIC;
721             msg_Warn( p_intf, "unsupported control query" );
722             break;
723     }
724     return i_ret;
725 }
726
727 /*****************************************************************************
728  * Playlist, Visualisation and Menus handling
729  *****************************************************************************/
730 /**
731  * Toggle the playlist widget or dialog
732  **/
733 void MainInterface::togglePlaylist()
734 {
735     /* CREATION
736     If no playlist exist, then create one and attach it to the DockPL*/
737     if( !playlistWidget )
738     {
739         playlistWidget = new PlaylistWidget( p_intf );
740
741         i_pl_dock = PL_UNDOCKED;
742 /*        i_pl_dock = (pl_dock_e)getSettings()
743                          ->value( "pl-dock-status", PL_UNDOCKED ).toInt(); */
744
745         if( i_pl_dock == PL_UNDOCKED )
746         {
747             playlistWidget->setWindowFlags( Qt::Window );
748
749             /* This will restore the geometry but will not work for position,
750                because of parenting */
751             QVLCTools::restoreWidgetPosition( p_intf, "Playlist",
752                     playlistWidget, QSize( 600, 300 ) );
753         }
754         else
755         {
756             mainLayout->insertWidget( 4, playlistWidget );
757         }
758         playlistVisible = true;
759
760         playlistWidget->show();
761     }
762     else
763     {
764     /* toggle the visibility of the playlist */
765        TOGGLEV( playlistWidget );
766        playlistVisible = !playlistVisible;
767        //doComponentsUpdate(); //resize( sizeHint() );
768     }
769 }
770
771 /* Function called from the menu to undock the playlist */
772 void MainInterface::undockPlaylist()
773 {
774 //    dockPL->setFloating( true );
775 //    adjustSize();
776 }
777
778 void MainInterface::dockPlaylist( pl_dock_e i_pos )
779 {
780 }
781
782 void MainInterface::toggleMinimalView()
783 {
784     /* HACK for minimalView, see menus.cpp */
785     if( !menuBar()->isVisible() ) QVLCMenu::minimalViewAction->toggle();
786
787     if( i_visualmode != QT_ALWAYS_VIDEO_MODE &&
788         i_visualmode != QT_MINIMAL_MODE )
789     { /* NORMAL MODE then */
790         if( !videoWidget || videoWidget->isHidden() ) emit askBgWidgetToToggle();
791         else
792         {
793             /* If video is visible, then toggle the status of bgWidget */
794             bgWasVisible = !bgWasVisible;
795         }
796     }
797
798     TOGGLEV( menuBar() );
799     TOGGLEV( controls );
800     TOGGLEV( statusBar() );
801     TOGGLEV( inputC );
802     doComponentsUpdate();
803 }
804
805 /* Video widget cannot do this synchronously as it runs in another thread */
806 /* Well, could it, actually ? Probably dangerous ... */
807
808 /* This function is called:
809    - toggling of minimal View
810    - through askUpdate() by Vout thread request video and resize video (zoom)
811    - Advanced buttons toggled
812  */
813 void MainInterface::doComponentsUpdate()
814 {
815     msg_Dbg( p_intf, "Updating the geometry" );
816     /* Here we resize to sizeHint() and not adjustsize because we want
817        the videoWidget to be exactly the correctSize */
818     resize( sizeHint() );
819     //    adjustSize()  ;
820 #ifndef NDEBUG
821     debug();
822 #endif
823 }
824
825 /* toggling advanced controls buttons */
826 void MainInterface::toggleAdvanced()
827 {
828     controls->toggleAdvanced();
829 //    if( fullscreenControls ) fullscreenControls->toggleAdvanced();
830 }
831
832 /* Get the visibility status of the controls (hidden or not, advanced or not) */
833 int MainInterface::getControlsVisibilityStatus()
834 {
835     return( (controls->isVisible() ? CONTROLS_VISIBLE : CONTROLS_HIDDEN )
836                 + CONTROLS_ADVANCED * controls->b_advancedVisible );
837 }
838
839 #if 0
840 void MainInterface::visual()
841 {
842     if( !VISIBLE( visualSelector) )
843     {
844         visualSelector->show();
845         if( !THEMIM->getIM()->hasVideo() )
846         {
847             /* Show the background widget */
848         }
849         visualSelectorEnabled = true;
850     }
851     else
852     {
853         /* Stop any currently running visualization */
854         visualSelector->hide();
855         visualSelectorEnabled = false;
856     }
857     doComponentsUpdate();
858 }
859 #endif
860
861 /************************************************************************
862  * Other stuff
863  ************************************************************************/
864 void MainInterface::setName( QString name )
865 {
866     input_name = name; /* store it for the QSystray use */
867     /* Display it in the status bar, but also as a Tooltip in case it doesn't
868        fit in the label */
869     nameLabel->setText( " " + name + " " );
870     nameLabel->setToolTip( " " + name +" " );
871 }
872
873 /*****************************************************************************
874  * Systray Icon and Systray Menu
875  *****************************************************************************/
876
877 /**
878  * Create a SystemTray icon and a menu that would go with it.
879  * Connects to a click handler on the icon.
880  **/
881 void MainInterface::createSystray()
882 {
883     QIcon iconVLC;
884     if( QDate::currentDate().dayOfYear() >= 354 )
885         iconVLC =  QIcon( QPixmap( ":/vlc128-christmas.png" ) );
886     else
887         iconVLC =  QIcon( QPixmap( ":/vlc128.png" ) );
888     sysTray = new QSystemTrayIcon( iconVLC, this );
889     sysTray->setToolTip( qtr( "VLC media player" ));
890
891     systrayMenu = new QMenu( qtr( "VLC media player" ), this );
892     systrayMenu->setIcon( iconVLC );
893
894     QVLCMenu::updateSystrayMenu( this, p_intf, true );
895     sysTray->show();
896
897     CONNECT( sysTray, activated( QSystemTrayIcon::ActivationReason ),
898             this, handleSystrayClick( QSystemTrayIcon::ActivationReason ) );
899 }
900
901 /**
902  * Updates the Systray Icon's menu and toggle the main interface
903  */
904 void MainInterface::toggleUpdateSystrayMenu()
905 {
906     /* If hidden, show it */
907     if( isHidden() )
908     {
909         show();
910         activateWindow();
911     }
912     else if( isMinimized() )
913     {
914         /* Minimized */
915         showNormal();
916         activateWindow();
917     }
918     else
919     {
920         /* Visible (possibly under other windows) */
921 #ifdef WIN32
922         /* check if any visible window is above vlc in the z-order,
923          * but ignore the ones always on top
924          * and the ones which can't be activated */
925         WINDOWINFO wi;
926         HWND hwnd;
927         wi.cbSize = sizeof( WINDOWINFO );
928         for( hwnd = GetNextWindow( internalWinId(), GW_HWNDPREV );
929                 hwnd && ( !IsWindowVisible( hwnd ) ||
930                     ( GetWindowInfo( hwnd, &wi ) &&
931                       (wi.dwExStyle&WS_EX_NOACTIVATE) ) );
932                 hwnd = GetNextWindow( hwnd, GW_HWNDPREV ) );
933             if( !hwnd || !GetWindowInfo( hwnd, &wi ) ||
934                 (wi.dwExStyle&WS_EX_TOPMOST) )
935             {
936                 hide();
937             }
938             else
939             {
940                 activateWindow();
941             }
942 #else
943         hide();
944 #endif
945     }
946     QVLCMenu::updateSystrayMenu( this, p_intf );
947 }
948
949 void MainInterface::handleSystrayClick(
950                                     QSystemTrayIcon::ActivationReason reason )
951 {
952     switch( reason )
953     {
954         case QSystemTrayIcon::Trigger:
955         case QSystemTrayIcon::DoubleClick:
956             toggleUpdateSystrayMenu();
957             break;
958         case QSystemTrayIcon::MiddleClick:
959         case QSystemTrayIcon::Context:
960             sysTray->showMessage( qtr( "VLC media player" ),
961                     qtr( "Control menu for the player" ),
962                     QSystemTrayIcon::Information, 3000 );
963             break;
964         default:
965             break;
966     }
967 }
968
969 /**
970  * Updates the name of the systray Icon tooltip.
971  * Doesn't check if the systray exists, check before you call it.
972  **/
973 void MainInterface::updateSystrayTooltipName( QString name )
974 {
975     if( name.isEmpty() )
976     {
977         sysTray->setToolTip( qtr( "VLC media player" ) );
978     }
979     else
980     {
981         sysTray->setToolTip( name );
982         if( notificationEnabled && ( isHidden() || isMinimized() ) )
983         {
984             sysTray->showMessage( qtr( "VLC media player" ), name,
985                     QSystemTrayIcon::NoIcon, 3000 );
986         }
987     }
988
989     QVLCMenu::updateSystrayMenu( this, p_intf );
990 }
991
992 /**
993  * Updates the status of the systray Icon tooltip.
994  * Doesn't check if the systray exists, check before you call it.
995  **/
996 void MainInterface::updateSystrayTooltipStatus( int i_status )
997 {
998     switch( i_status )
999     {
1000         case  0:
1001         case  END_S:
1002             {
1003                 sysTray->setToolTip( qtr( "VLC media player" ) );
1004                 break;
1005             }
1006         case PLAYING_S:
1007             {
1008                 sysTray->setToolTip( input_name );
1009                 break;
1010             }
1011         case PAUSE_S:
1012             {
1013                 sysTray->setToolTip( input_name + " - "
1014                         + qtr( "Paused") );
1015                 break;
1016             }
1017     }
1018 }
1019
1020 /************************************************************************
1021  * D&D Events
1022  ************************************************************************/
1023 void MainInterface::dropEvent(QDropEvent *event)
1024 {
1025     dropEventPlay( event, true );
1026 }
1027
1028 void MainInterface::dropEventPlay( QDropEvent *event, bool b_play )
1029 {
1030      const QMimeData *mimeData = event->mimeData();
1031
1032      /* D&D of a subtitles file, add it on the fly */
1033      if( mimeData->urls().size() == 1 )
1034      {
1035         if( THEMIM->getIM()->hasInput() )
1036         {
1037             if( !input_AddSubtitle( THEMIM->getInput(),
1038                                     qtu( toNativeSeparators(
1039                                          mimeData->urls()[0].toLocalFile() ) ),
1040                                     true ) )
1041             {
1042                 event->acceptProposedAction();
1043                 return;
1044             }
1045         }
1046      }
1047      bool first = b_play;
1048      foreach( const QUrl &url, mimeData->urls() )
1049      {
1050         QString s = toNativeSeparators( url.toLocalFile() );
1051
1052         if( s.length() > 0 ) {
1053             playlist_Add( THEPL, qtu(s), NULL,
1054                           PLAYLIST_APPEND | (first ? PLAYLIST_GO: 0),
1055                           PLAYLIST_END, true, false );
1056             first = false;
1057             RecentsMRL::getInstance( p_intf )->addRecent( s );
1058         }
1059      }
1060      event->acceptProposedAction();
1061 }
1062 void MainInterface::dragEnterEvent(QDragEnterEvent *event)
1063 {
1064      event->acceptProposedAction();
1065 }
1066 void MainInterface::dragMoveEvent(QDragMoveEvent *event)
1067 {
1068      event->acceptProposedAction();
1069 }
1070 void MainInterface::dragLeaveEvent(QDragLeaveEvent *event)
1071 {
1072      event->accept();
1073 }
1074
1075 /************************************************************************
1076  * Events stuff
1077  ************************************************************************/
1078 void MainInterface::customEvent( QEvent *event )
1079 {
1080 #if 0
1081     if( event->type() == PLDockEvent_Type )
1082     {
1083         PlaylistDialog::killInstance();
1084         playlistEmbeddedFlag = true;
1085         menuBar()->clear();
1086         QVLCMenu::createMenuBar(this, p_intf, true, visualSelectorEnabled);
1087         togglePlaylist();
1088     }
1089 #endif
1090     /*else */
1091     if ( event->type() == (int)SetVideoOnTopEvent_Type )
1092     {
1093         SetVideoOnTopQtEvent* p_event = (SetVideoOnTopQtEvent*)event;
1094         if( p_event->OnTop() )
1095             setWindowFlags(windowFlags() | Qt::WindowStaysOnTopHint);
1096         else
1097             setWindowFlags(windowFlags() & ~Qt::WindowStaysOnTopHint);
1098         show(); /* necessary to apply window flags?? */
1099     }
1100 }
1101
1102 void MainInterface::keyPressEvent( QKeyEvent *e )
1103 {
1104     if( ( e->modifiers() &  Qt::ControlModifier ) && ( e->key() == Qt::Key_H )
1105           && menuBar()->isHidden() )
1106     {
1107         toggleMinimalView();
1108         e->accept();
1109     }
1110
1111     int i_vlck = qtEventToVLCKey( e );
1112     if( i_vlck > 0 )
1113     {
1114         var_SetInteger( p_intf->p_libvlc, "key-pressed", i_vlck );
1115         e->accept();
1116     }
1117     else
1118         e->ignore();
1119 }
1120
1121 void MainInterface::resizeEvent( QResizeEvent * event )
1122 {
1123     if( b_keep_size )
1124     {
1125         if( i_visualmode == QT_ALWAYS_VIDEO_MODE ||
1126             i_visualmode == QT_MINIMAL_MODE )
1127         {
1128                 mainVideoSize = size();
1129         }
1130         else
1131         {
1132             if( VISIBLE( bgWidget) ||
1133                 ( videoIsActive && videoWidget->isVisible() )
1134               )
1135                 mainVideoSize = size();
1136             else
1137                 mainBasedSize = size();
1138         }
1139     }
1140 }
1141
1142 void MainInterface::wheelEvent( QWheelEvent *e )
1143 {
1144     int i_vlckey = qtWheelEventToVLCKey( e );
1145     var_SetInteger( p_intf->p_libvlc, "key-pressed", i_vlckey );
1146     e->accept();
1147 }
1148
1149 void MainInterface::closeEvent( QCloseEvent *e )
1150 {
1151     e->accept();
1152     hide();
1153     THEDP->quit();
1154 }
1155
1156 void MainInterface::toggleFullScreen( void )
1157 {
1158     if( isFullScreen() )
1159     {
1160         showNormal();
1161         emit askUpdate(); // Needed if video was launched after the F11
1162     }
1163     else
1164         showFullScreen();
1165 }
1166
1167 /*****************************************************************************
1168  * Callbacks
1169  *****************************************************************************/
1170 static int InteractCallback( vlc_object_t *p_this,
1171                              const char *psz_var, vlc_value_t old_val,
1172                              vlc_value_t new_val, void *param )
1173 {
1174     intf_dialog_args_t *p_arg = new intf_dialog_args_t;
1175     p_arg->p_dialog = (interaction_dialog_t *)(new_val.p_address);
1176     DialogEvent *event = new DialogEvent( INTF_DIALOG_INTERACTION, 0, p_arg );
1177     QApplication::postEvent( THEDP, event );
1178     return VLC_SUCCESS;
1179 }
1180
1181 /*****************************************************************************
1182  * PopupMenuCB: callback triggered by the intf-popupmenu playlist variable.
1183  *  We don't show the menu directly here because we don't want the
1184  *  caller to block for a too long time.
1185  *****************************************************************************/
1186 static int PopupMenuCB( vlc_object_t *p_this, const char *psz_variable,
1187                         vlc_value_t old_val, vlc_value_t new_val, void *param )
1188 {
1189     intf_thread_t *p_intf = (intf_thread_t *)param;
1190
1191     if( p_intf->pf_show_dialog )
1192     {
1193         p_intf->pf_show_dialog( p_intf, INTF_DIALOG_POPUPMENU,
1194                                 new_val.b_bool, NULL );
1195     }
1196
1197     return VLC_SUCCESS;
1198 }
1199
1200 /*****************************************************************************
1201  * IntfShowCB: callback triggered by the intf-show libvlc variable.
1202  *****************************************************************************/
1203 static int IntfShowCB( vlc_object_t *p_this, const char *psz_variable,
1204                        vlc_value_t old_val, vlc_value_t new_val, void *param )
1205 {
1206     intf_thread_t *p_intf = (intf_thread_t *)param;
1207     p_intf->p_sys->p_mi->toggleFSC();
1208
1209     /* Show event */
1210      return VLC_SUCCESS;
1211 }
1212