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