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