]> git.sesse.net Git - vlc/blob - modules/gui/qt4/main_interface.cpp
Qt4 - timeLabel cosmetic.
[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
319     settings->endGroup();
320     delete settings;
321
322     /* Unregister callback for the intf-popupmenu variable */
323     playlist_t *p_playlist = (playlist_t *)vlc_object_find( p_intf,
324                                         VLC_OBJECT_PLAYLIST, FIND_ANYWHERE );
325     if( p_playlist != NULL )
326     {
327         var_DelCallback( p_playlist, "intf-popupmenu", PopupMenuCB, p_intf );
328         var_DelCallback( p_playlist, "intf-show", IntfShowCB, p_intf );
329         vlc_object_release( p_playlist );
330     }
331
332     p_intf->b_interaction = VLC_FALSE;
333     var_DelCallback( p_intf, "interaction", InteractCallback, this );
334
335     p_intf->pf_request_window = NULL;
336     p_intf->pf_release_window = NULL;
337     p_intf->pf_control_window = NULL;
338 }
339
340 /*****************************
341  *   Main UI handling        *
342  *****************************/
343
344 /**
345  * Give the decorations of the Main Window a correct Name.
346  * If nothing is given, set it to VLC...
347  **/
348 void MainInterface::setVLCWindowsTitle( QString aTitle )
349 {
350     if( aTitle.isEmpty() )
351     {
352         setWindowTitle( qtr( "VLC media player" ) );
353     }
354     else
355     {
356         setWindowTitle( aTitle + " - " + qtr( "VLC media player" ) );
357     }
358 }
359
360 void MainInterface::handleMainUi( QSettings *settings )
361 {
362     /* Create the main Widget and the mainLayout */
363     QWidget *main = new QWidget;
364     setCentralWidget( main );
365     mainLayout = new QVBoxLayout( main );
366
367     /* Margins, spacing */
368     main->setContentsMargins( 0, 0, 0, 0 );
369    // main->setSizePolicy( QSizePolicy::Preferred, QSizePolicy::Maximum );
370     mainLayout->setMargin( 0 );
371
372     /* Create the CONTROLS Widget */
373     /* bool b_shiny = config_GetInt( p_intf, "qt-blingbling" ); */
374     controls = new ControlsWidget( p_intf, this,
375                    settings->value( "adv-controls", false ).toBool(),
376                    config_GetInt( p_intf, "qt-blingbling" ) );
377
378     /* Add the controls Widget to the main Widget */
379     mainLayout->insertWidget( 0, controls );
380
381     /* Create the Speed Control Widget */
382     speedControl = new SpeedControlWidget( p_intf );
383     speedControlMenu = new QMenu( this );
384
385     QWidgetAction *widgetAction = new QWidgetAction( speedControl );
386     widgetAction->setDefaultWidget( speedControl );
387     speedControlMenu->addAction( widgetAction );
388
389     /* Visualisation */
390     /* Disabled for now, they SUCK */
391     #if 0
392     visualSelector = new VisualSelector( p_intf );
393     mainLayout->insertWidget( 0, visualSelector );
394     visualSelector->hide();
395     #endif
396
397     /* And video Outputs */
398     if( alwaysVideoFlag )
399     {
400         bgWidget = new BackgroundWidget( p_intf );
401         bgWidget->widgetSize = settings->value( "backgroundSize",
402                                            QSize( 300, 200 ) ).toSize();
403         bgWidget->resize( bgWidget->widgetSize );
404         bgWidget->updateGeometry();
405         mainLayout->insertWidget( 0, bgWidget );
406         CONNECT( this, askBgWidgetToToggle(), bgWidget, toggle() );
407     }
408
409     if( videoEmbeddedFlag )
410     {
411         videoWidget = new VideoWidget( p_intf );
412         mainLayout->insertWidget( 0, videoWidget );
413
414         p_intf->pf_request_window  = ::DoRequest;
415         p_intf->pf_release_window  = ::DoRelease;
416         p_intf->pf_control_window  = ::DoControl;
417     }
418
419     /* Finish the sizing */
420     updateGeometry();
421 }
422
423 inline void MainInterface::privacy()
424 {
425     /**
426      * Ask for the network policy on FIRST STARTUP
427      **/
428     if( config_GetInt( p_intf, "privacy-ask") )
429     {
430         QList<ConfigControl *> controls;
431         if( privacyDialog( controls ) == QDialog::Accepted )
432         {
433             QList<ConfigControl *>::Iterator i;
434             for(  i = controls.begin() ; i != controls.end() ; i++ )
435             {
436                 ConfigControl *c = qobject_cast<ConfigControl *>(*i);
437                 c->doApply( p_intf );
438             }
439
440             config_PutInt( p_intf,  "privacy-ask" , 0 );
441             config_SaveConfigFile( p_intf, NULL );
442         }
443     }
444 }
445
446 int MainInterface::privacyDialog( QList<ConfigControl *> controls )
447 {
448     QDialog *privacy = new QDialog( this );
449
450     privacy->setWindowTitle( qtr( "Privacy and Network policies" ) );
451
452     QGridLayout *gLayout = new QGridLayout( privacy );
453
454     QGroupBox *blabla = new QGroupBox( qtr( "Privacy and Network Warning" ) );
455     QGridLayout *blablaLayout = new QGridLayout( blabla );
456     QLabel *text = new QLabel( qtr(
457         "<p>The <i>VideoLAN Team</i> doesn't like when an application goes "
458         "online without authorisation.</p>\n "
459         "<p><i>VLC media player</i> can request limited information on "
460         "Internet, espically to get CD Covers and songs metadata or to know "
461         "if updates are available.</p>\n"
462         "<p><i>VLC media player</i> <b>DOES NOT</b> send or collect <b>ANY</b> "
463         "information, even anonymously about your "
464         "usage.</p>\n"
465         "<p>Therefore please check the following options, the default being "
466         "almost no access on the web.</p>\n") );
467     text->setWordWrap( true );
468     text->setTextFormat( Qt::RichText );
469
470     blablaLayout->addWidget( text, 0, 0 ) ;
471
472     QGroupBox *options = new QGroupBox;
473     QGridLayout *optionsLayout = new QGridLayout( options );
474
475     gLayout->addWidget( blabla, 0, 0, 1, 3 );
476     gLayout->addWidget( options, 1, 0, 1, 3 );
477     module_config_t *p_config;
478     ConfigControl *control;
479     int line = 0;
480
481 #define CONFIG_GENERIC( option, type )                            \
482     p_config =  config_FindConfig( VLC_OBJECT(p_intf), option );  \
483     if( p_config )                                                \
484     {                                                             \
485         control =  new type ## ConfigControl( VLC_OBJECT(p_intf), \
486                 p_config, options, false, optionsLayout, line );  \
487         controls.append( control );                               \
488     }
489
490 #define CONFIG_GENERIC_NOBOOL( option, type )                     \
491     p_config =  config_FindConfig( VLC_OBJECT(p_intf), option );  \
492     if( p_config )                                                \
493     {                                                             \
494         control =  new type ## ConfigControl( VLC_OBJECT(p_intf), \
495                 p_config, options, optionsLayout, line );  \
496         controls.append( control );                               \
497     }
498
499     CONFIG_GENERIC( "album-art", IntegerList ); line++;
500     CONFIG_GENERIC_NOBOOL( "fetch-meta", Bool ); line++;
501     CONFIG_GENERIC_NOBOOL( "qt-updates-notif", Bool );
502
503     QPushButton *ok = new QPushButton( qtr( "Ok" ) );
504
505     gLayout->addWidget( ok, 2, 2 );
506
507     CONNECT( ok, clicked(), privacy, accept() );
508     return privacy->exec();
509 }
510
511 //FIXME remove me at the end...
512 void MainInterface::debug()
513 {
514     msg_Dbg( p_intf, "size: %i - %i", size().height(), size().width() );
515     msg_Dbg( p_intf, "sizeHint: %i - %i", sizeHint().height(), sizeHint().width() );
516 }
517
518 /**********************************************************************
519  * Handling of sizing of the components
520  **********************************************************************/
521
522 /* This function is probably wrong, but we don't have many many choices...
523    Since we can't know from the playlist Widget if we are inside a dock or not,
524    because the playlist Widget can be called by THEDP, as a separate windows for
525    the skins.
526    Maybe the other solution is to redefine the sizeHint() of the playlist and
527    ask _parent->isFloating()...
528    If you think this would be better, please FIXME it...
529 */
530 QSize MainInterface::sizeHint() const
531 {
532     int nwidth = controls->sizeHint().width();
533     int nheight = controls->sizeHint().height()
534                 + menuBar()->size().height()
535                 + statusBar()->size().height();
536
537     msg_Dbg( p_intf, "1 %i %i", nheight, nwidth );
538     if( VISIBLE( bgWidget ) )
539     {
540         nheight += bgWidget->size().height();
541         nwidth  = bgWidget->size().width();
542     }
543     else if( videoIsActive )
544     {
545         nheight += videoWidget->size().height();
546         nwidth  = videoWidget->size().width();
547         msg_Dbg( p_intf, "2 %i %i", nheight, nwidth );
548     }
549     if( !dockPL->isFloating() && dockPL->isVisible() && dockPL->widget()  )
550     {
551         nheight += dockPL->size().height();
552         nwidth = MAX( nwidth, dockPL->size().width() );
553         msg_Dbg( p_intf, "3 %i %i", nheight, nwidth );
554     }
555     msg_Dbg( p_intf, "4 %i %i", nheight, nwidth );
556     return QSize( nwidth, nheight );
557 }
558
559 #if 0
560 /* FIXME This is dead code and need to be removed AT THE END */
561 void MainInterface::resizeEvent( QResizeEvent *e )
562 {
563     if( videoWidget )
564         videoWidget->widgetSize.setWidth( e->size().width() - addSize.width() );
565     if( videoWidget && videoIsActive && videoWidget->widgetSize.height() > 1 )
566     {
567         SET_WH( videoWidget, e->size().width() - addSize.width(),
568                              e->size().height()  - addSize.height() );
569         videoWidget->updateGeometry();
570     }
571     if( VISIBLE( playlistWidget ) )
572     {
573 //        SET_WH( playlistWidget , e->size().width() - addSize.width(),
574               //                   e->size().height() - addSize.height() );
575         playlistWidget->updateGeometry();
576     }
577 }
578 #endif
579
580 /****************************************************************************
581  * Small right-click menu for rate control
582  ****************************************************************************/
583 void MainInterface::showSpeedMenu( QPoint pos )
584 {
585     speedControlMenu->exec( QCursor::pos() - pos
586                           + QPoint( 0, speedLabel->height() ) );
587 }
588
589 /****************************************************************************
590  * Video Handling
591  ****************************************************************************/
592 class SetVideoOnTopQtEvent : public QEvent
593 {
594 public:
595     SetVideoOnTopQtEvent( bool _onTop ) :
596       QEvent( (QEvent::Type)SetVideoOnTopEvent_Type ), onTop( _onTop)
597     {}
598
599     bool OnTop() const
600     {
601         return onTop;
602     }
603
604 private:
605     bool onTop;
606 };
607
608 /* function called from ::DoRequest in order to show a nice VideoWidget
609     at the good size */
610 void *MainInterface::requestVideo( vout_thread_t *p_nvout, int *pi_x,
611                                    int *pi_y, unsigned int *pi_width,
612                                    unsigned int *pi_height )
613 {
614     bool bgWasVisible = false;
615
616     /* Request the videoWidget */
617     void *ret = videoWidget->request( p_nvout,pi_x, pi_y, pi_width, pi_height );
618     if( ret ) /* The videoWidget is available */
619     {
620         /* Did we have a bg ? Hide it! */
621         if( VISIBLE( bgWidget) )
622         {
623             bgWasVisible = true;
624             emit askBgWidgetToToggle();
625         }
626
627         /*if( THEMIM->getIM()->hasVideo() || !bgWasVisible )
628         {
629             videoWidget->widgetSize = QSize( *pi_width, *pi_height );
630         }
631         else /* Background widget available, use its size */
632         /*{
633             /* Ok, our visualizations are bad, so don't do this for the moment
634              * use the requested size anyway */
635             // videoWidget->widgetSize = bgWidget->widgeTSize;
636           /*  videoWidget->widgetSize = QSize( *pi_width, *pi_height );
637         }*/
638
639         videoIsActive = true;
640
641         emit askVideoToResize( *pi_width, *pi_height );
642         emit askUpdate();
643     }
644     return ret;
645 }
646
647 void MainInterface::releaseVideo( void *p_win )
648 {
649     emit askReleaseVideo( p_win );
650 }
651
652 void MainInterface::releaseVideoSlot( void *p_win )
653 {
654     videoWidget->release( p_win );
655     videoWidget->hide();
656
657     if( bgWidget )// WORONG
658         bgWidget->show();
659
660     videoIsActive = false;
661     emit askUpdate();
662 }
663
664 int MainInterface::controlVideo( void *p_window, int i_query, va_list args )
665 {
666     int i_ret = VLC_EGENERIC;
667     switch( i_query )
668     {
669         case VOUT_GET_SIZE:
670         {
671             unsigned int *pi_width  = va_arg( args, unsigned int * );
672             unsigned int *pi_height = va_arg( args, unsigned int * );
673             *pi_width = videoWidget->widgetSize.width();
674             *pi_height = videoWidget->widgetSize.height();
675             i_ret = VLC_SUCCESS;
676             break;
677         }
678         case VOUT_SET_SIZE:
679         {
680             unsigned int i_width  = va_arg( args, unsigned int );
681             unsigned int i_height = va_arg( args, unsigned int );
682             emit askVideoToResize( i_width, i_height );
683             emit askUpdate();
684             updateGeometry();
685             i_ret = VLC_SUCCESS;
686             break;
687         }
688         case VOUT_SET_STAY_ON_TOP:
689         {
690             int i_arg = va_arg( args, int );
691             QApplication::postEvent( this, new SetVideoOnTopQtEvent( i_arg ) );
692             i_ret = VLC_SUCCESS;
693             break;
694         }
695         default:
696             msg_Warn( p_intf, "unsupported control query" );
697             break;
698     }
699     return i_ret;
700 }
701
702 /*****************************************************************************
703  * Playlist, Visualisation and Menus handling
704  *****************************************************************************/
705 /**
706  * Toggle the playlist widget or dialog
707  **/
708 void MainInterface::togglePlaylist()
709 {
710     /* CREATION
711     If no playlist exist, then create one and attach it to the DockPL*/
712     if( !playlistWidget )
713     {
714         playlistWidget = new PlaylistWidget( p_intf, settings, dockPL );
715
716         /* Add it to the parent DockWidget */
717         dockPL->setWidget( playlistWidget );
718
719         /* Add the dock to the main Interface */
720         addDockWidget( Qt::BottomDockWidgetArea, dockPL );
721
722         /* Make the playlist floating is requested. Default is not. */
723         settings->beginGroup( "MainWindow" );
724         if( settings->value( "playlist-floats", 1 ).toInt() )
725         {
726             msg_Dbg( p_intf, "we don't want the playlist inside");
727             dockPL->setFloating( true );
728         }
729         settings->endGroup();
730         settings->beginGroup( "playlist" );
731         dockPL->move( settings->value( "pos", QPoint( 0,0 ) ).toPoint() );
732         dockPL->resize( settings->value( "size", QSize( 400, 300 ) ).toSize() );
733         settings->endGroup();
734         dockPL->show();
735         playlistVisible = true;
736     }
737     else
738     {
739     /* toggle the visibility of the playlist */
740        TOGGLEV( dockPL );
741        resize( sizeHint() );
742        playlistVisible = !playlistVisible;
743     }
744 }
745
746 /* Function called from the menu to undock the playlist */
747 void MainInterface::undockPlaylist()
748 {
749     dockPL->setFloating( true );
750     resize( sizeHint() );
751 }
752
753 void MainInterface::toggleMinimalView()
754 {
755     TOGGLEV( menuBar() );
756     TOGGLEV( controls );
757     TOGGLEV( statusBar() );
758     updateGeometry();
759 }
760
761 /* Video widget cannot do this synchronously as it runs in another thread */
762 /* Well, could it, actually ? Probably dangerous ... */
763 void MainInterface::doComponentsUpdate()
764 {
765     resize( sizeHint() );
766     msg_Dbg( p_intf, "Updating the geometry" );
767     updateGeometry();
768 }
769
770 /* toggling advanced controls buttons */
771 void MainInterface::toggleAdvanced()
772 {
773     controls->toggleAdvanced();
774 }
775
776 /* Get the visibility status of the controls (hidden or not, advanced or not) */
777 int MainInterface::getControlsVisibilityStatus()
778 {
779     return( (controls->isVisible() ? CONTROLS_VISIBLE : CONTROLS_HIDDEN )
780                 + CONTROLS_ADVANCED * controls->b_advancedVisible );
781 }
782
783 #if 0
784 void MainInterface::visual()
785 {
786     if( !VISIBLE( visualSelector) )
787     {
788         visualSelector->show();
789         if( !THEMIM->getIM()->hasVideo() )
790         {
791             /* Show the background widget */
792         }
793         visualSelectorEnabled = true;
794     }
795     else
796     {
797         /* Stop any currently running visualization */
798         visualSelector->hide();
799         visualSelectorEnabled = false;
800     }
801     doComponentsUpdate();
802 }
803 #endif
804
805 /************************************************************************
806  * Other stuff
807  ************************************************************************/
808 void MainInterface::setDisplayPosition( float pos, int time, int length )
809 {
810     char psz_length[MSTRTIME_MAX_SIZE], psz_time[MSTRTIME_MAX_SIZE];
811     secstotimestr( psz_length, length );
812     secstotimestr( psz_time, ( b_remainingTime && length ) ? length - time
813                                                            : time );
814
815     QString timestr;
816     timestr.sprintf( "%s/%s", psz_time,
817                             ( !length && time ) ? "--:--" : psz_length );
818
819     /* Add a minus to remaining time*/
820     if( b_remainingTime && length ) timeLabel->setText( " -"+timestr+" " );
821     else timeLabel->setText( " "+timestr+" " );
822 }
823
824 void MainInterface::toggleTimeDisplay()
825 {
826     b_remainingTime = !b_remainingTime;
827 }
828
829 void MainInterface::setName( QString name )
830 {
831     input_name = name; /* store it for the QSystray use */
832     /* Display it in the status bar, but also as a Tooltip in case it doesn't
833        fit in the label */
834     nameLabel->setText( " " + name + " " );
835     nameLabel->setToolTip( " " + name +" " );
836 }
837
838 void MainInterface::setStatus( int status )
839 {
840     /* Forward the status to the controls to toggle Play/Pause */
841     controls->setStatus( status );
842     /* And in the systray for the menu */
843     if( sysTray )
844         QVLCMenu::updateSystrayMenu( this, p_intf );
845 }
846
847 void MainInterface::setRate( int rate )
848 {
849     QString str;
850     str.setNum( ( 1000 / (double)rate ), 'f', 2 );
851     str.append( "x" );
852     speedLabel->setText( str );
853     speedControl->updateControls( rate );
854 }
855
856 void MainInterface::updateOnTimer()
857 {
858     if( intf_ShouldDie( p_intf ) )
859     {
860         QApplication::closeAllWindows();
861         QApplication::quit();
862     }
863 #if 0
864     if( need_components_update )
865     {
866         doComponentsUpdate();
867         need_components_update = false;
868     }
869 #endif
870
871     controls->updateOnTimer();
872 }
873
874 /*****************************************************************************
875  * Systray Icon and Systray Menu
876  *****************************************************************************/
877
878 /**
879  * Create a SystemTray icon and a menu that would go with it.
880  * Connects to a click handler on the icon.
881  **/
882 void MainInterface::createSystray()
883 {
884     QIcon iconVLC;
885     if( QDate::currentDate().dayOfYear() >= 354 )
886         iconVLC =  QIcon( QPixmap( ":/vlc128-christmas.png" ) );
887     else
888         iconVLC =  QIcon( QPixmap( ":/vlc128.png" ) );
889     sysTray = new QSystemTrayIcon( iconVLC, this );
890     sysTray->setToolTip( qtr( "VLC media player" ));
891
892     systrayMenu = new QMenu( qtr( "VLC media player" ), this );
893     systrayMenu->setIcon( iconVLC );
894
895     QVLCMenu::updateSystrayMenu( this, p_intf, true );
896     sysTray->show();
897
898     CONNECT( sysTray, activated( QSystemTrayIcon::ActivationReason ),
899             this, handleSystrayClick( QSystemTrayIcon::ActivationReason ) );
900 }
901
902 /**
903  * Updates the Systray Icon's menu and toggle the main interface
904  */
905 void MainInterface::toggleUpdateSystrayMenu()
906 {
907     /* If hidden, show it */
908     if( isHidden() )
909     {
910         show();
911         activateWindow();
912     }
913     else if( isMinimized() )
914     {
915         /* Minimized */
916         showNormal();
917         activateWindow();
918     }
919     else
920     {
921         /* Visible */
922 #ifdef WIN32
923         /* check if any visible window is above vlc in the z-order,
924          * but ignore the ones always on top */
925         WINDOWINFO wi;
926         HWND hwnd;
927         wi.cbSize = sizeof( WINDOWINFO );
928         for( hwnd = GetNextWindow( internalWinId(), GW_HWNDPREV );
929                 hwnd && !IsWindowVisible( hwnd );
930                 hwnd = GetNextWindow( hwnd, GW_HWNDPREV ) );
931         if( !hwnd || !GetWindowInfo( hwnd, &wi ) ||
932                 (wi.dwExStyle&WS_EX_TOPMOST) )
933 #else
934         if( isActiveWindow() )
935 #endif
936         {
937             hide();
938         }
939         else
940         {
941             activateWindow();
942         }
943     }
944     QVLCMenu::updateSystrayMenu( this, p_intf );
945 }
946
947 void MainInterface::handleSystrayClick(
948                                     QSystemTrayIcon::ActivationReason reason )
949 {
950     switch( reason )
951     {
952         case QSystemTrayIcon::Trigger:
953             toggleUpdateSystrayMenu();
954             break;
955         case QSystemTrayIcon::MiddleClick:
956             sysTray->showMessage( qtr( "VLC media player" ),
957                     qtr( "Control menu for the player" ),
958                     QSystemTrayIcon::Information, 3000 );
959             break;
960     }
961 }
962
963 /**
964  * Updates the name of the systray Icon tooltip.
965  * Doesn't check if the systray exists, check before you call it.
966  **/
967 void MainInterface::updateSystrayTooltipName( QString name )
968 {
969     if( name.isEmpty() )
970     {
971         sysTray->setToolTip( qtr( "VLC media player" ) );
972     }
973     else
974     {
975         sysTray->setToolTip( name );
976         if( notificationEnabled && ( isHidden() || isMinimized() ) )
977         {
978             sysTray->showMessage( qtr( "VLC media player" ), name,
979                     QSystemTrayIcon::NoIcon, 3000 );
980         }
981     }
982 }
983
984 /**
985  * Updates the status of the systray Icon tooltip.
986  * Doesn't check if the systray exists, check before you call it.
987  **/
988 void MainInterface::updateSystrayTooltipStatus( int i_status )
989 {
990     switch( i_status )
991     {
992         case  0:
993         case  END_S:
994             {
995                 sysTray->setToolTip( qtr( "VLC media player" ) );
996                 break;
997             }
998         case PLAYING_S:
999             {
1000                 sysTray->setToolTip( input_name );
1001                 break;
1002             }
1003         case PAUSE_S:
1004             {
1005                 sysTray->setToolTip( input_name + " - "
1006                         + qtr( "Paused") );
1007                 break;
1008             }
1009     }
1010 }
1011
1012 /************************************************************************
1013  * D&D Events
1014  ************************************************************************/
1015 void MainInterface::dropEvent(QDropEvent *event)
1016 {
1017      const QMimeData *mimeData = event->mimeData();
1018
1019      /* D&D of a subtitles file, add it on the fly */
1020      if( mimeData->urls().size() == 1 )
1021      {
1022         if( THEMIM->getIM()->hasInput() )
1023         {
1024             if( input_AddSubtitles( THEMIM->getInput(),
1025                                     qtu( mimeData->urls()[0].toString() ),
1026                                     VLC_TRUE ) )
1027             {
1028                 event->acceptProposedAction();
1029                 return;
1030             }
1031         }
1032      }
1033      bool first = true;
1034      foreach( QUrl url, mimeData->urls() ) {
1035         QString s = url.toString();
1036         if( s.length() > 0 ) {
1037             playlist_Add( THEPL, qtu(s), NULL,
1038                           PLAYLIST_APPEND | (first ? PLAYLIST_GO:0),
1039                           PLAYLIST_END, VLC_TRUE, VLC_FALSE );
1040             first = false;
1041         }
1042      }
1043      event->acceptProposedAction();
1044 }
1045 void MainInterface::dragEnterEvent(QDragEnterEvent *event)
1046 {
1047      event->acceptProposedAction();
1048 }
1049 void MainInterface::dragMoveEvent(QDragMoveEvent *event)
1050 {
1051      event->acceptProposedAction();
1052 }
1053 void MainInterface::dragLeaveEvent(QDragLeaveEvent *event)
1054 {
1055      event->accept();
1056 }
1057
1058 /************************************************************************
1059  * Events stuff
1060  ************************************************************************/
1061 void MainInterface::customEvent( QEvent *event )
1062 {
1063 #if 0
1064     if( event->type() == PLDockEvent_Type )
1065     {
1066         PlaylistDialog::killInstance();
1067         playlistEmbeddedFlag = true;
1068         menuBar()->clear();
1069         QVLCMenu::createMenuBar(this, p_intf, true, visualSelectorEnabled);
1070         togglePlaylist();
1071     }
1072 #endif
1073     /*else */
1074     if ( event->type() == SetVideoOnTopEvent_Type )
1075     {
1076         SetVideoOnTopQtEvent* p_event = (SetVideoOnTopQtEvent*)event;
1077         if( p_event->OnTop() )
1078             setWindowFlags(windowFlags() | Qt::WindowStaysOnTopHint);
1079         else
1080             setWindowFlags(windowFlags() & ~Qt::WindowStaysOnTopHint);
1081         show(); /* necessary to apply window flags?? */
1082     }
1083 }
1084
1085 void MainInterface::keyPressEvent( QKeyEvent *e )
1086 {
1087     if( ( e->modifiers() &  Qt::ControlModifier ) && ( e->key() & Qt::Key_H )
1088           && menuBar()->isHidden() )
1089     {
1090         toggleMinimalView();
1091         e->accept();
1092     }
1093
1094     int i_vlck = qtEventToVLCKey( e );
1095     if( i_vlck > 0 )
1096     {
1097         var_SetInteger( p_intf->p_libvlc, "key-pressed", i_vlck );
1098         e->accept();
1099     }
1100     else
1101         e->ignore();
1102 }
1103
1104 void MainInterface::wheelEvent( QWheelEvent *e )
1105 {
1106     int i_vlckey = qtWheelEventToVLCKey( e );
1107     var_SetInteger( p_intf->p_libvlc, "key-pressed", i_vlckey );
1108     e->accept();
1109 }
1110
1111 void MainInterface::closeEvent( QCloseEvent *e )
1112 {
1113     hide();
1114     vlc_object_kill( p_intf );
1115     QApplication::closeAllWindows();
1116     QApplication::quit();
1117 }
1118
1119 /*****************************************************************************
1120  * Callbacks
1121  *****************************************************************************/
1122 static int InteractCallback( vlc_object_t *p_this,
1123                              const char *psz_var, vlc_value_t old_val,
1124                              vlc_value_t new_val, void *param )
1125 {
1126     intf_dialog_args_t *p_arg = new intf_dialog_args_t;
1127     p_arg->p_dialog = (interaction_dialog_t *)(new_val.p_address);
1128     DialogEvent *event = new DialogEvent( INTF_DIALOG_INTERACTION, 0, p_arg );
1129     QApplication::postEvent( THEDP, static_cast<QEvent*>(event) );
1130     return VLC_SUCCESS;
1131 }
1132
1133 /*****************************************************************************
1134  * PopupMenuCB: callback triggered by the intf-popupmenu playlist variable.
1135  *  We don't show the menu directly here because we don't want the
1136  *  caller to block for a too long time.
1137  *****************************************************************************/
1138 static int PopupMenuCB( vlc_object_t *p_this, const char *psz_variable,
1139                         vlc_value_t old_val, vlc_value_t new_val, void *param )
1140 {
1141     intf_thread_t *p_intf = (intf_thread_t *)param;
1142
1143     if( p_intf->pf_show_dialog )
1144     {
1145         p_intf->pf_show_dialog( p_intf, INTF_DIALOG_POPUPMENU,
1146                                 new_val.b_bool, 0 );
1147     }
1148
1149     return VLC_SUCCESS;
1150 }
1151
1152 /*****************************************************************************
1153  * IntfShowCB: callback triggered by the intf-show playlist variable.
1154  *****************************************************************************/
1155 static int IntfShowCB( vlc_object_t *p_this, const char *psz_variable,
1156                        vlc_value_t old_val, vlc_value_t new_val, void *param )
1157 {
1158     intf_thread_t *p_intf = (intf_thread_t *)param;
1159     //p_intf->p_sys->b_intf_show = VLC_TRUE;
1160
1161     return VLC_SUCCESS;
1162 }