]> git.sesse.net Git - vlc/blobdiff - modules/gui/wxwindows/interface.cpp
Fixed dropdown lists. they were returning descriptions on a SaveAll instead of config...
[vlc] / modules / gui / wxwindows / interface.cpp
index ebf7db7e024708e653c38da47c617eee3dfa9793..558381167783a84d7a8a56d795c6f6a66c550550 100644 (file)
@@ -2,7 +2,7 @@
  * interface.cpp : wxWindows plugin for vlc
  *****************************************************************************
  * Copyright (C) 2000-2001 VideoLAN
- * $Id: interface.cpp,v 1.54 2003/07/29 21:14:10 gbazin Exp $
+ * $Id: interface.cpp,v 1.67 2003/10/19 22:52:11 sigmunau Exp $
  *
  * Authors: Gildas Bazin <gbazin@netcourrier.com>
  *
 
 #include <vlc/vlc.h>
 #include <vlc/aout.h>
-
-#ifdef WIN32                                                 /* mingw32 hack */
-#undef Yield
-#undef CreateDialog
-#endif
-
-/* Let vlc take care of the i18n stuff */
-#define WXINTL_NO_GETTEXT_MACRO
-
-#include <wx/wxprec.h>
-#include <wx/wx.h>
-
+#include <vlc/vout.h>
 #include <vlc/intf.h>
 #include "stream_control.h"
 
@@ -137,6 +126,8 @@ enum
     FileInfo_Event,
 
     Prefs_Event,
+    Extra_Event,
+    Skins_Event,
 
     SliderScroll_Event,
     StopStream_Event,
@@ -146,6 +137,13 @@ enum
     SlowStream_Event,
     FastStream_Event,
 
+    Adjust_Event,
+    Hue_Event,
+    Contrast_Event,
+    Brightness_Event,
+    Saturation_Event,
+
+    Ratio_Event,
     /* it is important for the id corresponding to the "About" command to have
      * this standard value as otherwise it won't be handled properly under Mac
      * (where it is special and put into the "Apple" menu) */
@@ -164,6 +162,11 @@ BEGIN_EVENT_TABLE(Interface, wxFrame)
 
     EVT_MENU_OPEN(Interface::OnMenuOpen)
 
+    EVT_MENU( Extra_Event, Interface::OnExtra)
+    EVT_CHECKBOX( Adjust_Event, Interface::OnEnableAdjust)
+
+    EVT_COMBOBOX( Ratio_Event, Interface::OnRatio)
+
 #if defined( __WXMSW__ ) || defined( __WXMAC__ )
     EVT_CONTEXT_MENU(Interface::OnContextMenu2)
 #endif
@@ -185,6 +188,11 @@ BEGIN_EVENT_TABLE(Interface, wxFrame)
     /* Slider events */
     EVT_COMMAND_SCROLL(SliderScroll_Event, Interface::OnSliderUpdate)
 
+    EVT_COMMAND_SCROLL(Hue_Event, Interface::OnHueUpdate)
+    EVT_COMMAND_SCROLL(Contrast_Event, Interface::OnContrastUpdate)
+    EVT_COMMAND_SCROLL(Brightness_Event, Interface::OnBrightnessUpdate)
+    EVT_COMMAND_SCROLL(Saturation_Event, Interface::OnSaturationUpdate)
+
 END_EVENT_TABLE()
 
 /*****************************************************************************
@@ -197,14 +205,22 @@ Interface::Interface( intf_thread_t *_p_intf ):
     /* Initializations */
     p_intf = _p_intf;
     i_old_playing_status = PAUSE_S;
+    b_extra = VLC_FALSE;
 
     /* Give our interface a nice little icon */
     SetIcon( wxIcon( vlc_xpm ) );
 
     /* Create a sizer for the main frame */
-    frame_sizer = new wxBoxSizer( wxHORIZONTAL );
+    //frame_sizer= new wxFlexGridSizer( 1, 0, 0);
+    frame_sizer = new wxBoxSizer( wxVERTICAL );
     SetSizer( frame_sizer );
 
