]> git.sesse.net Git - vlc/blobdiff - modules/gui/qt4/components/interface_widgets.cpp
Remove debug.
[vlc] / modules / gui / qt4 / components / interface_widgets.cpp
index 22a05af5831edfbf1b64168bad7f38349f40c7b8..ad978a0554d94410b44047c7b0ab1e6165d38dae 100644 (file)
@@ -7,6 +7,7 @@
  * Authors: Clément Stenac <zorglub@videolan.org>
  *          Jean-Baptiste Kempf <jb@videolan.org>
  *          Rafaël Carré <funman@videolanorg>
+ *          Ilkka Ollakka <ileoo@videolan.org>
  *
  * 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
@@ -22,6 +23,9 @@
  * along with this program; if not, write to the Free Software
  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston MA 02110-1301, USA.
  *****************************************************************************/
+#ifdef HAVE_CONFIG_H
+# include "config.h"
+#endif
 
 #include "dialogs_provider.hpp"
 #include "components/interface_widgets.hpp"
 #include <QSpacerItem>
 #include <QCursor>
 #include <QPushButton>
+#include <QToolButton>
 #include <QHBoxLayout>
 #include <QMenu>
 #include <QPalette>
 #include <QResizeEvent>
+#include <QDate>
 
 /**********************************************************************
  * Video Widget. A simple frame on which video is drawn
@@ -52,12 +58,23 @@ static int DoControl( intf_thread_t *, void *, int, va_list );
 
 VideoWidget::VideoWidget( intf_thread_t *_p_i ) : QFrame( NULL ), p_intf( _p_i )
 {
+    /* Init */
     vlc_mutex_init( p_intf, &lock );
     p_vout = NULL;
+    hide(); setMinimumSize( 16, 16 );
+    videoSize.rwidth() = -1;
+    videoSize.rheight() = -1;
 
-    CONNECT( this, askResize(), this, SetMinSize() );
-    CONNECT( this, askVideoToShow(), this, show() );
-    setSizePolicy( QSizePolicy::Preferred, QSizePolicy::Preferred );
+    /* Black background is more coherent for a Video Widget IMVHO */
+    QPalette plt =  palette();
+    plt.setColor( QPalette::Active, QPalette::Window , Qt::black );
+    plt.setColor( QPalette::Inactive, QPalette::Window , Qt::black );
+    setPalette( plt );
+
+    /* The core can ask through a callback to show the video */
+    CONNECT( this, askVideoWidgetToShow(), this, show() );
+    /* The core can ask through a callback to resize the video */
+   // CONNECT( this, askResize( int, int ), this, SetSizing( int, int ) );
 }
 
 VideoWidget::~VideoWidget()
@@ -80,49 +97,62 @@ VideoWidget::~VideoWidget()
     vlc_mutex_destroy( &lock );
 }
 
-QSize VideoWidget::sizeHint() const
-{
-    return widgetSize;
-}
-
+/**
+ * Request the video to avoid the conflicts
+ **/
 void *VideoWidget::request( vout_thread_t *p_nvout, int *pi_x, int *pi_y,
                            unsigned int *pi_width, unsigned int *pi_height )
 {
-    emit askVideoToShow();
+    msg_Dbg( p_intf, "Video was requested %i, %i", *pi_x, *pi_y );
+    emit askVideoWidgetToShow();
     if( p_vout )
     {
         msg_Dbg( p_intf, "embedded video already in use" );
         return NULL;
     }
     p_vout = p_nvout;
-    emit askResize();
     return ( void* )winId();
 }
 
-void VideoWidget::SetMinSize()
+/* Set the Widget to the correct Size */
+/* Function has to be called by the parent
+   Parent has to care about resizing himself*/
+void VideoWidget::SetSizing( unsigned int w, unsigned int h )
 {
-    setMinimumSize( 16, 16 );
+    msg_Dbg( p_intf, "Video is resizing to: %i %i", w, h );
+    videoSize.rwidth() = w;
+    videoSize.rheight() = h;
+    updateGeometry(); // Needed for deinterlace
 }
 
 void VideoWidget::release( void *p_win )
 {
+    msg_Dbg( p_intf, "Video is non needed anymore" );
     p_vout = NULL;
+    videoSize.rwidth() = 0;
+    videoSize.rheight() = 0;
+    hide();
+    updateGeometry(); // Needed for deinterlace
 }
 
