]> git.sesse.net Git - vlc/blobdiff - modules/gui/wxwindows/interface.cpp
* INSTALL.win32: added a small note about running vlc under the msvc debugger.
[vlc] / modules / gui / wxwindows / interface.cpp
index 1263e99d4efbcff27209eb754e7946743691b2a4..f217ba14cd471fd05bc6e027e469d4f81b307fd2 100644 (file)
@@ -2,7 +2,7 @@
  * interface.cpp : wxWindows plugin for vlc
  *****************************************************************************
  * Copyright (C) 2000-2001 VideoLAN
- * $Id: interface.cpp,v 1.17 2003/03/30 19:56:11 gbazin Exp $
+ * $Id: interface.cpp,v 1.32 2003/05/22 12:00:56 gbazin Exp $
  *
  * Authors: Gildas Bazin <gbazin@netcourrier.com>
  *
 #include "bitmaps/previous.xpm"
 #include "bitmaps/next.xpm"
 #include "bitmaps/playlist.xpm"
-#define TOOLBAR_BMP_WIDTH 24
-#define TOOLBAR_BMP_HEIGHT 24
+#include "bitmaps/fast.xpm"
+#include "bitmaps/slow.xpm"
+
+#define TOOLBAR_BMP_WIDTH 36
+#define TOOLBAR_BMP_HEIGHT 36
 
 /* include the icon graphic */
 #include "share/vlc32x32.xpm"
 /*****************************************************************************
  * Local class declarations.
  *****************************************************************************/
+class wxMenuExt: public wxMenu
+{
+public:
+    /* Constructor */
+    wxMenuExt( wxMenu* parentMenu, int id, const wxString& text,
+                   const wxString& helpString, wxItemKind kind,
+                   char *_psz_var, int _i_object_id, vlc_value_t _val,
+                   int _i_val_type );
+
+    virtual ~wxMenuExt() {};
+
+    char *psz_var;
+    int  i_val_type;
+    int  i_object_id;
+    vlc_value_t val;
+
+private:
+
+};
 
 /*****************************************************************************
  * Event Table.
@@ -89,8 +111,6 @@ enum
     Logs_Event,
     FileInfo_Event,
 
-    Audio_Event,
-    Subtitles_Event,
     Prefs_Event,
 
     SliderScroll_Event,
@@ -98,6 +118,8 @@ enum
     PlayStream_Event,
     PrevStream_Event,
     NextStream_Event,
+    SlowStream_Event,
+    FastStream_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
@@ -114,6 +136,14 @@ BEGIN_EVENT_TABLE(Interface, wxFrame)
     EVT_MENU(FileInfo_Event, Interface::OnFileInfo)
     EVT_MENU(Prefs_Event, Interface::OnPreferences)
 
+    EVT_MENU_OPEN(Interface::OnMenuOpen)
+
+#if defined( __WXMSW__ ) || defined( __WXMAC__ )
+    EVT_CONTEXT_MENU(Interface::OnContextMenu)
+#else
+    EVT_RIGHT_UP(Interface::OnContextMenu)
+#endif
+
     /* Toolbar events */
     EVT_MENU(OpenFile_Event, Interface::OnOpenFile)
     EVT_MENU(OpenDisc_Event, Interface::OnOpenDisc)
@@ -123,6 +153,8 @@ BEGIN_EVENT_TABLE(Interface, wxFrame)
     EVT_MENU(PlayStream_Event, Interface::OnPlayStream)
     EVT_MENU(PrevStream_Event, Interface::OnPrevStream)
     EVT_MENU(NextStream_Event, Interface::OnNextStream)
+    EVT_MENU(SlowStream_Event, Interface::OnSlowStream)
+    EVT_MENU(FastStream_Event, Interface::OnFastStream)
 
     /* Slider events */
     EVT_COMMAND_SCROLL(SliderScroll_Event, Interface::OnSliderUpdate)
@@ -132,17 +164,18 @@ END_EVENT_TABLE()
  * Constructor.
  *****************************************************************************/
 Interface::Interface( intf_thread_t *_p_intf ):