+    /* Create a dummy widget that can get the keyboard focus */
+    wxWindow *p_dummy = new wxWindow( this, 0, wxDefaultPosition,
+                                      wxSize(0,0) );
+    p_dummy->SetFocus();
+    frame_sizer->Add( p_dummy );
+
     /* Creation of the menu bar */
     CreateOurMenuBar();
 
@@ -213,9 +229,14 @@ Interface::Interface( intf_thread_t *_p_intf ):
 
     /* Creation of the slider sub-window */
     CreateOurSlider();
-    frame_sizer->Add( slider_frame, 1, wxGROW, 0 );
+    frame_sizer->Add( slider_frame, 0, wxEXPAND , 0 );
     frame_sizer->Hide( slider_frame );
 
+    /* Create the extra panel */
+    CreateOurExtraPanel();
+    frame_sizer->Add( extra_frame, 0, wxEXPAND , 0 );
+    frame_sizer->Hide( extra_frame );
+
     /* Creation of the status bar
      * Helptext for menu items and toolbar tools will automatically get
      * displayed here. */
@@ -236,6 +257,11 @@ Interface::Interface( intf_thread_t *_p_intf ):
     /* Associate drop targets with the main interface */
     SetDropTarget( new DragAndDrop( p_intf ) );
 #endif
+
+    UpdateAcceleratorTable();
+
+    /* Start timer */
+    timer = new Timer( p_intf, this );
 }
 
 Interface::~Interface()
@@ -244,7 +270,9 @@ Interface::~Interface()
     {
         delete p_intf->p_sys->p_wxwindow;
     }
+
     /* Clean up */
+    delete timer;
 }
 
 /*****************************************************************************
@@ -264,6 +292,7 @@ void Interface::CreateOurMenuBar()
 #define HELP_FILEINFO       N_("Show information about the file being played")
 
 #define HELP_PREFS N_("Go to the preferences menu")
+#define EXTRA_PREFS N_("Shows the extended GUI")
 
 #define HELP_ABOUT N_("About this program")
 
@@ -301,6 +330,8 @@ void Interface::CreateOurMenuBar()
     wxMenu *settings_menu = new wxMenu;
     settings_menu->Append( Prefs_Event, wxU(_("&Preferences...")),
                            wxU(_(HELP_PREFS)) );
+    settings_menu->AppendCheckItem( Extra_Event, wxU(_("&Extended GUI") ),
+                                    wxU(_(EXTRA_PREFS)) );
 
     /* Create the "Audio" menu */
     p_audio_menu = new wxMenu;
@@ -314,6 +345,10 @@ void Interface::CreateOurMenuBar()
     p_navig_menu = new wxMenu;
     b_navig_menu = 1;
 
+    /* Create the "Miscellaneous" menu */
+    p_misc_menu = new wxMenu;
+    b_misc_menu = 1;
+
     /* Create the "Help" menu */
     wxMenu *help_menu = new wxMenu;
     help_menu->Append( About_Event, wxU(_("&About...")), wxU(_(HELP_ABOUT)) );
@@ -326,6 +361,7 @@ void Interface::CreateOurMenuBar()
     menubar->Append( p_audio_menu, wxU(_("&Audio")) );
     menubar->Append( p_video_menu, wxU(_("&Video")) );
     menubar->Append( p_navig_menu, wxU(_("&Navigation")) );
+    menubar->Append( p_misc_menu, wxU(_("&Miscellaneous")) );
     menubar->Append( help_menu, wxU(_("&Help")) );
 
     /* Attach the menu bar to the frame */
@@ -355,7 +391,7 @@ void Interface::CreateOurToolBar()
                          * version because we don't include wx.rc */
 
     wxToolBar *toolbar = CreateToolBar(
-        wxTB_HORIZONTAL | wxTB_FLAT | wxTB_DOCKABLE );
+                                       wxTB_HORIZONTAL | wxTB_FLAT | wxTB_DOCKABLE );
 
     toolbar->SetToolBitmapSize( wxSize(TOOLBAR_BMP_WIDTH,TOOLBAR_BMP_HEIGHT) );
 
