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