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