@@ -392,6 +428,7 @@ void Interface::CreateOurToolBar()
      * toolbar and set this as the minimum for the main frame size. */
     wxBoxSizer *toolbar_sizer = new wxBoxSizer( wxHORIZONTAL );
     toolbar_sizer->Add( toolbar, 0, 0, 0 );
+
     toolbar_sizer->Layout();
 
 #ifndef WIN32
@@ -442,6 +479,194 @@ void Interface::CreateOurSlider()
     slider_frame->Hide();
 }
 
+
+void Interface::CreateOurExtraPanel()
+{
+    char *psz_filters;
+
+    extra_frame = new wxPanel( this, -1, wxDefaultPosition, wxDefaultSize );
+    extra_frame->SetAutoLayout( TRUE );
+    wxBoxSizer *extra_sizer = new wxBoxSizer( wxHORIZONTAL );
+
+    /* Create static box to surround the adjust controls */
+    adjust_box = new wxStaticBox( extra_frame, -1, wxU(_("Image adjust")) );
+
+    /* Create the size for the frame */
+    wxStaticBoxSizer *adjust_sizer =
+        new wxStaticBoxSizer( adjust_box, wxVERTICAL );
+    adjust_sizer->SetMinSize( -1, 50 );
+
+    /* Create every controls */
+
+    /* Create the adjust button */
+    wxCheckBox * adjust_check = new wxCheckBox( extra_frame, Adjust_Event,
+                                                 wxU(_("Enable")));
+
+
+    wxBoxSizer *hue_sizer = new wxBoxSizer( wxHORIZONTAL );
+    wxStaticText *hue_text = new wxStaticText( extra_frame, -1,
+                                       wxU(_("Hue")) );
+    hue_slider = new wxSlider ( extra_frame, Hue_Event, 0, 0,
+                                360, wxDefaultPosition, wxDefaultSize );
+
+    hue_sizer->Add(hue_text,1, 0 ,0);
+    hue_sizer->Add(hue_slider,1, 0 ,0);
+    hue_sizer->Layout();
+
+    wxBoxSizer *contrast_sizer = new wxBoxSizer( wxHORIZONTAL );
+    wxStaticText *contrast_text = new wxStaticText( extra_frame, -1,
+                                       wxU(_("Contrast")) );
+    contrast_slider = new wxSlider ( extra_frame, Contrast_Event, 0, 0,
+                                200, wxDefaultPosition, wxDefaultSize);
+    contrast_sizer->Add(contrast_text,1, 0 ,0);
+    contrast_sizer->Add(contrast_slider,1, 0 ,0);
+    contrast_sizer->Layout();
+
+    wxBoxSizer *brightness_sizer = new wxBoxSizer( wxHORIZONTAL );
+    wxStaticText *brightness_text = new wxStaticText( extra_frame, -1,
+                                       wxU(_("Brightness")) );
+    brightness_slider = new wxSlider ( extra_frame, Brightness_Event, 0, 0,
+                           200, wxDefaultPosition, wxDefaultSize) ;
+    brightness_sizer->Add(brightness_text,1,0,0);
+    brightness_sizer->Add(brightness_slider,1,0,0);
+    brightness_sizer->Layout();
+
+    wxBoxSizer *saturation_sizer = new wxBoxSizer( wxHORIZONTAL );
+    wxStaticText *saturation_text = new wxStaticText( extra_frame, -1,
+                                          wxU(_("Saturation")) );
+    saturation_slider = new wxSlider ( extra_frame, Saturation_Event, 0, 0,
+                           300, wxDefaultPosition, wxDefaultSize );
+    saturation_sizer->Add(saturation_text,1,0,0);
+    saturation_sizer->Add(saturation_slider,1,0,0);
+    saturation_sizer->Layout();
+
+    adjust_sizer->Add(adjust_check, 1, wxEXPAND, 0);
+    adjust_sizer->Add(hue_sizer, 1, wxEXPAND, 0);
+    adjust_sizer->Add(contrast_sizer, 1, wxEXPAND, 0);
+    adjust_sizer->Add(brightness_sizer, 1, wxEXPAND, 0);
+    adjust_sizer->Add(saturation_sizer, 1, wxEXPAND, 0);
+
+    extra_sizer->Add(adjust_sizer,1,wxBOTTOM,5);
+
+
+    /* Create static box to surround the other controls */
+    other_box = new wxStaticBox( extra_frame, -1, wxU(_("Video Options")) );
+
+    /* Create the sizer for the frame */
+    wxStaticBoxSizer *other_sizer =
+        new wxStaticBoxSizer( other_box, wxVERTICAL );
+    other_sizer->SetMinSize( -1, 50 );
+
+    static const wxString ratio_array[] =
+    {
+        wxT("4:3"),
+        wxT("16:9"),
+    };
+
+    wxBoxSizer *ratio_sizer = new wxBoxSizer( wxHORIZONTAL );
+    wxStaticText *ratio_text = new wxStaticText( extra_frame, -1,
+                                          wxU(_("Ratio")) );
+
+    ratio_combo = new wxComboBox( extra_frame, Ratio_Event, wxT(""),
+                                  wxDefaultPosition, wxSize(120,-1),
+                                  WXSIZEOF(ratio_array), ratio_array,
+                                  0 );
+
+    ratio_sizer->Add( ratio_text, 0, wxALL, 2 );
+    ratio_sizer->Add( ratio_combo, 0, wxALL, 2 );
+    ratio_sizer->Layout();
+
+    other_sizer->Add(ratio_sizer,0,wxALL,0 );
+
+    extra_sizer->Add(other_sizer,0,wxBOTTOM,5);
+
+    extra_frame->SetSizer( extra_sizer );
+
+    /* Layout the whole panel */
+    extra_sizer->Layout();
+
+    extra_sizer->SetSizeHints(extra_frame);
+
+    /* Write down initial values */
+    psz_filters = config_GetPsz( p_intf, "filter" );
+
+    if(psz_filters == NULL) psz_filters=strdup("");
+
+    if( strstr(psz_filters,"adjust") )
+    {
+        adjust_check->SetValue( 1 );
+        saturation_slider->Enable();
+        contrast_slider->Enable();
+        brightness_slider->Enable();
+        hue_slider->Enable();
+    }
+    else
+    {
+        adjust_check->SetValue( 0 );
+        saturation_slider->Disable();
+        contrast_slider->Disable();
+        brightness_slider->Disable();
+        hue_slider->Disable();
+    }
+
+    int i_value = config_GetInt( p_intf, "hue" );
+    if( i_value > 0 && i_value < 360 )
+        hue_slider->SetValue( i_value );
+
+    float f_value;
+    f_value = config_GetFloat( p_intf, "saturation" );
+    if( f_value > 0 && f_value < 5 )
+        saturation_slider->SetValue( (int)(100 * f_value) );
+    f_value = config_GetFloat( p_intf, "contrast" );
+    if( f_value > 0 && f_value < 4 )
+        contrast_slider->SetValue( (int)(100 * f_value) );
+    f_value = config_GetFloat( p_intf, "brightness" );
+    if( f_value > 0 && f_value < 2 )
+        brightness_slider->SetValue( (int)(100 * f_value) );
+
+    extra_frame->Hide();
+    free(psz_filters);
+}
+
+void Interface::UpdateAcceleratorTable()
+{
+    /* Set some hotkeys */
+    wxAcceleratorEntry entries[7];
+    int i_key = config_GetInt( p_intf, "quit-key" );
+    int i = 0;
+    entries[i++].Set( ConvertHotkeyModifiers( i_key ), ConvertHotkey( i_key ),
+                    Exit_Event );
+    i_key = config_GetInt( p_intf, "stop-key" );
+    entries[i++].Set( ConvertHotkeyModifiers( i_key ), ConvertHotkey( i_key ),
+                    StopStream_Event );
+    i_key = config_GetInt( p_intf, "play-pause-key" );
+    entries[i++].Set( ConvertHotkeyModifiers( i_key ), ConvertHotkey( i_key ),
+                    PlayStream_Event );
+    i_key = config_GetInt( p_intf, "next-key" );
+    entries[i++].Set( ConvertHotkeyModifiers( i_key ), ConvertHotkey( i_key ),
+                    NextStream_Event );
+    i_key = config_GetInt( p_intf, "prev-key" );
+    entries[i++].Set( ConvertHotkeyModifiers( i_key ), ConvertHotkey( i_key ),
+                    PrevStream_Event );
+    i_key = config_GetInt( p_intf, "faster-key" );
+    entries[i++].Set( ConvertHotkeyModifiers( i_key ), ConvertHotkey( i_key ),
+                    FastStream_Event );
+    i_key = config_GetInt( p_intf, "slower-key" );
+    entries[i++].Set( ConvertHotkeyModifiers( i_key ), ConvertHotkey( i_key ),
+                    SlowStream_Event );
+
+    wxAcceleratorTable accel( 7, entries );
+
+    if( !accel.Ok() )
+        msg_Err( p_intf, "invalid accelerator table" );
+
+    SetAcceleratorTable( accel );
+    msg_Dbg( p_intf, "accelerator table loaded" );
+
+}
+
+
+
 /*****************************************************************************
  * Event Handlers.
  *****************************************************************************/
