]> git.sesse.net Git - vlc/blobdiff - modules/gui/qt4/components/interface_widgets.cpp
Removes trailing spaces. Removes tabs.
[vlc] / modules / gui / qt4 / components / interface_widgets.cpp
index 06699e3f977600ebe19eec7bf0186a43053916cc..4c431252bdd7d79e0c54a23821dd38b490aa1e0d 100644 (file)
@@ -6,6 +6,7 @@
  *
  * Authors: Clément Stenac <zorglub@videolan.org>
  *          Jean-Baptiste Kempf <jb@videolan.org>
+ *          Rafaël Carré <funman@videolanorg>
  *
  * This program is free software; you can redistribute it and/or modify
  * it under the terms of the GNU General Public License as published by
@@ -265,17 +266,14 @@ AdvControlsWidget::~AdvControlsWidget()
 
 void AdvControlsWidget::enableInput( bool enable )
 {
-//    slowerButton->setEnabled( enable );
     ABButton->setEnabled( enable );
     recordButton->setEnabled( enable );
     normalButton->setEnabled( enable );
-//    fasterButton->setEnabled( enable );
 }
 void AdvControlsWidget::enableVideo( bool enable )
 {
     snapshotButton->setEnabled( enable );
     frameButton->setEnabled( enable );
-    //fullscreenButton->setEnabled( enable );
 }
 
 void AdvControlsWidget::normal()
@@ -285,6 +283,8 @@ void AdvControlsWidget::normal()
 
 void AdvControlsWidget::snapshot()
 {
+    vout_thread_t *p_vout = (vout_thread_t *)vlc_object_find( p_intf, VLC_OBJECT_VOUT, FIND_ANYWHERE );
+    if( p_vout ) vout_Control( p_vout, VOUT_SNAPSHOT );
 }
 
 void AdvControlsWidget::frame(){}
@@ -328,7 +328,7 @@ ControlsWidget::ControlsWidget( intf_thread_t *_p_i, bool b_advControls ) :
     controlLayout->addWidget( fasterButton, 0, 17 );
     fasterButton->setMaximumSize( QSize( 26, 20 ) );
 
-    /** TODO: Insert here the AdvControls Widget 
+    /** TODO: Insert here the AdvControls Widget
      * Then fix all the size issues in main_interface.cpp
      **/
     /* advanced Controls handling */
@@ -337,7 +337,7 @@ ControlsWidget::ControlsWidget( intf_thread_t *_p_i, bool b_advControls ) :
     advControls = new AdvControlsWidget( p_intf );
     controlLayout->addWidget( advControls, 1, 3, 2, 5, Qt::AlignBottom );
     if( !b_advancedVisible ) advControls->hide();
-//THIS should be removed.    need_components_update = true;
+    //THIS should be removed.    need_components_update = true;
 
     /** Disc and Menus handling */
     discFrame = new QFrame( this );
@@ -385,7 +385,6 @@ ControlsWidget::ControlsWidget( intf_thread_t *_p_i, bool b_advControls ) :
     QSizePolicy sizePolicy( QSizePolicy::Maximum, QSizePolicy::Fixed );
     sizePolicy.setHorizontalStretch( 0 );
     sizePolicy.setVerticalStretch( 0 );
-//  sizePolicy.setHeightForWidth( playButton->sizePolicy().hasHeightForWidth() );
 
     /* Play */
     playButton = new QPushButton;
@@ -394,7 +393,7 @@ ControlsWidget::ControlsWidget( intf_thread_t *_p_i, bool b_advControls ) :
     playButton->setIconSize( QSize( 30, 30 ) );
 
     controlLayout->addWidget( playButton, 2, 0, 2, 2, Qt::AlignBottom );
-    
     controlLayout->setColumnMinimumWidth( 2, 20 );
     controlLayout->setColumnStretch( 2, 0 );
 
@@ -434,7 +433,7 @@ ControlsWidget::ControlsWidget( intf_thread_t *_p_i, bool b_advControls ) :
 
     controlLayout->setColumnStretch( 8 , 10 );
     controlLayout->setColumnStretch( 9, 0 );
-    
     /*
      * Other first Line buttons
      * Might need to be inside a frame to avoid a few resizing pb
@@ -449,7 +448,6 @@ ControlsWidget::ControlsWidget( intf_thread_t *_p_i, bool b_advControls ) :
     /** Playlist Button **/
     playlistButton = new QPushButton;
     setupSmallButton( playlistButton );
-
     controlLayout->addWidget( playlistButton, 3, 11 );
 
     /** extended Settings **/
@@ -459,25 +457,18 @@ ControlsWidget::ControlsWidget( intf_thread_t *_p_i, bool b_advControls ) :
     setupSmallButton( extSettingsButton );
     controlLayout->addWidget( extSettingsButton, 3, 12 );
 
