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