+QSize VideoWidget::sizeHint() const
+{
+    return videoSize;
+}
 
 /**********************************************************************
  * Background Widget. Show a simple image background. Currently,
- * it's a static cone.
+ * it's album art if present or cone.
  **********************************************************************/
 #define ICON_SIZE 128
 #define MAX_BG_SIZE 400
 #define MIN_BG_SIZE 64
 
-BackgroundWidget::BackgroundWidget( intf_thread_t *_p_i ) :
-                                        QFrame( NULL ), p_intf( _p_i )
+BackgroundWidget::BackgroundWidget( intf_thread_t *_p_i )
+                 :QWidget( NULL ), p_intf( _p_i )
 {
     /* We should use that one to take the more size it can */
-    setSizePolicy( QSizePolicy::Preferred, QSizePolicy::MinimumExpanding );
+//    setSizePolicy( QSizePolicy::Preferred, QSizePolicy::Preferred );
 
     /* A dark background */
     setAutoFillBackground( true );
@@ -133,44 +163,49 @@ BackgroundWidget::BackgroundWidget( intf_thread_t *_p_i ) :
 
     /* A cone in the middle */
     label = new QLabel;
-//    label->setScaledContents( true );
     label->setMargin( 5 );
     label->setMaximumHeight( MAX_BG_SIZE );
     label->setMaximumWidth( MAX_BG_SIZE );
     label->setMinimumHeight( MIN_BG_SIZE );
     label->setMinimumWidth( MIN_BG_SIZE );
-    label->setPixmap( QPixmap( ":/vlc128.png" ) );
+    if( QDate::currentDate().dayOfYear() >= 354 )
+        label->setPixmap( QPixmap( ":/vlc128-christmas.png" ) );
+    else
+        label->setPixmap( QPixmap( ":/vlc128.png" ) );
 
-    QHBoxLayout *backgroundLayout = new QHBoxLayout( this );
-    backgroundLayout->addWidget( label );
+    QGridLayout *backgroundLayout = new QGridLayout( this );
+    backgroundLayout->addWidget( label, 0, 1 );
+    backgroundLayout->setColumnStretch( 0, 1 );
+    backgroundLayout->setColumnStretch( 2, 1 );
 
-    resize( 300, 150 );
-    updateGeometry();
+    CONNECT( THEMIM->getIM(), artChanged( QString ), this, updateArt( QString ) );
 }
 
 BackgroundWidget::~BackgroundWidget()
-{}
-
-void BackgroundWidget::setArt( QString url )
 {
-    if( url.isNull() )
-        label->setPixmap( QPixmap( ":/vlc128.png" ) );
-    else
-        label->setPixmap( QPixmap( url ) );
-    updateGeometry();
 }
 
-QSize BackgroundWidget::sizeHint() const
+void BackgroundWidget::resizeEvent( QResizeEvent * event )
 {
-    return label->size();
+    if( event->size().height() <= MIN_BG_SIZE )
+        label->hide();
+    else
+        label->show();
 }
 
-void BackgroundWidget::resizeEvent( QResizeEvent *e )
+void BackgroundWidget::updateArt( QString url )
 {
-    msg_Dbg( p_intf, "BG size, %i, %i", e->size().width(), e->size().height() );
-    if( e->size().height() < label->height() )
+    if( url.isEmpty() )
     {
-        label->resize( e->size().height(), e->size().height() );
+        if( QDate::currentDate().dayOfYear() >= 354 )
+            label->setPixmap( QPixmap( ":/vlc128-christmas.png" ) );
+        else
+            label->setPixmap( QPixmap( ":/vlc128.png" ) );
+        return;
+    }
+    else
+    {
+        label->setPixmap( QPixmap( url ) );
     }
 }
 
@@ -255,15 +290,14 @@ AdvControlsWidget::AdvControlsWidget( intf_thread_t *_p_i ) :
     timeA = timeB = 0;
     CONNECT( THEMIM->getIM(), positionUpdated( float, int, int ),
              this, AtoBLoop( float, int, int ) );
-
-    //FIXME Frame by frame function
+#if 0
     frameButton = new QPushButton( "Fr" );
     frameButton->setMaximumSize( QSize( 26, 26 ) );
     frameButton->setIconSize( QSize( 20, 20 ) );
     advLayout->addWidget( frameButton );
     BUTTON_SET_ACT( frameButton, "Fr", qtr( "Frame by Frame" ), frame() );
+#endif
 