-    /** Preferences **/
-    QPushButton *prefsButton = new QPushButton( "P" );
-    BUTTON_SET_ACT( prefsButton, "P", qtr( "Preferences / Settings" ),
-            prefs() );
-    setupSmallButton( prefsButton );
-    controlLayout->addWidget( prefsButton, 3, 13 );
-    
     controlLayout->setColumnStretch( 14, 5 );
 
     /* Volume */
     VolumeClickHandler *h = new VolumeClickHandler( p_intf, this );
 
-    QLabel *volMuteLabel = new QLabel;
-    volMuteLabel->setPixmap( QPixmap( ":/pixmaps/volume-low.png" ) );
+    volMuteLabel = new QLabel;
+    volMuteLabel->setPixmap( QPixmap( ":/pixmaps/volume-high.png" ) );
     volMuteLabel->setToolTip( qtr( "Mute" ) );
     volMuteLabel->installEventFilter( h );
 
-    /** TODO: 
-     * Change this slider to use a nice Amarok-like one 
+    /** TODO:
+     * Change this slider to use a nice Amarok-like one
      * Add a Context menu to change to the most useful %
      * **/
     /** FIXME
@@ -489,14 +480,13 @@ ControlsWidget::ControlsWidget( intf_thread_t *_p_i, bool b_advControls ) :
     volumeSlider->setMaximumSize( QSize( 80, 200 ) );
     volumeSlider->setOrientation( Qt::Horizontal );
 
-    volumeSlider->setMaximum( 100 );
+    volumeSlider->setMaximum( VOLUME_MAX );
     volumeSlider->setFocusPolicy( Qt::NoFocus );
     controlLayout->addWidget( volMuteLabel, 3, 15 );
     controlLayout->addWidget( volumeSlider, 3, 16, 1, 2 );
 
     /* Volume control connection */
     CONNECT( volumeSlider, valueChanged( int ), this, updateVolume( int ) );
-
 }
 ControlsWidget::~ControlsWidget()
 {
@@ -556,14 +546,18 @@ void ControlsWidget::setNavigation( int navigation )
 }
 
 static bool b_my_volume;
-void ControlsWidget::updateVolume( int sliderVolume )
+void ControlsWidget::updateVolume( int i_sliderVolume )
 {
     if( !b_my_volume )
     {
-        int i_res = sliderVolume * AOUT_VOLUME_MAX /
-                            ( 2*volumeSlider->maximum() );
+        int i_res = i_sliderVolume  * (AOUT_VOLUME_MAX / 2) / VOLUME_MAX;
         aout_VolumeSet( p_intf, i_res );
     }
+    if( i_sliderVolume == 0 )
+        volMuteLabel->setPixmap( QPixmap(":/pixmaps/volume-muted.png" ) );
+    else if( i_sliderVolume < VOLUME_MAX / 2 )
+        volMuteLabel->setPixmap( QPixmap( ":/pixmaps/volume-low.png" ) );
+    else volMuteLabel->setPixmap( QPixmap( ":/pixmaps/volume-high.png" ) );
 }
 
 void ControlsWidget::updateOnTimer()
@@ -571,7 +565,7 @@ void ControlsWidget::updateOnTimer()
     /* Audio part */
     audio_volume_t i_volume;
     aout_VolumeGet( p_intf, &i_volume );
-    i_volume = ( i_volume *  200 )/ AOUT_VOLUME_MAX ;
+    i_volume = ( i_volume *  VOLUME_MAX )/ (AOUT_VOLUME_MAX/2) ;
     int i_gauge = volumeSlider->value();
     b_my_volume = false;
     if( i_volume - i_gauge > 1 || i_gauge - i_volume > 1 )
@@ -580,11 +574,11 @@ void ControlsWidget::updateOnTimer()
         volumeSlider->setValue( i_volume );
         b_my_volume = false;
     }
-
     /* Activate the interface buttons according to the presence of the input */
     enableInput( THEMIM->getIM()->hasInput() );
-    enableVideo( true );
     //enableVideo( THEMIM->getIM()->hasVideo() );
+    enableVideo( true );
 }
 
 void ControlsWidget::setStatus( int status )
@@ -598,18 +592,16 @@ void ControlsWidget::setStatus( int status )
 /**
  * TODO
  * This functions toggle the fullscreen mode
- * If there is no video, it should first activate Visualisations... 
+ * If there is no video, it should first activate Visualisations...
  *  This has also to be fixed in enableVideo()
  */
 void ControlsWidget::fullscreen()
 {
-    vlc_object_t *p_vout = (vlc_object_t *)vlc_object_find( p_intf,
-                VLC_OBJECT_VOUT, FIND_CHILD );
+    vout_thread_t *p_vout = (vout_thread_t *)vlc_object_find( p_intf, VLC_OBJECT_VOUT, FIND_ANYWHERE );
     if( p_vout)
     {
-        var_Get( p_vout, "fullscreen", &val );
-        val.b_bool = !val.b_bool;
-        var_Set( p_vout, "fullscreen", val );
+        var_SetBool( p_vout, "fullscreen", !var_GetBool( p_vout, "fullscreen" ) );
+        vlc_object_release( p_vout );
     }
 }
 
