main_interface.cpp
上传用户:kjfoods
上传日期:2020-07-06
资源大小:29949k
文件大小:39k
源码类别:

midi

开发平台:

Unix_Linux

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