-    wxFrame( NULL, -1, VOUT_TITLE,
+    wxFrame( NULL, -1, wxT(VOUT_TITLE),
              wxDefaultPosition, wxDefaultSize, wxDEFAULT_FRAME_STYLE )
 {
     /* Initializations */
     p_intf = _p_intf;
     p_prefs_dialog = NULL;
-    p_fileinfo_window = NULL;
     i_old_playing_status = PAUSE_S;
+    p_open_dialog = NULL;
 
     /* Give our interface a nice little icon */
-    SetIcon( *new wxIcon( vlc_xpm ) );
+    p_intf->p_sys->p_icon = new wxIcon( vlc_xpm );
+    SetIcon( *p_intf->p_sys->p_icon );
 
     /* Create a sizer for the main frame */
     frame_sizer = new wxBoxSizer( wxHORIZONTAL );
@@ -162,9 +195,11 @@ Interface::Interface( intf_thread_t *_p_intf ):
     /* Creation of the status bar
      * Helptext for menu items and toolbar tools will automatically get
      * displayed here. */
-    int i_status_width[2] = {-2,-3};
-    statusbar = CreateStatusBar( 2 );                            /* 2 fields */
-    statusbar->SetStatusWidths( 2, i_status_width );
+    int i_status_width[3] = {-6, -2, -9};
+    statusbar = CreateStatusBar( 3 );                            /* 2 fields */
+    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() );
@@ -182,8 +217,9 @@ Interface::Interface( intf_thread_t *_p_intf ):
 
 Interface::~Interface()
 {
+    /* Clean up */
+    if( p_open_dialog ) delete p_open_dialog;
     if( p_prefs_dialog ) p_prefs_dialog->Destroy();
-    if( p_fileinfo_window ) p_fileinfo_window->Destroy();
 }
 
 /*****************************************************************************
@@ -202,52 +238,75 @@ void Interface::CreateOurMenuBar()
 #define HELP_LOGS       N_("Show the program logs")
 #define HELP_FILEINFO       N_("Show information about the file being played")
 
-#define HELP_AUDIO N_("Change the current audio track")
-#define HELP_SUBS  N_("Change the current subtitles stream")
 #define HELP_PREFS N_("Go to the preferences menu")
 
 #define HELP_ABOUT N_("About this program")
 
     /* Create the "File" menu */
     wxMenu *file_menu = new wxMenu;
-    file_menu->Append( OpenFile_Event, _("&Open File..."), HELP_FILE );
-    file_menu->Append( OpenDisc_Event, _("Open &Disc..."), HELP_DISC );
-    file_menu->Append( OpenNet_Event, _("&Network Stream..."), HELP_NET );
+    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)) );
 #if 0
-    file_menu->Append( OpenSat_Event, _("&Satellite Stream..."), HELP_NET );
+    file_menu->Append( OpenSat_Event, wxU(_("&Satellite Stream...")),
+                       wxU(_(HELP_NET)) );
 #endif
+#if 0
     file_menu->AppendSeparator();
-    file_menu->Append( EjectDisc_Event, _("&Eject Disc"), HELP_EJECT );
+    file_menu->Append( EjectDisc_Event, wxU(_("&Eject Disc")),
+                       wxU(_(HELP_EJECT)) );
+#endif
     file_menu->AppendSeparator();
-    file_menu->Append( Exit_Event, _("E&xit"), HELP_EXIT );
+    file_menu->Append( Exit_Event, wxU(_("E&xit")), wxU(_(HELP_EXIT)) );
 
     /* Create the "View" menu */
     wxMenu *view_menu = new wxMenu;
-    view_menu->Append( Playlist_Event, _("&Playlist..."), HELP_PLAYLIST );
-    view_menu->Append( Logs_Event, _("&Logs..."), HELP_LOGS );
-    view_menu->Append( FileInfo_Event, _("&File info..."), HELP_FILEINFO );
+    view_menu->Append( Playlist_Event, wxU(_("&Playlist...")),
+                       wxU(_(HELP_PLAYLIST)) );
+    view_menu->Append( Logs_Event, wxU(_("&Logs...")), wxU(_(HELP_LOGS)) );
+    view_menu->Append( FileInfo_Event, wxU(_("&File info...")),
+                       wxU(_(HELP_FILEINFO)) );
 
     /* Create the "Settings" menu */
     wxMenu *settings_menu = new wxMenu;
