]> git.sesse.net Git - vlc/blobdiff - modules/gui/wxwindows/interface.cpp
* modules/gui/wxwindows/*: make sure we re-use the streaming wizard so the user selec...
[vlc] / modules / gui / wxwindows / interface.cpp
index 201f6afb62f0b220215ecdc0231077e0e07c19f0..2213d4c9e18ba33857dbbae45d2728046e33a837 100644 (file)
@@ -1,8 +1,8 @@
 /*****************************************************************************
  * interface.cpp : wxWindows plugin for vlc
  *****************************************************************************
- * Copyright (C) 2000-2001 VideoLAN
- * $Id: interface.cpp,v 1.41 2003/06/19 12:21:53 gbazin Exp $
+ * Copyright (C) 2000-2004, 2003 VideoLAN
+ * $Id: interface.cpp,v 1.87 2004/03/01 18:31:13 gbazin Exp $
  *
  * Authors: Gildas Bazin <gbazin@netcourrier.com>
  *
 /*****************************************************************************
  * Preamble
  *****************************************************************************/
-#include <stdlib.h>                                      /* malloc(), free() */
-#include <errno.h>                                                 /* ENOMEM */
-#include <string.h>                                            /* strerror() */
-#include <stdio.h>
-
 #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"
 
 
 /* include the toolbar graphics */
 #include "bitmaps/file.xpm"
+
 #include "bitmaps/disc.xpm"
 #include "bitmaps/net.xpm"
 #if 0
-#include "bitmaps/sat.xpm"
+ #include "bitmaps/sat.xpm"
 #endif
 #include "bitmaps/play.xpm"
 #include "bitmaps/pause.xpm"
@@ -68,7 +53,7 @@
 #define TOOLBAR_BMP_HEIGHT 36
 
 /* include the icon graphic */
-#include "share/vlc32x32.xpm"
+#include "../../../share/vlc32x32.xpm"
 
 /*****************************************************************************
  * Local class declarations.
@@ -113,6 +98,7 @@ private:
 BEGIN_EVENT_TABLE(wxVolCtrl, wxWindow)
     /* Mouse events */
     EVT_LEFT_DOWN(wxVolCtrl::OnChange)
+    EVT_MOTION(wxVolCtrl::OnChange)
 END_EVENT_TABLE()
 
 /*****************************************************************************
@@ -123,18 +109,26 @@ END_EVENT_TABLE()
 enum
 {
     /* menu items */
+    MenuDummy_Event = wxID_HIGHEST + 1000,
     Exit_Event = wxID_HIGHEST,
+    OpenFileSimple_Event,
+    OpenAdv_Event,
     OpenFile_Event,
     OpenDisc_Event,
     OpenNet_Event,
     OpenSat_Event,
+    OpenOther_Event,
     EjectDisc_Event,
 
+    StreamWizard_Event,
+
     Playlist_Event,
     Logs_Event,
     FileInfo_Event,
 
     Prefs_Event,
+    Extra_Event,
+    Skins_Event,
 
     SliderScroll_Event,
     StopStream_Event,
@@ -144,6 +138,16 @@ enum
     SlowStream_Event,
     FastStream_Event,
 
+    Adjust_Event,
+    Hue_Event,
+    Contrast_Event,
+    Brightness_Event,
+    Saturation_Event,
+    Gamma_Event,
+
+    Ratio_Event,
+    Visual_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) */
@@ -154,23 +158,33 @@ BEGIN_EVENT_TABLE(Interface, wxFrame)
     /* Menu events */
     EVT_MENU(Exit_Event, Interface::OnExit)
     EVT_MENU(About_Event, Interface::OnAbout)
-    EVT_MENU(Playlist_Event, Interface::OnPlaylist)
-    EVT_MENU(Logs_Event, Interface::OnLogs)
-    EVT_MENU(FileInfo_Event, Interface::OnFileInfo)
-    EVT_MENU(Prefs_Event, Interface::OnPreferences)
+
+    EVT_MENU(Playlist_Event, Interface::OnShowDialog)
+    EVT_MENU(Logs_Event, Interface::OnShowDialog)
+    EVT_MENU(FileInfo_Event, Interface::OnShowDialog)
+    EVT_MENU(Prefs_Event, Interface::OnShowDialog)
 
     EVT_MENU_OPEN(Interface::OnMenuOpen)
 
+    EVT_MENU( Extra_Event, Interface::OnExtra)
+    EVT_CHECKBOX( Adjust_Event, Interface::OnEnableAdjust)
+
+    EVT_TEXT( Ratio_Event, Interface::OnRatio)
+    EVT_CHECKBOX( Visual_Event, Interface::OnEnableVisual)
+
 #if defined( __WXMSW__ ) || defined( __WXMAC__ )
     EVT_CONTEXT_MENU(Interface::OnContextMenu2)
 #endif
     EVT_RIGHT_UP(Interface::OnContextMenu)
 
     /* Toolbar events */
