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