-    settings_menu->Append( Audio_Event, _("&Audio"), HELP_AUDIO );
-    settings_menu->Append( Subtitles_Event, _("&Subtitles"), HELP_SUBS );
-    settings_menu->AppendSeparator();
-    settings_menu->Append( Prefs_Event, _("&Preferences..."), HELP_PREFS );
+    settings_menu->Append( Prefs_Event, wxU(_("&Preferences...")),
+                           wxU(_(HELP_PREFS)) );
+
+    /* Create the "Audio" menu */
+    p_audio_menu = new wxMenu;
+    b_audio_menu = 1;
+
+    /* Create the "Video" menu */
+    p_video_menu = new wxMenu;
+    b_video_menu = 1;
+
+    /* Create the "Navigation" menu */
+    p_navig_menu = new wxMenu;
+    b_navig_menu = 1;
 
     /* Create the "Help" menu */
     wxMenu *help_menu = new wxMenu;
-    help_menu->Append( About_Event, _("&About..."), HELP_ABOUT );
+    help_menu->Append( About_Event, wxU(_("&About...")), wxU(_(HELP_ABOUT)) );
 
     /* Append the freshly created menus to the menu bar... */
     wxMenuBar *menubar = new wxMenuBar( wxMB_DOCKABLE );
-    menubar->Append( file_menu, _("&File") );
-    menubar->Append( view_menu, _("&View") );
-    menubar->Append( settings_menu, _("&Settings") );
-    menubar->Append( help_menu, _("&Help") );
+    menubar->Append( file_menu, wxU(_("&File")) );
+    menubar->Append( view_menu, wxU(_("&View")) );
+    menubar->Append( 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")) );
+    menubar->Append( help_menu, wxU(_("&Help")) );
 
     /* Attach the menu bar to the frame */
     SetMenuBar( menubar );
 
+    /* Intercept all menu events in our custom event handler */
+    PushEventHandler( new MenuEvtHandler( p_intf, this ) );
+
 #if !defined(__WXX11__)
     /* Associate drop targets with the menubar */
     menubar->SetDropTarget( new DragAndDrop( p_intf ) );
@@ -262,37 +321,43 @@ void Interface::CreateOurToolBar()
 #define HELP_PLO N_("Open playlist")
 #define HELP_PLP N_("Previous playlist item")
 #define HELP_PLN N_("Next playlist item")
+#define HELP_SLOW N_("Play slower")
+#define HELP_FAST N_("Play faster")
 
     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_TEXT | wxTB_FLAT | wxTB_DOCKABLE );
+        wxTB_HORIZONTAL | wxTB_FLAT | wxTB_DOCKABLE );
 
     toolbar->SetToolBitmapSize( wxSize(TOOLBAR_BMP_WIDTH,TOOLBAR_BMP_HEIGHT) );
 
-    toolbar->AddTool( OpenFile_Event, _("File"), wxBitmap( file_xpm ),
-                      HELP_FILE );
-    toolbar->AddTool( OpenDisc_Event, _("Disc"), wxBitmap( disc_xpm ),
-                      HELP_DISC );
-    toolbar->AddTool( OpenNet_Event, _("Net"), wxBitmap( net_xpm ),
-                      HELP_NET );
+    toolbar->AddTool( OpenFile_Event, wxU(_("File")), wxBitmap( file_xpm ),
+                      wxU(_(HELP_FILE)) );
+    toolbar->AddTool( OpenDisc_Event, wxU(_("Disc")), wxBitmap( disc_xpm ),
+                      wxU(_(HELP_DISC)) );
+    toolbar->AddTool( OpenNet_Event, wxU(_("Net")), wxBitmap( net_xpm ),
+                      wxU(_(HELP_NET)) );
 #if 0
-    toolbar->AddTool( OpenSat_Event, _("Sat"), wxBitmap( sat_xpm ),
-                      HELP_SAT );
+    toolbar->AddTool( OpenSat_Event, wxU(_("Sat")), wxBitmap( sat_xpm ),
+                      wxU(_(HELP_SAT)) );
 #endif
     toolbar->AddSeparator();
-    toolbar->AddTool( StopStream_Event, _("Stop"), wxBitmap( stop_xpm ),
-                      HELP_STOP );
-    toolbar->AddTool( PlayStream_Event, _("Play"), wxBitmap( play_xpm ),
-                      HELP_PLAY );
+    toolbar->AddTool( StopStream_Event, wxU(_("Stop")), wxBitmap( stop_xpm ),
+                      wxU(_(HELP_STOP)) );
+    toolbar->AddTool( PlayStream_Event, wxU(_("Play")), wxBitmap( play_xpm ),
+                      wxU(_(HELP_PLAY)) );
     toolbar->AddSeparator();
