]> git.sesse.net Git - vlc/blob - modules/gui/qt4/main_interface.cpp
Qt4: convert on top event to signal/slot model
[vlc] / modules / gui / qt4 / main_interface.cpp
1 /*****************************************************************************
2  * main_interface.cpp : Main interface
3  ****************************************************************************
4  * Copyright (C) 2006-2010 VideoLAN and AUTHORS
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 Foundation, Inc.,
23  * 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"                    // Creation
34 #include "actions_manager.hpp"                  // killInstance
35 #include "extensions_manager.hpp"               // killInstance
36
37 #include "util/customwidgets.hpp"               // qtEventToVLCKey, QVLCStackedWidget
38 #include "util/qt_dirs.hpp"                     // toNativeSeparators
39
40 #include "components/interface_widgets.hpp"     // bgWidget, videoWidget
41 #include "components/controller.hpp"            // controllers
42 #include "components/playlist/playlist.hpp"     // plWidget
43 #include "dialogs/firstrun.hpp"                 // First Run
44
45 #include "menus.hpp"                            // Menu creation
46 #include "recents.hpp"                          // RecentItems when DnD
47
48 #include <QCloseEvent>
49 #include <QKeyEvent>
50
51 #include <QUrl>
52 #include <QSize>
53 #include <QDate>
54
55 #include <QMenu>
56 #include <QMenuBar>
57 #include <QStatusBar>
58 #include <QLabel>
59 #include <QStackedWidget>
60
61 #include <vlc_keys.h>                       /* Wheel event */
62 #include <vlc_vout_display.h>               /* vout_thread_t and VOUT_ events */
63
64 // #define DEBUG_INTF
65
66 /* Callback prototypes */
67 static int PopupMenuCB( 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 IntfShowCB( vlc_object_t *p_this, const char *psz_variable,
70                        vlc_value_t old_val, vlc_value_t new_val, void *param );
71
72 MainInterface::MainInterface( intf_thread_t *_p_intf ) : QVLCMW( _p_intf )
73 {
74     /* Variables initialisation */
75     bgWidget             = NULL;
76     videoWidget          = NULL;
77     playlistWidget       = NULL;
78     stackCentralOldWidget= NULL;
79 #ifndef HAVE_MAEMO
80     sysTray              = NULL;
81 #endif
82     fullscreenControls   = NULL;
83     cryptedLabel         = NULL;
84     controls             = NULL;
85     inputC               = NULL;
86
87     b_hideAfterCreation  = false; // --qt-start-minimized
88     playlistVisible      = false;
89     input_name           = "";
90
91
92     /* Ask for Privacy */
93     FirstRun::CheckAndRun( this, p_intf );
94
95     /**
96      *  Configuration and settings
97      *  Pre-building of interface
98      **/
99     /* Main settings */
100     setFocusPolicy( Qt::StrongFocus );
101     setAcceptDrops( true );
102     setWindowRole( "vlc-main" );
103     setWindowIcon( QApplication::windowIcon() );
104     setWindowOpacity( var_InheritFloat( p_intf, "qt-opacity" ) );
105
106     /* Is video in embedded in the UI or not */
107     b_videoEmbedded = var_InheritBool( p_intf, "embedded-video" );
108
109     /* Does the interface resize to video size or the opposite */
110     b_autoresize = var_InheritBool( p_intf, "qt-video-autoresize" );
111
112     /* Are we in the enhanced always-video mode or not ? */
113     i_visualmode = var_InheritInteger( p_intf, "qt-minimal-view" );
114
115     /* Do we want anoying popups or not */
116     b_notificationEnabled = var_InheritBool( p_intf, "qt-notification" );
117
118     /* Set the other interface settings */
119     settings = getSettings();
120     settings->beginGroup( "MainWindow" );
121
122     /* */
123     b_plDocked = getSettings()->value( "pl-dock-status", true ).toBool();
124
125     settings->endGroup( );
126
127     /**************
128      * Status Bar *
129      **************/
130     createStatusBar();
131
132     /**************************
133      *  UI and Widgets design
134      **************************/
135     setVLCWindowsTitle();
136
137     /************
138      * Menu Bar *
139      ************/
140     QVLCMenu::createMenuBar( this, p_intf );
141     CONNECT( THEMIM->getIM(), voutListChanged( vout_thread_t **, int ),
142              this, destroyPopupMenu() );
143
144     createMainWidget( settings );
145     /*********************************
146      * Create the Systray Management *
147      *********************************/
148     initSystray();
149
150     /********************
151      * Input Manager    *
152      ********************/
153     MainInputManager::getInstance( p_intf );
154
155 #ifdef WIN32
156     himl = NULL;
157     p_taskbl = NULL;
158     taskbar_wmsg = RegisterWindowMessage("TaskbarButtonCreated");
159 #endif
160
161     /************************************************************
162      * Connect the input manager to the GUI elements it manages *
163      ************************************************************/
164     /**
165      * Connects on nameChanged()
166      * Those connects are different because options can impeach them to trigger.
167      **/
168     /* Main Interface statusbar */
169     CONNECT( THEMIM->getIM(), nameChanged( const QString& ),
170              this, setName( const QString& ) );
171     /* and systray */
172 #ifndef HAVE_MAEMO
173     if( sysTray )
174     {
175         CONNECT( THEMIM->getIM(), nameChanged( const QString& ),
176                  this, updateSystrayTooltipName( const QString& ) );
177     }
178 #endif
179     /* and title of the Main Interface*/
180     if( var_InheritBool( p_intf, "qt-name-in-title" ) )
181     {
182         CONNECT( THEMIM->getIM(), nameChanged( const QString& ),
183                  this, setVLCWindowsTitle( const QString& ) );
184     }
185
186     /**
187      * CONNECTS on PLAY_STATUS
188      **/
189     /* Status on the systray */
190 #ifndef HAVE_MAEMO
191     if( sysTray )
192     {
193         CONNECT( THEMIM->getIM(), statusChanged( int ),
194                  this, updateSystrayTooltipStatus( int ) );
195     }
196 #endif
197
198     /* END CONNECTS ON IM */
199
200     /* VideoWidget connects for asynchronous calls */
201     connect( this, SIGNAL(askGetVideo(WId*,int*,int*,unsigned*,unsigned *)),
202              this, SLOT(getVideoSlot(WId*,int*,int*,unsigned*,unsigned*)),
203              Qt::BlockingQueuedConnection );
204     connect( this, SIGNAL(askReleaseVideo( void )),
205              this, SLOT(releaseVideoSlot( void )),
206              Qt::BlockingQueuedConnection );
207     CONNECT( this, askVideoOnTop(bool), this, setVideoOnTop(bool));
208
209     if( videoWidget )
210     {
211         if( b_autoresize )
212         {
213             CONNECT( this, askVideoToResize( unsigned int, unsigned int ),
214                      videoWidget, SetSizing( unsigned int, unsigned int ) );
215             CONNECT( videoWidget, sizeChanged( int, int ),
216                      this, resizeStack( int,  int ) );
217         }
218         CONNECT( this, askVideoSetFullScreen( bool ),
219                  videoWidget, SetFullScreen( bool ) );
220         CONNECT( videoWidget, keyPressed( QKeyEvent * ),
221                  this, handleKeyPress( QKeyEvent * ) );
222     }
223
224     CONNECT( THEDP, toolBarConfUpdated(), this, recreateToolbars() );
225
226     /** END of CONNECTS**/
227
228
229     /************
230      * Callbacks
231      ************/
232     var_AddCallback( p_intf->p_libvlc, "intf-show", IntfShowCB, p_intf );
233
234     /* Register callback for the intf-popupmenu variable */
235     var_AddCallback( p_intf->p_libvlc, "intf-popupmenu", PopupMenuCB, p_intf );
236
237     /* Playlist */
238     int i_plVis = settings->value( "MainWindow/playlist-visible", false ).toBool();
239
240     if( i_plVis ) togglePlaylist();
241
242     /**** FINAL SIZING and placement of interface */
243     settings->beginGroup( "MainWindow" );
244     QVLCTools::restoreWidgetPosition( settings, this, QSize(400, 100) );
245     settings->endGroup();
246
247     /* Final sizing and showing */
248     setVisible( !b_hideAfterCreation );
249
250     setMinimumWidth( __MAX( controls->sizeHint().width(),
251                             menuBar()->sizeHint().width() ) + 30 );
252
253     /* Switch to minimal view if needed, must be called after the show() */
254     if( i_visualmode )
255         toggleMinimalView( true );
256 }
257
258 MainInterface::~MainInterface()
259 {
260     /* Unsure we hide the videoWidget before destroying it */
261     if( stackCentralOldWidget == videoWidget )
262         showTab( bgWidget );
263
264 #ifdef WIN32
265     if( himl )
266         ImageList_Destroy( himl );
267     if(p_taskbl)
268         p_taskbl->vt->Release(p_taskbl);
269     CoUninitialize();
270 #endif
271
272     /* Be sure to kill the actionsManager... Only used in the MI and control */
273     ActionsManager::killInstance();
274
275     /* Idem */
276     ExtensionsManager::killInstance();
277
278     /* Delete the FSC controller */
279     delete fullscreenControls;
280
281     /* Save states */
282     settings->beginGroup( "MainWindow" );
283
284     settings->setValue( "pl-dock-status", b_plDocked );
285     /* Save playlist state */
286     if( playlistWidget )
287     {
288         settings->setValue( "playlist-visible",
289                             isPlDocked() ?
290                             playlistVisible :
291                             playlistWidget->isVisible() /* FIXME */ );
292     }
293
294     settings->setValue( "adv-controls",
295                         getControlsVisibilityStatus() & CONTROLS_ADVANCED );
296
297     /* Save the stackCentralW sizes */
298     settings->setValue( "bgSize", stackWidgetsSizes[bgWidget] );
299     settings->setValue( "playlistSize", stackWidgetsSizes[playlistWidget] );
300
301     /* Save this size */
302     QVLCTools::saveWidgetPosition(settings, this);
303
304     settings->endGroup();
305
306     /* Save undocked playlist size */
307     if( playlistWidget && !isPlDocked() )
308         QVLCTools::saveWidgetPosition( p_intf, "Playlist", playlistWidget );
309
310     delete playlistWidget;
311
312     delete statusBar();
313
314     /* Unregister callbacks */
315     var_DelCallback( p_intf->p_libvlc, "intf-show", IntfShowCB, p_intf );
316     var_DelCallback( p_intf->p_libvlc, "intf-popupmenu", PopupMenuCB, p_intf );
317
318     p_intf->p_sys->p_mi = NULL;
319 }
320
321 /*****************************
322  *   Main UI handling        *
323  *****************************/
324 void MainInterface::recreateToolbars()
325 {
326     bool b_adv = getControlsVisibilityStatus() & CONTROLS_ADVANCED;
327
328     settings->beginGroup( "MainWindow" );
329     delete controls;
330     delete inputC;
331
332     controls = new ControlsWidget( p_intf, b_adv, this );
333     inputC = new InputControlsWidget( p_intf, this );
334
335     if( fullscreenControls )
336     {
337         delete fullscreenControls;
338         fullscreenControls = new FullscreenControllerWidget( p_intf, this );
339         CONNECT( fullscreenControls, keyPressed( QKeyEvent * ),
340                  this, handleKeyPress( QKeyEvent * ) );
341     }
342     mainLayout->insertWidget( 2, inputC );
343     mainLayout->insertWidget( settings->value( "ToolbarPos", 0 ).toInt() ? 0: 3,
344                               controls );
345     settings->endGroup();
346 }
347
348 void MainInterface::createMainWidget( QSettings *settings )
349 {
350     /* Create the main Widget and the mainLayout */
351     QWidget *main = new QWidget;
352     setCentralWidget( main );
353     mainLayout = new QVBoxLayout( main );
354     main->setContentsMargins( 0, 0, 0, 0 );
355     mainLayout->setSpacing( 0 ); mainLayout->setMargin( 0 );
356
357     /* */
358     stackCentralW = new QVLCStackedWidget( main );
359
360     /* Bg Cone */
361     bgWidget = new BackgroundWidget( p_intf );
362     stackCentralW->addWidget( bgWidget );
363
364     /* And video Outputs */
365     if( b_videoEmbedded )
366     {
367         videoWidget = new VideoWidget( p_intf );
368         stackCentralW->addWidget( videoWidget );
369     }
370     mainLayout->insertWidget( 1, stackCentralW );
371
372     settings->beginGroup( "MainWindow" );
373     stackWidgetsSizes[bgWidget] = settings->value( "bgSize", QSize( 400, 0 ) ).toSize();
374     /* Resize even if no-auto-resize, because we are at creation */
375     resizeStack( stackWidgetsSizes[bgWidget].width(), stackWidgetsSizes[bgWidget].height() );
376
377     /* Create the CONTROLS Widget */
378     controls = new ControlsWidget( p_intf,
379                    settings->value( "adv-controls", false ).toBool(), this );
380     inputC = new InputControlsWidget( p_intf, this );
381
382     mainLayout->insertWidget( 2, inputC );
383     mainLayout->insertWidget( settings->value( "ToolbarPos", 0 ).toInt() ? 0: 3,
384                               controls );
385
386     /* Visualisation, disabled for now, they SUCK */
387     #if 0
388     visualSelector = new VisualSelector( p_intf );
389     mainLayout->insertWidget( 0, visualSelector );
390     visualSelector->hide();
391     #endif
392
393     settings->endGroup();
394
395     /* Enable the popup menu in the MI */
396     main->setContextMenuPolicy( Qt::CustomContextMenu );
397     CONNECT( main, customContextMenuRequested( const QPoint& ),
398              this, popupMenu( const QPoint& ) );
399
400     if ( depth() > 8 ) /* 8bit depth has too many issues with opacity */
401         /* Create the FULLSCREEN CONTROLS Widget */
402         if( var_InheritBool( p_intf, "qt-fs-controller" ) )
403         {
404             fullscreenControls = new FullscreenControllerWidget( p_intf, this );
405             CONNECT( fullscreenControls, keyPressed( QKeyEvent * ),
406                      this, handleKeyPress( QKeyEvent * ) );
407         }
408 }
409
410 inline void MainInterface::initSystray()
411 {
412 #ifndef HAVE_MAEMO
413     bool b_systrayAvailable = QSystemTrayIcon::isSystemTrayAvailable();
414     bool b_systrayWanted = var_InheritBool( p_intf, "qt-system-tray" );
415
416     if( var_InheritBool( p_intf, "qt-start-minimized") )
417     {
418         if( b_systrayAvailable )
419         {
420             b_systrayWanted = true;
421             b_hideAfterCreation = true;
422         }
423         else
424             msg_Err( p_intf, "cannot start minimized without system tray bar" );
425     }
426
427     if( b_systrayAvailable && b_systrayWanted )
428         createSystray();
429 #endif
430 }
431
432 inline void MainInterface::createStatusBar()
433 {
434     /****************
435      *  Status Bar  *
436      ****************/
437     /* Widgets Creation*/
438     QStatusBar *statusBarr = statusBar();
439
440     TimeLabel *timeLabel = new TimeLabel( p_intf );
441     nameLabel = new QLabel( this );
442     nameLabel->setTextInteractionFlags( Qt::TextSelectableByMouse
443                                       | Qt::TextSelectableByKeyboard );
444     SpeedLabel *speedLabel = new SpeedLabel( p_intf, this );
445
446     /* Styling those labels */
447     timeLabel->setFrameStyle( QFrame::Sunken | QFrame::Panel );
448     speedLabel->setFrameStyle( QFrame::Sunken | QFrame::Panel );
449     nameLabel->setFrameStyle( QFrame::Sunken | QFrame::StyledPanel);
450     timeLabel->setStyleSheet(
451             "QLabel:hover { background-color: rgba(255, 255, 255, 50%) }" );
452     speedLabel->setStyleSheet(
453             "QLabel:hover { background-color: rgba(255, 255, 255, 50%) }" );
454
455     /* and adding those */
456     statusBarr->addWidget( nameLabel, 8 );
457     statusBarr->addPermanentWidget( speedLabel, 0 );
458     statusBarr->addPermanentWidget( timeLabel, 0 );
459
460     /* timeLabel behaviour:
461        - double clicking opens the goto time dialog
462        - right-clicking and clicking just toggle between remaining and
463          elapsed time.*/
464     CONNECT( timeLabel, timeLabelDoubleClicked(), THEDP, gotoTimeDialog() );
465
466     CONNECT( THEMIM->getIM(), encryptionChanged( bool ),
467              this, showCryptedLabel( bool ) );
468
469     CONNECT( THEMIM->getIM(), seekRequested( float ),
470              timeLabel, setDisplayPosition( float ) );
471 }
472
473 /**********************************************************************
474  * Handling of sizing of the components
475  **********************************************************************/
476
477 void MainInterface::debug()
478 {
479 #ifdef DEBUG_INTF
480     msg_Dbg( p_intf, "size: %i - %i", size().height(), size().width() );
481     msg_Dbg( p_intf, "sizeHint: %i - %i", sizeHint().height(), sizeHint().width() );
482     msg_Dbg( p_intf, "minimumsize: %i - %i", minimumSize().height(), minimumSize().width() );
483
484     msg_Dbg( p_intf, "Stack size: %i - %i", stackCentralW->size().height(), stackCentralW->size().width() );
485     msg_Dbg( p_intf, "Stack sizeHint: %i - %i", stackCentralW->sizeHint().height(), stackCentralW->sizeHint().width() );
486     msg_Dbg( p_intf, "Central size: %i - %i", centralWidget()->size().height(), centralWidget()->size().width() );
487 #endif
488 }
489
490 inline void MainInterface::showVideo() { showTab( videoWidget ); }
491 inline void MainInterface::restoreStackOldWidget()
492             { showTab( stackCentralOldWidget ); }
493
494 inline void MainInterface::showTab( QWidget *widget )
495 {
496 #ifdef DEBUG_INTF
497     msg_Warn( p_intf, "Old stackCentralOldWidget %i", stackCentralW->indexOf( stackCentralOldWidget ) );
498 #endif
499
500     stackCentralOldWidget = stackCentralW->currentWidget();
501     stackWidgetsSizes[stackCentralOldWidget] = stackCentralW->size();
502
503     stackCentralW->setCurrentWidget( widget );
504     if( b_autoresize )
505         resizeStack( stackWidgetsSizes[widget].width(), stackWidgetsSizes[widget].height() );
506
507 #ifdef DEBUG_INTF
508     msg_Warn( p_intf, "State change %i",  stackCentralW->currentIndex() );
509     msg_Warn( p_intf, "New stackCentralOldWidget %i", stackCentralW->indexOf( stackCentralOldWidget ) );
510 #endif
511 }
512
513 void MainInterface::destroyPopupMenu()
514 {
515     QVLCMenu::PopupMenu( p_intf, false );
516 }
517
518 void MainInterface::popupMenu( const QPoint &p )
519 {
520     QVLCMenu::PopupMenu( p_intf, true );
521 }
522
523 void MainInterface::toggleFSC()
524 {
525    if( !fullscreenControls ) return;
526
527    IMEvent *eShow = new IMEvent( FullscreenControlToggle_Type, 0 );
528    QApplication::postEvent( fullscreenControls, eShow );
529 }
530
531 /****************************************************************************
532  * Video Handling
533  ****************************************************************************/
534
535 /**
536  * NOTE:
537  * You must not change the state of this object or other Qt4 UI objects,
538  * from the video output thread - only from the Qt4 UI main loop thread.
539  * All window provider queries must be handled through signals or events.
540  * That's why we have all those emit statements...
541  */
542 WId MainInterface::getVideo( int *pi_x, int *pi_y,
543                              unsigned int *pi_width, unsigned int *pi_height )
544 {
545     if( !videoWidget )
546         return 0;
547
548     /* This is a blocking call signal. Results are returned through pointers.
549      * Beware of deadlocks! */
550     WId id;
551     emit askGetVideo( &id, pi_x, pi_y, pi_width, pi_height );
552     return id;
553 }
554
555 void MainInterface::getVideoSlot( WId *p_id, int *pi_x, int *pi_y,
556                                   unsigned *pi_width, unsigned *pi_height )
557 {
558     /* Request the videoWidget */
559     WId ret = videoWidget->request( pi_x, pi_y,
560                                     pi_width, pi_height, !b_autoresize );
561     *p_id = ret;
562     if( ret ) /* The videoWidget is available */
563     {
564         /* Consider the video active now */
565         showVideo();
566
567         /* Ask videoWidget to resize correctly, if we are in normal mode */
568         if( !isFullScreen() && !isMaximized() && b_autoresize )
569             videoWidget->SetSizing( *pi_width, *pi_height );
570     }
571 }
572
573 /* Asynchronous call from the WindowClose function */
574 void MainInterface::releaseVideo( void )
575 {
576     emit askReleaseVideo();
577 }
578
579 /* Function that is CONNECTED to the previous emit */
580 void MainInterface::releaseVideoSlot( void )
581 {
582     videoWidget->release();
583     setVideoOnTop( false );
584
585     if( stackCentralW->currentWidget() == videoWidget )
586         restoreStackOldWidget();
587
588     /* We don't want to have a blank video to popup */
589     stackCentralOldWidget = bgWidget;
590 }
591
592 /* Slot to change the video always-on-top flag.
593  * Emit askVideoOnTop() to invoke this from other thread. */
594 void MainInterface::setVideoOnTop( bool on_top )
595 {
596     Qt::WindowFlags oldflags = windowFlags(), newflags;
597
598     if( on_top )
599         newflags = oldflags | Qt::WindowStaysOnTopHint;
600     else
601         newflags = oldflags & ~Qt::WindowStaysOnTopHint;
602
603     if( newflags != oldflags )
604     {
605         setWindowFlags( newflags );
606         show(); /* necessary to apply window flags */
607     }
608 }
609
610 /* Asynchronous call from WindowControl function */
611 int MainInterface::controlVideo( int i_query, va_list args )
612 {
613     switch( i_query )
614     {
615     case VOUT_WINDOW_SET_SIZE:
616     {
617         unsigned int i_width  = va_arg( args, unsigned int );
618         unsigned int i_height = va_arg( args, unsigned int );
619         if( isFullScreen() || isMaximized() )
620             showNormal();
621         emit askVideoToResize( i_width, i_height );
622         return VLC_SUCCESS;
623     }
624     case VOUT_WINDOW_SET_STATE:
625     {
626         unsigned i_arg = va_arg( args, unsigned );
627         unsigned on_top = i_arg & VOUT_WINDOW_STATE_ABOVE;
628
629         emit askVideoOnTop( on_top != 0 );
630         return VLC_SUCCESS;
631     }
632     case VOUT_WINDOW_SET_FULLSCREEN:
633     {
634         bool b_fs = va_arg( args, int );
635         emit askVideoSetFullScreen( b_fs );
636         return VLC_SUCCESS;
637     }
638     default:
639         msg_Warn( p_intf, "unsupported control query" );
640         return VLC_EGENERIC;
641     }
642 }
643
644 /*****************************************************************************
645  * Playlist, Visualisation and Menus handling
646  *****************************************************************************/
647 /**
648  * Toggle the playlist widget or dialog
649  **/
650 void MainInterface::createPlaylist()
651 {
652     playlistWidget = new PlaylistWidget( p_intf, this );
653
654     if( b_plDocked )
655     {
656         stackCentralW->addWidget( playlistWidget );
657         stackWidgetsSizes[playlistWidget] = settings->value( "playlistSize", QSize( 500, 250 ) ).toSize();
658     }
659     else
660     {
661 #ifdef WIN32
662         playlistWidget->setParent( NULL );
663 #endif
664         playlistWidget->setWindowFlags( Qt::Window );
665
666         /* This will restore the geometry but will not work for position,
667            because of parenting */
668         QVLCTools::restoreWidgetPosition( p_intf, "Playlist",
669                 playlistWidget, QSize( 600, 300 ) );
670     }
671 }
672
673 void MainInterface::togglePlaylist()
674 {
675     if( !playlistWidget )
676     {
677         createPlaylist();
678     }
679
680     if( b_plDocked )
681     {
682         /* Playlist is not visible, show it */
683         if( stackCentralW->currentWidget() != playlistWidget )
684         {
685             showTab( playlistWidget );
686         }
687         else /* Hide it! */
688         {
689             restoreStackOldWidget();
690         }
691         playlistVisible = ( stackCentralW->currentWidget() == playlistWidget );
692     }
693     else
694     {
695 #ifdef WIN32
696         playlistWidget->setParent( NULL );
697 #endif
698         playlistWidget->setWindowFlags( Qt::Window );
699         playlistVisible = !playlistVisible;
700         playlistWidget->setVisible( playlistVisible );
701     }
702     debug();
703 }
704
705 void MainInterface::dockPlaylist( bool p_docked )
706 {
707     if( b_plDocked == p_docked ) return;
708     b_plDocked = p_docked;
709
710     if( !playlistWidget ) return; /* Playlist wasn't created yet */
711     if( !p_docked )
712     {
713         stackCentralW->removeWidget( playlistWidget );
714 #ifdef WIN32
715         playlistWidget->setParent( NULL );
716 #endif
717         playlistWidget->setWindowFlags( Qt::Window );
718         QVLCTools::restoreWidgetPosition( p_intf, "Playlist",
719                 playlistWidget, QSize( 600, 300 ) );
720         playlistWidget->show();
721         restoreStackOldWidget();
722     }
723     else
724     {
725         QVLCTools::saveWidgetPosition( p_intf, "Playlist", playlistWidget );
726         playlistWidget->setWindowFlags( Qt::Widget ); // Probably a Qt bug here
727         // It would be logical that QStackWidget::addWidget reset the flags...
728         stackCentralW->addWidget( playlistWidget );
729         showTab( playlistWidget );
730     }
731     playlistVisible = true;
732 }
733
734 /*
735   If b_switch is false, then we are normalView
736  */
737 void MainInterface::toggleMinimalView( bool b_switch )
738 {
739     if( i_visualmode == 0 && b_autoresize ) /* Normal mode */
740     {
741         if( stackCentralW->currentWidget() == bgWidget )
742         {
743             if( stackCentralW->height() < 16 )
744             {
745                 resizeStack( stackCentralW->width(), 100 );
746             }
747         }
748     }
749
750     menuBar()->setVisible( !b_switch );
751     controls->setVisible( !b_switch );
752     statusBar()->setVisible( !b_switch );
753     inputC->setVisible( !b_switch );
754
755     emit minimalViewToggled( b_switch );
756 }
757
758 /* toggling advanced controls buttons */
759 void MainInterface::toggleAdvancedButtons()
760 {
761     controls->toggleAdvanced();
762 //    if( fullscreenControls ) fullscreenControls->toggleAdvanced();
763 }
764
765 /* Get the visibility status of the controls (hidden or not, advanced or not) */
766 int MainInterface::getControlsVisibilityStatus()
767 {
768     if( !controls ) return 0;
769     return( (controls->isVisible() ? CONTROLS_VISIBLE : CONTROLS_HIDDEN )
770                 + CONTROLS_ADVANCED * controls->b_advancedVisible );
771 }
772
773 #if 0
774 void MainInterface::visual()
775 {
776     if( !VISIBLE( visualSelector) )
777     {
778         visualSelector->show();
779         if( !THEMIM->getIM()->hasVideo() )
780         {
781             /* Show the background widget */
782         }
783         visualSelectorEnabled = true;
784     }
785     else
786     {
787         /* Stop any currently running visualization */
788         visualSelector->hide();
789         visualSelectorEnabled = false;
790     }
791 }
792 #endif
793
794 /************************************************************************
795  * Other stuff
796  ************************************************************************/
797 void MainInterface::setName( const QString& name )
798 {
799     input_name = name; /* store it for the QSystray use */
800     /* Display it in the status bar, but also as a Tooltip in case it doesn't
801        fit in the label */
802     nameLabel->setText( " " + name + " " );
803     nameLabel->setToolTip( " " + name +" " );
804 }
805
806 /**
807  * Give the decorations of the Main Window a correct Name.
808  * If nothing is given, set it to VLC...
809  **/
810 void MainInterface::setVLCWindowsTitle( const QString& aTitle )
811 {
812     if( aTitle.isEmpty() )
813     {
814         setWindowTitle( qtr( "VLC media player" ) );
815     }
816     else
817     {
818         setWindowTitle( aTitle + " - " + qtr( "VLC media player" ) );
819     }
820 }
821
822 void MainInterface::showCryptedLabel( bool b_show )
823 {
824     if( cryptedLabel == NULL )
825     {
826         cryptedLabel = new QLabel;
827         // The lock icon is not the right one for DRM protection/scrambled.
828         //cryptedLabel->setPixmap( QPixmap( ":/lock" ) );
829         cryptedLabel->setText( "DRM" );
830         statusBar()->addWidget( cryptedLabel );
831     }
832
833     cryptedLabel->setVisible( b_show );
834 }
835
836 void MainInterface::showBuffering( float f_cache )
837 {
838     QString amount = QString("Buffering: %1%").arg( (int)(100*f_cache) );
839     statusBar()->showMessage( amount, 1000 );
840 }
841
842 /*****************************************************************************
843  * Systray Icon and Systray Menu
844  *****************************************************************************/
845 #ifndef HAVE_MAEMO
846 /**
847  * Create a SystemTray icon and a menu that would go with it.
848  * Connects to a click handler on the icon.
849  **/
850 void MainInterface::createSystray()
851 {
852     QIcon iconVLC;
853     if( QDate::currentDate().dayOfYear() >= 354 )
854         iconVLC =  QIcon( ":/logo/vlc128-christmas.png" );
855     else
856         iconVLC =  QIcon( ":/logo/vlc128.png" );
857     sysTray = new QSystemTrayIcon( iconVLC, this );
858     sysTray->setToolTip( qtr( "VLC media player" ));
859
860     systrayMenu = new QMenu( qtr( "VLC media player" ), this );
861     systrayMenu->setIcon( iconVLC );
862
863     QVLCMenu::updateSystrayMenu( this, p_intf, true );
864     sysTray->show();
865
866     CONNECT( sysTray, activated( QSystemTrayIcon::ActivationReason ),
867             this, handleSystrayClick( QSystemTrayIcon::ActivationReason ) );
868 }
869
870 /**
871  * Updates the Systray Icon's menu and toggle the main interface
872  */
873 void MainInterface::toggleUpdateSystrayMenu()
874 {
875     /* If hidden, show it */
876     if( isHidden() )
877     {
878         show();
879         activateWindow();
880     }
881     else if( isMinimized() )
882     {
883         /* Minimized */
884         showNormal();
885         activateWindow();
886     }
887     else
888     {
889         /* Visible (possibly under other windows) */
890 #ifdef WIN32
891         /* check if any visible window is above vlc in the z-order,
892          * but ignore the ones always on top
893          * and the ones which can't be activated */
894         WINDOWINFO wi;
895         HWND hwnd;
896         wi.cbSize = sizeof( WINDOWINFO );
897         for( hwnd = GetNextWindow( internalWinId(), GW_HWNDPREV );
898                 hwnd && ( !IsWindowVisible( hwnd ) ||
899                     ( GetWindowInfo( hwnd, &wi ) &&
900                       (wi.dwExStyle&WS_EX_NOACTIVATE) ) );
901                 hwnd = GetNextWindow( hwnd, GW_HWNDPREV ) );
902             if( !hwnd || !GetWindowInfo( hwnd, &wi ) ||
903                 (wi.dwExStyle&WS_EX_TOPMOST) )
904             {
905                 hide();
906             }
907             else
908             {
909                 activateWindow();
910             }
911 #else
912         hide();
913 #endif
914     }
915     QVLCMenu::updateSystrayMenu( this, p_intf );
916 }
917
918 void MainInterface::handleSystrayClick(
919                                     QSystemTrayIcon::ActivationReason reason )
920 {
921     switch( reason )
922     {
923         case QSystemTrayIcon::Trigger:
924         case QSystemTrayIcon::DoubleClick:
925             toggleUpdateSystrayMenu();
926             break;
927         case QSystemTrayIcon::MiddleClick:
928             sysTray->showMessage( qtr( "VLC media player" ),
929                     qtr( "Control menu for the player" ),
930                     QSystemTrayIcon::Information, 3000 );
931             break;
932         default:
933             break;
934     }
935 }
936
937 /**
938  * Updates the name of the systray Icon tooltip.
939  * Doesn't check if the systray exists, check before you call it.
940  **/
941 void MainInterface::updateSystrayTooltipName( const QString& name )
942 {
943     if( name.isEmpty() )
944     {
945         sysTray->setToolTip( qtr( "VLC media player" ) );
946     }
947     else
948     {
949         sysTray->setToolTip( name );
950         if( b_notificationEnabled && ( isHidden() || isMinimized() ) )
951         {
952             sysTray->showMessage( qtr( "VLC media player" ), name,
953                     QSystemTrayIcon::NoIcon, 3000 );
954         }
955     }
956
957     QVLCMenu::updateSystrayMenu( this, p_intf );
958 }
959
960 /**
961  * Updates the status of the systray Icon tooltip.
962  * Doesn't check if the systray exists, check before you call it.
963  **/
964 void MainInterface::updateSystrayTooltipStatus( int i_status )
965 {
966     switch( i_status )
967     {
968     case PLAYING_S:
969         sysTray->setToolTip( input_name );
970         break;
971     case PAUSE_S:
972         sysTray->setToolTip( input_name + " - " + qtr( "Paused") );
973         break;
974     default:
975         sysTray->setToolTip( qtr( "VLC media player" ) );
976         break;
977     }
978     QVLCMenu::updateSystrayMenu( this, p_intf );
979 }
980 #endif
981
982 /************************************************************************
983  * D&D Events
984  ************************************************************************/
985 void MainInterface::dropEvent(QDropEvent *event)
986 {
987     dropEventPlay( event, true );
988 }
989
990 void MainInterface::dropEventPlay( QDropEvent *event, bool b_play )
991 {
992     event->setDropAction( Qt::CopyAction );
993     if( !event->possibleActions() & Qt::CopyAction )
994         return;
995
996     const QMimeData *mimeData = event->mimeData();
997
998     /* D&D of a subtitles file, add it on the fly */
999     if( mimeData->urls().size() == 1 && THEMIM->getIM()->hasInput() )
1000     {
1001         if( !input_AddSubtitle( THEMIM->getInput(),
1002                  qtu( toNativeSeparators( mimeData->urls()[0].toLocalFile() ) ),
1003                  true ) )
1004         {
1005             event->accept();
1006             return;
1007         }
1008     }
1009
1010     bool first = b_play;
1011     foreach( const QUrl &url, mimeData->urls() )
1012     {
1013         QString s = toNativeSeparators( url.toLocalFile() );
1014
1015         if( s.length() > 0 ) {
1016             char* psz_uri = make_URI( qtu(s) );
1017             playlist_Add( THEPL, psz_uri, NULL,
1018                           PLAYLIST_APPEND | (first ? PLAYLIST_GO: PLAYLIST_PREPARSE),
1019                           PLAYLIST_END, true, pl_Unlocked );
1020             free( psz_uri );
1021             first = false;
1022             RecentsMRL::getInstance( p_intf )->addRecent( s );
1023         }
1024     }
1025     event->accept();
1026 }
1027 void MainInterface::dragEnterEvent(QDragEnterEvent *event)
1028 {
1029      event->acceptProposedAction();
1030 }
1031 void MainInterface::dragMoveEvent(QDragMoveEvent *event)
1032 {
1033      event->acceptProposedAction();
1034 }
1035 void MainInterface::dragLeaveEvent(QDragLeaveEvent *event)
1036 {
1037      event->accept();
1038 }
1039
1040 /************************************************************************
1041  * Events stuff
1042  ************************************************************************/
1043 void MainInterface::keyPressEvent( QKeyEvent *e )
1044 {
1045     handleKeyPress( e );
1046 }
1047
1048 void MainInterface::handleKeyPress( QKeyEvent *e )
1049 {
1050     if( ( e->modifiers() &  Qt::ControlModifier ) && ( e->key() == Qt::Key_H )
1051           && !menuBar()->isVisible() )
1052     {
1053         toggleMinimalView( false );
1054         e->accept();
1055     }
1056
1057     int i_vlck = qtEventToVLCKey( e );
1058     if( i_vlck > 0 )
1059     {
1060         var_SetInteger( p_intf->p_libvlc, "key-pressed", i_vlck );
1061         e->accept();
1062     }
1063     else
1064         e->ignore();
1065 }
1066
1067 void MainInterface::wheelEvent( QWheelEvent *e )
1068 {
1069     int i_vlckey = qtWheelEventToVLCKey( e );
1070     var_SetInteger( p_intf->p_libvlc, "key-pressed", i_vlckey );
1071     e->accept();
1072 }
1073
1074 void MainInterface::closeEvent( QCloseEvent *e )
1075 {
1076     e->accept();
1077     hide();
1078     THEDP->quit();
1079 }
1080
1081 void MainInterface::toggleFullScreen()
1082 {
1083     if( isFullScreen() )
1084     {
1085         showNormal();
1086         emit fullscreenInterfaceToggled( false );
1087     }
1088     else
1089     {
1090         showFullScreen();
1091         emit fullscreenInterfaceToggled( true );
1092     }
1093 }
1094
1095 /*****************************************************************************
1096  * PopupMenuCB: callback triggered by the intf-popupmenu playlist variable.
1097  *  We don't show the menu directly here because we don't want the
1098  *  caller to block for a too long time.
1099  *****************************************************************************/
1100 static int PopupMenuCB( vlc_object_t *p_this, const char *psz_variable,
1101                         vlc_value_t old_val, vlc_value_t new_val, void *param )
1102 {
1103     intf_thread_t *p_intf = (intf_thread_t *)param;
1104
1105     if( p_intf->pf_show_dialog )
1106     {
1107         p_intf->pf_show_dialog( p_intf, INTF_DIALOG_POPUPMENU,
1108                                 new_val.b_bool, NULL );
1109     }
1110
1111     return VLC_SUCCESS;
1112 }
1113
1114 /*****************************************************************************
1115  * IntfShowCB: callback triggered by the intf-show libvlc variable.
1116  *****************************************************************************/
1117 static int IntfShowCB( vlc_object_t *p_this, const char *psz_variable,
1118                        vlc_value_t old_val, vlc_value_t new_val, void *param )
1119 {
1120     intf_thread_t *p_intf = (intf_thread_t *)param;
1121     p_intf->p_sys->p_mi->toggleFSC();
1122
1123     /* Show event */
1124      return VLC_SUCCESS;
1125 }