@@ -617,10 +609,6 @@ void ControlsWidget::extSettings()
 {
     THEDP->extendedDialog();
 }
-void ControlsWidget::prefs()
-{
-    THEDP->prefsDialog();
-}
 
 void ControlsWidget::slower()
 {
@@ -673,8 +661,8 @@ void ControlsWidget::toggleAdvanced()
 #include "components/playlist/panels.hpp"
 #include "components/playlist/selector.hpp"
 
-PlaylistWidget::PlaylistWidget( intf_thread_t *_p_intf ) :
-                                p_intf ( _p_intf )
+PlaylistWidget::PlaylistWidget( intf_thread_t *_p_i ) :
+                                p_intf ( _p_i )
 {
     /* Left Part and design */
     QWidget *leftW = new QWidget( this );
@@ -746,3 +734,111 @@ QSize PlaylistWidget::sizeHint() const
     return widgetSize;
 }
 
+/**********************************************************************
+ * Speed control widget
+ **********************************************************************/
+SpeedControlWidget::SpeedControlWidget( intf_thread_t *_p_i ) :
+                             QFrame( NULL ), p_intf( _p_i )
+{    
+    QSizePolicy sizePolicy( QSizePolicy::Maximum, QSizePolicy::Fixed );
+    sizePolicy.setHorizontalStretch( 0 );
+    sizePolicy.setVerticalStretch( 0 );
+    speedSlider = new QSlider;
+    speedSlider->setSizePolicy( sizePolicy );
+    speedSlider->setMaximumSize( QSize( 80, 200 ) );
+    speedSlider->setOrientation( Qt::Vertical );
+    speedSlider->setTickPosition( QSlider::TicksRight );
+
+    speedSlider->setRange( -100, 100 );
+    speedSlider->setSingleStep( 10 );
+    speedSlider->setPageStep( 20 );
+    speedSlider->setTickInterval( 20 );
+    CONNECT( speedSlider, valueChanged( int ), this, updateRate( int ) );
+    
+    normalSpeedButton = new QPushButton( "N" );
+    normalSpeedButton->setMaximumSize( QSize( 26, 20 ) );
+    normalSpeedButton->setFlat( true );
+    normalSpeedButton->setToolTip( qtr( "Revert to normal play speed" ) );
+    CONNECT( normalSpeedButton, clicked(), this, resetRate() );
+    QVBoxLayout *speedControlLayout = new QVBoxLayout;
+    speedControlLayout->addWidget(speedSlider);
+    speedControlLayout->addWidget(normalSpeedButton);
+    setLayout(speedControlLayout);
+}
+
+SpeedControlWidget::~SpeedControlWidget()
+{
+}
+
+#define RATE_SLIDER_MAXIMUM 3.0
+#define RATE_SLIDER_MINIMUM 0.3
+#define RATE_SLIDER_LENGTH 100.0
+
+void SpeedControlWidget::updateControls( int rate )
+{
+    if( speedSlider->isSliderDown() )
+    {
+        //We don't want to change anything if the user is using the slider
+        return;
+    }
+    
+    int sliderValue;
+    double speed = INPUT_RATE_DEFAULT / (double)rate;
+    
+    if( rate >= INPUT_RATE_DEFAULT )
+    {        
+        if( speed < RATE_SLIDER_MINIMUM )
+        {
+            sliderValue = speedSlider->minimum();
+        }
+        else
+        {
+            sliderValue = (int)( ( speed - 1.0 ) * RATE_SLIDER_LENGTH
+                                        / ( 1.0 - RATE_SLIDER_MAXIMUM ) );
+        }
+    }
+    else
+    {
+        if( speed > RATE_SLIDER_MAXIMUM )
+        {
+            sliderValue = speedSlider->maximum();
+        }
+        else
+        {
+            sliderValue = (int)( ( speed - 1.0 ) * RATE_SLIDER_LENGTH
+                                        / ( RATE_SLIDER_MAXIMUM - 1.0 ) );
+        }
+    }
+    
+    //Block signals to avoid feedback loop
+    speedSlider->blockSignals( true );
+    speedSlider->setValue( sliderValue );
+    speedSlider->blockSignals( false );
+}
+
+void SpeedControlWidget::updateRate( int sliderValue )
+{
+    int rate;
+    
+    if( sliderValue < 0.0 )
+    {
+        rate = INPUT_RATE_DEFAULT* RATE_SLIDER_LENGTH /
+                ( sliderValue * ( 1.0 - RATE_SLIDER_MINIMUM ) + RATE_SLIDER_LENGTH ) ;
+    }
+    else
+    {
+        rate = INPUT_RATE_DEFAULT* RATE_SLIDER_LENGTH /
+                ( sliderValue * ( RATE_SLIDER_MAXIMUM - 1.0 ) + RATE_SLIDER_LENGTH );
+    }
+
+    THEMIM->getIM()->setRate(rate);    
+}
+
+void SpeedControlWidget::resetRate()
+{
+    THEMIM->getIM()->setRate(INPUT_RATE_DEFAULT);    
+}