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