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