-    EVT_MENU(OpenFile_Event, Interface::OnOpenFile)
-    EVT_MENU(OpenDisc_Event, Interface::OnOpenDisc)
-    EVT_MENU(OpenNet_Event, Interface::OnOpenNet)
-    EVT_MENU(OpenSat_Event, Interface::OnOpenSat)
+    EVT_MENU(OpenFileSimple_Event, Interface::OnShowDialog)
+    EVT_MENU(OpenAdv_Event, Interface::OnShowDialog)
+    EVT_MENU(OpenFile_Event, Interface::OnShowDialog)
+    EVT_MENU(OpenDisc_Event, Interface::OnShowDialog)
+    EVT_MENU(OpenNet_Event, Interface::OnShowDialog)
+    EVT_MENU(OpenSat_Event, Interface::OnShowDialog)
+    EVT_MENU(StreamWizard_Event, Interface::OnShowDialog)
     EVT_MENU(StopStream_Event, Interface::OnStopStream)
     EVT_MENU(PlayStream_Event, Interface::OnPlayStream)
     EVT_MENU(PrevStream_Event, Interface::OnPrevStream)
@@ -180,6 +194,13 @@ 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)
+    EVT_COMMAND_SCROLL(Gamma_Event, Interface::OnGammaUpdate)
+
 END_EVENT_TABLE()
 
 /*****************************************************************************
@@ -187,22 +208,26 @@ END_EVENT_TABLE()
  *****************************************************************************/
 Interface::Interface( intf_thread_t *_p_intf ):
     wxFrame( NULL, -1, wxT("VLC media player"),
-             wxDefaultPosition, wxDefaultSize, wxDEFAULT_FRAME_STYLE )
+             wxDefaultPosition, wxSize(700,100), wxDEFAULT_FRAME_STYLE )
 {
     /* Initializations */
     p_intf = _p_intf;
-    p_prefs_dialog = NULL;
     i_old_playing_status = PAUSE_S;
-    p_open_dialog = NULL;
+    b_extra = VLC_FALSE;
 
     /* Give our interface a nice little icon */
-    p_intf->p_sys->p_icon = new wxIcon( vlc_xpm );
-    SetIcon( *p_intf->p_sys->p_icon );
+    SetIcon( wxIcon( vlc_xpm ) );
 
     /* Create a sizer for the main frame */
-    frame_sizer = new wxBoxSizer( wxHORIZONTAL );
+    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, 0, wxEXPAND );
+
     /* Creation of the menu bar */
     CreateOurMenuBar();
 
@@ -211,9 +236,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. */
@@ -222,12 +252,10 @@ Interface::Interface( intf_thread_t *_p_intf ):
     statusbar->SetStatusWidths( 3, i_status_width );
     statusbar->SetStatusText( wxString::Format(wxT("x%.2f"), 1.0), 1 );
 
-
     /* Make sure we've got the right background colour */
     SetBackgroundColour( slider_frame->GetBackgroundColour() );
 
     /* Layout everything */
-    SetAutoLayout( TRUE );
     frame_sizer->Layout();
     frame_sizer->Fit(this);
 
@@ -235,14 +263,22 @@ 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()
 {
+    if( p_intf->p_sys->p_wxwindow )
+    {
+        delete p_intf->p_sys->p_wxwindow;
+    }
+
     /* Clean up */
-    if( p_open_dialog ) delete p_open_dialog;
-    if( p_prefs_dialog ) p_prefs_dialog->Destroy();
-    if( p_intf->p_sys->p_icon ) delete p_intf->p_sys->p_icon;
+    delete timer;
 }
 
 /*****************************************************************************
@@ -250,38 +286,47 @@ Interface::~Interface()
  *****************************************************************************/
 void Interface::CreateOurMenuBar()
 {
+#define HELP_SIMPLE N_("Quick file open")
+#define HELP_ADV N_("Advanced open")
 #define HELP_FILE  N_("Open a file")
-#define HELP_DISC  N_("Open a DVD or (S)VCD")
+#define HELP_DISC  N_("Open Disc Media")
 #define HELP_NET   N_("Open a network stream")
 #define HELP_SAT   N_("Open a satellite stream")
 #define HELP_EJECT N_("Eject the DVD/CD")
 #define HELP_EXIT  N_("Exit this program")
 
+#define HELP_STREAMWIZARD N_("Open the streaming wizard")
+#define HELP_OTHER N_("Open other types of inputs")
+
 #define HELP_PLAYLIST   N_("Open the playlist")
 #define HELP_LOGS       N_("Show the program logs")
 #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")
 
     /* Create the "File" menu */
     wxMenu *file_menu = new wxMenu;
-    file_menu->Append( OpenFile_Event, wxU(_("&Open File...")),
-                       wxU(_(HELP_FILE)) );
+    file_menu->Append( OpenFileSimple_Event, wxU(_("Quick &Open File...")),
+                       wxU(_(HELP_SIMPLE)) );
+
+    file_menu->AppendSeparator();
+    file_menu->Append( OpenFile_Event, wxU(_("Open &File...")),
+                      wxU(_(HELP_FILE)));
     file_menu->Append( OpenDisc_Event, wxU(_("Open &Disc...")),
-                       wxU(_(HELP_DISC)) );
-    file_menu->Append( OpenNet_Event, wxU(_("&Network Stream...")),
-                       wxU(_(HELP_NET)) );
+                      wxU(_(HELP_DISC)));
+    file_menu->Append( OpenNet_Event, wxU(_("Open &Network Stream...")),
+                      wxU(_(HELP_NET)));
+
 #if 0