@@ -524,6 +749,25 @@ void Interface::OnMenuOpen(wxMenuEvent& event)
         }
         else b_navig_menu = 1;
     }
+    else if( event.GetEventObject() == p_misc_menu )
+    {
+        if( b_misc_menu )
+        {
+            p_misc_menu = MiscMenu( p_intf, this );
+
+            /* Work-around for buggy wxGTK */
+            wxMenu *menu = GetMenuBar()->GetMenu( 6 );
+            RecursiveDestroy( menu );
+            /* End work-around */
+
+            menu = GetMenuBar()->Replace( 6, p_misc_menu,
+                                         wxU(_("&Miscellaneous")));
+            if( menu ) delete menu;
+
+            b_misc_menu = 0;
+        }
+        else b_misc_menu = 1;
+    }
 
 #else
     p_audio_menu = AudioMenu( p_intf, this );
@@ -538,6 +782,9 @@ void Interface::OnMenuOpen(wxMenuEvent& event)
     menu = GetMenuBar()->Replace( 5, p_navig_menu, wxU(_("&Navigation")) );
     if( menu ) delete menu;
 
+    p_misc_menu = MiscMenu( p_intf, this );
+    menu = GetMenuBar()->Replace( 6, p_misc_menu, wxU(_("&Miscellaneous")) );
+    if( menu ) delete menu;
 #endif
 }
 