-    /* FIXME Record function */
     recordButton = new QPushButton( "R" );
     recordButton->setMaximumSize( QSize( 26, 26 ) );
     recordButton->setIconSize( QSize( 20, 20 ) );
@@ -291,7 +325,9 @@ void AdvControlsWidget::enableInput( bool enable )
 void AdvControlsWidget::enableVideo( bool enable )
 {
     snapshotButton->setEnabled( enable );
+#if 0
     frameButton->setEnabled( enable );
+#endif
 }
 
 void AdvControlsWidget::snapshot()
@@ -332,8 +368,13 @@ void AdvControlsWidget::AtoBLoop( float f_pos, int i_time, int i_length )
     }
 }
 
+/* FIXME Record function */
 void AdvControlsWidget::record(){}
+
+#if 0
+//FIXME Frame by frame function
 void AdvControlsWidget::frame(){}
+#endif
 
 /*****************************
  * DA Control Widget !
@@ -346,7 +387,13 @@ ControlsWidget::ControlsWidget( intf_thread_t *_p_i,
 {
     controlLayout = new QGridLayout( this );
     controlLayout->setSpacing( 0 );
-    setSizePolicy( QSizePolicy::Preferred , QSizePolicy::Minimum );
+#if QT43
+    controlLayout->setContentsMargins( 9, 6, 9, 6 );
+#else
+    controlLayout->setMargin( 6 );
+#endif
+
+    setSizePolicy( QSizePolicy::Preferred , QSizePolicy::Maximum );
 
     /** The main Slider **/
     slider = new InputSlider( Qt::Horizontal, NULL );
@@ -359,15 +406,15 @@ ControlsWidget::ControlsWidget( intf_thread_t *_p_i,
              THEMIM->getIM(), sliderUpdate( float ) );
 
     /** Slower and faster Buttons **/
-    slowerButton = new QPushButton;
-    slowerButton->setFlat( true );
+    slowerButton = new QToolButton;
+    slowerButton->setAutoRaise( true );
     slowerButton->setMaximumSize( QSize( 26, 20 ) );
 
     BUTTON_SET_ACT( slowerButton, "-", qtr( "Slower" ), slower() );
     controlLayout->addWidget( slowerButton, 0, 0 );
 
-    fasterButton = new QPushButton;
-    fasterButton->setFlat( true );
+    fasterButton = new QToolButton;
+    fasterButton->setAutoRaise( true );
     fasterButton->setMaximumSize( QSize( 26, 20 ) );
 
     BUTTON_SET_ACT( fasterButton, "+", qtr( "Faster" ), faster() );
