]> git.sesse.net Git - vlc/blob - modules/gui/qt4/main_interface.cpp
Qt4 - Try to fix minimal mode sizing.
[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->isVisible() ?
535                   controls->size().height()
536                   + menuBar()->size().height()
537                   + statusBar()->size().height()
538                   : 0 ;
539
540     msg_Dbg( p_intf, "1 %i %i", nheight, nwidth );
541     if( VISIBLE( bgWidget ) )
542     {
543         nheight += bgWidget->size().height();
544         nwidth  = bgWidget->size().width();
545         msg_Dbg( p_intf, "1b %i %i", nheight, nwidth );
546     }
547     else if( videoIsActive )
548     {
549         nheight += videoWidget->size().height();
550         nwidth  = videoWidget->size().width();
551         msg_Dbg( p_intf, "2 %i %i", nheight, nwidth );
552     }
553     if( !dockPL->isFloating() && dockPL->isVisible() && dockPL->widget()  )
554     {
555         nheight += dockPL->size().height();
556         nwidth = __MAX( nwidth, dockPL->size().width() );
557         msg_Dbg( p_intf, "3 %i %i", nheight, nwidth );
558     }
559     msg_Dbg( p_intf, "4 %i %i", nheight, nwidth );
560     return QSize( nwidth, nheight );
561 }
562
563 #if 0
564 /* FIXME This is dead code and need to be removed AT THE END */
565 void MainInterface::resizeEvent( QResizeEvent *e )
566 {
567     if( videoWidget )
568         videoWidget->widgetSize.setWidth( e->size().width() - addSize.width() );
569     if( videoWidget && videoIsActive && videoWidget->widgetSize.height() > 1 )
570     {
571         SET_WH( videoWidget, e->size().width() - addSize.width(),
572                              e->size().height()  - addSize.height() );
573         videoWidget->updateGeometry();
574     }
575     if( VISIBLE( playlistWidget ) )
576     {
577 //        SET_WH( playlistWidget , e->size().width() - addSize.width(),
578               //                   e->size().height() - addSize.height() );
579         playlistWidget->updateGeometry();
580     }
581 }
582 #endif
583
584 /****************************************************************************
585  * Small right-click menu for rate control
586  ****************************************************************************/
587 void MainInterface::showSpeedMenu( QPoint pos )
588 {
589     speedControlMenu->exec( QCursor::pos() - pos
590                           + QPoint( 0, speedLabel->height() ) );
591 }
592
593 /****************************************************************************
594  * Video Handling
595  ****************************************************************************/
596 class SetVideoOnTopQtEvent : public QEvent
597 {
598 public:
599     SetVideoOnTopQtEvent( bool _onTop ) :
600       QEvent( (QEvent::Type)SetVideoOnTopEvent_Type ), onTop( _onTop)
601     {}
602
603     bool OnTop() const
604     {
605         return onTop;
606     }
607
608 private:
609     bool onTop;
610 };
611
612 /* function called from ::DoRequest in order to show a nice VideoWidget
613     at the good size */
614 void *MainInterface::requestVideo( vout_thread_t *p_nvout, int *pi_x,
615                                    int *pi_y, unsigned int *pi_width,
616                                    unsigned int *pi_height )
617 {
618     bool bgWasVisible = false;
619
620     /* Request the videoWidget */
621     void *ret = videoWidget->request( p_nvout,pi_x, pi_y, pi_width, pi_height );
622     if( ret ) /* The videoWidget is available */
623     {
624         /* Did we have a bg ? Hide it! */
625         if( VISIBLE( bgWidget) )
626         {
627             bgWasVisible = true;
628             emit askBgWidgetToToggle();
629         }
630
631         /*if( THEMIM->getIM()->hasVideo() || !bgWasVisible )
632         {
633             videoWidget->widgetSize = QSize( *pi_width, *pi_height );
634         }
635         else /* Background widget available, use its size */
636         /*{
637             /* Ok, our visualizations are bad, so don't do this for the moment
638              * use the requested size anyway */
639             // videoWidget->widgetSize = bgWidget->widgeTSize;
640           /*  videoWidget->widgetSize = QSize( *pi_width, *pi_height );
641         }*/
642
643         videoIsActive = true;
644
645         emit askVideoToResize( *pi_width, *pi_height );
646         emit askUpdate();
647     }
648     return ret;
649 }
650
651 void MainInterface::releaseVideo( void *p_win )
652 {
653     emit askReleaseVideo( p_win );
654 }
655
656 void MainInterface::releaseVideoSlot( void *p_win )
657 {
658     videoWidget->release( p_win );
659     videoWidget->hide();
660
661     if( bgWidget )// WORONG
662         bgWidget->show();
663
664     videoIsActive = false;
665     emit askUpdate();
666 }
667
668 int MainInterface::controlVideo( void *p_window, int i_query, va_list args )
669 {
670     int i_ret = VLC_EGENERIC;
671     switch( i_query )
672     {
673         case VOUT_GET_SIZE:
674         {
675             unsigned int *pi_width  = va_arg( args, unsigned int * );
676             unsigned int *pi_height = va_arg( args, unsigned int * );
677             *pi_width = videoWidget->width();
678             *pi_height = videoWidget->height();
679             i_ret = VLC_SUCCESS;
680             break;
681         }
682         case VOUT_SET_SIZE:
683         {
684             unsigned int i_width  = va_arg( args, unsigned int );
685             unsigned int i_height = va_arg( args, unsigned int );
686             emit askVideoToResize( i_width, i_height );
687             emit askUpdate();
688             updateGeometry();
689             i_ret = VLC_SUCCESS;
690             break;
691         }
692         case VOUT_SET_STAY_ON_TOP:
693         {
694             int i_arg = va_arg( args, int );
695             QApplication::postEvent( this, new SetVideoOnTopQtEvent( i_arg ) );
696             i_ret = VLC_SUCCESS;
697             break;
698         }
699         default:
700             msg_Warn( p_intf, "unsupported control query" );
701             break;
702     }
703     return i_ret;
704 }
705
706 /*****************************************************************************
707  * Playlist, Visualisation and Menus handling
708  *****************************************************************************/
709 /**
710  * Toggle the playlist widget or dialog
711  **/
712 void MainInterface::togglePlaylist()
713 {
714     /* CREATION
715     If no playlist exist, then create one and attach it to the DockPL*/
716     if( !playlistWidget )
717     {
718         playlistWidget = new PlaylistWidget( p_intf, settings, dockPL );
719
720         /* Add it to the parent DockWidget */
721         dockPL->setWidget( playlistWidget );
722
723         /* Add the dock to the main Interface */
724         addDockWidget( Qt::BottomDockWidgetArea, dockPL );
725
726         /* Make the playlist floating is requested. Default is not. */
727         settings->beginGroup( "MainWindow" );
728         if( settings->value( "playlist-floats", 1 ).toInt() )
729         {
730             msg_Dbg( p_intf, "we don't want the playlist inside");
731             dockPL->setFloating( true );
732         }
733         settings->endGroup();
734         settings->beginGroup( "playlist" );
735         dockPL->move( settings->value( "pos", QPoint( 0,0 ) ).toPoint() );
736         dockPL->resize( settings->value( "size", QSize( 400, 300 ) ).toSize() );
737         settings->endGroup();
738         dockPL->show();
739         playlistVisible = true;
740     }
741     else
742     {
743     /* toggle the visibility of the playlist */
744        TOGGLEV( dockPL );
745        resize( sizeHint() );
746        playlistVisible = !playlistVisible;
747     }
748 }
749
750 /* Function called from the menu to undock the playlist */
751 void MainInterface::undockPlaylist()
752 {
753     dockPL->setFloating( true );
754     resize( sizeHint() );
755 }
756
757 void MainInterface::toggleMinimalView()
758 {
759     TOGGLEV( menuBar() );
760     TOGGLEV( controls );
761     TOGGLEV( statusBar() );
762     doComponentsUpdate();
763 }
764
765 /* Video widget cannot do this synchronously as it runs in another thread */
766 /* Well, could it, actually ? Probably dangerous ... */
767 void MainInterface::doComponentsUpdate()
768 {
769     resize( sizeHint() );
770     msg_Dbg( p_intf, "Updating the geometry" );
771     updateGeometry();
772 }
773
774 /* toggling advanced controls buttons */
775 void MainInterface::toggleAdvanced()
776 {
777     controls->toggleAdvanced();
778 }
779
780 /* Get the visibility status of the controls (hidden or not, advanced or not) */
781 int MainInterface::getControlsVisibilityStatus()
782 {
783     return( (controls->isVisible() ? CONTROLS_VISIBLE : CONTROLS_HIDDEN )
784                 + CONTROLS_ADVANCED * controls->b_advancedVisible );
785 }
786
787 #if 0
788 void MainInterface::visual()
789 {
790     if( !VISIBLE( visualSelector) )
791     {
792         visualSelector->show();
793         if( !THEMIM->getIM()->hasVideo() )
794         {
795             /* Show the background widget */
796         }
797         visualSelectorEnabled = true;
798     }
799     else
800     {
801         /* Stop any currently running visualization */
802         visualSelector->hide();
803         visualSelectorEnabled = false;
804     }
805     doComponentsUpdate();
806 }
807 #endif
808
809 /************************************************************************
810  * Other stuff
811  ************************************************************************/
812 void MainInterface::setDisplayPosition( float pos, int time, int length )
813 {
814     char psz_length[MSTRTIME_MAX_SIZE], psz_time[MSTRTIME_MAX_SIZE];
815     secstotimestr( psz_length, length );
816     secstotimestr( psz_time, ( b_remainingTime && length ) ? length - time
817                                                            : time );
818
819     QString timestr;
820     timestr.sprintf( "%s/%s", psz_time,
821                             ( !length && time ) ? "--:--" : psz_length );
822
823     /* Add a minus to remaining time*/
824     if( b_remainingTime && length ) timeLabel->setText( " -"+timestr+" " );
825     else timeLabel->setText( " "+timestr+" " );
826 }
827
828 void MainInterface::toggleTimeDisplay()
829 {
830     b_remainingTime = !b_remainingTime;
831 }
832
833 void MainInterface::setName( QString name )
834 {
835     input_name = name; /* store it for the QSystray use */
836     /* Display it in the status bar, but also as a Tooltip in case it doesn't
837        fit in the label */
838     nameLabel->setText( " " + name + " " );
839     nameLabel->setToolTip( " " + name +" " );
840 }
841
842 void MainInterface::setStatus( int status )
843 {
844     /* Forward the status to the controls to toggle Play/Pause */
845     controls->setStatus( status );
846     /* And in the systray for the menu */
847     if( sysTray )
848         QVLCMenu::updateSystrayMenu( this, p_intf );
849 }
850
851 void MainInterface::setRate( int rate )
852 {
853     QString str;
854     str.setNum( ( 1000 / (double)rate ), 'f', 2 );
855     str.append( "x" );
856     speedLabel->setText( str );
857     speedControl->updateControls( rate );
858 }
859
860 void MainInterface::updateOnTimer()
861 {
862     if( intf_ShouldDie( p_intf ) )
863     {
864         QApplication::closeAllWindows();
865         QApplication::quit();
866     }
867 #if 0
868     if( need_components_update )
869     {
870         doComponentsUpdate();
871         need_components_update = false;
872     }
873 #endif
874
875     controls->updateOnTimer();
876 }
877
878 /*****************************************************************************
879  * Systray Icon and Systray Menu
880  *****************************************************************************/
881
882 /**
883  * Create a SystemTray icon and a menu that would go with it.
884  * Connects to a click handler on the icon.
885  **/
886 void MainInterface::createSystray()
887 {
888     QIcon iconVLC;
889     if( QDate::currentDate().dayOfYear() >= 354 )
890         iconVLC =  QIcon( QPixmap( ":/vlc128-christmas.png" ) );
891     else
892         iconVLC =  QIcon( QPixmap( ":/vlc128.png" ) );
893     sysTray = new QSystemTrayIcon( iconVLC, this );
894     sysTray->setToolTip( qtr( "VLC media player" ));
895
896     systrayMenu = new QMenu( qtr( "VLC media player" ), this );
897     systrayMenu->setIcon( iconVLC );
898
899     QVLCMenu::updateSystrayMenu( this, p_intf, true );
900     sysTray->show();
901
902     CONNECT( sysTray, activated( QSystemTrayIcon::ActivationReason ),
903             this, handleSystrayClick( QSystemTrayIcon::ActivationReason ) );
904 }
905
906 /**
907  * Updates the Systray Icon's menu and toggle the main interface
908  */
909 void MainInterface::toggleUpdateSystrayMenu()
910 {
911     /* If hidden, show it */
912     if( isHidden() )
913     {
914         show();
915         activateWindow();
916     }
917     else if( isMinimized() )
918     {
919         /* Minimized */
920         showNormal();
921         activateWindow();
922     }
923     else
924     {
925         /* Visible */
926 #ifdef WIN32
927         /* check if any visible window is above vlc in the z-order,
928          * but ignore the ones always on top */
929         WINDOWINFO wi;
930         HWND hwnd;
931         wi.cbSize = sizeof( WINDOWINFO );
932         for( hwnd = GetNextWindow( internalWinId(), GW_HWNDPREV );
933                 hwnd && !IsWindowVisible( hwnd );
934                 hwnd = GetNextWindow( hwnd, GW_HWNDPREV ) );
935         if( !hwnd || !GetWindowInfo( hwnd, &wi ) ||
936                 (wi.dwExStyle&WS_EX_TOPMOST) )
937 #else
938         if( isActiveWindow() )
939 #endif
940         {
941             hide();
942         }
943         else
944         {
945             activateWindow();
946         }
947     }
948     QVLCMenu::updateSystrayMenu( this, p_intf );
949 }
950
951 void MainInterface::handleSystrayClick(
952                                     QSystemTrayIcon::ActivationReason reason )
953 {
954     switch( reason )
955     {
956         case QSystemTrayIcon::Trigger:
957             toggleUpdateSystrayMenu();
958             break;
959         case QSystemTrayIcon::MiddleClick:
960             sysTray->showMessage( qtr( "VLC media player" ),
961                     qtr( "Control menu for the player" ),
962                     QSystemTrayIcon::Information, 3000 );
963             break;
964     }
965 }
966
967 /**
968  * Updates the name of the systray Icon tooltip.
969  * Doesn't check if the systray exists, check before you call it.
970  **/
971 void MainInterface::updateSystrayTooltipName( QString name )
972 {
973     if( name.isEmpty() )
974     {
975         sysTray->setToolTip( qtr( "VLC media player" ) );
976     }
977     else
978     {
979         sysTray->setToolTip( name );
980         if( notificationEnabled && ( isHidden() || isMinimized() ) )
981         {
982             sysTray->showMessage( qtr( "VLC media player" ), name,
983                     QSystemTrayIcon::NoIcon, 3000 );
984         }
985     }
986 }
987
988 /**
989  * Updates the status of the systray Icon tooltip.
990  * Doesn't check if the systray exists, check before you call it.
991  **/
992 void MainInterface::updateSystrayTooltipStatus( int i_status )
993 {
994     switch( i_status )
995     {
996         case  0:
997         case  END_S:
998             {
999                 sysTray->setToolTip( qtr( "VLC media player" ) );
1000                 break;
1001             }
1002         case PLAYING_S:
1003             {
1004                 sysTray->setToolTip( input_name );
1005                 break;
1006             }
1007         case PAUSE_S:
1008             {
1009                 sysTray->setToolTip( input_name + " - "
1010                         + qtr( "Paused") );
1011                 break;
1012             }
1013     }
1014 }
1015
1016 /************************************************************************
1017  * D&D Events
1018  ************************************************************************/
1019 void MainInterface::dropEvent(QDropEvent *event)
1020 {
1021      const QMimeData *mimeData = event->mimeData();
1022
1023      /* D&D of a subtitles file, add it on the fly */
1024      if( mimeData->urls().size() == 1 )
1025      {
1026         if( THEMIM->getIM()->hasInput() )
1027         {
1028             if( input_AddSubtitles( THEMIM->getInput(),
1029                                     qtu( mimeData->urls()[0].toString() ),
1030                                     VLC_TRUE ) )
1031             {
1032                 event->acceptProposedAction();
1033                 return;
1034             }
1035         }
1036      }
1037      bool first = true;
1038      foreach( QUrl url, mimeData->urls() ) {
1039         QString s = url.toString();
1040         if( s.length() > 0 ) {
1041             playlist_Add( THEPL, qtu(s), NULL,
1042                           PLAYLIST_APPEND | (first ? PLAYLIST_GO:0),
1043                           PLAYLIST_END, VLC_TRUE, VLC_FALSE );
1044             first = false;
1045         }
1046      }
1047      event->acceptProposedAction();
1048 }
1049 void MainInterface::dragEnterEvent(QDragEnterEvent *event)
1050 {
1051      event->acceptProposedAction();
1052 }
1053 void MainInterface::dragMoveEvent(QDragMoveEvent *event)
1054 {
1055      event->acceptProposedAction();
1056 }
1057 void MainInterface::dragLeaveEvent(QDragLeaveEvent *event)
1058 {
1059      event->accept();
1060 }
1061
1062 /************************************************************************
1063  * Events stuff
1064  ************************************************************************/
1065 void MainInterface::customEvent( QEvent *event )
1066 {
1067 #if 0
1068     if( event->type() == PLDockEvent_Type )
1069     {
1070         PlaylistDialog::killInstance();
1071         playlistEmbeddedFlag = true;
1072         menuBar()->clear();
1073         QVLCMenu::createMenuBar(this, p_intf, true, visualSelectorEnabled);
1074         togglePlaylist();
1075     }
1076 #endif
1077     /*else */
1078     if ( event->type() == SetVideoOnTopEvent_Type )
1079     {
1080         SetVideoOnTopQtEvent* p_event = (SetVideoOnTopQtEvent*)event;
1081         if( p_event->OnTop() )
1082             setWindowFlags(windowFlags() | Qt::WindowStaysOnTopHint);
1083         else
1084             setWindowFlags(windowFlags() & ~Qt::WindowStaysOnTopHint);
1085         show(); /* necessary to apply window flags?? */
1086     }
1087 }
1088
1089 void MainInterface::keyPressEvent( QKeyEvent *e )
1090 {
1091     if( ( e->modifiers() &  Qt::ControlModifier ) && ( e->key() & Qt::Key_H )
1092           && menuBar()->isHidden() )
1093     {
1094         toggleMinimalView();
1095         e->accept();
1096     }
1097
1098     int i_vlck = qtEventToVLCKey( e );
1099     if( i_vlck > 0 )
1100     {
1101         var_SetInteger( p_intf->p_libvlc, "key-pressed", i_vlck );
1102         e->accept();
1103     }
1104     else
1105         e->ignore();
1106 }
1107
1108 void MainInterface::wheelEvent( QWheelEvent *e )
1109 {
1110     int i_vlckey = qtWheelEventToVLCKey( e );
1111     var_SetInteger( p_intf->p_libvlc, "key-pressed", i_vlckey );
1112     e->accept();
1113 }
1114
1115 void MainInterface::closeEvent( QCloseEvent *e )
1116 {
1117     hide();
1118     vlc_object_kill( p_intf );
1119     QApplication::closeAllWindows();
1120     QApplication::quit();
1121 }
1122
1123 /*****************************************************************************
1124  * Callbacks
1125  *****************************************************************************/
1126 static int InteractCallback( vlc_object_t *p_this,
1127                              const char *psz_var, vlc_value_t old_val,
1128                              vlc_value_t new_val, void *param )
1129 {
1130     intf_dialog_args_t *p_arg = new intf_dialog_args_t;
1131     p_arg->p_dialog = (interaction_dialog_t *)(new_val.p_address);
1132     DialogEvent *event = new DialogEvent( INTF_DIALOG_INTERACTION, 0, p_arg );
1133     QApplication::postEvent( THEDP, static_cast<QEvent*>(event) );
1134     return VLC_SUCCESS;
1135 }
1136
1137 /*****************************************************************************
1138  * PopupMenuCB: callback triggered by the intf-popupmenu playlist variable.
1139  *  We don't show the menu directly here because we don't want the
1140  *  caller to block for a too long time.
1141  *****************************************************************************/
1142 static int PopupMenuCB( vlc_object_t *p_this, const char *psz_variable,
1143                         vlc_value_t old_val, vlc_value_t new_val, void *param )
1144 {
1145     intf_thread_t *p_intf = (intf_thread_t *)param;
1146     msg_Dbg( p_this, "Menu Requested" ); // DEBUG to track the non disparition of the menu...
1147
1148     if( p_intf->pf_show_dialog )
1149     {
1150         p_intf->pf_show_dialog( p_intf, INTF_DIALOG_POPUPMENU,
1151                                 new_val.b_bool, 0 );
1152     }
1153
1154     return VLC_SUCCESS;
1155 }
1156
1157 /*****************************************************************************
1158  * IntfShowCB: callback triggered by the intf-show playlist variable.
1159  *****************************************************************************/
1160 static int IntfShowCB( 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, "Intf Show Requested" ); // DEBUG to track the non disparition of the menu...
1165     //p_intf->p_sys->b_intf_show = VLC_TRUE;
1166
1167     return VLC_SUCCESS;
1168 }