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