-    toolbar->AddTool( Playlist_Event, _("Playlist"), wxBitmap( playlist_xpm ),
-                      HELP_PLO );
-    toolbar->AddTool( PrevStream_Event, _("Prev"), wxBitmap( previous_xpm ),
-                      HELP_PLP );
-    toolbar->AddTool( NextStream_Event, _("Next"), wxBitmap( next_xpm ),
-                      HELP_PLN );
+    toolbar->AddTool( Playlist_Event, wxU(_("Playlist")),
+                      wxBitmap( playlist_xpm ), wxU(_(HELP_PLO)) );
+    toolbar->AddTool( PrevStream_Event, wxU(_("Prev")),
+                      wxBitmap( previous_xpm ), wxU(_(HELP_PLP)) );
+    toolbar->AddTool( NextStream_Event, wxU(_("Next")), wxBitmap( next_xpm ),
+                      wxU(_(HELP_PLN)) );
+    toolbar->AddTool( SlowStream_Event, wxU(_("Slower")), wxBitmap( slow_xpm ),
+                      wxU(_(HELP_SLOW)) );
+    toolbar->AddTool( FastStream_Event, wxU(_("Faster")), wxBitmap( fast_xpm ),
+                      wxU(_(HELP_FAST)) );
 
     toolbar->Realize();
 
@@ -322,7 +387,7 @@ void Interface::CreateOurSlider()
     slider_frame->SetAutoLayout( TRUE );
 
     /* Create static box to surround the slider */
-    slider_box = new wxStaticBox( slider_frame, -1, "" );
+    slider_box = new wxStaticBox( slider_frame, -1, wxT("") );
 
     /* Create sizer for slider frame */
     wxStaticBoxSizer *slider_sizer =
@@ -344,9 +409,10 @@ void Interface::CreateOurSlider()
 void Interface::Open( int i_access_method )
 {
     /* Show/hide the open dialog */
-    OpenDialog dialog( p_intf, this, i_access_method );
+    if( p_open_dialog == NULL )
+        p_open_dialog = new OpenDialog( p_intf, this, i_access_method );
 
-    if( dialog.ShowModal() == wxID_OK )
+    if( p_open_dialog && p_open_dialog->ShowModal() == wxID_OK )
     {
         /* Update the playlist */
         playlist_t *p_playlist =
@@ -357,16 +423,15 @@ void Interface::Open( int i_access_method )
             return;
         }
 
-        msg_Err( p_intf, "%s", (char *)dialog.mrl.c_str() );
-
-        playlist_Add( p_playlist, (char *)dialog.mrl.c_str(),
-                      PLAYLIST_APPEND | PLAYLIST_GO, PLAYLIST_END );
+        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 );
+        }
 
         TogglePlayButton( PLAYING_S );
 
-        /* Rebuild the playlist */
-        p_intf->p_sys->p_playlist_window->Rebuild();
-
         vlc_object_release( p_playlist );
     }
 }
@@ -374,6 +439,114 @@ void Interface::Open( int i_access_method )
 /*****************************************************************************
  * Event Handlers.
  *****************************************************************************/
