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