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