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