+/* Work-around helper for buggy wxGTK */
+void RecursiveDestroy( wxMenu *menu )
+{
+    wxMenuItemList::Node *node = menu->GetMenuItems().GetFirst();
+    for( ; node; )
+    {
+        wxMenuItem *item = node->GetData();
+        node = node->GetNext();
+
+        /* Delete the submenus */
+        wxMenu *submenu = item->GetSubMenu();
+        if( submenu )
+        {
+            RecursiveDestroy( submenu );
+        }
+        menu->Delete( item );
+    }
+}
+
+void Interface::OnMenuOpen(wxMenuEvent& event)
+{
+#if !defined( __WXMSW__ )
+    if( event.GetEventObject() == p_audio_menu )
+    {
+        if( b_audio_menu )
+        {
+            p_audio_menu = AudioMenu( p_intf, this );
+
+            /* Work-around for buggy wxGTK */
+            wxMenu *menu = GetMenuBar()->GetMenu( 3 );
+            RecursiveDestroy( menu );
+            /* End work-around */
+
+            menu =
+                GetMenuBar()->Replace( 3, p_audio_menu, wxU(_("&Audio")) );
+            if( menu ) delete menu;
+
+            b_audio_menu = 0;
+        }
+        else b_audio_menu = 1;
+    }
+    else if( event.GetEventObject() == p_video_menu )
+    {
+        if( b_video_menu )
+        {
+            p_video_menu = VideoMenu( p_intf, this );
+
+            /* Work-around for buggy wxGTK */
+            wxMenu *menu = GetMenuBar()->GetMenu( 4 );
+            RecursiveDestroy( menu );
+            /* End work-around */
+
+            menu =
+                GetMenuBar()->Replace( 4, p_video_menu, wxU(_("&Video")) );
+            if( menu ) delete menu;
+
+            b_video_menu = 0;
+        }
+        else b_video_menu = 1;
+    }
+    else if( event.GetEventObject() == p_navig_menu )
+    {
+        if( b_navig_menu )
+        {
+            p_navig_menu = NavigMenu( p_intf, this );
+
+            /* Work-around for buggy wxGTK */
+            wxMenu *menu = GetMenuBar()->GetMenu( 5 );
+            RecursiveDestroy( menu );
+            /* End work-around */
+
+            menu =
+                GetMenuBar()->Replace( 5, p_navig_menu, wxU(_("&Navigation")));
+            if( menu ) delete menu;
+
+            b_navig_menu = 0;
+        }
+        else b_navig_menu = 1;
+    }
+
+#else
+    p_audio_menu = AudioMenu( p_intf, this );
+    wxMenu *menu = GetMenuBar()->Replace( 3, p_audio_menu, wxU(_("&Audio")) );
+    if( menu ) delete menu;
+
+    p_video_menu = VideoMenu( p_intf, this );
+    menu = GetMenuBar()->Replace( 4, p_video_menu, wxU(_("&Video")) );
+    if( menu ) delete menu;
+
+    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::OnContextMenu(wxContextMenuEvent& event)
+{
+    ::PopupMenu( p_intf, this, ScreenToClient(event.GetPosition()) );
+}
+#else
+void Interface::OnContextMenu(wxMouseEvent& event)
+{
+    ::PopupMenu( p_intf, this, event.GetPosition() );
+}
+#endif
+
 void Interface::OnExit( wxCommandEvent& WXUNUSED(event) )
 {
     /* TRUE is to force the frame to close. */
@@ -383,25 +556,26 @@ void Interface::OnExit( wxCommandEvent& WXUNUSED(event) )
 void Interface::OnAbout( wxCommandEvent& WXUNUSED(event) )
 {
     wxString msg;
-    msg.Printf( VOUT_TITLE + wxString(_(" (wxWindows interface)\n\n")) +
-        wxString(_("(C) 1996-2003 - the VideoLAN Team\n\n")) +
-        wxString(_("The VideoLAN team <videolan@videolan.org>\n"
-                   "http://www.videolan.org/\n\n")) +
-        wxString(_("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.")) );
-
-    wxMessageBox( msg, wxString(_("About ")) + VOUT_TITLE,
+    msg.Printf( wxString(wxT(VOUT_TITLE)) +
+        wxU(_(" (wxWindows interface)\n\n")) +
+        wxU(_("(C) 1996-2003 - the VideoLAN Team\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.")) );
+
+    wxMessageBox( msg, wxString::Format(wxU(_("About %s")), wxT(VOUT_TITLE)),
                   wxOK | wxICON_INFORMATION, this );
 }
 
 void Interface::OnPlaylist( wxCommandEvent& WXUNUSED(event) )
 {
     /* Show/hide the playlist window */
-    wxFrame *p_playlist_window = p_intf->p_sys->p_playlist_window;
+    Playlist *p_playlist_window = p_intf->p_sys->p_playlist_window;
     if( p_playlist_window )
     {
-        p_playlist_window->Show( ! p_playlist_window->IsShown() );
+        p_playlist_window->ShowPlaylist( ! p_playlist_window->IsShown() );
     }
 }
 
@@ -417,15 +591,11 @@ void Interface::OnLogs( wxCommandEvent& WXUNUSED(event) )
 
 void Interface::OnFileInfo( wxCommandEvent& WXUNUSED(event) )
 {
-    /* Show/hide the fileinfo window */
-    if( p_fileinfo_window == NULL )
-    {
-        p_fileinfo_window = new FileInfo( p_intf, this );
-    }
-
+    /* Show/hide the file info window */
+    wxFrame *p_fileinfo_window = p_intf->p_sys->p_fileinfo_window;
     if( p_fileinfo_window )
     {
-        p_fileinfo_window->Show( true );//! p_messages_window->IsShown() );
+        p_fileinfo_window->Show( ! p_fileinfo_window->IsShown() );
     }
 }
 
@@ -538,17 +708,17 @@ void Interface::OnSliderUpdate( wxScrollEvent& event )
 
 #ifdef WIN32
     if( event.GetEventType() == wxEVT_SCROLL_THUMBRELEASE
-       || event.GetEventType() == wxEVT_SCROLL_ENDSCROLL )
+        || event.GetEventType() == wxEVT_SCROLL_ENDSCROLL )
     {
 #endif
-       if( p_intf->p_sys->i_slider_pos != event.GetPosition()
-           && p_intf->p_sys->p_input )
-       {
+        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 );
-       }
+            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 );
+        }
 
 #ifdef WIN32
         p_intf->p_sys->b_slider_free = VLC_TRUE;