@@ -381,7 +428,7 @@ ControlsWidget::ControlsWidget( intf_thread_t *_p_i,
     if( !b_advancedVisible ) advControls->hide();
 
     /** Disc and Menus handling */
-    discFrame = new QFrame( this );
+    discFrame = new QWidget( this );
 
     QHBoxLayout *discLayout = new QHBoxLayout( discFrame );
     discLayout->setSpacing( 0 );
@@ -417,11 +464,47 @@ ControlsWidget::ControlsWidget( intf_thread_t *_p_i,
              sectionNext() );
     CONNECT( menuButton, clicked(), THEMIM->getIM(),
              sectionMenu() );
-
-    /** TODO
+    /**
      * Telextext QFrame
-     * Merge with upper menu in a StackLayout
+     * TODO: Merge with upper menu in a StackLayout
      **/
+#ifdef ZVBI_COMPILED
+    telexFrame = new QWidget( this );
+    QHBoxLayout *telexLayout = new QHBoxLayout( telexFrame );
+    telexLayout->setSpacing( 0 );
+    telexLayout->setMargin( 0 );
+
+    QToolButton *telexOn = new QToolButton;
+    telexOn->setText( qtr( "On" ) );
+    setupSmallButton( telexOn );
+    telexLayout->addWidget( telexOn );
+
+    QToolButton *telexTransparent = new QToolButton;
+    telexTransparent->setText( qtr( "Transparent" ) );
+    setupSmallButton( telexTransparent );
+    telexLayout->addWidget( telexTransparent );
+
+    QSpinBox *telexPage = new QSpinBox;
+    telexPage->setRange( 0, 999 );
+    telexPage->setValue( 100 );
+    telexPage->setAccelerated( true );
+    telexPage->setWrapping( true );
+    telexPage->setAlignment( Qt::AlignRight );
+    telexPage->setSizePolicy( QSizePolicy::Preferred, QSizePolicy::Minimum );
+    telexLayout->addWidget( telexPage );
+
+    controlLayout->addWidget( telexFrame, 1, 10, 2, 3, Qt::AlignBottom );
+    telexFrame->hide();
+
+    CONNECT( telexPage, valueChanged( int ), THEMIM->getIM(),
+             telexGotoPage( int ) );
+    CONNECT( telexOn, clicked( bool ), THEMIM->getIM(),
+             telexToggle( bool ) );
+    CONNECT( telexTransparent, clicked( bool ),
+             THEMIM->getIM(), telexSetTransparency( bool ) );
+    CONNECT( THEMIM->getIM(), teletextEnabled( bool ),
+             telexFrame, setVisible( bool ) );
+#endif
 
     /** Play Buttons **/
     QSizePolicy sizePolicy( QSizePolicy::Fixed, QSizePolicy::Fixed );
@@ -431,8 +514,8 @@ ControlsWidget::ControlsWidget( intf_thread_t *_p_i,
     /* Play */
     playButton = new QPushButton;
     playButton->setSizePolicy( sizePolicy );
-    playButton->setMaximumSize( QSize( 38, 38 ) );
-    playButton->setMinimumSize( QSize( 45, 45 ) );
+    playButton->setMaximumSize( QSize( 36, 36 ) );
+    playButton->setMinimumSize( QSize( 36, 36 ) );
     playButton->setIconSize( QSize( 30, 30 ) );
 
     controlLayout->addWidget( playButton, 2, 0, 2, 2 );
@@ -466,7 +549,7 @@ ControlsWidget::ControlsWidget( intf_thread_t *_p_i,
     controlButLayout->addWidget( nextButton );
 
     /* Add this block to the main layout */
-    controlLayout->addLayout( controlButLayout, 3, 3, 1, 3, Qt::AlignBottom );
+    controlLayout->addLayout( controlButLayout, 3, 3, 1, 3 );
 
     BUTTON_SET_ACT_I( playButton, "", play.png, qtr( "Play" ), play() );
     BUTTON_SET_ACT_I( prevButton, "" , previous.png,
@@ -474,12 +557,13 @@ ControlsWidget::ControlsWidget( intf_thread_t *_p_i,
     BUTTON_SET_ACT_I( nextButton, "", next.png, qtr( "Next" ), next() );
     BUTTON_SET_ACT_I( stopButton, "", stop.png, qtr( "Stop" ), stop() );
 
-    controlLayout->setColumnStretch( 7 , 2 );
+    controlLayout->setColumnMinimumWidth( 7, 20 );
+    controlLayout->setColumnStretch( 7, 0 );
+    controlLayout->setColumnStretch( 8, 0 );
+    controlLayout->setColumnStretch( 9, 0 );
 
     /*
      * Other first Line buttons
-     * Might need to be inside a frame to avoid a few resizing pb
-     * FIXME
      */
     /** Fullscreen/Visualisation **/
     fullscreenButton = new QPushButton( "F" );
@@ -501,13 +585,15 @@ ControlsWidget::ControlsWidget( intf_thread_t *_p_i,
     setupSmallButton( extSettingsButton );
     controlLayout->addWidget( extSettingsButton, 3, 12, Qt::AlignBottom );
 
+    controlLayout->setColumnStretch( 13, 0 );
+    controlLayout->setColumnMinimumWidth( 13, 24 );
     controlLayout->setColumnStretch( 14, 5 );
 
     /* Volume */
     VolumeClickHandler *hVolLabel = new VolumeClickHandler( p_intf, this );
 
     volMuteLabel = new QLabel;
-    volMuteLabel->setPixmap( QPixmap( ":/pixmaps/volume-high.png" ) );
+    volMuteLabel->setPixmap( QPixmap( ":/pixmaps/volume-medium.png" ) );
     volMuteLabel->setToolTip( qtr( "Mute" ) );
     volMuteLabel->installEventFilter( hVolLabel );
     controlLayout->addWidget( volMuteLabel, 3, 15, Qt::AlignBottom );
@@ -532,22 +618,18 @@ ControlsWidget::ControlsWidget( intf_thread_t *_p_i,
     volumeSlider->setValue( ( config_GetInt( p_intf, "volume" ) ) *
                               VOLUME_MAX / (AOUT_VOLUME_MAX/2) );
 
+    /* Force the update at build time in order to have a muted icon if needed */
+    updateVolume( volumeSlider->value() );
+
     /* Volume control connection */
-    resize( QSize( 400, 60 ) );
     CONNECT( volumeSlider, valueChanged( int ), this, updateVolume( int ) );
-    msg_Dbg( p_intf, "controls size: %i - %i", size().width(), size().height() );
-}
+    CONNECT( THEMIM, volumeChanged( void ), this, updateVolume( void ) );
 
-ControlsWidget::~ControlsWidget()
-{
+    updateInput();
 }
 
-/*
-QSize ControlsWidget::sizeHint() const
-{
-    return QSize( 300, 50 );
-}
-*/
+ControlsWidget::~ControlsWidget()
+{}
 
 void ControlsWidget::stop()
 {
@@ -611,12 +693,14 @@ void ControlsWidget::updateVolume( int i_sliderVolume )
     }
     if( i_sliderVolume == 0 )
         volMuteLabel->setPixmap( QPixmap(":/pixmaps/volume-muted.png" ) );
-    else if( i_sliderVolume < VOLUME_MAX / 2 )
+    else if( i_sliderVolume < VOLUME_MAX / 3 )
         volMuteLabel->setPixmap( QPixmap( ":/pixmaps/volume-low.png" ) );
-    else volMuteLabel->setPixmap( QPixmap( ":/pixmaps/volume-high.png" ) );
+    else if( i_sliderVolume > (VOLUME_MAX * 2 / 3 ) )
+        volMuteLabel->setPixmap( QPixmap( ":/pixmaps/volume-high.png" ) );
+    else volMuteLabel->setPixmap( QPixmap( ":/pixmaps/volume-medium.png" ) );
 }
 
-void ControlsWidget::updateOnTimer()
+void ControlsWidget::updateVolume()
 {
     /* Audio part */
     audio_volume_t i_volume;
@@ -630,19 +714,27 @@ void ControlsWidget::updateOnTimer()
         volumeSlider->setValue( i_volume );
         b_my_volume = false;
     }
+}
 
+void ControlsWidget::updateInput()
+{
     /* Activate the interface buttons according to the presence of the input */
     enableInput( THEMIM->getIM()->hasInput() );
-    //enableVideo( THEMIM->getIM()->hasVideo() );
-    enableVideo( true );
+    enableVideo( THEMIM->getIM()->hasVideo() && THEMIM->getIM()->hasInput() );
 }
 
 void ControlsWidget::setStatus( int status )
 {
-    if( status == PLAYING_S ) // Playing
+    if( status == PLAYING_S ) /* Playing */
+    {
         playButton->setIcon( QIcon( ":/pixmaps/pause.png" ) );
+        playButton->setToolTip( qtr( "Pause" ) );
+    }
     else
+    {
         playButton->setIcon( QIcon( ":/pixmaps/play.png" ) );
+        playButton->setToolTip( qtr( "Play" ) );
+    }
 }
 
 /**
@@ -708,111 +800,9 @@ void ControlsWidget::toggleAdvanced()
         advControls->hide();
         b_advancedVisible = false;
     }
-    //FIXME connect this one :D
-    emit advancedControlsToggled( b_advancedVisible );  //  doComponentsUpdate();
+    emit advancedControlsToggled( b_advancedVisible );
 }
 
-/**********************************************************************
- * Playlist Widget. The embedded playlist
- **********************************************************************/
-#include "components/playlist/panels.hpp"
-#include "components/playlist/selector.hpp"
-
-#include <QSplitter>
-
-PlaylistWidget::PlaylistWidget( intf_thread_t *_p_i, QSettings *settings ) :
-                                p_intf ( _p_i )
-{
-    /* Left Part and design */
-    QWidget *leftW = new QWidget( this );
-    QVBoxLayout *left = new QVBoxLayout( leftW );
-
-    /* Source Selector */
-    selector = new PLSelector( this, p_intf, THEPL );
-    left->addWidget( selector );
-
-    /* Art label */
-    art = new QLabel( "" );
-    art->setMinimumHeight( 128 );
-    art->setMinimumWidth( 128 );
-    art->setMaximumHeight( 128 );
-    art->setMaximumWidth( 128 );
-    art->setScaledContents( true );
-    art->setPixmap( QPixmap( ":/noart.png" ) );
-    left->addWidget( art );
-
-    /* Initialisation of the playlist */
-    playlist_item_t *p_root = playlist_GetPreferredNode( THEPL,
-                                                THEPL->p_local_category );
-
-    rightPanel = qobject_cast<PLPanel *>( new StandardPLPanel( this,
-                              p_intf, THEPL, p_root ) );
-
-    /* Connects */
-    CONNECT( selector, activated( int ), rightPanel, setRoot( int ) );
-
-    CONNECT( qobject_cast<StandardPLPanel *>( rightPanel )->model,
-             artSet( QString ) , this, setArt( QString ) );
-    /* Forward removal requests from the selector to the main panel */
-    CONNECT( qobject_cast<PLSelector *>( selector )->model,
-             shouldRemove( int ),
-             qobject_cast<StandardPLPanel *>( rightPanel ), removeItem( int ) );
-
-    connect( selector, SIGNAL( activated( int ) ),
-             this, SIGNAL( rootChanged( int ) ) );
-    emit rootChanged( p_root->i_id );
-
-    /* Add the two sides of the QSplitter */
-    addWidget( leftW );
-    addWidget( rightPanel );
-
-    leftW->setMaximumWidth( 250 );
-    setCollapsible( 1, false );
-
-    QList<int> sizeList;
-    sizeList << 180 << 420 ;
-    setSizes( sizeList );
-    setSizePolicy( QSizePolicy::Preferred, QSizePolicy::Expanding );
-
-    /* In case we want to keep the splitter informations */
-    settings->beginGroup( "playlist" );
-    restoreState( settings->value("splitterSizes").toByteArray());
-    resize( settings->value("size", QSize(600, 300)).toSize());
-    move( settings->value("pos", QPoint( 0, 400)).toPoint());
-    settings->endGroup();
-}
-
-void PlaylistWidget::setArt( QString url )
-{
-    if( url.isNull() )
-    {
-        art->setPixmap( QPixmap( ":/noart.png" ) );
-        emit artSet( url );
-    }
-    else if( prevArt != url )
-    {
-        art->setPixmap( QPixmap( url ) );
-        prevArt = url;
-        emit artSet( url );
-    }
-}
-
-QSize PlaylistWidget::sizeHint() const
-{
-   return QSize( 600 , 300 );
-}
-
-PlaylistWidget::~PlaylistWidget()
-{}
-
-void PlaylistWidget::savingSettings( QSettings *settings )
-{
-    settings->beginGroup( "playlist" );
-    settings->setValue( "pos", pos() );
-    settings->setValue( "size", size() );
-    settings->setValue("splitterSizes", saveState() );
-    settings->endGroup();
-}
 
 /**********************************************************************
  * Speed control widget
@@ -837,22 +827,28 @@ SpeedControlWidget::SpeedControlWidget( intf_thread_t *_p_i ) :
 
     CONNECT( speedSlider, valueChanged( int ), this, updateRate( int ) );
 
-    normalSpeedButton = new QPushButton( "N" );
+    QToolButton *normalSpeedButton = new QToolButton( this );
     normalSpeedButton->setMaximumSize( QSize( 26, 20 ) );
-    normalSpeedButton->setFlat( true );
+    normalSpeedButton->setAutoRaise( true );
+    normalSpeedButton->setText( "N" );
     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);
+    speedControlLayout->addWidget( speedSlider );
+    speedControlLayout->addWidget( normalSpeedButton );
+    setLayout( speedControlLayout );
 }
 
 SpeedControlWidget::~SpeedControlWidget()
 {}
 
+void SpeedControlWidget::setEnable( bool b_enable )
+{
+    speedSlider->setEnabled( b_enable );
+}
+
 #define RATE_SLIDER_MAXIMUM 3.0
 #define RATE_SLIDER_MINIMUM 0.3
 #define RATE_SLIDER_LENGTH 100.0
@@ -905,13 +901,13 @@ void SpeedControlWidget::updateRate( int sliderValue )
 
     if( sliderValue < 0.0 )
     {
-        rate = INPUT_RATE_DEFAULT* RATE_SLIDER_LENGTH /
-            ( sliderValue * ( 1.0 - RATE_SLIDER_MINIMUM ) + RATE_SLIDER_LENGTH );
+        rate = (int)(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 );
+        rate = (int)(INPUT_RATE_DEFAULT* RATE_SLIDER_LENGTH /
+            ( sliderValue * ( RATE_SLIDER_MAXIMUM - 1.0 ) + RATE_SLIDER_LENGTH ));
     }
 
     THEMIM->getIM()->setRate(rate);