@@ -552,13 +799,13 @@ void Interface::OnContextMenu2(wxContextMenuEvent& event)
     }
 
     if( p_intf->p_sys->pf_show_dialog )
-        p_intf->p_sys->pf_show_dialog( p_intf, INTF_DIALOG_POPUPMENU, 0, 0 );
+        p_intf->p_sys->pf_show_dialog( p_intf, INTF_DIALOG_POPUPMENU, 1, 0 );
 }
 #endif
 void Interface::OnContextMenu(wxMouseEvent& event)
 {
     if( p_intf->p_sys->pf_show_dialog )
-        p_intf->p_sys->pf_show_dialog( p_intf, INTF_DIALOG_POPUPMENU, 0, 0 );
+        p_intf->p_sys->pf_show_dialog( p_intf, INTF_DIALOG_POPUPMENU, 1, 0 );
 }
 
 void Interface::OnExit( wxCommandEvent& WXUNUSED(event) )
@@ -573,11 +820,9 @@ void Interface::OnAbout( wxCommandEvent& WXUNUSED(event) )
     msg.Printf( wxString(wxT("VLC media player " VERSION)) +
         wxU(_(" (wxWindows interface)\n\n")) +
         wxU(_("(C) 1996-2003 - the VideoLAN Team\n\n")) +
+        wxU( INTF_ABOUT_MSG ) + wxT("\n\n") +
         wxU(_("The VideoLAN team <videolan@videolan.org>\n"
-              "http://www.videolan.org/\n\n")) +
-        wxU(_("This is the VideoLAN Client, a DVD, MPEG and DivX player."
-              "\nIt can play MPEG and MPEG2 files from a file or from a "
-              "network source.")) );
+              "http://www.videolan.org/\n\n")) );
 
     wxMessageBox( msg, wxString::Format(wxU(_("About %s")),
                   wxT("VLC media player")), wxOK | wxICON_INFORMATION, this );
