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