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