]> git.sesse.net Git - vlc/blob - modules/gui/qt4/main_interface.cpp
Merge branch 'master' of git@git.videolan.org:vlc
[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 /* Video handling */
80 static void *DoRequest( intf_thread_t *p_intf, vout_thread_t *p_vout,
81                         int *pi1, int *pi2, unsigned int*pi3,unsigned int*pi4)
82 {
83     return p_intf->p_sys->p_mi->requestVideo( p_vout, pi1, pi2, pi3, pi4 );
84 }
85 static void DoRelease( intf_thread_t *p_intf, void *p_win )
86 {
87     return p_intf->p_sys->p_mi->releaseVideo( p_win );
88 }
89 static int DoControl( intf_thread_t *p_intf, void *p_win, int i_q, va_list a )
90 {
91     return p_intf->p_sys->p_mi->controlVideo( p_win, i_q, a );
92 }
93
94 MainInterface::MainInterface( intf_thread_t *_p_intf ) : QVLCMW( _p_intf )
95 {
96     /* Variables initialisation */
97     // need_components_update = false;
98     bgWidget = NULL;
99     videoWidget = NULL;
100     playlistWidget = NULL;
101     sysTray = NULL;
102     videoIsActive = false;
103     playlistVisible = false;
104     input_name = "";
105
106     /* Ask for privacy */
107     askForPrivacy();
108
109     /**
110      *  Configuration and settings
111      *  Pre-building of interface
112      **/
113     /* Main settings */
114     setFocusPolicy( Qt::StrongFocus );
115     setAcceptDrops( true );
116     setWindowIcon( QApplication::windowIcon() );
117     setWindowOpacity( config_GetFloat( p_intf, "qt-opacity" ) );
118
119     /* Set The Video In emebedded Mode or not */
120     videoEmbeddedFlag = config_GetInt( p_intf, "embedded-video" );
121
122     /* Are we in the enhanced always-video mode or not ? */
123     i_visualmode = config_GetInt( p_intf, "qt-display-mode" );
124
125     /* Set the other interface settings */
126     settings = new QSettings( "vlc", "vlc-qt-interface" );
127     settings->beginGroup( "MainWindow" );
128
129     //TODO: I don't like that code
130     visualSelectorEnabled = settings->value( "visual-selector", false ).toBool();
131     notificationEnabled = (bool)config_GetInt( p_intf, "qt-notification" );
132
133     /**************************
134      *  UI and Widgets design
135      **************************/
136     setVLCWindowsTitle();
137     handleMainUi( settings );
138
139 #if 0
140     /* Create a Dock to get the playlist */
141     dockPL = new QDockWidget( qtr( "Playlist" ), this );
142     dockPL->setSizePolicy( QSizePolicy::Preferred,
143                            QSizePolicy::Expanding );
144     dockPL->setFeatures( QDockWidget::AllDockWidgetFeatures );
145     dockPL->setAllowedAreas( Qt::LeftDockWidgetArea
146                            | Qt::RightDockWidgetArea
147                            | Qt::BottomDockWidgetArea );
148     dockPL->hide();
149 #endif
150
151     /************
152      * Menu Bar
153      ************/
154     QVLCMenu::createMenuBar( this, p_intf, visualSelectorEnabled );
155
156     /* StatusBar Creation */
157     createStatusBar();
158
159
160     /********************
161      * Input Manager    *
162      ********************/
163     MainInputManager::getInstance( p_intf );
164
165     /**************************
166      * Various CONNECTs on IM *
167      **************************/
168     /* Connect the input manager to the GUI elements it manages */
169
170     /* It is also connected to the control->slider, see the ControlsWidget */
171     CONNECT( THEMIM->getIM(), positionUpdated( float, int, int ),
172              this, setDisplayPosition( float, int, int ) );
173     /* Change the SpeedRate in the Status */
174     CONNECT( THEMIM->getIM(), rateChanged( int ), this, setRate( int ) );
175
176     /**
177      * Connects on nameChanged()
178      * Those connects are not merged because different options can trigger
179      * them down.
180      */
181     /* Naming in the controller statusbar */
182     CONNECT( THEMIM->getIM(), nameChanged( QString ), this,
183              setName( QString ) );
184     /* and in the systray */
185     if( sysTray )
186     {
187         CONNECT( THEMIM->getIM(), nameChanged( QString ), this,
188                  updateSystrayTooltipName( QString ) );
189     }
190     /* and in the title of the controller */
191     if( config_GetInt( p_intf, "qt-name-in-title" ) )
192     {
193         CONNECT( THEMIM->getIM(), nameChanged( QString ), this,
194              setVLCWindowsTitle( QString ) );
195     }
196
197     /**
198      * CONNECTS on PLAY_STATUS
199      **/
200     /* Status on the main controller */
201     CONNECT( THEMIM->getIM(), statusChanged( int ), this, setStatus( int ) );
202     /* and in the systray */
203     if( sysTray )
204     {
205         CONNECT( THEMIM->getIM(), statusChanged( int ), this,
206                  updateSystrayTooltipStatus( int ) );
207     }
208
209     /* END CONNECTS ON IM */
210
211
212     /** OnTimeOut **/
213     /* TODO Remove this function, but so far, there is no choice because there
214        is no intf-should-die variable */
215     ON_TIMEOUT( updateOnTimer() );
216     //ON_TIMEOUT( debug() );
217
218     /**
219      * Callbacks
220      **/
221     var_Create( p_intf, "interaction", VLC_VAR_ADDRESS );
222     var_AddCallback( p_intf, "interaction", InteractCallback, this );
223     p_intf->b_interaction = true;
224
225     /* Register callback for the intf-popupmenu variable */
226     playlist_t *p_playlist = (playlist_t *)vlc_object_find( p_intf,
227                                         VLC_OBJECT_PLAYLIST, FIND_ANYWHERE );
228     if( p_playlist != NULL )
229     {
230         var_AddCallback( p_playlist, "intf-popupmenu", PopupMenuCB, p_intf );
231         var_AddCallback( p_playlist, "intf-show", IntfShowCB, p_intf );
232         vlc_object_release( p_playlist );
233     }
234
235     /* VideoWidget connect mess to avoid different threads speaking to each other */
236     CONNECT( this, askReleaseVideo( void * ),
237              this, releaseVideoSlot( void * ) );
238     CONNECT( this, askVideoToResize( unsigned int, unsigned int ),
239              videoWidget, SetSizing( unsigned int, unsigned int ) );
240
241     CONNECT( this, askUpdate(), this, doComponentsUpdate() );
242
243     CONNECT( controls, advancedControlsToggled( bool ),
244              this, doComponentsUpdate() );
245
246     /* Size and placement of interface */
247     QVLCTools::restoreWidgetPosition(settings,this,QSize(350,60));
248
249
250     /* Playlist */
251     if( settings->value( "playlist-visible", 0 ).toInt() ) togglePlaylist();
252     settings->endGroup();
253
254     show();
255
256     if( i_visualmode == QT_MINIMAL_MODE )
257         toggleMinimalView();
258
259     /* Update the geometry TODO: is it useful ?*/
260     updateGeometry();
261
262     /*****************************************************
263      * End everything by creating the Systray Management *
264      *****************************************************/
265     initSystray();
266 }
267
268 MainInterface::~MainInterface()
269 {
270     msg_Dbg( p_intf, "Destroying the main interface" );
271
272     if( playlistWidget )
273         playlistWidget->savingSettings( settings );
274
275     settings->beginGroup( "MainWindow" );
276
277     // settings->setValue( "playlist-floats", (int)(dockPL->isFloating()) );
278     settings->setValue( "playlist-visible", (int)playlistVisible );
279     settings->setValue( "adv-controls",
280                         getControlsVisibilityStatus() & CONTROLS_ADVANCED );
281
282     if( !videoIsActive )
283         QVLCTools::saveWidgetPosition(settings, this);
284
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 = 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 SpeedLabel( p_intf, "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, 0, Qt::AlignBottom );
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();
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
541     QPushButton *ok = new QPushButton( qtr( "Ok" ) );
542
543     gLayout->addWidget( ok, 2, 2 );
544
545     CONNECT( ok, clicked(), privacy, accept() );
546     return privacy->exec();
547 }
548
549
550 /**********************************************************************
551  * Handling of sizing of the components
552  **********************************************************************/
553
554 /* This function is probably wrong, but we don't have many many choices...
555    Since we can't know from the playlist Widget if we are inside a dock or not,
556    because the playlist Widget can be called by THEDP, as a separate windows for
557    the skins.
558    Maybe the other solution is to redefine the sizeHint() of the playlist and
559    ask _parent->isFloating()...
560    If you think this would be better, please FIXME it...
561 */
562 #if 0
563 QSize MainInterface::sizeHint() const
564 {
565     int nwidth  = controls->sizeHint().width();
566     int nheight = controls->isVisible() ?
567                   controls->size().height()
568                   + menuBar()->size().height()
569                   + statusBar()->size().height()
570                   : 0 ;
571
572     msg_Dbg( p_intf, "1 %i %i", nheight, nwidth );
573     if( VISIBLE( bgWidget ) )
574     {
575         nheight += bgWidget->size().height();
576         nwidth  = bgWidget->size().width();
577         msg_Dbg( p_intf, "1b %i %i", nheight, nwidth );
578     }
579     else if( videoIsActive )
580     {
581         nheight += videoWidget->size().height();
582         nwidth  = videoWidget->size().width();
583         msg_Dbg( p_intf, "2 %i %i", nheight, nwidth );
584     }
585 /*    if( !dockPL->isFloating() && dockPL->isVisible() && dockPL->widget()  )
586     {
587         nheight += dockPL->size().height();
588         nwidth = __MAX( nwidth, dockPL->size().width() );
589         msg_Dbg( p_intf, "3 %i %i", nheight, nwidth );
590     }*/
591     msg_Dbg( p_intf, "4 %i %i", nheight, nwidth );
592     return QSize( nwidth, nheight );
593 }
594 #endif
595 #if 0
596 /* FIXME This is dead code and need to be removed AT THE END */
597 void MainInterface::resizeEvent( QResizeEvent *e )
598 {
599     if( videoWidget )
600         videoWidget->widgetSize.setWidth( e->size().width() - addSize.width() );
601     if( videoWidget && videoIsActive && videoWidget->widgetSize.height() > 1 )
602     {
603         SET_WH( videoWidget, e->size().width() - addSize.width(),
604                              e->size().height()  - addSize.height() );
605         videoWidget->updateGeometry();
606     }
607     if( VISIBLE( playlistWidget ) )
608     {
609 //        SET_WH( playlistWidget , e->size().width() - addSize.width(),
610               //                   e->size().height() - addSize.height() );
611         playlistWidget->updateGeometry();
612     }
613 }
614 #endif
615
616 void MainInterface::requestLayoutUpdate()
617 {
618     emit askUpdate();
619 }
620
621 //FIXME remove me at the end...
622 void MainInterface::debug()
623 {
624     msg_Dbg( p_intf, "size: %i - %i", size().height(), size().width() );
625     msg_Dbg( p_intf, "sizeHint: %i - %i", sizeHint().height(), sizeHint().width() );
626     if( videoWidget->isVisible() )
627     {
628 //    sleep( 10 );
629     msg_Dbg( p_intf, "size: %i - %i", size().height(), size().width() );
630     msg_Dbg( p_intf, "sizeHint: %i - %i", sizeHint().height(), sizeHint().width() );
631     }
632     adjustSize();
633 }
634
635 /****************************************************************************
636  * Small right-click menu for rate control
637  ****************************************************************************/
638 void MainInterface::showSpeedMenu( QPoint pos )
639 {
640     speedControlMenu->exec( QCursor::pos() - pos
641                           + QPoint( 0, speedLabel->height() ) );
642 }
643
644 /****************************************************************************
645  * Video Handling
646  ****************************************************************************/
647 class SetVideoOnTopQtEvent : public QEvent
648 {
649 public:
650     SetVideoOnTopQtEvent( bool _onTop ) :
651       QEvent( (QEvent::Type)SetVideoOnTopEvent_Type ), onTop( _onTop)
652     {}
653
654     bool OnTop() const
655     {
656         return onTop;
657     }
658
659 private:
660     bool onTop;
661 };
662
663 /**
664  * README
665  * README
666  * Thou shall not call/resize/hide widgets from on another thread.
667  * This is wrong, and this is TEH reason to emit signals on those Video Functions
668  **/
669 /* function called from ::DoRequest in order to show a nice VideoWidget
670     at the good size */
671 void *MainInterface::requestVideo( vout_thread_t *p_nvout, int *pi_x,
672                                    int *pi_y, unsigned int *pi_width,
673                                    unsigned int *pi_height )
674 {
675     bool bgWasVisible = false;
676
677     /* Request the videoWidget */
678     void *ret = videoWidget->request( p_nvout,pi_x, pi_y, pi_width, pi_height );
679     if( ret ) /* The videoWidget is available */
680     {
681         /* Did we have a bg ? Hide it! */
682         if( VISIBLE( bgWidget) )
683         {
684             bgWasVisible = true;
685             emit askBgWidgetToToggle();
686         }
687
688         /*if( THEMIM->getIM()->hasVideo() || !bgWasVisible )
689         {
690             videoWidget->widgetSize = QSize( *pi_width, *pi_height );
691         }
692         else /* Background widget available, use its size */
693         /*{
694             /* Ok, our visualizations are bad, so don't do this for the moment
695              * use the requested size anyway */
696             // videoWidget->widgetSize = bgWidget->widgeTSize;
697           /*  videoWidget->widgetSize = QSize( *pi_width, *pi_height );
698         }*/
699
700         videoIsActive = true;
701
702         emit askVideoToResize( *pi_width, *pi_height );
703         emit askUpdate();
704     }
705     return ret;
706 }
707
708 void MainInterface::releaseVideo( void *p_win )
709 {
710     emit askReleaseVideo( p_win );
711 }
712
713 void MainInterface::releaseVideoSlot( void *p_win )
714 {
715     videoWidget->release( p_win );
716     videoWidget->hide();
717
718     if( bgWidget )// WORONG
719         bgWidget->show();
720
721     adjustSize();
722     videoIsActive = false;
723 }
724
725 int MainInterface::controlVideo( void *p_window, int i_query, va_list args )
726 {
727     int i_ret = VLC_SUCCESS;
728     switch( i_query )
729     {
730         case VOUT_GET_SIZE:
731         {
732             unsigned int *pi_width  = va_arg( args, unsigned int * );
733             unsigned int *pi_height = va_arg( args, unsigned int * );
734             *pi_width = videoWidget->videoSize.width();
735             *pi_height = videoWidget->videoSize.height();
736             break;
737         }
738         case VOUT_SET_SIZE:
739         {
740             unsigned int i_width  = va_arg( args, unsigned int );
741             unsigned int i_height = va_arg( args, unsigned int );
742             emit askVideoToResize( i_width, i_height );
743             emit askUpdate();
744             break;
745         }
746         case VOUT_SET_STAY_ON_TOP:
747         {
748             int i_arg = va_arg( args, int );
749             QApplication::postEvent( this, new SetVideoOnTopQtEvent( i_arg ) );
750             break;
751         }
752         default:
753             i_ret = VLC_EGENERIC;
754             msg_Warn( p_intf, "unsupported control query" );
755             break;
756     }
757     return i_ret;
758 }
759
760 /*****************************************************************************
761  * Playlist, Visualisation and Menus handling
762  *****************************************************************************/
763 /**
764  * Toggle the playlist widget or dialog
765  **/
766 void MainInterface::togglePlaylist()
767 {
768     THEDP->playlistDialog();
769 #if 0
770     /* CREATION
771     If no playlist exist, then create one and attach it to the DockPL*/
772     if( !playlistWidget )
773     {
774         playlistWidget = new PlaylistWidget( p_intf, settings, dockPL );
775
776         /* Add it to the parent DockWidget */
777         dockPL->setWidget( playlistWidget );
778
779         /* Add the dock to the main Interface */
780         addDockWidget( Qt::BottomDockWidgetArea, dockPL );
781
782         /* Make the playlist floating is requested. Default is not. */
783         settings->beginGroup( "MainWindow" );
784         if( settings->value( "playlist-floats", 1 ).toInt() )
785         {
786             msg_Dbg( p_intf, "we don't want the playlist inside");
787             dockPL->setFloating( true );
788         }
789         settings->endGroup();
790         settings->beginGroup( "playlist" );
791         dockPL->move( settings->value( "pos", QPoint( 0,0 ) ).toPoint() );
792         QSize newSize = settings->value( "size", QSize( 400, 300 ) ).toSize();
793         if( newSize.isValid() )
794             dockPL->resize( newSize );
795         settings->endGroup();
796
797         dockPL->show();
798         playlistVisible = true;
799     }
800     else
801     {
802     /* toggle the visibility of the playlist */
803        TOGGLEV( dockPL );
804        resize( sizeHint() );
805        playlistVisible = !playlistVisible;
806     }
807     #endif
808 }
809
810 /* Function called from the menu to undock the playlist */
811 void MainInterface::undockPlaylist()
812 {
813 //    dockPL->setFloating( true );
814     adjustSize();
815 }
816
817 void MainInterface::toggleMinimalView()
818 {
819     TOGGLEV( menuBar() );
820     TOGGLEV( controls );
821     TOGGLEV( statusBar() );
822     doComponentsUpdate();
823 }
824
825 /* Video widget cannot do this synchronously as it runs in another thread */
826 /* Well, could it, actually ? Probably dangerous ... */
827 void MainInterface::doComponentsUpdate()
828 {
829     msg_Dbg( p_intf, "Updating the geometry" );
830 //    resize( sizeHint() );
831     debug();
832 }
833
834 /* toggling advanced controls buttons */
835 void MainInterface::toggleAdvanced()
836 {
837     controls->toggleAdvanced();
838 }
839
840 /* Get the visibility status of the controls (hidden or not, advanced or not) */
841 int MainInterface::getControlsVisibilityStatus()
842 {
843     return( (controls->isVisible() ? CONTROLS_VISIBLE : CONTROLS_HIDDEN )
844                 + CONTROLS_ADVANCED * controls->b_advancedVisible );
845 }
846
847 #if 0
848 void MainInterface::visual()
849 {
850     if( !VISIBLE( visualSelector) )
851     {
852         visualSelector->show();
853         if( !THEMIM->getIM()->hasVideo() )
854         {
855             /* Show the background widget */
856         }
857         visualSelectorEnabled = true;
858     }
859     else
860     {
861         /* Stop any currently running visualization */
862         visualSelector->hide();
863         visualSelectorEnabled = false;
864     }
865     doComponentsUpdate();
866 }
867 #endif
868
869 /************************************************************************
870  * Other stuff
871  ************************************************************************/
872 void MainInterface::setDisplayPosition( float pos, int time, int length )
873 {
874     char psz_length[MSTRTIME_MAX_SIZE], psz_time[MSTRTIME_MAX_SIZE];
875     secstotimestr( psz_length, length );
876     secstotimestr( psz_time, ( b_remainingTime && length ) ? length - time
877                                                            : time );
878
879     QString timestr;
880     timestr.sprintf( "%s/%s", psz_time,
881                             ( !length && time ) ? "--:--" : psz_length );
882
883     /* Add a minus to remaining time*/
884     if( b_remainingTime && length ) timeLabel->setText( " -"+timestr+" " );
885     else timeLabel->setText( " "+timestr+" " );
886 }
887
888 void MainInterface::toggleTimeDisplay()
889 {
890     b_remainingTime = !b_remainingTime;
891 }
892
893 void MainInterface::setName( QString name )
894 {
895     input_name = name; /* store it for the QSystray use */
896     /* Display it in the status bar, but also as a Tooltip in case it doesn't
897        fit in the label */
898     nameLabel->setText( " " + name + " " );
899     nameLabel->setToolTip( " " + name +" " );
900 }
901
902 void MainInterface::setStatus( int status )
903 {
904     msg_Dbg( p_intf, "I was here, updating your status" );
905     /* Forward the status to the controls to toggle Play/Pause */
906     controls->setStatus( status );
907
908     controls->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.toString();
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     msg_Dbg( p_this, "Menu Requested" ); // DEBUG to track the non disparition of the menu...
1212
1213     if( p_intf->pf_show_dialog )
1214     {
1215         p_intf->pf_show_dialog( p_intf, INTF_DIALOG_POPUPMENU,
1216                                 new_val.b_bool, 0 );
1217     }
1218
1219     return VLC_SUCCESS;
1220 }
1221
1222 /*****************************************************************************
1223  * IntfShowCB: callback triggered by the intf-show playlist variable.
1224  *****************************************************************************/
1225 static int IntfShowCB( vlc_object_t *p_this, const char *psz_variable,
1226                        vlc_value_t old_val, vlc_value_t new_val, void *param )
1227 {
1228     intf_thread_t *p_intf = (intf_thread_t *)param;
1229     msg_Dbg( p_this, "Intf Show Requested" ); // DEBUG to track the non disparition of the menu...
1230     p_intf->p_sys->p_mi->requestLayoutUpdate();
1231
1232     return VLC_SUCCESS;
1233 }