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