@@ -628,6 +873,128 @@ void Interface::OnShowDialog( wxCommandEvent& event )
     }
 }
 
+void Interface::OnExtra(wxCommandEvent& event)
+{
+    if( b_extra == VLC_FALSE)
+    {
+        extra_frame->Show();
+        frame_sizer->Show( extra_frame );
+        b_extra = VLC_TRUE;
+    }
+    else
+    {
+        extra_frame->Hide();
+        frame_sizer->Hide( extra_frame );
+        b_extra = VLC_FALSE;
+    }
+    frame_sizer->Layout();
+    frame_sizer->Fit(this);
+}
+
+void Interface::OnEnableAdjust(wxCommandEvent& event)
+{
+    char *psz_filters=config_GetPsz( p_intf, "filter");
+    char *psz_new = NULL;
+    if( event.IsChecked() )
+    {
+        if(psz_filters == NULL)
+        {
+            psz_new = strdup( "adjust" );
+        }
+        else
+        {
+            psz_new= (char *) malloc(strlen(psz_filters) + 8 );
+            sprintf( psz_new, "%s:adjust", psz_filters);
+        }
+        config_PutPsz( p_intf, "filter", psz_new );
+        vlc_value_t val;
+        vout_thread_t *p_vout =
+           (vout_thread_t *)vlc_object_find( p_intf, VLC_OBJECT_VOUT,
+                                       FIND_ANYWHERE );
+        if( p_vout != NULL )
+        {
+            val.psz_string = strdup( psz_new );
+            var_Set( p_vout, "filter", val);
+            vlc_object_release( p_vout );
+        }
+        if( val.psz_string ) free( val.psz_string );
+        brightness_slider->Enable();
+        saturation_slider->Enable();
+        contrast_slider->Enable();
+        hue_slider->Enable();
+    }
+    else
+    {
+        if( psz_filters != NULL )
+        {
+
+            char *psz_current;
+            unsigned int i=0;
+            for( i = 0; i< strlen(psz_filters ); i++)
+            {
+                if ( !strncasecmp( &psz_filters[i],"adjust",6 ))
+                {
+                    if(i > 0)
+                        if( psz_filters[i-1] == ':' ) i--;
+                    psz_current = strchr( &psz_filters[i+1] , ':' );
+                    if( !psz_current )
+                        psz_filters[i] = '\0';
+                    else
+                    {
+                       memmove( &psz_filters[i] , psz_current,
+                                &psz_filters[strlen(psz_filters)]-psz_current
+                                +1);
+                    }
+                }
+            }
+            config_PutPsz( p_intf, "filter", psz_filters);
+            vlc_value_t val;
+            val.psz_string = strdup( psz_filters );
+            vout_thread_t *p_vout =
+               (vout_thread_t *)vlc_object_find( p_intf, VLC_OBJECT_VOUT,
+                                       FIND_ANYWHERE );
+            if( p_vout != NULL )
+            {
+                var_Set( p_vout, "filter", val);
+                vlc_object_release( p_vout );
+            }
+            if( val.psz_string ) free( val.psz_string );
+        }
+        brightness_slider->Disable();
+        saturation_slider->Disable();
+        contrast_slider->Disable();
+        hue_slider->Disable();
+    }
+    if(psz_filters) free(psz_filters);
+    if(psz_new) free(psz_new);
+}
+
+void Interface::OnHueUpdate( wxScrollEvent& event)
+{
+   config_PutInt( p_intf , "hue" , event.GetPosition() );
+}
+
+void Interface::OnSaturationUpdate( wxScrollEvent& event)
+{
+   config_PutFloat( p_intf , "saturation" , (float)event.GetPosition()/100 );
+}
+
+void Interface::OnBrightnessUpdate( wxScrollEvent& event)
+{
+   config_PutFloat( p_intf , "brightness", (float)event.GetPosition()/100 );
+}
+
+void Interface::OnContrastUpdate(wxScrollEvent& event)
+{
+   config_PutFloat( p_intf , "contrast" , (float)event.GetPosition()/100 );
+
+}
+
+void Interface::OnRatio( wxCommandEvent& event )
+{
+   config_PutPsz( p_intf, "aspect-ratio", ratio_combo->GetValue().mb_str() );
+}
+
 void Interface::OnPlayStream( wxCommandEvent& WXUNUSED(event) )
 {
     wxCommandEvent dummy;
@@ -636,8 +1003,10 @@ void Interface::OnPlayStream( wxCommandEvent& WXUNUSED(event) )
                                        FIND_ANYWHERE );
     if( p_playlist == NULL ) return;
 