@@ -557,19 +727,19 @@ void Interface::OnSliderUpdate( wxScrollEvent& event )
     {
         p_intf->p_sys->b_slider_free = VLC_FALSE;
 
-       if( p_intf->p_sys->p_input )
-       {
-           /* Update stream date */
+        if( p_intf->p_sys->p_input )
+        {
+            /* 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[ OFFSETTOTIME_MAX_SIZE ];
 
-           slider_box->SetLabel(
-               input_OffsetToTime( p_intf->p_sys->p_input,
-                                   psz_time,
-                                   p_area->i_size * event.GetPosition()
-                                   / SLIDER_MAX_POS ) );
+            slider_box->SetLabel(
+                wxU(input_OffsetToTime( p_intf->p_sys->p_input,
+                                        psz_time,
+                                        p_area->i_size * event.GetPosition()
+                                        / SLIDER_MAX_POS )) );
 #undef p_area
-       }
+        }
     }
 #endif
 
@@ -604,6 +774,30 @@ void Interface::OnNextStream( wxCommandEvent& WXUNUSED(event) )
     vlc_object_release( p_playlist );
 }
 
+void Interface::OnSlowStream( wxCommandEvent& WXUNUSED(event) )
+{
+    input_thread_t *p_input =
+        (input_thread_t *)vlc_object_find( p_intf, VLC_OBJECT_INPUT,
+                                           FIND_ANYWHERE );
+    if( p_input )
+    {
+        input_SetStatus( p_input, INPUT_STATUS_SLOWER );
+        vlc_object_release( p_input );
+    }
+}
+
+void Interface::OnFastStream( wxCommandEvent& WXUNUSED(event) )
+{
+    input_thread_t *p_input =
+        (input_thread_t *)vlc_object_find( p_intf, VLC_OBJECT_INPUT,
+                                           FIND_ANYWHERE );
+    if( p_input )
+    {
+        input_SetStatus( p_input, INPUT_STATUS_FASTER );
+        vlc_object_release( p_input );
+    }
+}
+
 void Interface::TogglePlayButton( int i_playing_status )
 {
     if( i_playing_status == i_old_playing_status )
@@ -613,12 +807,12 @@ void Interface::TogglePlayButton( int i_playing_status )
 
     if( i_playing_status == PLAYING_S )
     {
-        GetToolBar()->InsertTool( 5, PlayStream_Event, _("Pause"),
+        GetToolBar()->InsertTool( 5, PlayStream_Event, wxU(_("Pause")),
                                   wxBitmap( pause_xpm ) );
     }
     else
     {
-        GetToolBar()->InsertTool( 5, PlayStream_Event, _("Play"),
+        GetToolBar()->InsertTool( 5, PlayStream_Event, wxU(_("Play")),
                                   wxBitmap( play_xpm ) );
     }
 
@@ -639,8 +833,6 @@ DragAndDrop::DragAndDrop( intf_thread_t *_p_intf )
 bool DragAndDrop::OnDropFiles( wxCoord, wxCoord,
                                const wxArrayString& filenames )
 {
-    unsigned int i;
-
     /* Add dropped files to the playlist */
 
     playlist_t *p_playlist =
@@ -651,12 +843,9 @@ bool DragAndDrop::OnDropFiles( wxCoord, wxCoord,
         return FALSE;
     }
 
-    for( i = 0; i < filenames.GetCount(); i++ )
-        playlist_Add( p_playlist, (char *)filenames[i].c_str(),
-                      PLAYLIST_APPEND | PLAYLIST_GO, PLAYLIST_END );
-
-    /* Rebuild the playlist */
-    p_intf->p_sys->p_playlist_window->Rebuild();
+    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 );
 
     vlc_object_release( p_playlist );