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