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