-    file_menu->Append( OpenSat_Event, wxU(_("&Satellite Stream...")),
+    file_menu->Append( OpenSat_Event, wxU(_("Open &Satellite Stream...")),
                        wxU(_(HELP_NET)) );
 #endif
-#if 0
     file_menu->AppendSeparator();
-    file_menu->Append( EjectDisc_Event, wxU(_("&Eject Disc")),
-                       wxU(_(HELP_EJECT)) );
-#endif
+    file_menu->Append( StreamWizard_Event, wxU(_("Streaming Wizard...")),
+                       wxU(_(HELP_STREAMWIZARD)) );
     file_menu->AppendSeparator();
     file_menu->Append( Exit_Event, wxU(_("E&xit")), wxU(_(HELP_EXIT)) );
 
@@ -290,13 +335,12 @@ void Interface::CreateOurMenuBar()
     view_menu->Append( Playlist_Event, wxU(_("&Playlist...")),
                        wxU(_(HELP_PLAYLIST)) );
     view_menu->Append( Logs_Event, wxU(_("&Messages...")), wxU(_(HELP_LOGS)) );
-    view_menu->Append( FileInfo_Event, wxU(_("&File info...")),
+    view_menu->Append( FileInfo_Event, wxU(_("&Stream and Media info...")),
                        wxU(_(HELP_FILEINFO)) );
 
     /* Create the "Settings" menu */
-    wxMenu *settings_menu = new wxMenu;
-    settings_menu->Append( Prefs_Event, wxU(_("&Preferences...")),
-                           wxU(_(HELP_PREFS)) );
+    p_settings_menu = new wxMenu;
+    b_settings_menu = 1;
 
     /* Create the "Audio" menu */
     p_audio_menu = new wxMenu;
@@ -312,13 +356,13 @@ void Interface::CreateOurMenuBar()
 
     /* Create the "Help" menu */
     wxMenu *help_menu = new wxMenu;
-    help_menu->Append( About_Event, wxU(_("&About...")), wxU(_(HELP_ABOUT)) );
+    help_menu->Append( About_Event, wxU(_("About VLC media player")), wxU(_(HELP_ABOUT)) );
 
     /* Append the freshly created menus to the menu bar... */
     wxMenuBar *menubar = new wxMenuBar( wxMB_DOCKABLE );
     menubar->Append( file_menu, wxU(_("&File")) );
     menubar->Append( view_menu, wxU(_("&View")) );
-    menubar->Append( settings_menu, wxU(_("&Settings")) );
+    menubar->Append( p_settings_menu, wxU(_("&Settings")) );
     menubar->Append( p_audio_menu, wxU(_("&Audio")) );
     menubar->Append( p_video_menu, wxU(_("&Video")) );
     menubar->Append( p_navig_menu, wxU(_("&Navigation")) );
@@ -338,10 +382,11 @@ void Interface::CreateOurMenuBar()
 
 void Interface::CreateOurToolBar()
 {
-#define HELP_STOP N_("Stop current playlist item")
-#define HELP_PLAY N_("Play current playlist item")
-#define HELP_PAUSE N_("Pause current playlist item")
-#define HELP_PLO N_("Open playlist")
+#define HELP_STOP N_("Stop")
+
+#define HELP_PLAY N_("Play")
+#define HELP_PAUSE N_("Pause")
+#define HELP_PLO N_("Playlist")
 #define HELP_PLP N_("Previous playlist item")
 #define HELP_PLN N_("Next playlist item")
 #define HELP_SLOW N_("Play slower")
@@ -350,36 +395,38 @@ void Interface::CreateOurToolBar()
     wxLogNull LogDummy; /* Hack to suppress annoying log message on the win32
                          * version because we don't include wx.rc */
 
-    wxToolBar *toolbar = CreateToolBar(
-        wxTB_HORIZONTAL | wxTB_FLAT | wxTB_DOCKABLE );
+    wxToolBar *toolbar =
+        CreateToolBar( wxTB_HORIZONTAL | wxTB_FLAT | wxTB_DOCKABLE );
 
     toolbar->SetToolBitmapSize( wxSize(TOOLBAR_BMP_WIDTH,TOOLBAR_BMP_HEIGHT) );
 
-    toolbar->AddTool( OpenFile_Event, wxU(_("File")), wxBitmap( file_xpm ),
+    toolbar->AddTool( OpenFileSimple_Event, wxT(""),
+                      wxBitmap( file_xpm ), wxU(_(HELP_SIMPLE)) );
+
+    toolbar->AddSeparator();
+    toolbar->AddTool( OpenFile_Event, wxT(""), wxBitmap( file_xpm ),
                       wxU(_(HELP_FILE)) );
-    toolbar->AddTool( OpenDisc_Event, wxU(_("Disc")), wxBitmap( disc_xpm ),
+    toolbar->AddTool( OpenDisc_Event, wxT(""), wxBitmap( disc_xpm ),
                       wxU(_(HELP_DISC)) );
-    toolbar->AddTool( OpenNet_Event, wxU(_("Net")), wxBitmap( net_xpm ),
+    toolbar->AddTool( OpenNet_Event, wxT(""), wxBitmap( net_xpm ),
                       wxU(_(HELP_NET)) );
-#if 0
-    toolbar->AddTool( OpenSat_Event, wxU(_("Sat")), wxBitmap( sat_xpm ),
-                      wxU(_(HELP_SAT)) );
-#endif
     toolbar->AddSeparator();
-    toolbar->AddTool( StopStream_Event, wxU(_("Stop")), wxBitmap( stop_xpm ),
+
+    toolbar->AddTool( StopStream_Event, wxT(""), wxBitmap( stop_xpm ),
                       wxU(_(HELP_STOP)) );
-    toolbar->AddTool( PlayStream_Event, wxU(_("Play")), wxBitmap( play_xpm ),
+    toolbar->AddTool( PlayStream_Event, wxT(""), wxBitmap( play_xpm ),
                       wxU(_(HELP_PLAY)) );
+
     toolbar->AddSeparator();
-    toolbar->AddTool( Playlist_Event, wxU(_("Playlist")),
+    toolbar->AddTool( Playlist_Event, wxT(""),
                       wxBitmap( playlist_xpm ), wxU(_(HELP_PLO)) );
-    toolbar->AddTool( PrevStream_Event, wxU(_("Prev")),
+    toolbar->AddTool( PrevStream_Event, wxT(""),
                       wxBitmap( previous_xpm ), wxU(_(HELP_PLP)) );
-    toolbar->AddTool( NextStream_Event, wxU(_("Next")), wxBitmap( next_xpm ),
+    toolbar->AddTool( NextStream_Event, wxT(""), wxBitmap( next_xpm ),
                       wxU(_(HELP_PLN)) );
-    toolbar->AddTool( SlowStream_Event, wxU(_("Slower")), wxBitmap( slow_xpm ),
+    toolbar->AddTool( SlowStream_Event, wxT(""), wxBitmap( slow_xpm ),
                       wxU(_(HELP_SLOW)) );
-    toolbar->AddTool( FastStream_Event, wxU(_("Faster")), wxBitmap( fast_xpm ),
+    toolbar->AddTool( FastStream_Event, wxT(""), wxBitmap( fast_xpm ),
                       wxU(_(HELP_FAST)) );
 
     toolbar->Realize();
@@ -387,14 +434,13 @@ void Interface::CreateOurToolBar()
     /* Place the toolbar in a sizer, so we can calculate the width of the
      * 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->Add( toolbar, 1, 0, 0 );
     toolbar_sizer->Layout();
 
 #ifndef WIN32
     frame_sizer->SetMinSize( toolbar_sizer->GetMinSize().GetWidth(), -1 );
-#else
-    frame_sizer->SetMinSize( toolbar->GetToolSize().GetWidth() *
-                             toolbar->GetToolsCount(), -1 );
+#else /* That sucks but for some reason it works better */
+    frame_sizer->SetMinSize( toolbar_sizer->GetMinSize().GetWidth()*2/3, -1 );
 #endif
 
 #if !defined(__WXX11__)
@@ -438,35 +484,240 @@ void Interface::CreateOurSlider()
     slider_frame->Hide();
 }
 
-void Interface::Open( int i_access_method )
-{
-    /* Show/hide the open dialog */
-    if( p_open_dialog == NULL )
-        p_open_dialog = new OpenDialog( p_intf, this, i_access_method );
 
-    if( p_open_dialog &&
-        p_open_dialog->ShowModal( i_access_method ) == wxID_OK )
+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 */
+    wxStaticBox *adjust_box =
+           new wxStaticBox( extra_frame, -1, wxU(_("Adjust Image")) );
+
+    /* 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();
+
+    wxBoxSizer *gamma_sizer = new wxBoxSizer( wxHORIZONTAL );
+    wxStaticText *gamma_text = new wxStaticText( extra_frame, -1,
+                                          wxU(_("Gamma")) );
+    gamma_slider = new wxSlider ( extra_frame, Gamma_Event, 0, 0,
+                           100, wxDefaultPosition, wxDefaultSize );
+    gamma_sizer->Add(gamma_text,1,0,0);
+    gamma_sizer->Add(gamma_slider,1,0,0);
+    gamma_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);
+    adjust_sizer->Add(gamma_sizer, 1, wxEXPAND, 0);
+
+    extra_sizer->Add(adjust_sizer,1,wxBOTTOM,5);
+
+    /* Create sizer to surround the other controls */
+    wxBoxSizer *other_sizer = new wxBoxSizer( wxVERTICAL );
+
+
+    wxStaticBox *video_box =
+            new wxStaticBox( extra_frame, -1, wxU(_("Video Options")) );
+    /* Create the sizer for the frame */
+    wxStaticBoxSizer *video_sizer =
+       new wxStaticBoxSizer( video_box, wxVERTICAL );
+    video_sizer->SetMinSize( -1, 50 );
+
+    static const wxString ratio_array[] =
     {
-        /* Update the playlist */
-        playlist_t *p_playlist =
-            (playlist_t *)vlc_object_find( p_intf, VLC_OBJECT_PLAYLIST,
-                                           FIND_ANYWHERE );
-        if( p_playlist == NULL )
-        {
-            return;
-        }
+        wxT("4:3"),
+        wxT("16:9"),
+    };
 
-        for( size_t i = 0; i < p_open_dialog->mrl.GetCount(); i++ )
-        {
-            playlist_Add( p_playlist,
-                (const char *)p_open_dialog->mrl[i].mb_str(),
-                PLAYLIST_APPEND | (i ? 0 : PLAYLIST_GO), PLAYLIST_END );
-        }
+    wxBoxSizer *ratio_sizer = new wxBoxSizer( wxHORIZONTAL );
+    wxStaticText *ratio_text = new wxStaticText( extra_frame, -1,
+                                          wxU(_("Aspect Ratio")) );
 
-        TogglePlayButton( PLAYING_S );
+    ratio_combo = new wxComboBox( extra_frame, Ratio_Event, wxT(""),
+                                  wxDefaultPosition, wxSize(120,-1),
+                                  WXSIZEOF(ratio_array), ratio_array,
+                                  0 );
 
-        vlc_object_release( p_playlist );
+    ratio_sizer->Add( ratio_text, 0, wxALL, 2 );
+    ratio_sizer->Add( ratio_combo, 0, wxALL, 2 );
+    ratio_sizer->Layout();
+
+    video_sizer->Add( ratio_sizer  , 0 , wxALL , 0 );
+    video_sizer->Layout();
+
+#if 0
+    wxBoxSizer *visual_sizer = new wxBoxSizer( wxHORIZONTAL );
+
+    wxCheckBox *visual_checkbox = new wxCheckBox( extra_frame, Visual_Event,
+                                            wxU(_("Visualisations")) );
+
+    visual_sizer->Add( visual_checkbox, 0, wxEXPAND, 0);
+    visual_sizer->Layout();
+
+    wxStaticBox *audio_box =
+              new wxStaticBox( extra_frame, -1, wxU(_("Audio Options")) );
+    /* Create the sizer for the frame */
+    wxStaticBoxSizer *audio_sizer =
+        new wxStaticBoxSizer( audio_box, wxVERTICAL );
+    audio_sizer->SetMinSize( -1, 50 );
+
+    audio_sizer->Add( visual_sizer, 0, wxALL, 0);
+    audio_sizer->Layout();
+
+    other_sizer->Add( audio_sizer , 0 , wxALL | wxEXPAND , 0 );
+#endif
+    other_sizer->Add( video_sizer, 0, wxALL | wxEXPAND , 0);
+    other_sizer->Layout();
+
+    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 */
+#if 0
+    psz_filters = config_GetPsz( p_intf, "audio-filter" );
+    if( psz_filters && strstr( psz_filters, "visual" ) )
+    {
+        visual_checkbox->SetValue(1);
+    }
+    if( psz_filters ) free( psz_filters );
+#endif
+    psz_filters = config_GetPsz( p_intf, "filter" );
+    if( psz_filters && strstr( psz_filters, "adjust" ) )
+    {
+        adjust_check->SetValue( 1 );
+        saturation_slider->Enable();
+        contrast_slider->Enable();
+        brightness_slider->Enable();
+        hue_slider->Enable();
+        gamma_slider->Enable();
     }
+    else
+    {
+        adjust_check->SetValue( 0 );
+        saturation_slider->Disable();
+        contrast_slider->Disable();
+        brightness_slider->Disable();
+        hue_slider->Disable();
+        gamma_slider->Disable();
+    }
+    if( psz_filters ) free( psz_filters );
+
+    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) );
+    f_value = config_GetFloat( p_intf, "gamma" );
+    if( f_value > 0 && f_value < 10 )
+        gamma_slider->SetValue( (int)(10 * f_value) );
+
+    extra_frame->Hide();
+}
+
+void Interface::UpdateAcceleratorTable()
+{
+    /* Set some hotkeys */
+    wxAcceleratorEntry entries[7];
+    vlc_value_t val;
+    int i = 0;
+
+    var_Get( p_intf->p_vlc, "key-quit", &val );
+    entries[i++].Set( ConvertHotkeyModifiers( val.i_int ),
+                      ConvertHotkey( val.i_int ), Exit_Event );
+    var_Get( p_intf->p_vlc, "key-stop", &val );
+    entries[i++].Set( ConvertHotkeyModifiers( val.i_int ),
+                      ConvertHotkey( val.i_int ), StopStream_Event );
+    var_Get( p_intf->p_vlc, "key-play-pause", &val );
+    entries[i++].Set( ConvertHotkeyModifiers( val.i_int ),
+                      ConvertHotkey( val.i_int ), PlayStream_Event );
+    var_Get( p_intf->p_vlc, "key-next", &val );
+    entries[i++].Set( ConvertHotkeyModifiers( val.i_int ),
+                      ConvertHotkey( val.i_int ), NextStream_Event );
+    var_Get( p_intf->p_vlc, "key-prev", &val );
+    entries[i++].Set( ConvertHotkeyModifiers( val.i_int ),
+                      ConvertHotkey( val.i_int ), PrevStream_Event );
+    var_Get( p_intf->p_vlc, "key-faster", &val );
+    entries[i++].Set( ConvertHotkeyModifiers( val.i_int ),
+                      ConvertHotkey( val.i_int ), FastStream_Event );
+    var_Get( p_intf->p_vlc, "key-slower", &val );
+    entries[i++].Set( ConvertHotkeyModifiers( val.i_int ),
+                      ConvertHotkey( val.i_int ), 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" );
+
 }
 
 /*****************************************************************************
@@ -494,7 +745,32 @@ void RecursiveDestroy( wxMenu *menu )
 void Interface::OnMenuOpen(wxMenuEvent& event)
 {
 #if !defined( __WXMSW__ )
-    if( event.GetEventObject() == p_audio_menu )
+    if( event.GetEventObject() == p_settings_menu )
+    {
+        if( b_settings_menu )
+        {
+            p_settings_menu = SettingsMenu( p_intf, this );
+
+            /* Add static items */
+            p_settings_menu->AppendCheckItem( Extra_Event,
+                             wxU(_("&Extended GUI") ), wxU(_(EXTRA_PREFS)) );
+            p_settings_menu->Append( Prefs_Event, wxU(_("&Preferences...")),
+                                     wxU(_(HELP_PREFS)) );
+
+            /* Work-around for buggy wxGTK */
+            wxMenu *menu = GetMenuBar()->GetMenu( 2 );
+            RecursiveDestroy( menu );
+            /* End work-around */
+
+            menu = GetMenuBar()->Replace( 2, p_settings_menu,
+                                          wxU(_("&Settings")));
+            if( menu ) delete menu;
+
+            b_settings_menu = 0;
+        }
+        else b_settings_menu = 1;
+    }
+    else if( event.GetEventObject() == p_audio_menu )
     {
         if( b_audio_menu )
         {
@@ -553,8 +829,18 @@ void Interface::OnMenuOpen(wxMenuEvent& event)
     }
 
 #else
+    p_settings_menu = SettingsMenu( p_intf, this );
+    /* Add static items */
+    p_settings_menu->AppendCheckItem( Extra_Event, wxU(_("&Extended GUI") ),
+                                      wxU(_(EXTRA_PREFS)) );
+    p_settings_menu->Append( Prefs_Event, wxU(_("&Preferences...")),
+                             wxU(_(HELP_PREFS)) );
+    wxMenu *menu =
+        GetMenuBar()->Replace( 2, p_settings_menu, wxU(_("&Settings")) );
+    if( menu ) delete menu;
+
     p_audio_menu = AudioMenu( p_intf, this );
-    wxMenu *menu = GetMenuBar()->Replace( 3, p_audio_menu, wxU(_("&Audio")) );
+    menu = GetMenuBar()->Replace( 3, p_audio_menu, wxU(_("&Audio")) );
     if( menu ) delete menu;
 
     p_video_menu = VideoMenu( p_intf, this );
@@ -564,19 +850,28 @@ void Interface::OnMenuOpen(wxMenuEvent& event)
     p_navig_menu = NavigMenu( p_intf, this );
     menu = GetMenuBar()->Replace( 5, p_navig_menu, wxU(_("&Navigation")) );
     if( menu ) delete menu;
-
 #endif
+
 }
 
 #if defined( __WXMSW__ ) || defined( __WXMAC__ )
 void Interface::OnContextMenu2(wxContextMenuEvent& event)
 {
-    ::PopupMenu( p_intf, this, ScreenToClient(event.GetPosition()) );
+    /* Only show the context menu for the main interface */
+    if( GetId() != event.GetId() )
+    {
+        event.Skip();
+        return;
+    }
+
+    if( p_intf->p_sys->pf_show_dialog )
+        p_intf->p_sys->pf_show_dialog( p_intf, INTF_DIALOG_POPUPMENU, 1, 0 );
 }
 #endif
 void Interface::OnContextMenu(wxMouseEvent& event)
 {
-    ::PopupMenu( p_intf, this, event.GetPosition() );
+    if( p_intf->p_sys->pf_show_dialog )
+        p_intf->p_sys->pf_show_dialog( p_intf, INTF_DIALOG_POPUPMENU, 1, 0 );
 }
 
 void Interface::OnExit( wxCommandEvent& WXUNUSED(event) )
@@ -588,81 +883,204 @@ void Interface::OnExit( wxCommandEvent& WXUNUSED(event) )
 void Interface::OnAbout( wxCommandEvent& WXUNUSED(event) )
 {
     wxString msg;
-    msg.Printf( wxString(wxT("VLC media player")) +
+    msg.Printf( wxString(wxT("VLC media player " VERSION)) +
         wxU(_(" (wxWindows interface)\n\n")) +
-        wxU(_("(C) 1996-2003 - the VideoLAN Team\n\n")) +
+        wxU(_("(c) 1996-2004 - the VideoLAN Team\n\n")) +
+        wxU( vlc_wraptext(INTF_ABOUT_MSG,WRAPCOUNT,ISUTF8) ) + 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 );
 }
 
-void Interface::OnPlaylist( wxCommandEvent& WXUNUSED(event) )
+void Interface::OnShowDialog( wxCommandEvent& event )
 {
-    /* Show/hide the playlist window */
-    Playlist *p_playlist_window = p_intf->p_sys->p_playlist_window;
-    if( p_playlist_window )
+    if( p_intf->p_sys->pf_show_dialog )
     {
-        p_playlist_window->ShowPlaylist( ! p_playlist_window->IsShown() );
+        int i_id;
+
+        switch( event.GetId() )
+        {
+        case OpenFileSimple_Event:
+            i_id = INTF_DIALOG_FILE_SIMPLE;
+            break;
+        case OpenAdv_Event:
+            i_id = INTF_DIALOG_FILE;
+        case OpenFile_Event:
+            i_id = INTF_DIALOG_FILE;
+            break;
+        case OpenDisc_Event:
+            i_id = INTF_DIALOG_DISC;
+            break;
+        case OpenNet_Event:
+            i_id = INTF_DIALOG_NET;
+            break;
+        case OpenSat_Event:
+            i_id = INTF_DIALOG_SAT;
+            break;
+        case Playlist_Event:
+            i_id = INTF_DIALOG_PLAYLIST;
+            break;
+        case Logs_Event:
+            i_id = INTF_DIALOG_MESSAGES;
+            break;
+        case FileInfo_Event:
+            i_id = INTF_DIALOG_FILEINFO;
+            break;
+        case Prefs_Event:
+            i_id = INTF_DIALOG_PREFS;
+            break;
+        case StreamWizard_Event:
+            i_id = INTF_DIALOG_STREAMWIZARD;
+            break;
+        default:
+            i_id = INTF_DIALOG_FILE;
+            break;
+        }
+
+        p_intf->p_sys->pf_show_dialog( p_intf, i_id, 1, 0 );
     }
 }
 
-void Interface::OnLogs( wxCommandEvent& WXUNUSED(event) )
+void Interface::OnExtra(wxCommandEvent& event)
 {
-    /* Show/hide the log window */
-    wxFrame *p_messages_window = p_intf->p_sys->p_messages_window;
-    if( p_messages_window )
+    if( b_extra == VLC_FALSE)
     {
-        p_messages_window->Show( ! p_messages_window->IsShown() );
+        extra_frame->Show();
+        frame_sizer->Show( extra_frame );
+        b_extra = VLC_TRUE;
     }
-}
-
-void Interface::OnFileInfo( wxCommandEvent& WXUNUSED(event) )
-{
-    /* Show/hide the file info window */
-    wxFrame *p_fileinfo_window = p_intf->p_sys->p_fileinfo_window;
-    if( p_fileinfo_window )
+    else
     {
-        p_fileinfo_window->Show( ! p_fileinfo_window->IsShown() );
+        extra_frame->Hide();
+        frame_sizer->Hide( extra_frame );
+        b_extra = VLC_FALSE;
     }
+    frame_sizer->Layout();
+    frame_sizer->Fit(this);
 }
 
-void Interface::OnPreferences( wxCommandEvent& WXUNUSED(event) )
+void Interface::OnEnableAdjust(wxCommandEvent& event)
 {
-    /* Show/hide the open dialog */
-    if( p_prefs_dialog == NULL )
+    char *psz_filters=config_GetPsz( p_intf, "filter");
+    char *psz_new = NULL;
+    if( event.IsChecked() )
     {
-        p_prefs_dialog = new PrefsDialog( p_intf, this );
+        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();
+        gamma_slider->Enable();
     }
-
-    if( p_prefs_dialog )
+    else
     {
-        p_prefs_dialog->Show( true );
+        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();
+        gamma_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::OnOpenFile( wxCommandEvent& WXUNUSED(event) )
+void Interface::OnBrightnessUpdate( wxScrollEvent& event)
 {
-    Open( FILE_ACCESS );
+    config_PutFloat( p_intf , "brightness", (float)event.GetPosition()/100 );
 }
 
-void Interface::OnOpenDisc( wxCommandEvent& WXUNUSED(event) )
+void Interface::OnContrastUpdate(wxScrollEvent& event)
 {
-    Open( DISC_ACCESS );
+    config_PutFloat( p_intf , "contrast" , (float)event.GetPosition()/100 );
 }
 
-void Interface::OnOpenNet( wxCommandEvent& WXUNUSED(event) )
+void Interface::OnGammaUpdate(wxScrollEvent& event)
 {
-    Open( NET_ACCESS );
+    config_PutFloat( p_intf , "gamma" , (float)event.GetPosition()/10 );
 }
 
-void Interface::OnOpenSat( wxCommandEvent& WXUNUSED(event) )
+void Interface::OnRatio( wxCommandEvent& event )
 {
-    Open( SAT_ACCESS );
+   config_PutPsz( p_intf, "aspect-ratio", ratio_combo->GetValue().mb_str() );
+}
+
+void Interface::OnEnableVisual(wxCommandEvent& event)
+{
+    if( event.IsChecked() )
+    {
+        config_PutPsz( p_intf, "audio-filter", "visual" );
+    }
+    else
+    {
+        config_PutPsz( p_intf, "audio-filter", "" );
+    }
 }
 
 void Interface::OnPlayStream( wxCommandEvent& WXUNUSED(event) )
@@ -671,17 +1089,11 @@ void Interface::OnPlayStream( wxCommandEvent& WXUNUSED(event) )
     playlist_t *p_playlist =
         (playlist_t *)vlc_object_find( p_intf, VLC_OBJECT_PLAYLIST,
                                        FIND_ANYWHERE );
-    if( p_playlist == NULL )
-    {
-        /* If the playlist is empty, open a file requester instead */
-        OnOpenFile( dummy );
-        return;
-    }
+    if( p_playlist == NULL ) return;
 
-    vlc_mutex_lock( &p_playlist->object_lock );
-    if( p_playlist->i_size )
+    if( p_playlist->i_size && p_playlist->i_enabled )
     {
-        vlc_mutex_unlock( &p_playlist->object_lock );
+        vlc_value_t state;
 
         input_thread_t *p_input = (input_thread_t *)vlc_object_find( p_intf,
                                                        VLC_OBJECT_INPUT,
@@ -695,27 +1107,29 @@ 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 */
-        playlist_Play( p_playlist );
-        TogglePlayButton( PLAYING_S );
+        TogglePlayButton( state.i_int );
         vlc_object_release( p_input );
         vlc_object_release( p_playlist );
     }
     else
     {
-        vlc_mutex_unlock( &p_playlist->object_lock );
+        /* If the playlist is empty, open a file requester instead */
         vlc_object_release( p_playlist );
-        OnOpenFile( dummy );
+        OnShowDialog( dummy );
     }
 }
 
@@ -746,10 +1160,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
@@ -763,7 +1177,7 @@ void Interface::OnSliderUpdate( wxScrollEvent& event )
         {
             /* Update stream date */
 #define p_area p_intf->p_sys->p_input->stream.p_selected_area
-            char psz_time[ OFFSETTOTIME_MAX_SIZE ];
+            char psz_time[ MSTRTIME_MAX_SIZE ];
 
             slider_box->SetLabel(
                 wxU(input_OffsetToTime( p_intf->p_sys->p_input,
@@ -775,6 +1189,7 @@ void Interface::OnSliderUpdate( wxScrollEvent& event )
     }
 #endif
 
+#undef WIN32
     vlc_mutex_unlock( &p_intf->change_lock );
 }
 
@@ -788,6 +1203,20 @@ void Interface::OnPrevStream( wxCommandEvent& WXUNUSED(event) )
         return;
     }
 
+    vlc_mutex_lock( &p_playlist->object_lock );
+    if( p_playlist->p_input != NULL )
+    {
+        vlc_mutex_lock( &p_playlist->p_input->stream.stream_lock );
+        if( p_playlist->p_input->stream.p_selected_area->i_id > 1 )
+        {
+            vlc_value_t val; val.b_bool = VLC_TRUE;
+            vlc_mutex_unlock( &p_playlist->p_input->stream.stream_lock );
+            var_Set( p_playlist->p_input, "prev-title", val );
+        } else
+            vlc_mutex_unlock( &p_playlist->p_input->stream.stream_lock );
+    }
+    vlc_mutex_unlock( &p_playlist->object_lock );
+
     playlist_Prev( p_playlist );
     vlc_object_release( p_playlist );
 }
@@ -802,6 +1231,22 @@ void Interface::OnNextStream( wxCommandEvent& WXUNUSED(event) )
         return;
     }
 
+    vlc_mutex_lock( &p_playlist->object_lock );
+    if( p_playlist->p_input != NULL )
+    {
+        vlc_mutex_lock( &p_playlist->p_input->stream.stream_lock );
+        if( p_playlist->p_input->stream.i_area_nb > 1 &&
+            p_playlist->p_input->stream.p_selected_area->i_id <
+              p_playlist->p_input->stream.i_area_nb - 1 )
+        {
+            vlc_value_t val; val.b_bool = VLC_TRUE;
+            vlc_mutex_unlock( &p_playlist->p_input->stream.stream_lock );
+            var_Set( p_playlist->p_input, "next-title", val );
+        } else
+            vlc_mutex_unlock( &p_playlist->p_input->stream.stream_lock );
+    }
+    vlc_mutex_unlock( &p_playlist->object_lock );
+
     playlist_Next( p_playlist );
     vlc_object_release( p_playlist );
 }
@@ -813,7 +1258,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 );
     }
 }
@@ -825,7 +1272,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 );
     }
 }
@@ -839,13 +1288,13 @@ void Interface::TogglePlayButton( int i_playing_status )
 
     if( i_playing_status == PLAYING_S )
     {
-        GetToolBar()->InsertTool( 5, PlayStream_Event, wxU(_("Pause")),
+        GetToolBar()->InsertTool( 8, PlayStream_Event, wxU(_("Pause")),
                                   wxBitmap( pause_xpm ), wxNullBitmap,
                                   wxITEM_NORMAL, wxU(_(HELP_PAUSE)) );
     }
     else
     {
-        GetToolBar()->InsertTool( 5, PlayStream_Event, wxU(_("Play")),
+        GetToolBar()->InsertTool( 8, PlayStream_Event, wxU(_("Play")),
                                   wxBitmap( play_xpm ), wxNullBitmap,
                                   wxITEM_NORMAL, wxU(_(HELP_PLAY)) );
     }
@@ -859,9 +1308,10 @@ void Interface::TogglePlayButton( int i_playing_status )
 /*****************************************************************************
  * Definition of DragAndDrop class.
  *****************************************************************************/
-DragAndDrop::DragAndDrop( intf_thread_t *_p_intf )
+DragAndDrop::DragAndDrop( intf_thread_t *_p_intf, vlc_bool_t _b_enqueue )
 {
     p_intf = _p_intf;
+    b_enqueue = _b_enqueue;
 }
 
 bool DragAndDrop::OnDropFiles( wxCoord, wxCoord,
@@ -879,7 +1329,9 @@ bool DragAndDrop::OnDropFiles( wxCoord, wxCoord,
 
     for( size_t i = 0; i < filenames.GetCount(); i++ )
         playlist_Add( p_playlist, (const char *)filenames[i].mb_str(),
-                      PLAYLIST_APPEND | (i ? 0 : PLAYLIST_GO), PLAYLIST_END );
+                      (const char *)filenames[i].mb_str(),
+                      PLAYLIST_APPEND | ((i | b_enqueue) ? 0 : PLAYLIST_GO),
+                      PLAYLIST_END );
 
     vlc_object_release( p_playlist );
 
@@ -891,7 +1343,7 @@ bool DragAndDrop::OnDropFiles( wxCoord, wxCoord,
  * Definition of wxVolCtrl class.
  *****************************************************************************/
 wxVolCtrl::wxVolCtrl( intf_thread_t *_p_intf, wxWindow* parent, wxWindowID id )
-  : wxGauge( parent, id, 200, wxDefaultPosition, wxDefaultSize,
+  : wxGauge( parent, id, 200, wxDefaultPosition, wxSize( 20, -1 ),
              wxGA_VERTICAL | wxGA_SMOOTH )
 {
     p_intf = _p_intf;
@@ -899,13 +1351,16 @@ wxVolCtrl::wxVolCtrl( intf_thread_t *_p_intf, wxWindow* parent, wxWindowID id )
 
 void wxVolCtrl::OnChange( wxMouseEvent& event )
 {
-    int i_volume = (GetRect().height - event.GetY()) * 200 / GetRect().height;
+    if( !event.LeftDown() && !event.LeftIsDown() ) return;
+
+    int i_volume = (GetClientSize().GetHeight() - event.GetY()) * 200 /
+                    GetClientSize().GetHeight();
     Change( i_volume );
 }
 
 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 ) );