-    if( p_playlist->i_size )
+    if( p_playlist->i_size && p_playlist->i_enabled )
     {
+        vlc_value_t state;
+
         input_thread_t *p_input = (input_thread_t *)vlc_object_find( p_intf,
                                                        VLC_OBJECT_INPUT,
                                                        FIND_ANYWHERE );
@@ -650,19 +1019,21 @@ void Interface::OnPlayStream( wxCommandEvent& WXUNUSED(event) )
             return;
         }
 
-        if( p_input->stream.control.i_status != PAUSE_S )
+        var_Get( p_input, "state", &state );
+
+        if( state.i_int != PAUSE_S )
         {
             /* A stream is being played, pause it */
-            input_SetStatus( p_input, INPUT_STATUS_PAUSE );
-            TogglePlayButton( PAUSE_S );
-            vlc_object_release( p_playlist );
-            vlc_object_release( p_input );
-            return;
+            state.i_int = PAUSE_S;
+        }
+        else
+        {
+            /* Stream is paused, resume it */
+            state.i_int = PLAYING_S;
         }
+        var_Set( p_input, "state", state );
 
-        /* Stream is paused, resume it */
-        input_SetStatus( p_input, INPUT_STATUS_PLAY );
-        TogglePlayButton( PLAYING_S );
+        TogglePlayButton( state.i_int );
         vlc_object_release( p_input );
         vlc_object_release( p_playlist );
     }
@@ -701,10 +1072,10 @@ void Interface::OnSliderUpdate( wxScrollEvent& event )
         if( p_intf->p_sys->i_slider_pos != event.GetPosition()
             && p_intf->p_sys->p_input )
         {
-            p_intf->p_sys->i_slider_pos = event.GetPosition();
-            input_Seek( p_intf->p_sys->p_input, p_intf->p_sys->i_slider_pos *
-                        100 / SLIDER_MAX_POS,
-                        INPUT_SEEK_PERCENT | INPUT_SEEK_SET );
+            vlc_value_t pos;
+            pos.f_float = (float)event.GetPosition() / (float)SLIDER_MAX_POS;
+
+            var_Set( p_intf->p_sys->p_input, "position", pos );
         }
 
 #ifdef WIN32
@@ -804,7 +1175,9 @@ void Interface::OnSlowStream( wxCommandEvent& WXUNUSED(event) )
                                            FIND_ANYWHERE );
     if( p_input )
     {
-        input_SetStatus( p_input, INPUT_STATUS_SLOWER );
+        vlc_value_t val; val.b_bool = VLC_TRUE;
+
+        var_Set( p_input, "rate-slower", val );
         vlc_object_release( p_input );
     }
 }
@@ -816,7 +1189,9 @@ void Interface::OnFastStream( wxCommandEvent& WXUNUSED(event) )
                                            FIND_ANYWHERE );
     if( p_input )
     {
-        input_SetStatus( p_input, INPUT_STATUS_FASTER );
+        vlc_value_t val; val.b_bool = VLC_TRUE;
+
+        var_Set( p_input, "rate-faster", val );
         vlc_object_release( p_input );
     }
 }
@@ -899,7 +1274,7 @@ void wxVolCtrl::OnChange( wxMouseEvent& event )
 
 void wxVolCtrl::Change( int i_volume )
 {
-    aout_VolumeSet( p_intf, i_volume * AOUT_VOLUME_MAX / 200 );
+    aout_VolumeSet( p_intf, i_volume * AOUT_VOLUME_MAX / 200 / 2 );
     SetValue( i_volume );
     SetToolTip( wxString::Format((wxString)wxU(_("Volume")) + wxT(" %d"),
                 i_volume ) );