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