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