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