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