]> git.sesse.net Git - vlc/commitdiff
* compilation fix
authorOlivier Teulière <ipkiss@videolan.org>
Wed, 12 Feb 2003 02:11:58 +0000 (02:11 +0000)
committerOlivier Teulière <ipkiss@videolan.org>
Wed, 12 Feb 2003 02:11:58 +0000 (02:11 +0000)
 * all files are stored in dos mode, or Borland won't compile some of
   them...

modules/gui/win32/about.cpp
modules/gui/win32/mainframe.cpp
modules/gui/win32/menu.cpp
modules/gui/win32/menu.h
modules/gui/win32/sout.h
modules/gui/win32/subtitles.cpp
modules/gui/win32/subtitles.h
modules/gui/win32/win32.bpf
modules/gui/win32/win32.cpp

index 03fc28751c67b4b532c80c4909386ca344410ce0..d73dd1985f25d29d851c8622e94ab907c05c47da 100644 (file)
@@ -1,47 +1,47 @@
-/*****************************************************************************
- * about.cpp: The "About" dialog box
- *****************************************************************************
- * Copyright (C) 2002 VideoLAN
- *
- * Authors: Olivier Teuliere <ipkiss@via.ecp.fr>
- *
- * This program is free software; you can redistribute it and/or modify
- * it under the terms of the GNU General Public License as published by
- * the Free Software Foundation; either version 2 of the License, or
- * (at your option) any later version.
- *
- * This program is distributed in the hope that it will be useful,
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
- * GNU General Public License for more details.
- *
- * You should have received a copy of the GNU General Public License
- * along with this program; if not, write to the Free Software
- * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111, USA.
- *****************************************************************************/
-
-#include <vcl.h>
-#pragma hdrstop
-
-#include <vlc/vlc.h>
-#include <vlc/intf.h>
-
-#include "about.h"
-#include "misc.h"
-#include "win32_common.h"
-
-//---------------------------------------------------------------------------
-//#pragma package(smart_init)
-#pragma resource "*.dfm"
-
-//---------------------------------------------------------------------------
-__fastcall TAboutDlg::TAboutDlg( TComponent* Owner, intf_thread_t *_p_intf )
-        : TForm( Owner )
-{
-    p_intf = _p_intf;
-    Image1->Picture->Icon = p_intf->p_sys->p_window->Icon;
-    LabelVersion->Caption = "Version " VERSION;
-    Translate( this );
-}
-//---------------------------------------------------------------------------
-
+/*****************************************************************************\r
+ * about.cpp: The "About" dialog box\r
+ *****************************************************************************\r
+ * Copyright (C) 2002 VideoLAN\r
+ *\r
+ * Authors: Olivier Teuliere <ipkiss@via.ecp.fr>\r
+ *\r
+ * This program is free software; you can redistribute it and/or modify\r
+ * it under the terms of the GNU General Public License as published by\r
+ * the Free Software Foundation; either version 2 of the License, or\r
+ * (at your option) any later version.\r
+ *\r
+ * This program is distributed in the hope that it will be useful,\r
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of\r
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\r
+ * GNU General Public License for more details.\r
+ *\r
+ * You should have received a copy of the GNU General Public License\r
+ * along with this program; if not, write to the Free Software\r
+ * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111, USA.\r
+ *****************************************************************************/\r
+\r
+#include <vcl.h>\r
+#pragma hdrstop\r
+\r
+#include <vlc/vlc.h>\r
+#include <vlc/intf.h>\r
+\r
+#include "about.h"\r
+#include "misc.h"\r
+#include "win32_common.h"\r
+\r
+//---------------------------------------------------------------------------\r
+//#pragma package(smart_init)\r
+#pragma resource "*.dfm"\r
+\r
+//---------------------------------------------------------------------------\r
+__fastcall TAboutDlg::TAboutDlg( TComponent* Owner, intf_thread_t *_p_intf )\r
+        : TForm( Owner )\r
+{\r
+    p_intf = _p_intf;\r
+    Image1->Picture->Icon = p_intf->p_sys->p_window->Icon;\r
+    LabelVersion->Caption = "Version " VERSION;\r
+    Translate( this );\r
+}\r
+//---------------------------------------------------------------------------\r
+\r
index ef3b286219183a63761e0628b95bb640c9494240..4e841dd8b2234356e60a9c93f27f6bd34634d648 100644 (file)
-/*****************************************************************************
- * mainframe.cpp: Win32 interface plugin for vlc
- *****************************************************************************
- * Copyright (C) 2002 VideoLAN
- *
- * Authors: Olivier Teulière <ipkiss@via.ecp.fr>
- *
- * This program is free software; you can redistribute it and/or modify
- * it under the terms of the GNU General Public License as published by
- * the Free Software Foundation; either version 2 of the License, or
- * (at your option) any later version.
- *
- * This program is distributed in the hope that it will be useful,
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
- * GNU General Public License for more details.
- *
- * You should have received a copy of the GNU General Public License
- * along with this program; if not, write to the Free Software
- * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111, USA.
- *****************************************************************************/
-
-#include <vcl.h>
-#pragma hdrstop
-
-#include <vlc/vlc.h>
-#include <vlc/intf.h>
-#include <vlc/vout.h>
-
-#include "dragdrop.h"
-#include "mainframe.h"
-#include "menu.h"
-#include "disc.h"
-#include "network.h"
-#include "about.h"
-#include "preferences.h"
-#include "messages.h"
-#include "playlist.h"
-#include "sout.h"
-#include "subtitles.h"
-#include "misc.h"
-#include "win32_common.h"
-
-#include "netutils.h"
-
-//---------------------------------------------------------------------------
-#pragma link "CSPIN"
-#pragma resource "*.dfm"
-
-extern int Win32Manage( intf_thread_t *p_intf );
-
-//---------------------------------------------------------------------------
-__fastcall TMainFrameDlg::TMainFrameDlg(
-    TComponent* Owner, intf_thread_t *_p_intf ) : TForm( Owner )
-{
-    p_intf = _p_intf;
-
-    Application->ShowHint = true;
-    Application->OnHint = DisplayHint;
-
-    TimerManage->Interval = INTF_IDLE_SLEEP / 1000;
-
-    TrackBar->Max = SLIDER_MAX_VALUE;
-
-    /* default height and caption */
-    ClientHeight = 37 + ToolBar->Height;
-    Caption = VOUT_TITLE " (Win32 interface)";
-
-    StringListPref = new TStringList();
-
-    Translate( this );
-
-    /* drag and drop stuff */
-
-    /* initialize the OLE library */
-    OleInitialize( NULL );
-    /* TDropTarget will send the WM_OLEDROP message to the form */
-    lpDropTarget = (LPDROPTARGET)new TDropTarget( this->Handle );
-    CoLockObjectExternal( lpDropTarget, true, true );
-    /* register the form as a drop target */
-    RegisterDragDrop( this->Handle, lpDropTarget );
-}
-//---------------------------------------------------------------------------
-__fastcall TMainFrameDlg::~TMainFrameDlg()
-{
-    delete StringListPref;
-}
-//---------------------------------------------------------------------------
-
-
-/*****************************************************************************
- * Event handlers
- ****************************************************************************/
-void __fastcall TMainFrameDlg::TimerManageTimer( TObject *Sender )
-{
-    Win32Manage( p_intf );
-}
-//---------------------------------------------------------------------------
-void __fastcall TMainFrameDlg::DisplayHint( TObject *Sender )
-{
-    StatusBar->SimpleText = GetLongHint( Application->Hint );
-}
-//---------------------------------------------------------------------------
-void __fastcall TMainFrameDlg::TrackBarChange( TObject *Sender )
-{
-    /* This function displays the current date related to the position in
-     * the stream. It is called whenever the slider changes its value.
-     * The lock has to be taken before the function is called */
-
-    if( p_intf->p_sys->p_input != NULL )
-    {
-#define p_area p_intf->p_sys->p_input->stream.p_selected_area
-        char psz_time[ OFFSETTOTIME_MAX_SIZE ];
-        off_t Value = TrackBar->Position;
-
-        GroupBoxSlider->Caption =
-                input_OffsetToTime( p_intf->p_sys->p_input, psz_time,
-                        ( p_area->i_size * Value ) / (off_t)SLIDER_MAX_VALUE );
-#undef p_area
-     }
-}
-//---------------------------------------------------------------------------
-void __fastcall TMainFrameDlg::FormClose( TObject *Sender,
-      TCloseAction &Action )
-{
-    vlc_mutex_lock( &p_intf->change_lock );
-    p_intf->p_vlc->b_die = VLC_TRUE;
-    vlc_mutex_unlock( &p_intf->change_lock );
-
-    /* remove the form from the list of drop targets */
-    RevokeDragDrop( this->Handle );
-    lpDropTarget->Release();
-    CoLockObjectExternal( lpDropTarget, false, true );
-
-    /* uninitialize the OLE library */
-    OleUninitialize();
-
-    /* we don't destroy the form immediatly */
-    Action = caHide;
-}
-//---------------------------------------------------------------------------
-
-
-/*****************************************************************************
- * Main callbacks
- ****************************************************************************/
-void __fastcall TMainFrameDlg::OpenFileActionExecute( TObject *Sender )
-{
-    if( OpenDialog1->Execute() )
-    {
-        /* add the new file to the interface playlist */
-        for( int i = 0; i < OpenDialog1->Files->Count; i++ )
-            p_intf->p_sys->p_playwin->Add( OpenDialog1->Files->Strings[i],
-                    PLAYLIST_APPEND
-                    | ( p_intf->p_sys->b_play_when_adding ? PLAYLIST_GO : 0 ),
-                    PLAYLIST_END );
-    };
-}
-//---------------------------------------------------------------------------
-void __fastcall TMainFrameDlg::OpenDiscActionExecute( TObject *Sender )
-{
-    TDiscDlg *p_disc = p_intf->p_sys->p_disc;
-    if( p_disc == NULL )
-    {
-        p_disc = new TDiscDlg( this, p_intf );
-        p_intf->p_sys->p_disc = p_disc;
-    }
-    p_disc->Show();
-}
-//---------------------------------------------------------------------------
-void __fastcall TMainFrameDlg::NetworkStreamActionExecute( TObject *Sender )
-{
-    TNetworkDlg *p_network = p_intf->p_sys->p_network;
-    if( p_network == NULL )
-    {
-        p_network = new TNetworkDlg( this, p_intf );
-        p_intf->p_sys->p_network = p_network;
-    }
-    p_network->Show();
-}
-//---------------------------------------------------------------------------
-void __fastcall TMainFrameDlg::AddSubtitlesActionsExecute( TObject *Sender )
-{
-    TSubtitlesDlg *p_subtitles = new TSubtitlesDlg( this, p_intf );
-    p_subtitles->ShowModal();
-    delete p_subtitles;
-}
-//---------------------------------------------------------------------------
-void __fastcall TMainFrameDlg::StreamOutputActionExecute( TObject *Sender )
-{
-    TSoutDlg *p_sout = new TSoutDlg( this, p_intf );
-    p_sout->ShowModal();
-    delete p_sout;
-}
-//---------------------------------------------------------------------------
-void __fastcall TMainFrameDlg::ExitActionExecute( TObject *Sender )
-{
-    Close();
-}
-//---------------------------------------------------------------------------
-void __fastcall TMainFrameDlg::FullscreenActionExecute( TObject *Sender )
-{
-    vout_thread_t *p_vout;
-
-    p_vout = (vout_thread_t *)vlc_object_find( p_intf->p_sys->p_input,
-                                               VLC_OBJECT_VOUT, FIND_CHILD );
-    if( p_vout == NULL )
-    {
-        return;
-    }
-
-    p_vout->i_changes |= VOUT_FULLSCREEN_CHANGE;
-    vlc_object_release( p_vout );
-}
-//---------------------------------------------------------------------------
-void __fastcall TMainFrameDlg::OnTopActionExecute( TObject *Sender )
-{
-    vlc_object_t *p_vout;
-    p_vout = (vlc_object_t *)vlc_object_find( p_intf, VLC_OBJECT_VOUT,
-                                              FIND_ANYWHERE );
-    if( p_vout != NULL )
-    {
-        vlc_value_t val;
-        if( var_Get( p_vout, "directx-on-top", &val ) >= 0 )
-        {
-            val.b_bool = ! val.b_bool;
-            var_Set( p_vout, "directx-on-top", val );
-            MenuOnTop->Checked = val.b_bool;
-            PopupOnTop->Checked = val.b_bool;
-        }
-        vlc_object_release( p_vout );
-    }
-}
-//---------------------------------------------------------------------------
-void __fastcall TMainFrameDlg::PlaylistActionExecute( TObject *Sender )
-{
-    TPlaylistDlg *p_playwin = p_intf->p_sys->p_playwin;
-    if( p_playwin->Visible )
-    {
-        p_playwin->Hide();
-    }
-    else
-    {
-        p_playwin->UpdateGrid();
-        p_playwin->Show();
-    }
-}
-//---------------------------------------------------------------------------
-void __fastcall TMainFrameDlg::MessagesActionExecute( TObject *Sender )
-{
-     p_intf->p_sys->p_messages->Show();
-}
-//---------------------------------------------------------------------------
-void __fastcall TMainFrameDlg::PreferencesActionExecute( TObject *Sender )
-{
-    CreatePreferences( "main" );
-}
-//---------------------------------------------------------------------------
-void __fastcall TMainFrameDlg::AboutActionExecute( TObject *Sender )
-{
-    TAboutDlg *AboutDlg = new TAboutDlg( this, p_intf );
-    AboutDlg->ShowModal();
-    delete AboutDlg;
-}
-//---------------------------------------------------------------------------
-void __fastcall TMainFrameDlg::BackActionExecute( TObject *Sender )
-{
-    /* TODO */
-}
-//---------------------------------------------------------------------------
-void __fastcall TMainFrameDlg::PlayActionExecute( TObject *Sender )
-{
-    p_intf->p_sys->p_playwin->Play();
-}
-//---------------------------------------------------------------------------
-void __fastcall TMainFrameDlg::PauseActionExecute( TObject *Sender )
-{
-    p_intf->p_sys->p_playwin->Pause();
-}
-//---------------------------------------------------------------------------
-void __fastcall TMainFrameDlg::StopActionExecute( TObject *Sender )
-{
-    p_intf->p_sys->p_playwin->Stop();
-}
-//---------------------------------------------------------------------------
-void __fastcall TMainFrameDlg::SlowActionExecute( TObject *Sender )
-{
-    p_intf->p_sys->p_playwin->Slow();
-}
-//---------------------------------------------------------------------------
-void __fastcall TMainFrameDlg::FastActionExecute( TObject *Sender )
-{
-    p_intf->p_sys->p_playwin->Fast();
-}
-//---------------------------------------------------------------------------
-void __fastcall TMainFrameDlg::PreviousActionExecute(TObject *Sender)
-{
-    p_intf->p_sys->p_playwin->Previous();
-}
-//---------------------------------------------------------------------------
-void __fastcall TMainFrameDlg::NextActionExecute(TObject *Sender)
-{
-    p_intf->p_sys->p_playwin->Next();
-}
-//---------------------------------------------------------------------------
-void __fastcall TMainFrameDlg::EjectActionExecute( TObject *Sender )
-{
-    AnsiString Device = "";
-    char * psz_current;
-    playlist_t * p_playlist;
-
-    p_playlist = (playlist_t *)vlc_object_find( p_intf,
-                                       VLC_OBJECT_PLAYLIST, FIND_ANYWHERE );
-    if( p_playlist == NULL )
-    {
-        return;
-    }
-
-    /*
-     * Get the active input
-     * Determine whether we can eject a media, ie it's a VCD or DVD
-     * If it's neither a VCD nor a DVD, then return
-     */
-
-    vlc_mutex_lock( &p_playlist->object_lock );
-    psz_current = p_playlist->pp_items[ p_playlist->i_index ]->psz_name;
-
-    if( psz_current != NULL )
-    {
-        if( strncmp( psz_current, "dvd", 3 )
-            || strncmp( psz_current, "vcd", 3 ) )
-        {
-            /* Determine the device name by omitting the first 4 characters
-             * and keeping 3 characters */
-            Device = strdup( ( psz_current + 4 ) );
-            Device = Device.SubString( 1, 2 );
-        }
-    }
-
-    vlc_mutex_unlock( &p_playlist->object_lock );
-    vlc_object_release( p_playlist );
-
-    if( Device == "" )
-    {
-        return;
-    }
-
-    /* If there's a stream playing, we aren't allowed to eject ! */
-    if( p_intf->p_sys->p_input == NULL )
-    {
-        msg_Dbg( p_intf, "ejecting %s", Device.c_str() );
-
-        intf_Eject( p_intf, Device.c_str() );
-    }
-}
-//--------------------------------------------------------------------------
-void __fastcall TMainFrameDlg::VolumeUpActionExecute( TObject *Sender )
-{
-    aout_VolumeUp( p_intf, 1, NULL );
-}
-//---------------------------------------------------------------------------
-void __fastcall TMainFrameDlg::VolumeDownActionExecute( TObject *Sender )
-{
-    aout_VolumeDown( p_intf, 1, NULL );
-}
-//---------------------------------------------------------------------------
-void __fastcall TMainFrameDlg::MuteActionExecute( TObject *Sender )
-{
-    aout_VolumeMute( p_intf, NULL );
-//    MenuMute->Checked = ! MenuMute->Checked;
-}
-//---------------------------------------------------------------------------
-
-
-/*****************************************************************************
- * External drop handling
- *****************************************************************************/
-void __fastcall TMainFrameDlg::OnDrop( TMessage &Msg )
-{
-    /* find the number of files dropped */
-    int num_files = DragQueryFile( (HDROP)Msg.WParam, 0xFFFFFFFF,
-                                   (LPSTR)NULL, NULL );
-
-    /* append each file to the playlist */
-    for( int i = 0; i < num_files; i++ )
-    {
-        /* find the length of the filename */
-        int name_length = DragQueryFile( (HDROP)Msg.WParam, i, NULL, NULL ) + 1;
-
-        /* get the filename */
-        char *FileName = new char[name_length];
-        DragQueryFile( (HDROP)Msg.WParam, i, FileName, name_length );
-
-        /* add the new file to the playlist */
-        if( config_GetInt( p_intf, "enqueue" ) )
-        {
-            p_intf->p_sys->p_playwin->Add( FileName,
-                PLAYLIST_APPEND, PLAYLIST_END );
-        }
-        else
-        {
-            p_intf->p_sys->p_playwin->Add( FileName,
-                PLAYLIST_APPEND | PLAYLIST_GO, PLAYLIST_END );
-        }
-
-        delete[] FileName;
-    }
-
-    DragFinish( (HDROP)Msg.WParam );
-    Msg.Result = 0;
-}
-//--------------------------------------------------------------------------
-
-
-/*****************************************************************************
- * Menu and popup callbacks
- *****************************************************************************/
-void __fastcall TMainFrameDlg::MenuHideinterfaceClick( TObject *Sender )
-{
-     this->SendToBack();
-}
-//---------------------------------------------------------------------------
-void __fastcall TMainFrameDlg::PopupToggleInterfaceClick( TObject *Sender )
-{
-    this->BringToFront();
-}
-//---------------------------------------------------------------------------
-void __fastcall TMainFrameDlg::PopupCloseClick( TObject *Sender )
-{
-    /* We do nothing, we just need a click on a menu item
-     * to close the popup. Don't ask me why... */
-    return;
-}
-//---------------------------------------------------------------------------
-void __fastcall TMainFrameDlg::PopupJumpClick( TObject *Sender )
-{
-    /* TODO */
-}
-//---------------------------------------------------------------------------
-
-
-/*****************************************************************************
- * Callbacks for DVD/VCD navigation
- ****************************************************************************/
-void __fastcall TMainFrameDlg::PrevTitleActionExecute( TObject *Sender )
-{
-    input_area_t  * p_area;
-    int             i_id;
-
-    vlc_mutex_lock( &p_intf->p_sys->p_input->stream.stream_lock );
-    i_id = p_intf->p_sys->p_input->stream.p_selected_area->i_id - 1;
-
-    /* Disallow area 0 since it is used for video_ts.vob */
-    if( i_id > 0 )
-    {
-        p_area = p_intf->p_sys->p_input->stream.pp_areas[i_id];
-        vlc_mutex_unlock( &p_intf->p_sys->p_input->stream.stream_lock );
-
-        input_ChangeArea( p_intf->p_sys->p_input, p_area );
-        input_SetStatus( p_intf->p_sys->p_input, INPUT_STATUS_PLAY );
-
-        p_intf->p_sys->b_title_update = VLC_TRUE;
-        vlc_mutex_lock( &p_intf->p_sys->p_input->stream.stream_lock );
-        p_intf->p_sys->p_menus->SetupMenus();
-    }
-
-    vlc_mutex_unlock( &p_intf->p_sys->p_input->stream.stream_lock );
-}
-//---------------------------------------------------------------------------
-void __fastcall TMainFrameDlg::NextTitleActionExecute( TObject *Sender )
-{
-    input_area_t  * p_area;
-    unsigned int    i_id;
-
-    vlc_mutex_lock( &p_intf->p_sys->p_input->stream.stream_lock );
-    i_id = p_intf->p_sys->p_input->stream.p_selected_area->i_id + 1;
-
-    if( i_id < p_intf->p_sys->p_input->stream.i_area_nb )
-    {
-        p_area = p_intf->p_sys->p_input->stream.pp_areas[i_id];
-        vlc_mutex_unlock( &p_intf->p_sys->p_input->stream.stream_lock );
-
-        input_ChangeArea( p_intf->p_sys->p_input, p_area );
-        input_SetStatus( p_intf->p_sys->p_input, INPUT_STATUS_PLAY );
-
-        p_intf->p_sys->b_title_update = VLC_TRUE;
-        vlc_mutex_lock( &p_intf->p_sys->p_input->stream.stream_lock );
-        p_intf->p_sys->p_menus->SetupMenus();
-    }
-
-    vlc_mutex_unlock( &p_intf->p_sys->p_input->stream.stream_lock );
-}
-//---------------------------------------------------------------------------
-void __fastcall TMainFrameDlg::PrevChapterActionExecute( TObject *Sender )
-{
-    input_area_t  * p_area;
-
-    vlc_mutex_lock( &p_intf->p_sys->p_input->stream.stream_lock );
-    p_area = p_intf->p_sys->p_input->stream.p_selected_area;
-
-    if( p_area->i_part - 1 > 0 )
-    {
-        p_area->i_part--;
-        vlc_mutex_unlock( &p_intf->p_sys->p_input->stream.stream_lock );
-
-        input_ChangeArea( p_intf->p_sys->p_input, p_area );
-        input_SetStatus( p_intf->p_sys->p_input, INPUT_STATUS_PLAY );
-
-        p_intf->p_sys->b_chapter_update = VLC_TRUE;
-        vlc_mutex_lock( &p_intf->p_sys->p_input->stream.stream_lock );
-        p_intf->p_sys->p_menus->SetupMenus();
-    }
-
-    vlc_mutex_unlock( &p_intf->p_sys->p_input->stream.stream_lock );
-}
-//---------------------------------------------------------------------------
-void __fastcall TMainFrameDlg::NextChapterActionExecute( TObject *Sender )
-{
-    input_area_t  * p_area;
-
-    vlc_mutex_lock( &p_intf->p_sys->p_input->stream.stream_lock );
-    p_area = p_intf->p_sys->p_input->stream.p_selected_area;
-
-    if( p_area->i_part + 1 < p_area->i_part_nb )
-    {
-        p_area->i_part++;
-        vlc_mutex_unlock( &p_intf->p_sys->p_input->stream.stream_lock );
-
-        input_ChangeArea( p_intf->p_sys->p_input, p_area );
-        input_SetStatus( p_intf->p_sys->p_input, INPUT_STATUS_PLAY );
-
-        p_intf->p_sys->b_chapter_update = VLC_TRUE;
-        vlc_mutex_lock( &p_intf->p_sys->p_input->stream.stream_lock );
-        p_intf->p_sys->p_menus->SetupMenus();
-    }
-
-    vlc_mutex_unlock( &p_intf->p_sys->p_input->stream.stream_lock );
-}
-//---------------------------------------------------------------------------
-
-
-/*****************************************************************************
- * Callback for the 'go!' button
- ****************************************************************************/
-void __fastcall TMainFrameDlg::ButtonGoClick( TObject *Sender )
-{
-    int i_channel;
-
-    i_channel = SpinEditChannel->Value;
-    msg_Dbg( p_intf, "joining channel %d", i_channel );
-
-    vlc_mutex_lock( &p_intf->change_lock );
-    network_ChannelJoin( p_intf, i_channel );
-    vlc_mutex_unlock( &p_intf->change_lock );
-
-//    input_SetStatus( p_intf->p_sys->p_input, INPUT_STATUS_PLAY );
-}
-//---------------------------------------------------------------------------
-
-
-/*****************************************************************************
- * ModeManage: actualise the aspect of the interface whenever the input
- *             changes.
- *****************************************************************************
- * The lock has to be taken before you call the function.
- *****************************************************************************/
-void __fastcall TMainFrameDlg::ModeManage()
-{
-    TGroupBox     * ActiveGB;
-    int             i_Height;
-    bool            b_control;
-
-    /* hide all boxes */
-    GroupBoxFile->Visible = false;
-    GroupBoxNetwork->Visible = false;
-    GroupBoxDisc->Visible = false;
-
-    /* hide slider */
-    GroupBoxSlider->Hide();
-
-    /* controls unavailable */
-    b_control = 0;
-
-    /* show the box related to current input mode */
-    if( p_intf->p_sys->p_input != NULL )
-    {
-        switch( p_intf->p_sys->p_input->stream.i_method & 0xf0 )
-        {
-            case INPUT_METHOD_FILE:
-                GroupBoxFile->Visible = true;
-                ActiveGB = GroupBoxFile;
-                LabelFileName->Caption = p_intf->p_sys->p_input->psz_source;
-                break;
-            case INPUT_METHOD_DISC:
-                GroupBoxDisc->Visible = true;
-                ActiveGB = GroupBoxDisc;
-                break;
-            case INPUT_METHOD_NETWORK:
-                GroupBoxNetwork->Visible = true;
-                ActiveGB = GroupBoxNetwork;
-                LabelServer->Caption = p_intf->p_sys->p_input->psz_source;
-                if( config_GetInt( p_intf, "network-channel" ) )
-                {
-                    LabelChannel->Visible = true;
-                }
-                else
-                {
-                    LabelChannel->Visible = false;
-                }
-                break;
-            default:
-                msg_Warn( p_intf, "cannot determine input method" );
-                GroupBoxFile->Visible = true;
-                ActiveGB = GroupBoxFile;
-                LabelFileName->Caption = p_intf->p_sys->p_input->psz_source;
-                break;
-        }
-
-        i_Height = StatusBar->Height + ActiveGB->Height + ToolBar->Height + 54;
-
-        /* initialize and show slider for seekable streams */
-        if( p_intf->p_sys->p_input->stream.b_seekable )
-        {
-            TrackBar->Position = p_intf->p_sys->OldValue = 0;
-            GroupBoxSlider->Show();
-            i_Height += GroupBoxSlider->Height;
-        }
-
-        /* control buttons for free pace streams */
-        b_control = p_intf->p_sys->p_input->stream.b_pace_control;
-
-        /* get ready for menu regeneration */
-        p_intf->p_sys->b_program_update = 1;
-        p_intf->p_sys->b_title_update = 1;
-        p_intf->p_sys->b_chapter_update = 1;
-        p_intf->p_sys->b_audio_update = 1;
-        p_intf->p_sys->b_spu_update = 1;
-        p_intf->p_sys->i_part = 0;
-
-        p_intf->p_sys->p_input->stream.b_changed = 0;
-        msg_Dbg( p_intf, "stream has changed, refreshing interface" );
-    }
-    else
-    {
-        i_Height = StatusBar->Height + ToolBar->Height + 47;
-
-        if( config_GetInt( p_intf, "network-channel" ) )
-        {
-            GroupBoxNetwork->Visible = true;
-            LabelChannel->Visible = true;
-            i_Height += GroupBoxNetwork->Height + 7;
-        }
-        else
-        {
-            /* add space between tolbar and statusbar when
-             * nothing is displayed; isn't it nicer ? :) */
-            i_Height += 17;
-        }
-
-        /* unsensitize menus */
-        MenuProgram->Enabled = false;
-        MenuTitle->Enabled = false;
-        MenuChapter->Enabled = false;
-        MenuLanguage->Enabled = false;
-        MenuSubtitles->Enabled = false;
-        PopupNavigation->Enabled = false;
-        PopupLanguage->Enabled = false;
-        PopupSubtitles->Enabled = false;
-    }
-
-    /* resize main window */
-    this->Height = i_Height;
-
-    /* set control items */
-    ToolButtonBack->Enabled = false;
-    ToolButtonEject->Enabled = !b_control;
-    StopAction->Enabled = true;
-    PauseAction->Enabled = b_control;
-    SlowAction->Enabled = b_control;
-    FastAction->Enabled = b_control;
-    PopupBack->Enabled = false;
-}
-//---------------------------------------------------------------------------
-
-
-/*****************************************************************************
- * CreateConfig: create a configuration dialog and save it for further use
- *****************************************************************************
- * Check if the dialog box is already opened, if so this will save us
- * quite a bit of work. (the interface will be destroyed when you actually
- * close the main window, but remember that it is only hidden if you
- * clicked on the action buttons). This trick also allows us not to
- * duplicate identical dialog windows.
- *****************************************************************************/
-void __fastcall TMainFrameDlg::CreatePreferences( AnsiString Name )
-{
-    TPreferencesDlg *Preferences;
-    int i_index, i_pos;
-
-    i_index = StringListPref->IndexOf( Name );
-    if( i_index != -1 )
-    {
-        /* config dialog already exists */
-        Preferences = (TPreferencesDlg *)StringListPref->Objects[i_index];
-    }
-    else
-    {
-        /* create the config dialog */
-        Preferences = new TPreferencesDlg( this, p_intf );
-        Preferences->CreateConfigDialog( Name.c_str() );
-
-        /* save it */
-        i_pos = StringListPref->Add( Name );
-        StringListPref->Objects[i_pos] = Preferences;
-    }
-
-    /* display the dialog */
-    Preferences->Show();
-}
-//---------------------------------------------------------------------------
-
-
+/*****************************************************************************\r
+ * mainframe.cpp: Win32 interface plugin for vlc\r
+ *****************************************************************************\r
+ * Copyright (C) 2002 VideoLAN\r
+ *\r
+ * Authors: Olivier Teulière <ipkiss@via.ecp.fr>\r
+ *\r
+ * This program is free software; you can redistribute it and/or modify\r
+ * it under the terms of the GNU General Public License as published by\r
+ * the Free Software Foundation; either version 2 of the License, or\r
+ * (at your option) any later version.\r
+ *\r
+ * This program is distributed in the hope that it will be useful,\r
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of\r
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\r
+ * GNU General Public License for more details.\r
+ *\r
+ * You should have received a copy of the GNU General Public License\r
+ * along with this program; if not, write to the Free Software\r
+ * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111, USA.\r
+ *****************************************************************************/\r
+\r
+#include <vcl.h>\r
+#pragma hdrstop\r
+\r
+#include <vlc/vlc.h>\r
+#include <vlc/intf.h>\r
+#include <vlc/vout.h>\r
+#include <vlc/aout.h>\r
+\r
+#include "dragdrop.h"\r
+#include "mainframe.h"\r
+#include "menu.h"\r
+#include "disc.h"\r
+#include "network.h"\r
+#include "about.h"\r
+#include "preferences.h"\r
+#include "messages.h"\r
+#include "playlist.h"\r
+#include "sout.h"\r
+#include "subtitles.h"\r
+#include "misc.h"\r
+#include "win32_common.h"\r
+\r
+#include "netutils.h"\r
+\r
+/*****************************************************************************\r
+ * BORLAND SUCKS\r
+ * If the following pragma doesn't end with \r\n instead of \n, the file\r
+ * doesn't compile anymore... Funny, isn't it?\r
+ * With vim, you can use ":set ff=dos" to correct it\r
+ *****************************************************************************/\r
+#pragma link "CSPIN"\r
+#pragma resource "*.dfm"\r
+\r
+extern int Win32Manage( intf_thread_t *p_intf );\r
+\r
+//---------------------------------------------------------------------------\r
+__fastcall TMainFrameDlg::TMainFrameDlg(\r
+    TComponent* Owner, intf_thread_t *_p_intf ) : TForm( Owner )\r
+{\r
+    p_intf = _p_intf;\r
+\r
+    Application->ShowHint = true;\r
+    Application->OnHint = DisplayHint;\r
+\r
+    TimerManage->Interval = INTF_IDLE_SLEEP / 1000;\r
+\r
+    TrackBar->Max = SLIDER_MAX_VALUE;\r
+\r
+    /* default height and caption */\r
+    ClientHeight = 37 + ToolBar->Height;\r
+    Caption = VOUT_TITLE " (Win32 interface)";\r
+\r
+    StringListPref = new TStringList();\r
+\r
+    Translate( this );\r
+\r
+    /* drag and drop stuff */\r
+\r
+    /* initialize the OLE library */\r
+    OleInitialize( NULL );\r
+    /* TDropTarget will send the WM_OLEDROP message to the form */\r
+    lpDropTarget = (LPDROPTARGET)new TDropTarget( this->Handle );\r
+    CoLockObjectExternal( lpDropTarget, true, true );\r
+    /* register the form as a drop target */\r
+    RegisterDragDrop( this->Handle, lpDropTarget );\r
+}\r
+//---------------------------------------------------------------------------\r
+__fastcall TMainFrameDlg::~TMainFrameDlg()\r
+{\r
+    delete StringListPref;\r
+}\r
+//---------------------------------------------------------------------------\r
+\r
+\r
+/*****************************************************************************\r
+ * Event handlers\r
+ ****************************************************************************/\r
+void __fastcall TMainFrameDlg::TimerManageTimer( TObject *Sender )\r
+{\r
+    Win32Manage( p_intf );\r
+}\r
+//---------------------------------------------------------------------------\r
+void __fastcall TMainFrameDlg::DisplayHint( TObject *Sender )\r
+{\r
+    StatusBar->SimpleText = GetLongHint( Application->Hint );\r
+}\r
+//---------------------------------------------------------------------------\r
+void __fastcall TMainFrameDlg::TrackBarChange( TObject *Sender )\r
+{\r
+    /* This function displays the current date related to the position in\r
+     * the stream. It is called whenever the slider changes its value.\r
+     * The lock has to be taken before the function is called */\r
+\r
+    if( p_intf->p_sys->p_input != NULL )\r
+    {\r
+#define p_area p_intf->p_sys->p_input->stream.p_selected_area\r
+        char psz_time[ OFFSETTOTIME_MAX_SIZE ];\r
+        off_t Value = TrackBar->Position;\r
+\r
+        GroupBoxSlider->Caption =\r
+                input_OffsetToTime( p_intf->p_sys->p_input, psz_time,\r
+                        ( p_area->i_size * Value ) / (off_t)SLIDER_MAX_VALUE );\r
+#undef p_area\r
+     }\r
+}\r
+//---------------------------------------------------------------------------\r
+void __fastcall TMainFrameDlg::FormClose( TObject *Sender,\r
+      TCloseAction &Action )\r
+{\r
+    vlc_mutex_lock( &p_intf->change_lock );\r
+    p_intf->p_vlc->b_die = VLC_TRUE;\r
+    vlc_mutex_unlock( &p_intf->change_lock );\r
+\r
+    /* remove the form from the list of drop targets */\r
+    RevokeDragDrop( this->Handle );\r
+    lpDropTarget->Release();\r
+    CoLockObjectExternal( lpDropTarget, false, true );\r
+\r
+    /* uninitialize the OLE library */\r
+    OleUninitialize();\r
+\r
+    /* we don't destroy the form immediatly */\r
+    Action = caHide;\r
+}\r
+//---------------------------------------------------------------------------\r
+\r
+\r
+/*****************************************************************************\r
+ * Main callbacks\r
+ ****************************************************************************/\r
+void __fastcall TMainFrameDlg::OpenFileActionExecute( TObject *Sender )\r
+{\r
+    if( OpenDialog1->Execute() )\r
+    {\r
+        /* add the new file to the interface playlist */\r
+        for( int i = 0; i < OpenDialog1->Files->Count; i++ )\r
+            p_intf->p_sys->p_playwin->Add( OpenDialog1->Files->Strings[i],\r
+                    PLAYLIST_APPEND\r
+                    | ( p_intf->p_sys->b_play_when_adding ? PLAYLIST_GO : 0 ),\r
+                    PLAYLIST_END );\r
+    };\r
+}\r
+//---------------------------------------------------------------------------\r
+void __fastcall TMainFrameDlg::OpenDiscActionExecute( TObject *Sender )\r
+{\r
+    TDiscDlg *p_disc = p_intf->p_sys->p_disc;\r
+    if( p_disc == NULL )\r
+    {\r
+        p_disc = new TDiscDlg( this, p_intf );\r
+        p_intf->p_sys->p_disc = p_disc;\r
+    }\r
+    p_disc->Show();\r
+}\r
+//---------------------------------------------------------------------------\r
+void __fastcall TMainFrameDlg::NetworkStreamActionExecute( TObject *Sender )\r
+{\r
+    TNetworkDlg *p_network = p_intf->p_sys->p_network;\r
+    if( p_network == NULL )\r
+    {\r
+        p_network = new TNetworkDlg( this, p_intf );\r
+        p_intf->p_sys->p_network = p_network;\r
+    }\r
+    p_network->Show();\r
+}\r
+//---------------------------------------------------------------------------\r
+void __fastcall TMainFrameDlg::AddSubtitlesActionsExecute( TObject *Sender )\r
+{\r
+    TSubtitlesDlg *p_subtitles = new TSubtitlesDlg( this, p_intf );\r
+    p_subtitles->ShowModal();\r
+    delete p_subtitles;\r
+}\r
+//---------------------------------------------------------------------------\r
+void __fastcall TMainFrameDlg::StreamOutputActionExecute( TObject *Sender )\r
+{\r
+    TSoutDlg *p_sout = new TSoutDlg( this, p_intf );\r
+    p_sout->ShowModal();\r
+    delete p_sout;\r
+}\r
+//---------------------------------------------------------------------------\r
+void __fastcall TMainFrameDlg::ExitActionExecute( TObject *Sender )\r
+{\r
+    Close();\r
+}\r
+//---------------------------------------------------------------------------\r
+void __fastcall TMainFrameDlg::FullscreenActionExecute( TObject *Sender )\r
+{\r
+    vout_thread_t *p_vout;\r
+\r
+    p_vout = (vout_thread_t *)vlc_object_find( p_intf->p_sys->p_input,\r
+                                               VLC_OBJECT_VOUT, FIND_CHILD );\r
+    if( p_vout == NULL )\r
+    {\r
+        return;\r
+    }\r
+\r
+    p_vout->i_changes |= VOUT_FULLSCREEN_CHANGE;\r
+    vlc_object_release( p_vout );\r
+}\r
+//---------------------------------------------------------------------------\r
+void __fastcall TMainFrameDlg::OnTopActionExecute( TObject *Sender )\r
+{\r
+    vlc_object_t *p_vout;\r
+    p_vout = (vlc_object_t *)vlc_object_find( p_intf, VLC_OBJECT_VOUT,\r
+                                              FIND_ANYWHERE );\r
+    if( p_vout != NULL )\r
+    {\r
+        vlc_value_t val;\r
+        if( var_Get( p_vout, "directx-on-top", &val ) >= 0 )\r
+        {\r
+            val.b_bool = ! val.b_bool;\r
+            var_Set( p_vout, "directx-on-top", val );\r
+            MenuOnTop->Checked = val.b_bool;\r
+            PopupOnTop->Checked = val.b_bool;\r
+        }\r
+        vlc_object_release( p_vout );\r
+    }\r
+}\r
+//---------------------------------------------------------------------------\r
+void __fastcall TMainFrameDlg::PlaylistActionExecute( TObject *Sender )\r
+{\r
+    TPlaylistDlg *p_playwin = p_intf->p_sys->p_playwin;\r
+    if( p_playwin->Visible )\r
+    {\r
+        p_playwin->Hide();\r
+    }\r
+    else\r
+    {\r
+        p_playwin->UpdateGrid();\r
+        p_playwin->Show();\r
+    }\r
+}\r
+//---------------------------------------------------------------------------\r
+void __fastcall TMainFrameDlg::MessagesActionExecute( TObject *Sender )\r
+{\r
+     p_intf->p_sys->p_messages->Show();\r
+}\r
+//---------------------------------------------------------------------------\r
+void __fastcall TMainFrameDlg::PreferencesActionExecute( TObject *Sender )\r
+{\r
+    CreatePreferences( "main" );\r
+}\r
+//---------------------------------------------------------------------------\r
+void __fastcall TMainFrameDlg::AboutActionExecute( TObject *Sender )\r
+{\r
+    TAboutDlg *AboutDlg = new TAboutDlg( this, p_intf );\r
+    AboutDlg->ShowModal();\r
+    delete AboutDlg;\r
+}\r
+//---------------------------------------------------------------------------\r
+void __fastcall TMainFrameDlg::BackActionExecute( TObject *Sender )\r
+{\r
+    /* TODO */\r
+}\r
+//---------------------------------------------------------------------------\r
+void __fastcall TMainFrameDlg::PlayActionExecute( TObject *Sender )\r
+{\r
+    p_intf->p_sys->p_playwin->Play();\r
+}\r
+//---------------------------------------------------------------------------\r
+void __fastcall TMainFrameDlg::PauseActionExecute( TObject *Sender )\r
+{\r
+    p_intf->p_sys->p_playwin->Pause();\r
+}\r
+//---------------------------------------------------------------------------\r
+void __fastcall TMainFrameDlg::StopActionExecute( TObject *Sender )\r
+{\r
+    p_intf->p_sys->p_playwin->Stop();\r
+}\r
+//---------------------------------------------------------------------------\r
+void __fastcall TMainFrameDlg::SlowActionExecute( TObject *Sender )\r
+{\r
+    p_intf->p_sys->p_playwin->Slow();\r
+}\r
+//---------------------------------------------------------------------------\r
+void __fastcall TMainFrameDlg::FastActionExecute( TObject *Sender )\r
+{\r
+    p_intf->p_sys->p_playwin->Fast();\r
+}\r
+//---------------------------------------------------------------------------\r
+void __fastcall TMainFrameDlg::PreviousActionExecute(TObject *Sender)\r
+{\r
+    p_intf->p_sys->p_playwin->Previous();\r
+}\r
+//---------------------------------------------------------------------------\r
+void __fastcall TMainFrameDlg::NextActionExecute(TObject *Sender)\r
+{\r
+    p_intf->p_sys->p_playwin->Next();\r
+}\r
+//---------------------------------------------------------------------------\r
+void __fastcall TMainFrameDlg::EjectActionExecute( TObject *Sender )\r
+{\r
+    AnsiString Device = "";\r
+    char * psz_current;\r
+    playlist_t * p_playlist;\r
+\r
+    p_playlist = (playlist_t *)vlc_object_find( p_intf,\r
+                                       VLC_OBJECT_PLAYLIST, FIND_ANYWHERE );\r
+    if( p_playlist == NULL )\r
+    {\r
+        return;\r
+    }\r
+\r
+    /*\r
+     * Get the active input\r
+     * Determine whether we can eject a media, ie it's a VCD or DVD\r
+     * If it's neither a VCD nor a DVD, then return\r
+     */\r
+\r
+    vlc_mutex_lock( &p_playlist->object_lock );\r
+    psz_current = p_playlist->pp_items[ p_playlist->i_index ]->psz_name;\r
+\r
+    if( psz_current != NULL )\r
+    {\r
+        if( strncmp( psz_current, "dvd", 3 )\r
+            || strncmp( psz_current, "vcd", 3 ) )\r
+        {\r
+            /* Determine the device name by omitting the first 4 characters\r
+             * and keeping 3 characters */\r
+            Device = strdup( ( psz_current + 4 ) );\r
+            Device = Device.SubString( 1, 2 );\r
+        }\r
+    }\r
+\r
+    vlc_mutex_unlock( &p_playlist->object_lock );\r
+    vlc_object_release( p_playlist );\r
+\r
+    if( Device == "" )\r
+    {\r
+        return;\r
+    }\r
+\r
+    /* If there's a stream playing, we aren't allowed to eject ! */\r
+    if( p_intf->p_sys->p_input == NULL )\r
+    {\r
+        msg_Dbg( p_intf, "ejecting %s", Device.c_str() );\r
+\r
+        intf_Eject( p_intf, Device.c_str() );\r
+    }\r
+}\r
+//--------------------------------------------------------------------------\r
+void __fastcall TMainFrameDlg::VolumeUpActionExecute( TObject *Sender )\r
+{\r
+    aout_VolumeUp( p_intf, 1, NULL );\r
+}\r
+//---------------------------------------------------------------------------\r
+void __fastcall TMainFrameDlg::VolumeDownActionExecute( TObject *Sender )\r
+{\r
+    aout_VolumeDown( p_intf, 1, NULL );\r
+}\r
+//---------------------------------------------------------------------------\r
+void __fastcall TMainFrameDlg::MuteActionExecute( TObject *Sender )\r
+{\r
+    aout_VolumeMute( p_intf, NULL );\r
+//    MenuMute->Checked = ! MenuMute->Checked;\r
+}\r
+//---------------------------------------------------------------------------\r
+\r
+\r
+/*****************************************************************************\r
+ * External drop handling\r
+ *****************************************************************************/\r
+void __fastcall TMainFrameDlg::OnDrop( TMessage &Msg )\r
+{\r
+    /* find the number of files dropped */\r
+    int num_files = DragQueryFile( (HDROP)Msg.WParam, 0xFFFFFFFF,\r
+                                   (LPSTR)NULL, NULL );\r
+\r
+    /* append each file to the playlist */\r
+    for( int i = 0; i < num_files; i++ )\r
+    {\r
+        /* find the length of the filename */\r
+        int name_length = DragQueryFile( (HDROP)Msg.WParam, i, NULL, NULL ) + 1;\r
+\r
+        /* get the filename */\r
+        char *FileName = new char[name_length];\r
+        DragQueryFile( (HDROP)Msg.WParam, i, FileName, name_length );\r
+\r
+        /* add the new file to the playlist */\r
+        if( config_GetInt( p_intf, "enqueue" ) )\r
+        {\r
+            p_intf->p_sys->p_playwin->Add( FileName,\r
+                PLAYLIST_APPEND, PLAYLIST_END );\r
+        }\r
+        else\r
+        {\r
+            p_intf->p_sys->p_playwin->Add( FileName,\r
+                PLAYLIST_APPEND | PLAYLIST_GO, PLAYLIST_END );\r
+        }\r
+\r
+        delete[] FileName;\r
+    }\r
+\r
+    DragFinish( (HDROP)Msg.WParam );\r
+    Msg.Result = 0;\r
+}\r
+//--------------------------------------------------------------------------\r
+\r
+\r
+/*****************************************************************************\r
+ * Menu and popup callbacks\r
+ *****************************************************************************/\r
+void __fastcall TMainFrameDlg::MenuHideinterfaceClick( TObject *Sender )\r
+{\r
+     this->SendToBack();\r
+}\r
+//---------------------------------------------------------------------------\r
+void __fastcall TMainFrameDlg::PopupToggleInterfaceClick( TObject *Sender )\r
+{\r
+    this->BringToFront();\r
+}\r
+//---------------------------------------------------------------------------\r
+void __fastcall TMainFrameDlg::PopupCloseClick( TObject *Sender )\r
+{\r
+    /* We do nothing, we just need a click on a menu item\r
+     * to close the popup. Don't ask me why... */\r
+    return;\r
+}\r
+//---------------------------------------------------------------------------\r
+void __fastcall TMainFrameDlg::PopupJumpClick( TObject *Sender )\r
+{\r
+    /* TODO */\r
+}\r
+//---------------------------------------------------------------------------\r
+\r
+\r
+/*****************************************************************************\r
+ * Callbacks for DVD/VCD navigation\r
+ ****************************************************************************/\r
+void __fastcall TMainFrameDlg::PrevTitleActionExecute( TObject *Sender )\r
+{\r
+    input_area_t  * p_area;\r
+    int             i_id;\r
+\r
+    vlc_mutex_lock( &p_intf->p_sys->p_input->stream.stream_lock );\r
+    i_id = p_intf->p_sys->p_input->stream.p_selected_area->i_id - 1;\r
+\r
+    /* Disallow area 0 since it is used for video_ts.vob */\r
+    if( i_id > 0 )\r
+    {\r
+        p_area = p_intf->p_sys->p_input->stream.pp_areas[i_id];\r
+        vlc_mutex_unlock( &p_intf->p_sys->p_input->stream.stream_lock );\r
+\r
+        input_ChangeArea( p_intf->p_sys->p_input, p_area );\r
+        input_SetStatus( p_intf->p_sys->p_input, INPUT_STATUS_PLAY );\r
+\r
+        p_intf->p_sys->b_title_update = VLC_TRUE;\r
+        vlc_mutex_lock( &p_intf->p_sys->p_input->stream.stream_lock );\r
+        p_intf->p_sys->p_menus->SetupMenus();\r
+    }\r
+\r
+    vlc_mutex_unlock( &p_intf->p_sys->p_input->stream.stream_lock );\r
+}\r
+//---------------------------------------------------------------------------\r
+void __fastcall TMainFrameDlg::NextTitleActionExecute( TObject *Sender )\r
+{\r
+    input_area_t  * p_area;\r
+    unsigned int    i_id;\r
+\r
+    vlc_mutex_lock( &p_intf->p_sys->p_input->stream.stream_lock );\r
+    i_id = p_intf->p_sys->p_input->stream.p_selected_area->i_id + 1;\r
+\r
+    if( i_id < p_intf->p_sys->p_input->stream.i_area_nb )\r
+    {\r
+        p_area = p_intf->p_sys->p_input->stream.pp_areas[i_id];\r
+        vlc_mutex_unlock( &p_intf->p_sys->p_input->stream.stream_lock );\r
+\r
+        input_ChangeArea( p_intf->p_sys->p_input, p_area );\r
+        input_SetStatus( p_intf->p_sys->p_input, INPUT_STATUS_PLAY );\r
+\r
+        p_intf->p_sys->b_title_update = VLC_TRUE;\r
+        vlc_mutex_lock( &p_intf->p_sys->p_input->stream.stream_lock );\r
+        p_intf->p_sys->p_menus->SetupMenus();\r
+    }\r
+\r
+    vlc_mutex_unlock( &p_intf->p_sys->p_input->stream.stream_lock );\r
+}\r
+//---------------------------------------------------------------------------\r
+void __fastcall TMainFrameDlg::PrevChapterActionExecute( TObject *Sender )\r
+{\r
+    input_area_t  * p_area;\r
+\r
+    vlc_mutex_lock( &p_intf->p_sys->p_input->stream.stream_lock );\r
+    p_area = p_intf->p_sys->p_input->stream.p_selected_area;\r
+\r
+    if( p_area->i_part - 1 > 0 )\r
+    {\r
+        p_area->i_part--;\r
+        vlc_mutex_unlock( &p_intf->p_sys->p_input->stream.stream_lock );\r
+\r
+        input_ChangeArea( p_intf->p_sys->p_input, p_area );\r
+        input_SetStatus( p_intf->p_sys->p_input, INPUT_STATUS_PLAY );\r
+\r
+        p_intf->p_sys->b_chapter_update = VLC_TRUE;\r
+        vlc_mutex_lock( &p_intf->p_sys->p_input->stream.stream_lock );\r
+        p_intf->p_sys->p_menus->SetupMenus();\r
+    }\r
+\r
+    vlc_mutex_unlock( &p_intf->p_sys->p_input->stream.stream_lock );\r
+}\r
+//---------------------------------------------------------------------------\r
+void __fastcall TMainFrameDlg::NextChapterActionExecute( TObject *Sender )\r
+{\r
+    input_area_t  * p_area;\r
+\r
+    vlc_mutex_lock( &p_intf->p_sys->p_input->stream.stream_lock );\r
+    p_area = p_intf->p_sys->p_input->stream.p_selected_area;\r
+\r
+    if( p_area->i_part + 1 < p_area->i_part_nb )\r
+    {\r
+        p_area->i_part++;\r
+        vlc_mutex_unlock( &p_intf->p_sys->p_input->stream.stream_lock );\r
+\r
+        input_ChangeArea( p_intf->p_sys->p_input, p_area );\r
+        input_SetStatus( p_intf->p_sys->p_input, INPUT_STATUS_PLAY );\r
+\r
+        p_intf->p_sys->b_chapter_update = VLC_TRUE;\r
+        vlc_mutex_lock( &p_intf->p_sys->p_input->stream.stream_lock );\r
+        p_intf->p_sys->p_menus->SetupMenus();\r
+    }\r
+\r
+    vlc_mutex_unlock( &p_intf->p_sys->p_input->stream.stream_lock );\r
+}\r
+//---------------------------------------------------------------------------\r
+\r
+\r
+/*****************************************************************************\r
+ * Callback for the 'go!' button\r
+ ****************************************************************************/\r
+void __fastcall TMainFrameDlg::ButtonGoClick( TObject *Sender )\r
+{\r
+    int i_channel;\r
+\r
+    i_channel = SpinEditChannel->Value;\r
+    msg_Dbg( p_intf, "joining channel %d", i_channel );\r
+\r
+    vlc_mutex_lock( &p_intf->change_lock );\r
+    network_ChannelJoin( p_intf, i_channel );\r
+    vlc_mutex_unlock( &p_intf->change_lock );\r
+\r
+//    input_SetStatus( p_intf->p_sys->p_input, INPUT_STATUS_PLAY );\r
+}\r
+//---------------------------------------------------------------------------\r
+\r
+\r
+/*****************************************************************************\r
+ * ModeManage: actualise the aspect of the interface whenever the input\r
+ *             changes.\r
+ *****************************************************************************\r
+ * The lock has to be taken before you call the function.\r
+ *****************************************************************************/\r
+void __fastcall TMainFrameDlg::ModeManage()\r
+{\r
+    TGroupBox     * ActiveGB;\r
+    int             i_Height;\r
+    bool            b_control;\r
+\r
+    /* hide all boxes */\r
+    GroupBoxFile->Visible = false;\r
+    GroupBoxNetwork->Visible = false;\r
+    GroupBoxDisc->Visible = false;\r
+\r
+    /* hide slider */\r
+    GroupBoxSlider->Hide();\r
+\r
+    /* controls unavailable */\r
+    b_control = 0;\r
+\r
+    /* show the box related to current input mode */\r
+    if( p_intf->p_sys->p_input != NULL )\r
+    {\r
+        switch( p_intf->p_sys->p_input->stream.i_method & 0xf0 )\r
+        {\r
+            case INPUT_METHOD_FILE:\r
+                GroupBoxFile->Visible = true;\r
+                ActiveGB = GroupBoxFile;\r
+                LabelFileName->Caption = p_intf->p_sys->p_input->psz_source;\r
+                break;\r
+            case INPUT_METHOD_DISC:\r
+                GroupBoxDisc->Visible = true;\r
+                ActiveGB = GroupBoxDisc;\r
+                break;\r
+            case INPUT_METHOD_NETWORK:\r
+                GroupBoxNetwork->Visible = true;\r
+                ActiveGB = GroupBoxNetwork;\r
+                LabelServer->Caption = p_intf->p_sys->p_input->psz_source;\r
+                if( config_GetInt( p_intf, "network-channel" ) )\r
+                {\r
+                    LabelChannel->Visible = true;\r
+                }\r
+                else\r
+                {\r
+                    LabelChannel->Visible = false;\r
+                }\r
+                break;\r
+            default:\r
+                msg_Warn( p_intf, "cannot determine input method" );\r
+                GroupBoxFile->Visible = true;\r
+                ActiveGB = GroupBoxFile;\r
+                LabelFileName->Caption = p_intf->p_sys->p_input->psz_source;\r
+                break;\r
+        }\r
+\r
+        i_Height = StatusBar->Height + ActiveGB->Height + ToolBar->Height + 54;\r
+\r
+        /* initialize and show slider for seekable streams */\r
+        if( p_intf->p_sys->p_input->stream.b_seekable )\r
+        {\r
+            TrackBar->Position = p_intf->p_sys->OldValue = 0;\r
+            GroupBoxSlider->Show();\r
+            i_Height += GroupBoxSlider->Height;\r
+        }\r
+\r
+        /* control buttons for free pace streams */\r
+        b_control = p_intf->p_sys->p_input->stream.b_pace_control;\r
+\r
+        /* get ready for menu regeneration */\r
+        p_intf->p_sys->b_program_update = 1;\r
+        p_intf->p_sys->b_title_update = 1;\r
+        p_intf->p_sys->b_chapter_update = 1;\r
+        p_intf->p_sys->b_audio_update = 1;\r
+        p_intf->p_sys->b_spu_update = 1;\r
+        p_intf->p_sys->i_part = 0;\r
+\r
+        p_intf->p_sys->p_input->stream.b_changed = 0;\r
+        msg_Dbg( p_intf, "stream has changed, refreshing interface" );\r
+    }\r
+    else\r
+    {\r
+        i_Height = StatusBar->Height + ToolBar->Height + 47;\r
+\r
+        if( config_GetInt( p_intf, "network-channel" ) )\r
+        {\r
+            GroupBoxNetwork->Visible = true;\r
+            LabelChannel->Visible = true;\r
+            i_Height += GroupBoxNetwork->Height + 7;\r
+        }\r
+        else\r
+        {\r
+            /* add space between tolbar and statusbar when\r
+             * nothing is displayed; isn't it nicer ? :) */\r
+            i_Height += 17;\r
+        }\r
+\r
+        /* unsensitize menus */\r
+        MenuProgram->Enabled = false;\r
+        MenuTitle->Enabled = false;\r
+        MenuChapter->Enabled = false;\r
+        MenuLanguage->Enabled = false;\r
+        MenuSubtitles->Enabled = false;\r
+        PopupNavigation->Enabled = false;\r
+        PopupLanguage->Enabled = false;\r
+        PopupSubtitles->Enabled = false;\r
+    }\r
+\r
+    /* resize main window */\r
+    this->Height = i_Height;\r
+\r
+    /* set control items */\r
+    ToolButtonBack->Enabled = false;\r
+    ToolButtonEject->Enabled = !b_control;\r
+    StopAction->Enabled = true;\r
+    PauseAction->Enabled = b_control;\r
+    SlowAction->Enabled = b_control;\r
+    FastAction->Enabled = b_control;\r
+    PopupBack->Enabled = false;\r
+}\r
+//---------------------------------------------------------------------------\r
+\r
+\r
+/*****************************************************************************\r
+ * CreateConfig: create a configuration dialog and save it for further use\r
+ *****************************************************************************\r
+ * Check if the dialog box is already opened, if so this will save us\r
+ * quite a bit of work. (the interface will be destroyed when you actually\r
+ * close the main window, but remember that it is only hidden if you\r
+ * clicked on the action buttons). This trick also allows us not to\r
+ * duplicate identical dialog windows.\r
+ *****************************************************************************/\r
+void __fastcall TMainFrameDlg::CreatePreferences( AnsiString Name )\r
+{\r
+    TPreferencesDlg *Preferences;\r
+    int i_index, i_pos;\r
+\r
+    i_index = StringListPref->IndexOf( Name );\r
+    if( i_index != -1 )\r
+    {\r
+        /* config dialog already exists */\r
+        Preferences = (TPreferencesDlg *)StringListPref->Objects[i_index];\r
+    }\r
+    else\r
+    {\r
+        /* create the config dialog */\r
+        Preferences = new TPreferencesDlg( this, p_intf );\r
+        Preferences->CreateConfigDialog( Name.c_str() );\r
+\r
+        /* save it */\r
+        i_pos = StringListPref->Add( Name );\r
+        StringListPref->Objects[i_pos] = Preferences;\r
+    }\r
+\r
+    /* display the dialog */\r
+    Preferences->Show();\r
+}\r
+//---------------------------------------------------------------------------\r
+\r
+\r
index 8edd1d5963d4b2c9ec07cb94fa188b6d1d49c26f..ec132b963a1ac0d3c600e60008104c6b078aa9d6 100644 (file)
-/*****************************************************************************
- * menu.cpp: functions to handle menu items
- *****************************************************************************
- * Copyright (C) 2002-2003 VideoLAN
- * $Id: menu.cpp,v 1.13 2003/02/06 23:59:40 sam Exp $
- *
- * Authors: Olivier Teuliere <ipkiss@via.ecp.fr>
- *
- * This program is free software; you can redistribute it and/or modify
- * it under the terms of the GNU General Public License as published by
- * the Free Software Foundation; either version 2 of the License, or
- * (at your option) any later version.
- *
- * This program is distributed in the hope that it will be useful,
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
- * GNU General Public License for more details.
- *
- * You should have received a copy of the GNU General Public License
- * along with this program; if not, write to the Free Software
- * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111, USA.
- *****************************************************************************/
-
-#include <vcl.h>
-
-#include <vlc/vlc.h>
-#include <vlc/intf.h>
-
-#include "menu.h"
-#include "win32_common.h"
-
-/*****************************************************************************
- * TMenusGen::*Click: callbacks for the menuitems
- ****************************************************************************/
-
-/*
- * Variables
- */
-
-/* variables of the audio output */
-void __fastcall TMenusGen::AoutVarClick( TObject *Sender )
-{
-    TMenuItem * Item = (TMenuItem *)Sender;
-
-    vlc_object_t * p_aout;
-    p_aout = (vlc_object_t *)vlc_object_find( p_intf, VLC_OBJECT_AOUT,
-                                              FIND_ANYWHERE );
-    if( p_aout == NULL )
-    {
-        msg_Warn( p_intf, "cannot set variable (%s)", Item->Caption.c_str() );
-        return;
-    }
-
-    if( Item->Parent == MenuADevice || Item->Parent == PopupADevice )
-    {
-        VarChange( p_aout, "audio-device", MenuADevice, PopupADevice, Item );
-    }
-    else if( Item->Parent == MenuChannel || Item->Parent == PopupChannel )
-    {
-        VarChange( p_aout, "audio-channels", MenuChannel, PopupChannel, Item );
-    }
-
-    vlc_object_release( p_aout );
-}
-
-/* variables of the video output */
-void __fastcall TMenusGen::VoutVarClick( TObject *Sender )
-{
-    TMenuItem * Item = (TMenuItem *)Sender;
-
-    vlc_object_t * p_vout;
-    p_vout = (vlc_object_t *)vlc_object_find( p_intf, VLC_OBJECT_VOUT,
-                                              FIND_ANYWHERE );
-    if( p_vout == NULL )
-    {
-        msg_Warn( p_intf, "cannot set variable (%s)", Item->Caption.c_str() );
-        return;
-    }
-
-    if( Item->Parent == MenuVDevice || Item->Parent == PopupVDevice )
-    {
-        VarChange( p_vout, "video-device", MenuVDevice, PopupVDevice, Item );
-    }
-
-    vlc_object_release( p_vout );
-}
-
-/*
- * Modules
- */
-
-/* Interface modules: we spawn a new interface */
-void __fastcall TMenusGen::InterfaceModuleClick( TObject *Sender )
-{
-    TMenuItem * Item = (TMenuItem *)Sender;
-
-    AnsiString IntfName = CleanCaption( Item->Caption );
-
-    intf_thread_t *p_newintf;
-
-    p_newintf = intf_Create( p_intf->p_vlc, IntfName.c_str() );
-
-    if( p_newintf )
-    {
-        p_newintf->b_block = VLC_FALSE;
-        if( intf_RunThread( p_newintf ) )
-        {
-            vlc_object_detach( p_newintf );
-            intf_Destroy( p_newintf );
-        }
-    }
-}
-
-/*
- * Audio
- */
-
-void __fastcall TMenusGen::MenuLanguageClick( TObject *Sender )
-{
-    LangChange( MenuLanguage, (TMenuItem *)Sender, PopupLanguage, AUDIO_ES );
-}
-
-void __fastcall TMenusGen::PopupLanguageClick( TObject *Sender )
-{
-    LangChange( PopupLanguage, (TMenuItem *)Sender, MenuLanguage, AUDIO_ES );
-}
-
-/*
- * Subtitles
- */
-
-void __fastcall TMenusGen::MenuSubtitleClick( TObject *Sender )
-{
-    LangChange( MenuSubtitles, (TMenuItem *)Sender, PopupSubtitles, SPU_ES );
-}
-
-void __fastcall TMenusGen::PopupSubtitleClick( TObject *Sender )
-{
-    LangChange( PopupSubtitles, (TMenuItem *)Sender, MenuSubtitles, SPU_ES );
-}
-
-/*
- * Program
- */
-
-void __fastcall TMenusGen::MenuProgramClick( TObject *Sender )
-{
-   ProgramChange( (TMenuItem *)Sender, PopupProgram );
-}
-
-void __fastcall TMenusGen::PopupProgramClick( TObject *Sender )
-{
-    ProgramChange( (TMenuItem *)Sender, MenuProgram );
-}
-
-/*
- * Title
- */
-
-void __fastcall TMenusGen::MenuTitleClick( TObject *Sender )
-{
-    TMenuItem     * Item = (TMenuItem *)Sender;
-    TMenuItem     * ItemTitle;
-    input_area_t  * p_area;
-    unsigned int    i_title = Item->Tag;
-
-    vlc_mutex_lock( &p_intf->p_sys->p_input->stream.stream_lock );
-    i_title = __MIN( i_title,
-                     p_intf->p_sys->p_input->stream.i_area_nb - 1 );
-    i_title = __MAX( i_title, 1 );
-    p_area = p_intf->p_sys->p_input->stream.pp_areas[i_title];
-    vlc_mutex_unlock( &p_intf->p_sys->p_input->stream.stream_lock );
-
-    input_ChangeArea( p_intf->p_sys->p_input, p_area );
-
-    Item->Checked = true;
-    ItemTitle = Index2Item( PopupNavigation, i_title - 1, false );
-    Index2Item( ItemTitle, 0, false )->Checked = true;
-
-    input_SetStatus( p_intf->p_sys->p_input, INPUT_STATUS_PLAY );
-}
-
-/*
- * Chapter
- */
-
-void __fastcall TMenusGen::MenuChapterClick( TObject *Sender )
-{
-    TMenuItem     * Item = (TMenuItem *)Sender;
-    TMenuItem     * ItemTitle;
-    input_area_t  * p_area;
-    unsigned int    i_title;
-    unsigned int    i_chapter = Item->Tag;
-
-    vlc_mutex_lock( &p_intf->p_sys->p_input->stream.stream_lock );
-    p_area = p_intf->p_sys->p_input->stream.p_selected_area;
-    i_chapter = __MIN( i_chapter, p_area->i_part_nb - 1 );
-    i_chapter = __MAX( i_chapter, 1 );
-    p_area->i_part = i_chapter;
-    vlc_mutex_unlock( &p_intf->p_sys->p_input->stream.stream_lock );
-
-    input_ChangeArea( p_intf->p_sys->p_input, p_area );
-
-    vlc_mutex_lock( &p_intf->p_sys->p_input->stream.stream_lock );
-    i_title = p_intf->p_sys->p_input->stream.p_selected_area->i_id;
-    vlc_mutex_unlock( &p_intf->p_sys->p_input->stream.stream_lock );
-
-    ItemTitle = Index2Item( PopupNavigation, i_title, false );
-    Index2Item( ItemTitle, i_chapter, false )->Checked = true;
-
-    input_SetStatus( p_intf->p_sys->p_input, INPUT_STATUS_PLAY );
-}
-
-/*
- * Navigation
- */
-
-void __fastcall TMenusGen::PopupNavigationClick( TObject *Sender )
-{
-    TMenuItem     * Item = (TMenuItem *)Sender;
-    TMenuItem     * ItemTitle;
-    input_area_t  * p_area;
-    unsigned int    i_title   = Data2Title( Item->Tag );
-    unsigned int    i_chapter = Data2Chapter( Item->Tag );
-
-    vlc_mutex_lock( &p_intf->p_sys->p_input->stream.stream_lock );
-    i_title = __MIN( i_title,
-                     p_intf->p_sys->p_input->stream.i_area_nb - 1 );
-    i_title = __MAX( i_title, 1 );
-    p_area = p_intf->p_sys->p_input->stream.pp_areas[i_title];
-    i_chapter = __MIN( i_chapter, p_area->i_part_nb - 1 );
-    i_chapter = __MAX( i_chapter, 1 );
-    p_area->i_part = i_chapter;
-    vlc_mutex_unlock( &p_intf->p_sys->p_input->stream.stream_lock );
-
-    input_ChangeArea( p_intf->p_sys->p_input, p_area );
-
-    Item->Checked = true;
-    ItemTitle = Index2Item( MenuTitle, i_title, false );
-    if( ItemTitle->Checked )
-    {
-        /* same title, new chapter */
-        Index2Item( MenuChapter, i_chapter, false )->Checked = true;
-    }
-    else
-    {
-        /* new title => we must rebuild the chapter menu */
-        vlc_mutex_lock( &p_intf->p_sys->p_input->stream.stream_lock );
-        RadioMenu(
-            MenuChapter, "Chapter",
-            p_intf->p_sys->p_input->stream.p_selected_area->i_part_nb,
-            i_chapter, MenuChapterClick );
-        vlc_mutex_unlock( &p_intf->p_sys->p_input->stream.stream_lock );
-    }
-
-    input_SetStatus( p_intf->p_sys->p_input, INPUT_STATUS_PLAY );
-}
-
-
-__fastcall TMenusGen::TMenusGen( intf_thread_t *_p_intf ) : TObject()
-{
-    p_intf = _p_intf;
-
-    /* Initialize local pointers to menu items of the main window */
-    TMainFrameDlg * p_window = p_intf->p_sys->p_window;
-    if( p_window == NULL )
-    {
-        msg_Warn( p_intf, "Main window wasn't created, expect problems..." );
-        return;
-    }
-
-    MenuChannel = p_window->MenuChannel;
-    PopupChannel = p_window->PopupChannel;
-    MenuADevice = p_window->MenuADevice;
-    PopupADevice = p_window->PopupADevice;
-    MenuVDevice = p_window->MenuVDevice;
-    PopupVDevice = p_window->PopupVDevice;
-    MenuLanguage = p_window->MenuLanguage;
-    PopupLanguage = p_window->PopupLanguage;
-    MenuSubtitles = p_window->MenuSubtitles;
-    PopupSubtitles = p_window->PopupSubtitles;
-    MenuProgram = p_window->MenuProgram;
-    PopupProgram = p_window->PopupProgram;
-    MenuTitle = p_window->MenuTitle;
-    MenuChapter = p_window->MenuChapter;
-    PopupNavigation = p_window->PopupNavigation;
-    MenuAddInterface = p_window->MenuAddInterface;
-
-    /* Create the "Add interface" menu */
-    SetupModuleMenu( "interface", MenuAddInterface, InterfaceModuleClick );
-}
-
-
-/*****************************************************************************
- * SetupMenus: This function dynamically generates some menus
- *****************************************************************************
- * The lock on p_input->stream must be taken before you call this function
- *****************************************************************************/
-void __fastcall TMenusGen::SetupMenus()
-{
-    TMainFrameDlg  * p_window = p_intf->p_sys->p_window;
-    input_thread_t * p_input  = p_intf->p_sys->p_input;
-    es_descriptor_t   * p_audio_es;
-    es_descriptor_t   * p_spu_es;
-
-    p_intf->p_sys->b_chapter_update |= p_intf->p_sys->b_title_update;
-    p_intf->p_sys->b_audio_update |= p_intf->p_sys->b_program_update |
-                                     p_intf->p_sys->b_title_update;
-    p_intf->p_sys->b_spu_update |= p_intf->p_sys->b_program_update |
-                                   p_intf->p_sys->b_title_update;
-
-    if( p_intf->p_sys->b_program_update )
-    {
-        pgrm_descriptor_t * p_pgrm;
-
-        if( p_input->stream.p_new_program )
-        {
-            p_pgrm = p_input->stream.p_new_program;
-        }
-        else
-        {
-            p_pgrm = p_input->stream.p_selected_program;
-        }
-
-        ProgramMenu( MenuProgram, p_pgrm, MenuProgramClick );
-        ProgramMenu( PopupProgram, p_pgrm, PopupProgramClick );
-
-        p_intf->p_sys->b_program_update = VLC_FALSE;
-    }
-
-    if( p_intf->p_sys->b_title_update )
-    {
-// why "-1" ?
-// because if the titles go from 1 to X-1, there are X-1 titles
-        RadioMenu( MenuTitle, "Title",
-                   p_input->stream.i_area_nb - 1,
-                   p_input->stream.p_selected_area->i_id,
-                   MenuTitleClick );
-
-        AnsiString CurrentTitle;
-        CurrentTitle.sprintf( "%d", p_input->stream.p_selected_area->i_id );
-        p_window->LabelTitleCurrent->Caption = CurrentTitle;
-
-        p_intf->p_sys->b_title_update = VLC_FALSE;
-    }
-
-    if( p_intf->p_sys->b_chapter_update )
-    {
-        RadioMenu( MenuChapter, "Chapter",
-                   p_input->stream.p_selected_area->i_part_nb - 1,
-                   p_input->stream.p_selected_area->i_part,
-                   MenuChapterClick );
-
-        NavigationMenu( PopupNavigation, PopupNavigationClick );
-
-        AnsiString CurrentChapter;
-        CurrentChapter.sprintf( "%d", p_input->stream.p_selected_area->i_part );
-        p_window->LabelChapterCurrent->Caption = CurrentChapter;
-
-        p_intf->p_sys->i_part = p_input->stream.p_selected_area->i_part;
-
-        p_intf->p_sys->b_chapter_update = VLC_FALSE;
-    }
-
-    /* look for selected ES */
-    p_audio_es = NULL;
-    p_spu_es = NULL;
-
-    for( unsigned int i = 0; i < p_input->stream.i_selected_es_number; i++ )
-    {
-        if( p_input->stream.pp_selected_es[i]->i_cat == AUDIO_ES )
-        {
-            p_audio_es = p_input->stream.pp_selected_es[i];
-        }
-
-        if( p_input->stream.pp_selected_es[i]->i_cat == SPU_ES )
-        {
-            p_spu_es = p_input->stream.pp_selected_es[i];
-        }
-    }
-    this->p_audio_es_old = p_audio_es;
-    this->p_spu_es_old = p_spu_es;
-
-    vlc_mutex_unlock( &p_input->stream.stream_lock );
-
-    /* audio menus */
-    if( p_intf->p_sys->b_audio_update )
-    {
-        LanguageMenu( MenuLanguage, p_audio_es, AUDIO_ES, MenuLanguageClick );
-        LanguageMenu( PopupLanguage, p_audio_es, AUDIO_ES, PopupLanguageClick );
-
-        p_intf->p_sys->b_audio_update = VLC_FALSE;
-    }
-
-    /* sub picture menus */
-    if( p_intf->p_sys->b_spu_update )
-    {
-        LanguageMenu( PopupSubtitles, p_spu_es, SPU_ES, PopupSubtitleClick );
-        LanguageMenu( MenuSubtitles, p_spu_es, SPU_ES, MenuSubtitleClick );
-
-        p_intf->p_sys->b_spu_update = VLC_FALSE;
-    }
-
-    if( p_intf->p_sys->b_aout_update )
-    {
-        aout_instance_t * p_aout;
-        p_aout = (aout_instance_t *)vlc_object_find( p_intf, VLC_OBJECT_AOUT,
-                                                     FIND_ANYWHERE );
-
-        if( p_aout != NULL )
-        {
-            vlc_value_t val;
-            val.b_bool = VLC_FALSE;
-
-            var_Set( (vlc_object_t *)p_aout, "intf-change", val );
-
-            SetupVarMenu( (vlc_object_t *)p_aout, "audio-channels",
-                          MenuChannel, AoutVarClick );
-            SetupVarMenu( (vlc_object_t *)p_aout, "audio-channels",
-                          PopupChannel, AoutVarClick );
-
-            SetupVarMenu( (vlc_object_t *)p_aout, "audio-device",
-                          MenuADevice, AoutVarClick );
-            SetupVarMenu( (vlc_object_t *)p_aout, "audio-device",
-                          PopupADevice, AoutVarClick );
-
-            vlc_object_release( (vlc_object_t *)p_aout );
-        }
-
-        p_intf->p_sys->b_aout_update = VLC_FALSE;
-    }
-
-    if( p_intf->p_sys->b_vout_update )
-    {
-        vout_thread_t * p_vout;
-        p_vout = (vout_thread_t *)vlc_object_find( p_intf, VLC_OBJECT_VOUT,
-                                                   FIND_ANYWHERE );
-
-        if( p_vout != NULL )
-        {
-            vlc_value_t val;
-            val.b_bool = VLC_FALSE;
-
-            var_Set( (vlc_object_t *)p_vout, "intf-change", val );
-
-            SetupVarMenu( (vlc_object_t *)p_vout, "video-device",
-                          MenuVDevice, VoutVarClick );
-            SetupVarMenu( (vlc_object_t *)p_vout, "video-device",
-                          PopupVDevice, VoutVarClick );
-
-            vlc_object_release( (vlc_object_t *)p_vout );
-        }
-
-        p_intf->p_sys->b_vout_update = VLC_FALSE;
-    }
-
-    vlc_mutex_lock( &p_input->stream.stream_lock );
-}
-
-
-/*****************************************************************************
- * Private functions
- *****************************************************************************/
-TMenuItem * TMenusGen::Index2Item( TMenuItem *Root, int i_index,
-                                   bool SingleColumn )
-{
-    if( SingleColumn || ( i_index < 20 ) )
-        return Root->Items[i_index];
-    else
-        return Root->Items[i_index / 10]->Items[i_index % 10];
-}
-
-int TMenusGen::Item2Index( TMenuItem *Root, TMenuItem *Item )
-{
-    if( Item->Parent == Root )
-        return Item->MenuIndex;
-    else
-        return( 10 * Item->Parent->MenuIndex + Item->MenuIndex );
-}
-
-int __fastcall TMenusGen::Data2Title( int data )
-{
-    return (int) (data >> 16 );
-}
-
-int __fastcall TMenusGen::Data2Chapter( int data )
-{
-    return (int) (data & 0xffff);
-}
-
-int __fastcall TMenusGen::Pos2Data( int title, int chapter )
-{
-    return (int) (( title << 16 ) | ( chapter & 0xffff ));
-}
-
-/* This function deletes all the '&' characters in the caption string,
- * because Borland automatically adds one when (and only when!) you click on
- * the menuitem. Grrrrr... */
-AnsiString __fastcall TMenusGen::CleanCaption( AnsiString Caption )
-{
-    while( Caption.LastDelimiter( "&" ) != 0 )
-    {
-        Caption.Delete( Caption.LastDelimiter( "&" ), 1 );
-    }
-
-    return Caption;
-}
-
-/****************************************************************************
- * VarChange: change a variable in a vlc_object_t
- ****************************************************************************
- * Change the variable and update the menuitems.
- ****************************************************************************/
-void __fastcall TMenusGen::VarChange( vlc_object_t *p_object,
-        const char *psz_variable, TMenuItem *RootMenu, TMenuItem *RootPopup,
-        TMenuItem *Item )
-{
-    vlc_value_t val;
-    int i_index;
-
-    AnsiString Caption = CleanCaption( Item->Caption );
-    val.psz_string = Caption.c_str();
-
-    /* set the new value */
-    if( var_Set( p_object, psz_variable, val ) < 0 )
-    {
-        msg_Warn( p_object, "cannot set variable (%s)", val.psz_string );
-    }
-
-    i_index = Item->MenuIndex;
-    RootMenu->Items[i_index]->Checked = true;
-    RootPopup->Items[i_index]->Checked = true;
-}
-
-/****************************************************************************
- * LangChange: change audio or subtitles languages
- ****************************************************************************
- * Toggle the language, and update the selected menuitems.
- ****************************************************************************/
-void __fastcall TMenusGen::LangChange( TMenuItem *RootCurrent, TMenuItem *Item,
-    TMenuItem *RootOther, int i_cat )
-{
-    es_descriptor_t * p_es;
-    es_descriptor_t * p_es_old;
-    int i_index;
-    int i_es;
-
-    /* find the selected ES */
-    i_es = Item->Tag;
-
-    /* find selected menu item */
-    i_index = Item2Index( RootCurrent, Item ) - 1;
-    if( i_index < 0 )
-    {
-        /* 'None' was selected */
-        p_es = NULL;
-    }
-    else
-    {
-        vlc_mutex_lock( &p_intf->p_sys->p_input->stream.stream_lock );
-        p_es = p_intf->p_sys->p_input->stream.pp_es[i_es];
-        vlc_mutex_unlock( &p_intf->p_sys->p_input->stream.stream_lock );
-    }
-
-    /* find the current ES */
-    if( i_cat == AUDIO_ES )
-    {
-        p_es_old = this->p_audio_es_old;
-        this->p_audio_es_old = p_es;
-    }
-    else
-    {
-        p_es_old = this->p_spu_es_old;
-        this->p_spu_es_old = p_es;
-    }
-
-    /* exchange them */
-    input_ToggleES( p_intf->p_sys->p_input, p_es_old, false );
-    input_ToggleES( p_intf->p_sys->p_input, p_es, true );
-
-    Item->Checked = true;
-    Index2Item( RootOther, i_index + 1, true )->Checked = true;
-}
-
-/****************************************************************************
- * ProgramChange: change the program
- ****************************************************************************
- * Toggle the program, and update the selected menuitems.
- ****************************************************************************/
-void __fastcall TMenusGen::ProgramChange( TMenuItem *Item,
-                                          TMenuItem *RootOther )
-{
-    int i_program = Item->Tag;
-
-    /* toggle the program */
-    input_ChangeProgram( p_intf->p_sys->p_input, (uint16_t)i_program );
-
-    /* check selected menu items */
-    Item->Checked = true;
-    Index2Item( RootOther, i_program - 1, true )->Checked = true;
-
-    /* update audio/subtitles menus */
-    p_intf->p_sys->b_audio_update = VLC_TRUE;
-    p_intf->p_sys->b_spu_update = VLC_TRUE;
-    vlc_mutex_lock( &p_intf->p_sys->p_input->stream.stream_lock );
-    SetupMenus();
-    vlc_mutex_unlock( &p_intf->p_sys->p_input->stream.stream_lock );
-    p_intf->p_sys->b_audio_update = VLC_FALSE;
-    p_intf->p_sys->b_spu_update = VLC_FALSE;
-
-    input_SetStatus( p_intf->p_sys->p_input, INPUT_STATUS_PLAY );
-}
-
-/*****************************************************************************
- * SetupVarMenu: build a menu allowing to change a variable
- *****************************************************************************/
-void __fastcall TMenusGen::SetupVarMenu( vlc_object_t *p_object,
-        const char *psz_variable, TMenuItem *Root, TNotifyEvent MenuItemClick )
-{
-    TMenuItem * Item;
-    vlc_value_t val;
-    char * psz_value = NULL;
-    int i;
-
-    /* remove previous menu */
-    Root->Clear();
-
-    /* get the current value */
-    if( var_Get( p_object, psz_variable, &val ) < 0 )
-    {
-        return;
-    }
-    psz_value = val.psz_string;
-
-    if( var_Change( p_object, psz_variable, VLC_VAR_GETLIST, &val ) < 0 )
-    {
-        free( psz_value );
-        return;
-    }
-
-    /* append a menuitem for each option */
-    for( i = 0; i < val.p_list->i_count; i++ )
-    {
-        Item = new TMenuItem( Root );
-        Item->Caption = val.p_list->p_values[i].psz_string;
-        Item->Hint = val.p_list->p_values[i].psz_string;
-        Item->RadioItem = true;
-        Item->OnClick = MenuItemClick;
-        if( !strcmp( psz_value, val.p_list->p_values[i].psz_string ) )
-            Item->Checked = true;
-
-        /* Add the item to the submenu */
-        Root->Add( Item );
-    }
-
-    /* enable the menu if there is at least 1 item */
-    Root->Enabled = ( val.p_list->i_count > 0 );
-
-    /* clean up everything */
-    var_Change( p_object, psz_variable, VLC_VAR_FREELIST, &val );
-//    free( psz_value );
-}
-
-/*****************************************************************************
- * SetupModuleMenu: build a menu listing all the modules of a given
-                    capability
- *****************************************************************************/
-void __fastcall TMenusGen::SetupModuleMenu( const char *psz_capability,
-        TMenuItem *Root, TNotifyEvent MenuItemClick )
-{
-    module_t * p_parser;
-    vlc_list_t *p_list;
-    int i_index;
-
-    /* remove previous menu */
-    Root->Clear();
-    Root->Enabled = false;
-
-    p_list = vlc_list_find( p_intf, VLC_OBJECT_MODULE, FIND_ANYWHERE );
-    for( i_index = 0; i_index < p_list->i_count; i_index++ )
-    {
-        p_parser = (module_t *)p_list->p_values[i_index].p_object ;
-
-        if( !strcmp( p_parser->psz_capability, psz_capability ) )
-        {
-            TMenuItem *Item = new TMenuItem( Root );
-            Item->Caption = p_parser->psz_object_name;
-            Item->Hint = Item->Caption;
-            Item->OnClick = MenuItemClick;
-            Root->Add( Item );
-        }
-    }
-
-    vlc_list_release( p_list );
-
-    /* be sure that menu is enabled, if there is at least one item */
-    if( i_index > 0 )
-        Root->Enabled = true;
-}
-
-/*****************************************************************************
- * ProgramMenu: update the programs menu of the interface
- *****************************************************************************
- * Builds the program menu according to what have been found in the PAT
- * by the input. Useful for multi-programs streams such as DVB ones.
- *****************************************************************************/
-void __fastcall TMenusGen::ProgramMenu( TMenuItem *Root,
-    pgrm_descriptor_t *p_pgrm, TNotifyEvent MenuItemClick )
-{
-    TMenuItem * Item;
-
-    /* remove previous menu */
-    Root->Clear();
-    Root->Enabled = false;
-
-    /* create a set of program buttons and append them to the container */
-    for( unsigned int i = 0; i < p_intf->p_sys->p_input->stream.i_pgrm_number;
-         i++ )
-    {
-        AnsiString Name;
-        Name.sprintf( "id %d",
-            p_intf->p_sys->p_input->stream.pp_programs[i]->i_number );
-
-        Item = new TMenuItem( Root );
-        Item->Caption = Name;
-        Item->Hint = Name;
-        Item->RadioItem = true;
-        Item->OnClick = MenuItemClick;
-
-        /* FIXME: temporary hack to save the program id with the Item
-         * It will be used in the callback. */
-        Item->Tag = i + 1;
-
-        /* check the currently selected program */
-        if( p_pgrm == p_intf->p_sys->p_input->stream.pp_programs[i] )
-            Item->Checked = true;
-
-        /* add the item to the submenu */
-        Root->Add( Item );
-    }
-
-    /* be sure that menu is enabled if more than 1 program */
-    if( p_intf->p_sys->p_input->stream.i_pgrm_number > 1 )
-        Root->Enabled = true;
-}
-
-/*****************************************************************************
- * RadioMenu: update interactive menus of the interface
- *****************************************************************************
- * Sets up menus with information from input
- * Warning: since this function is designed to be called by management
- * function, the interface lock has to be taken
- *****************************************************************************/
-void __fastcall TMenusGen::RadioMenu( TMenuItem *Root, AnsiString ItemName,
-     int i_nb, int i_selected, TNotifyEvent MenuItemClick )
-{
-    TMenuItem  * ItemGroup;
-    TMenuItem  * Item;
-    AnsiString   Name;
-
-    /* remove previous menu */
-    Root->Enabled = false;
-    Root->Clear();
-
-    for( int i_item = 1; i_item <= i_nb; i_item++ )
-    {
-        /* we group titles/chapters in packets of ten for small screens */
-        if( ( i_item % 10 == 1 ) && ( i_nb > 20 ) )
-        {
-            if( i_item != 1 )
-                Root->Add( ItemGroup );
-
-            Name.sprintf( "%ss %d to %d", ItemName, i_item, i_item + 9 );
-            ItemGroup = new TMenuItem( Root );
-            ItemGroup->Hint = Name;
-            ItemGroup->RadioItem = true;
-
-            /* set the accelerator character */
-            Name.Insert( "&", Name.Length() - 1 );
-            ItemGroup->Caption = Name;
-        }
-
-        Name.sprintf( "%s %d", ItemName, i_item );
-        Item = new TMenuItem( Root );
-        Item->RadioItem = true;
-        Item->Hint = Name;
-
-        /* set the accelerator character */
-        Name.Insert( "&", Name.Length() );
-        Item->Caption = Name;
-
-        /* FIXME: temporary hack to save i_item with the Item
-         * It will be used in the callback. */
-        Item->Tag = i_item;
-
-        /* check the currently selected chapter */
-        if( i_selected == i_item )
-            Item->Checked = true;
-
-        /* setup signal handling */
-        Item->OnClick = MenuItemClick;
-
-        if( i_nb > 20 )
-            ItemGroup->Add( Item );
-        else
-            Root->Add( Item );
-    }
-
-//  if( ( i_nb > 20 ) && ( i_item % 10 ) )  ?
-    if( i_nb > 20 )
-        Root->Add( ItemGroup );
-
-    /* be sure that menu is enabled, if there are several items */
-    if( i_nb > 1 )
-        Root->Enabled = true;
-}
-
-/*****************************************************************************
- * LanguageMenus: update interactive menus of the interface
- *****************************************************************************
- * Sets up menus with information from input:
- *  - languages
- *  - sub-pictures
- * Warning: since this function is designed to be called by management
- * function, the interface lock has to be taken
- *****************************************************************************/
-void __fastcall TMenusGen::LanguageMenu( TMenuItem *Root, es_descriptor_t *p_es,
-    int i_cat, TNotifyEvent MenuItemClick )
-{
-    TMenuItem     * Separator;
-    TMenuItem     * Item;
-    AnsiString      Name;
-
-    /* remove previous menu */
-    Root->Clear();
-    Root->Enabled = false;
-
-    /* special case for "off" item */
-    Name = "None";
-    Item = new TMenuItem( Root );
-    Item->RadioItem = true;
-    Item->Hint = Name;
-    Item->Caption = Name;
-    Item->OnClick = MenuItemClick;
-    Item->Tag = -1;
-    Root->Add( Item );
-
-    /* separator item */
-    Separator = new TMenuItem( Root );
-    Separator->Caption = "-";
-    Root->Add( Separator );
-
-    int i_item = 0;
-
-    vlc_mutex_lock( &p_intf->p_sys->p_input->stream.stream_lock );
-
-#define ES p_intf->p_sys->p_input->stream.pp_es[i]
-    /* create a set of language buttons and append them to the Root */
-    for( unsigned int i = 0; i < p_intf->p_sys->p_input->stream.i_es_number;
-         i++ )
-    {
-        if( ( ES->i_cat == i_cat ) &&
-            ( !ES->p_pgrm ||
-              ES->p_pgrm ==
-                p_intf->p_sys->p_input->stream.p_selected_program ) )
-        {
-            i_item++;
-            Name = p_intf->p_sys->p_input->stream.pp_es[i]->psz_desc;
-            if( Name.IsEmpty() )
-                Name.sprintf( "Language %d", i_item );
-
-            Item = new TMenuItem( Root );
-            Item->RadioItem = true;
-            Item->Hint = Name;
-            Item->Caption = Name;
-            Item->Tag = i;
-
-            /* check the currently selected item */
-            if( p_es == p_intf->p_sys->p_input->stream.pp_es[i] )
-                Item->Checked = true;
-
-            /* setup signal hanling */
-            Item->OnClick = MenuItemClick;
-            Root->Add( Item );
-        }
-    }
-#undef ES
-
-    vlc_mutex_unlock( &p_intf->p_sys->p_input->stream.stream_lock );
-
-    /* be sure that menu is enabled if non empty */
-    if( i_item > 0 )
-        Root->Enabled = true;
-}
-
-/*****************************************************************************
- * NavigationMenu: sets menus for titles and chapters selection
- *****************************************************************************
- * Generates two types of menus:
- *  -simple list of titles
- *  -cascaded lists of chapters for each title
- *****************************************************************************/
-void __fastcall TMenusGen::NavigationMenu( TMenuItem *Root,
-    TNotifyEvent MenuItemClick )
-{
-    TMenuItem     * TitleGroup;
-    TMenuItem     * TitleItem;
-    TMenuItem     * ChapterGroup;
-    TMenuItem     * ChapterItem;
-    AnsiString      Name;
-    unsigned int    i_title_nb;
-    unsigned int    i_chapter_nb;
-
-
-    /* remove previous menu */
-    Root->Enabled = false;
-    Root->Clear();
-
-    i_title_nb = p_intf->p_sys->p_input->stream.i_area_nb - 1;
-
-    /* loop on titles */
-    for( unsigned int i_title = 1; i_title <= i_title_nb; i_title++ )
-    {
-        /* we group titles in packets of ten for small screens */
-        if( ( i_title % 10 == 1 ) && ( i_title_nb > 20 ) )
-        {
-            if( i_title != 1 )
-                Root->Add( TitleGroup );
-
-            Name.sprintf( "%d - %d", i_title, i_title + 9 );
-            TitleGroup = new TMenuItem( Root );
-            TitleGroup->RadioItem = true;
-            TitleGroup->Hint = Name;
-            TitleGroup->Caption = Name;
-        }
-
-        Name.sprintf( "Title %d (%d)", i_title,
-            p_intf->p_sys->p_input->stream.pp_areas[i_title]->i_part_nb - 1 );
-        {
-            TitleItem = new TMenuItem( Root );
-            TitleItem->RadioItem = true;
-            TitleItem->Hint = Name;
-            TitleItem->Caption = Name;
-
-            i_chapter_nb =
-                p_intf->p_sys->p_input->stream.pp_areas[i_title]->i_part_nb - 1;
-
-            /* loop on chapters */
-            for( unsigned int i_chapter = 1; i_chapter <= i_chapter_nb;
-                 i_chapter++ )
-            {
-                /* we group chapters in packets of ten for small screens */
-                if( ( i_chapter % 10 == 1 ) && ( i_chapter_nb > 20 ) )
-                {
-                    if( i_chapter != 1 )
-                        TitleItem->Add( ChapterGroup );
-
-                    Name.sprintf( "%d - %d", i_chapter, i_chapter + 9 );
-                    ChapterGroup = new TMenuItem( TitleItem );
-                    ChapterGroup->RadioItem = true;
-                    ChapterGroup->Hint = Name;
-                    ChapterGroup->Caption = Name;
-                }
-
-                Name.sprintf( "Chapter %d", i_chapter );
-
-                ChapterItem = new TMenuItem( TitleItem );
-                ChapterItem->RadioItem = true;
-                ChapterItem->Hint = Name;
-                ChapterItem->Caption = Name;
-
-                /* FIXME: temporary hack to save i_title and i_chapter with
-                 * ChapterItem, since we will need them in the callback */
-                ChapterItem->Tag = Pos2Data( i_title, i_chapter );
-
-#define p_area p_intf->p_sys->p_input->stream.pp_areas[i_title]
-                /* check the currently selected chapter */
-                if( ( p_area ==
-                        p_intf->p_sys->p_input->stream.p_selected_area ) &&
-                    ( p_area->i_part == i_chapter ) )
-                {
-                    ChapterItem->Checked = true;
-                }
-#undef p_area
-
-                /* setup signal handling */
-                ChapterItem->OnClick = MenuItemClick;
-
-                if( i_chapter_nb > 20 )
-                    ChapterGroup->Add( ChapterItem );
-                else
-                    TitleItem->Add( ChapterItem );
-            }
-
-            if( i_chapter_nb > 20 )
-            {
-                TitleItem->Add( ChapterGroup );
-            }
-
-            if( p_intf->p_sys->p_input->stream.pp_areas[i_title]->i_part_nb
-                > 1 )
-            {
-                /* be sure that menu is sensitive */
-                Root->Enabled = true;
-            }
-        }
-
-        if( i_title_nb > 20 )
-            TitleGroup->Add( TitleItem );
-        else
-            Root->Add( TitleItem );
-    }
-
-    if( i_title_nb > 20 )
-        Root->Add( TitleGroup );
-
-    /* be sure that menu is sensitive */
-    Root->Enabled = true;
-}
-
+/*****************************************************************************\r
+ * menu.cpp: functions to handle menu items\r
+ *****************************************************************************\r
+ * Copyright (C) 2002-2003 VideoLAN\r
+ * $Id: menu.cpp,v 1.14 2003/02/12 02:11:58 ipkiss Exp $\r
+ *\r
+ * Authors: Olivier Teuliere <ipkiss@via.ecp.fr>\r
+ *\r
+ * This program is free software; you can redistribute it and/or modify\r
+ * it under the terms of the GNU General Public License as published by\r
+ * the Free Software Foundation; either version 2 of the License, or\r
+ * (at your option) any later version.\r
+ *\r
+ * This program is distributed in the hope that it will be useful,\r
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of\r
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\r
+ * GNU General Public License for more details.\r
+ *\r
+ * You should have received a copy of the GNU General Public License\r
+ * along with this program; if not, write to the Free Software\r
+ * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111, USA.\r
+ *****************************************************************************/\r
+\r
+#include <vcl.h>\r
+\r
+#include <vlc/vlc.h>\r
+#include <vlc/intf.h>\r
+\r
+#include "menu.h"\r
+#include "win32_common.h"\r
+\r
+/*****************************************************************************\r
+ * TMenusGen::*Click: callbacks for the menuitems\r
+ ****************************************************************************/\r
+\r
+/*\r
+ * Variables\r
+ */\r
+\r
+/* variables of the audio output */\r
+void __fastcall TMenusGen::AoutVarClick( TObject *Sender )\r
+{\r
+    TMenuItem * Item = (TMenuItem *)Sender;\r
+\r
+    vlc_object_t * p_aout;\r
+    p_aout = (vlc_object_t *)vlc_object_find( p_intf, VLC_OBJECT_AOUT,\r
+                                              FIND_ANYWHERE );\r
+    if( p_aout == NULL )\r
+    {\r
+        msg_Warn( p_intf, "cannot set variable (%s)", Item->Caption.c_str() );\r
+        return;\r
+    }\r
+\r
+    if( Item->Parent == MenuADevice || Item->Parent == PopupADevice )\r
+    {\r
+        VarChange( p_aout, "audio-device", MenuADevice, PopupADevice, Item );\r
+    }\r
+    else if( Item->Parent == MenuChannel || Item->Parent == PopupChannel )\r
+    {\r
+        VarChange( p_aout, "audio-channels", MenuChannel, PopupChannel, Item );\r
+    }\r
+\r
+    vlc_object_release( p_aout );\r
+}\r
+\r
+/* variables of the video output */\r
+void __fastcall TMenusGen::VoutVarClick( TObject *Sender )\r
+{\r
+    TMenuItem * Item = (TMenuItem *)Sender;\r
+\r
+    vlc_object_t * p_vout;\r
+    p_vout = (vlc_object_t *)vlc_object_find( p_intf, VLC_OBJECT_VOUT,\r
+                                              FIND_ANYWHERE );\r
+    if( p_vout == NULL )\r
+    {\r
+        msg_Warn( p_intf, "cannot set variable (%s)", Item->Caption.c_str() );\r
+        return;\r
+    }\r
+\r
+    if( Item->Parent == MenuVDevice || Item->Parent == PopupVDevice )\r
+    {\r
+        VarChange( p_vout, "video-device", MenuVDevice, PopupVDevice, Item );\r
+    }\r
+\r
+    vlc_object_release( p_vout );\r
+}\r
+\r
+/*\r
+ * Modules\r
+ */\r
+\r
+/* Interface modules: we spawn a new interface */\r
+void __fastcall TMenusGen::InterfaceModuleClick( TObject *Sender )\r
+{\r
+    TMenuItem * Item = (TMenuItem *)Sender;\r
+\r
+    AnsiString IntfName = CleanCaption( Item->Caption );\r
+\r
+    intf_thread_t *p_newintf;\r
+\r
+    p_newintf = intf_Create( p_intf->p_vlc, IntfName.c_str() );\r
+\r
+    if( p_newintf )\r
+    {\r
+        p_newintf->b_block = VLC_FALSE;\r
+        if( intf_RunThread( p_newintf ) )\r
+        {\r
+            vlc_object_detach( p_newintf );\r
+            intf_Destroy( p_newintf );\r
+        }\r
+    }\r
+}\r
+\r
+/*\r
+ * Audio\r
+ */\r
+\r
+void __fastcall TMenusGen::MenuLanguageClick( TObject *Sender )\r
+{\r
+    LangChange( MenuLanguage, (TMenuItem *)Sender, PopupLanguage, AUDIO_ES );\r
+}\r
+\r
+void __fastcall TMenusGen::PopupLanguageClick( TObject *Sender )\r
+{\r
+    LangChange( PopupLanguage, (TMenuItem *)Sender, MenuLanguage, AUDIO_ES );\r
+}\r
+\r
+/*\r
+ * Subtitles\r
+ */\r
+\r
+void __fastcall TMenusGen::MenuSubtitleClick( TObject *Sender )\r
+{\r
+    LangChange( MenuSubtitles, (TMenuItem *)Sender, PopupSubtitles, SPU_ES );\r
+}\r
+\r
+void __fastcall TMenusGen::PopupSubtitleClick( TObject *Sender )\r
+{\r
+    LangChange( PopupSubtitles, (TMenuItem *)Sender, MenuSubtitles, SPU_ES );\r
+}\r
+\r
+/*\r
+ * Program\r
+ */\r
+\r
+void __fastcall TMenusGen::MenuProgramClick( TObject *Sender )\r
+{\r
+   ProgramChange( (TMenuItem *)Sender, PopupProgram );\r
+}\r
+\r
+void __fastcall TMenusGen::PopupProgramClick( TObject *Sender )\r
+{\r
+    ProgramChange( (TMenuItem *)Sender, MenuProgram );\r
+}\r
+\r
+/*\r
+ * Title\r
+ */\r
+\r
+void __fastcall TMenusGen::MenuTitleClick( TObject *Sender )\r
+{\r
+    TMenuItem     * Item = (TMenuItem *)Sender;\r
+    TMenuItem     * ItemTitle;\r
+    input_area_t  * p_area;\r
+    unsigned int    i_title = Item->Tag;\r
+\r
+    vlc_mutex_lock( &p_intf->p_sys->p_input->stream.stream_lock );\r
+    i_title = __MIN( i_title,\r
+                     p_intf->p_sys->p_input->stream.i_area_nb - 1 );\r
+    i_title = __MAX( i_title, 1 );\r
+    p_area = p_intf->p_sys->p_input->stream.pp_areas[i_title];\r
+    vlc_mutex_unlock( &p_intf->p_sys->p_input->stream.stream_lock );\r
+\r
+    input_ChangeArea( p_intf->p_sys->p_input, p_area );\r
+\r
+    Item->Checked = true;\r
+    ItemTitle = Index2Item( PopupNavigation, i_title - 1, false );\r
+    Index2Item( ItemTitle, 0, false )->Checked = true;\r
+\r
+    input_SetStatus( p_intf->p_sys->p_input, INPUT_STATUS_PLAY );\r
+}\r
+\r
+/*\r
+ * Chapter\r
+ */\r
+\r
+void __fastcall TMenusGen::MenuChapterClick( TObject *Sender )\r
+{\r
+    TMenuItem     * Item = (TMenuItem *)Sender;\r
+    TMenuItem     * ItemTitle;\r
+    input_area_t  * p_area;\r
+    unsigned int    i_title;\r
+    unsigned int    i_chapter = Item->Tag;\r
+\r
+    vlc_mutex_lock( &p_intf->p_sys->p_input->stream.stream_lock );\r
+    p_area = p_intf->p_sys->p_input->stream.p_selected_area;\r
+    i_chapter = __MIN( i_chapter, p_area->i_part_nb - 1 );\r
+    i_chapter = __MAX( i_chapter, 1 );\r
+    p_area->i_part = i_chapter;\r
+    vlc_mutex_unlock( &p_intf->p_sys->p_input->stream.stream_lock );\r
+\r
+    input_ChangeArea( p_intf->p_sys->p_input, p_area );\r
+\r
+    vlc_mutex_lock( &p_intf->p_sys->p_input->stream.stream_lock );\r
+    i_title = p_intf->p_sys->p_input->stream.p_selected_area->i_id;\r
+    vlc_mutex_unlock( &p_intf->p_sys->p_input->stream.stream_lock );\r
+\r
+    ItemTitle = Index2Item( PopupNavigation, i_title, false );\r
+    Index2Item( ItemTitle, i_chapter, false )->Checked = true;\r
+\r
+    input_SetStatus( p_intf->p_sys->p_input, INPUT_STATUS_PLAY );\r
+}\r
+\r
+/*\r
+ * Navigation\r
+ */\r
+\r
+void __fastcall TMenusGen::PopupNavigationClick( TObject *Sender )\r
+{\r
+    TMenuItem     * Item = (TMenuItem *)Sender;\r
+    TMenuItem     * ItemTitle;\r
+    input_area_t  * p_area;\r
+    unsigned int    i_title   = Data2Title( Item->Tag );\r
+    unsigned int    i_chapter = Data2Chapter( Item->Tag );\r
+\r
+    vlc_mutex_lock( &p_intf->p_sys->p_input->stream.stream_lock );\r
+    i_title = __MIN( i_title,\r
+                     p_intf->p_sys->p_input->stream.i_area_nb - 1 );\r
+    i_title = __MAX( i_title, 1 );\r
+    p_area = p_intf->p_sys->p_input->stream.pp_areas[i_title];\r
+    i_chapter = __MIN( i_chapter, p_area->i_part_nb - 1 );\r
+    i_chapter = __MAX( i_chapter, 1 );\r
+    p_area->i_part = i_chapter;\r
+    vlc_mutex_unlock( &p_intf->p_sys->p_input->stream.stream_lock );\r
+\r
+    input_ChangeArea( p_intf->p_sys->p_input, p_area );\r
+\r
+    Item->Checked = true;\r
+    ItemTitle = Index2Item( MenuTitle, i_title, false );\r
+    if( ItemTitle->Checked )\r
+    {\r
+        /* same title, new chapter */\r
+        Index2Item( MenuChapter, i_chapter, false )->Checked = true;\r
+    }\r
+    else\r
+    {\r
+        /* new title => we must rebuild the chapter menu */\r
+        vlc_mutex_lock( &p_intf->p_sys->p_input->stream.stream_lock );\r
+        RadioMenu(\r
+            MenuChapter, "Chapter",\r
+            p_intf->p_sys->p_input->stream.p_selected_area->i_part_nb,\r
+            i_chapter, MenuChapterClick );\r
+        vlc_mutex_unlock( &p_intf->p_sys->p_input->stream.stream_lock );\r
+    }\r
+\r
+    input_SetStatus( p_intf->p_sys->p_input, INPUT_STATUS_PLAY );\r
+}\r
+\r
+\r
+__fastcall TMenusGen::TMenusGen( intf_thread_t *_p_intf ) : TObject()\r
+{\r
+    p_intf = _p_intf;\r
+\r
+    /* Initialize local pointers to menu items of the main window */\r
+    TMainFrameDlg * p_window = p_intf->p_sys->p_window;\r
+    if( p_window == NULL )\r
+    {\r
+        msg_Warn( p_intf, "Main window wasn't created, expect problems..." );\r
+        return;\r
+    }\r
+\r
+    MenuChannel = p_window->MenuChannel;\r
+    PopupChannel = p_window->PopupChannel;\r
+    MenuADevice = p_window->MenuADevice;\r
+    PopupADevice = p_window->PopupADevice;\r
+    MenuVDevice = p_window->MenuVDevice;\r
+    PopupVDevice = p_window->PopupVDevice;\r
+    MenuLanguage = p_window->MenuLanguage;\r
+    PopupLanguage = p_window->PopupLanguage;\r
+    MenuSubtitles = p_window->MenuSubtitles;\r
+    PopupSubtitles = p_window->PopupSubtitles;\r
+    MenuProgram = p_window->MenuProgram;\r
+    PopupProgram = p_window->PopupProgram;\r
+    MenuTitle = p_window->MenuTitle;\r
+    MenuChapter = p_window->MenuChapter;\r
+    PopupNavigation = p_window->PopupNavigation;\r
+    MenuAddInterface = p_window->MenuAddInterface;\r
+\r
+    /* Create the "Add interface" menu */\r
+    SetupModuleMenu( "interface", MenuAddInterface, InterfaceModuleClick );\r
+}\r
+\r
+\r
+/*****************************************************************************\r
+ * SetupMenus: This function dynamically generates some menus\r
+ *****************************************************************************\r
+ * The lock on p_input->stream must be taken before you call this function\r
+ *****************************************************************************/\r
+void __fastcall TMenusGen::SetupMenus()\r
+{\r
+    TMainFrameDlg  * p_window = p_intf->p_sys->p_window;\r
+    input_thread_t * p_input  = p_intf->p_sys->p_input;\r
+    es_descriptor_t   * p_audio_es;\r
+    es_descriptor_t   * p_spu_es;\r
+\r
+    p_intf->p_sys->b_chapter_update |= p_intf->p_sys->b_title_update;\r
+    p_intf->p_sys->b_audio_update |= p_intf->p_sys->b_program_update |\r
+                                     p_intf->p_sys->b_title_update;\r
+    p_intf->p_sys->b_spu_update |= p_intf->p_sys->b_program_update |\r
+                                   p_intf->p_sys->b_title_update;\r
+\r
+    if( p_intf->p_sys->b_program_update )\r
+    {\r
+        pgrm_descriptor_t * p_pgrm;\r
+\r
+        if( p_input->stream.p_new_program )\r
+        {\r
+            p_pgrm = p_input->stream.p_new_program;\r
+        }\r
+        else\r
+        {\r
+            p_pgrm = p_input->stream.p_selected_program;\r
+        }\r
+\r
+        ProgramMenu( MenuProgram, p_pgrm, MenuProgramClick );\r
+        ProgramMenu( PopupProgram, p_pgrm, PopupProgramClick );\r
+\r
+        p_intf->p_sys->b_program_update = VLC_FALSE;\r
+    }\r
+\r
+    if( p_intf->p_sys->b_title_update )\r
+    {\r
+// why "-1" ?\r
+// because if the titles go from 1 to X-1, there are X-1 titles\r
+        RadioMenu( MenuTitle, "Title",\r
+                   p_input->stream.i_area_nb - 1,\r
+                   p_input->stream.p_selected_area->i_id,\r
+                   MenuTitleClick );\r
+\r
+        AnsiString CurrentTitle;\r
+        CurrentTitle.sprintf( "%d", p_input->stream.p_selected_area->i_id );\r
+        p_window->LabelTitleCurrent->Caption = CurrentTitle;\r
+\r
+        p_intf->p_sys->b_title_update = VLC_FALSE;\r
+    }\r
+\r
+    if( p_intf->p_sys->b_chapter_update )\r
+    {\r
+        RadioMenu( MenuChapter, "Chapter",\r
+                   p_input->stream.p_selected_area->i_part_nb - 1,\r
+                   p_input->stream.p_selected_area->i_part,\r
+                   MenuChapterClick );\r
+\r
+        NavigationMenu( PopupNavigation, PopupNavigationClick );\r
+\r
+        AnsiString CurrentChapter;\r
+        CurrentChapter.sprintf( "%d", p_input->stream.p_selected_area->i_part );\r
+        p_window->LabelChapterCurrent->Caption = CurrentChapter;\r
+\r
+        p_intf->p_sys->i_part = p_input->stream.p_selected_area->i_part;\r
+\r
+        p_intf->p_sys->b_chapter_update = VLC_FALSE;\r
+    }\r
+\r
+    /* look for selected ES */\r
+    p_audio_es = NULL;\r
+    p_spu_es = NULL;\r
+\r
+    for( unsigned int i = 0; i < p_input->stream.i_selected_es_number; i++ )\r
+    {\r
+        if( p_input->stream.pp_selected_es[i]->i_cat == AUDIO_ES )\r
+        {\r
+            p_audio_es = p_input->stream.pp_selected_es[i];\r
+        }\r
+\r
+        if( p_input->stream.pp_selected_es[i]->i_cat == SPU_ES )\r
+        {\r
+            p_spu_es = p_input->stream.pp_selected_es[i];\r
+        }\r
+    }\r
+    this->p_audio_es_old = p_audio_es;\r
+    this->p_spu_es_old = p_spu_es;\r
+\r
+    vlc_mutex_unlock( &p_input->stream.stream_lock );\r
+\r
+    /* audio menus */\r
+    if( p_intf->p_sys->b_audio_update )\r
+    {\r
+        LanguageMenu( MenuLanguage, p_audio_es, AUDIO_ES, MenuLanguageClick );\r
+        LanguageMenu( PopupLanguage, p_audio_es, AUDIO_ES, PopupLanguageClick );\r
+\r
+        p_intf->p_sys->b_audio_update = VLC_FALSE;\r
+    }\r
+\r
+    /* sub picture menus */\r
+    if( p_intf->p_sys->b_spu_update )\r
+    {\r
+        LanguageMenu( PopupSubtitles, p_spu_es, SPU_ES, PopupSubtitleClick );\r
+        LanguageMenu( MenuSubtitles, p_spu_es, SPU_ES, MenuSubtitleClick );\r
+\r
+        p_intf->p_sys->b_spu_update = VLC_FALSE;\r
+    }\r
+\r
+    if( p_intf->p_sys->b_aout_update )\r
+    {\r
+        aout_instance_t * p_aout;\r
+        p_aout = (aout_instance_t *)vlc_object_find( p_intf, VLC_OBJECT_AOUT,\r
+                                                     FIND_ANYWHERE );\r
+\r
+        if( p_aout != NULL )\r
+        {\r
+            vlc_value_t val;\r
+            val.b_bool = VLC_FALSE;\r
+\r
+            var_Set( (vlc_object_t *)p_aout, "intf-change", val );\r
+\r
+            SetupVarMenu( (vlc_object_t *)p_aout, "audio-channels",\r
+                          MenuChannel, AoutVarClick );\r
+            SetupVarMenu( (vlc_object_t *)p_aout, "audio-channels",\r
+                          PopupChannel, AoutVarClick );\r
+\r
+            SetupVarMenu( (vlc_object_t *)p_aout, "audio-device",\r
+                          MenuADevice, AoutVarClick );\r
+            SetupVarMenu( (vlc_object_t *)p_aout, "audio-device",\r
+                          PopupADevice, AoutVarClick );\r
+\r
+            vlc_object_release( (vlc_object_t *)p_aout );\r
+        }\r
+\r
+        p_intf->p_sys->b_aout_update = VLC_FALSE;\r
+    }\r
+\r
+    if( p_intf->p_sys->b_vout_update )\r
+    {\r
+        vout_thread_t * p_vout;\r
+        p_vout = (vout_thread_t *)vlc_object_find( p_intf, VLC_OBJECT_VOUT,\r
+                                                   FIND_ANYWHERE );\r
+\r
+        if( p_vout != NULL )\r
+        {\r
+            vlc_value_t val;\r
+            val.b_bool = VLC_FALSE;\r
+\r
+            var_Set( (vlc_object_t *)p_vout, "intf-change", val );\r
+\r
+            SetupVarMenu( (vlc_object_t *)p_vout, "video-device",\r
+                          MenuVDevice, VoutVarClick );\r
+            SetupVarMenu( (vlc_object_t *)p_vout, "video-device",\r
+                          PopupVDevice, VoutVarClick );\r
+\r
+            vlc_object_release( (vlc_object_t *)p_vout );\r
+        }\r
+\r
+        p_intf->p_sys->b_vout_update = VLC_FALSE;\r
+    }\r
+\r
+    vlc_mutex_lock( &p_input->stream.stream_lock );\r
+}\r
+\r
+\r
+/*****************************************************************************\r
+ * Private functions\r
+ *****************************************************************************/\r
+TMenuItem * TMenusGen::Index2Item( TMenuItem *Root, int i_index,\r
+                                   bool SingleColumn )\r
+{\r
+    if( SingleColumn || ( i_index < 20 ) )\r
+        return Root->Items[i_index];\r
+    else\r
+        return Root->Items[i_index / 10]->Items[i_index % 10];\r
+}\r
+\r
+int TMenusGen::Item2Index( TMenuItem *Root, TMenuItem *Item )\r
+{\r
+    if( Item->Parent == Root )\r
+        return Item->MenuIndex;\r
+    else\r
+        return( 10 * Item->Parent->MenuIndex + Item->MenuIndex );\r
+}\r
+\r
+int __fastcall TMenusGen::Data2Title( int data )\r
+{\r
+    return (int) (data >> 16 );\r
+}\r
+\r
+int __fastcall TMenusGen::Data2Chapter( int data )\r
+{\r
+    return (int) (data & 0xffff);\r
+}\r
+\r
+int __fastcall TMenusGen::Pos2Data( int title, int chapter )\r
+{\r
+    return (int) (( title << 16 ) | ( chapter & 0xffff ));\r
+}\r
+\r
+/* This function deletes all the '&' characters in the caption string,\r
+ * because Borland automatically adds one when (and only when!) you click on\r
+ * the menuitem. Grrrrr... */\r
+AnsiString __fastcall TMenusGen::CleanCaption( AnsiString Caption )\r
+{\r
+    while( Caption.LastDelimiter( "&" ) != 0 )\r
+    {\r
+        Caption.Delete( Caption.LastDelimiter( "&" ), 1 );\r
+    }\r
+\r
+    return Caption;\r
+}\r
+\r
+/****************************************************************************\r
+ * VarChange: change a variable in a vlc_object_t\r
+ ****************************************************************************\r
+ * Change the variable and update the menuitems.\r
+ ****************************************************************************/\r
+void __fastcall TMenusGen::VarChange( vlc_object_t *p_object,\r
+        const char *psz_variable, TMenuItem *RootMenu, TMenuItem *RootPopup,\r
+        TMenuItem *Item )\r
+{\r
+    vlc_value_t val;\r
+    int i_index;\r
+\r
+    AnsiString Caption = CleanCaption( Item->Caption );\r
+    val.psz_string = Caption.c_str();\r
+\r
+    /* set the new value */\r
+    if( var_Set( p_object, psz_variable, val ) < 0 )\r
+    {\r
+        msg_Warn( p_object, "cannot set variable (%s)", val.psz_string );\r
+    }\r
+\r
+    i_index = Item->MenuIndex;\r
+    RootMenu->Items[i_index]->Checked = true;\r
+    RootPopup->Items[i_index]->Checked = true;\r
+}\r
+\r
+/****************************************************************************\r
+ * LangChange: change audio or subtitles languages\r
+ ****************************************************************************\r
+ * Toggle the language, and update the selected menuitems.\r
+ ****************************************************************************/\r
+void __fastcall TMenusGen::LangChange( TMenuItem *RootCurrent, TMenuItem *Item,\r
+    TMenuItem *RootOther, int i_cat )\r
+{\r
+    es_descriptor_t * p_es;\r
+    es_descriptor_t * p_es_old;\r
+    int i_index;\r
+    int i_es;\r
+\r
+    /* find the selected ES */\r
+    i_es = Item->Tag;\r
+\r
+    /* find selected menu item */\r
+    i_index = Item2Index( RootCurrent, Item ) - 1;\r
+    if( i_index < 0 )\r
+    {\r
+        /* 'None' was selected */\r
+        p_es = NULL;\r
+    }\r
+    else\r
+    {\r
+        vlc_mutex_lock( &p_intf->p_sys->p_input->stream.stream_lock );\r
+        p_es = p_intf->p_sys->p_input->stream.pp_es[i_es];\r
+        vlc_mutex_unlock( &p_intf->p_sys->p_input->stream.stream_lock );\r
+    }\r
+\r
+    /* find the current ES */\r
+    if( i_cat == AUDIO_ES )\r
+    {\r
+        p_es_old = this->p_audio_es_old;\r
+        this->p_audio_es_old = p_es;\r
+    }\r
+    else\r
+    {\r
+        p_es_old = this->p_spu_es_old;\r
+        this->p_spu_es_old = p_es;\r
+    }\r
+\r
+    /* exchange them */\r
+    input_ToggleES( p_intf->p_sys->p_input, p_es_old, false );\r
+    input_ToggleES( p_intf->p_sys->p_input, p_es, true );\r
+\r
+    Item->Checked = true;\r
+    Index2Item( RootOther, i_index + 1, true )->Checked = true;\r
+}\r
+\r
+/****************************************************************************\r
+ * ProgramChange: change the program\r
+ ****************************************************************************\r
+ * Toggle the program, and update the selected menuitems.\r
+ ****************************************************************************/\r
+void __fastcall TMenusGen::ProgramChange( TMenuItem *Item,\r
+                                          TMenuItem *RootOther )\r
+{\r
+    int i_program = Item->Tag;\r
+\r
+    /* toggle the program */\r
+    input_ChangeProgram( p_intf->p_sys->p_input, (uint16_t)i_program );\r
+\r
+    /* check selected menu items */\r
+    Item->Checked = true;\r
+    Index2Item( RootOther, i_program - 1, true )->Checked = true;\r
+\r
+    /* update audio/subtitles menus */\r
+    p_intf->p_sys->b_audio_update = VLC_TRUE;\r
+    p_intf->p_sys->b_spu_update = VLC_TRUE;\r
+    vlc_mutex_lock( &p_intf->p_sys->p_input->stream.stream_lock );\r
+    SetupMenus();\r
+    vlc_mutex_unlock( &p_intf->p_sys->p_input->stream.stream_lock );\r
+    p_intf->p_sys->b_audio_update = VLC_FALSE;\r
+    p_intf->p_sys->b_spu_update = VLC_FALSE;\r
+\r
+    input_SetStatus( p_intf->p_sys->p_input, INPUT_STATUS_PLAY );\r
+}\r
+\r
+/*****************************************************************************\r
+ * SetupVarMenu: build a menu allowing to change a variable\r
+ *****************************************************************************/\r
+void __fastcall TMenusGen::SetupVarMenu( vlc_object_t *p_object,\r
+        const char *psz_variable, TMenuItem *Root, TNotifyEvent MenuItemClick )\r
+{\r
+    TMenuItem * Item;\r
+    vlc_value_t val;\r
+    char * psz_value = NULL;\r
+    int i;\r
+\r
+    /* remove previous menu */\r
+    Root->Clear();\r
+\r
+    /* get the current value */\r
+    if( var_Get( p_object, psz_variable, &val ) < 0 )\r
+    {\r
+        return;\r
+    }\r
+    psz_value = val.psz_string;\r
+\r
+    if( var_Change( p_object, psz_variable, VLC_VAR_GETLIST, &val ) < 0 )\r
+    {\r
+        free( psz_value );\r
+        return;\r
+    }\r
+\r
+    /* append a menuitem for each option */\r
+    for( i = 0; i < val.p_list->i_count; i++ )\r
+    {\r
+        Item = new TMenuItem( Root );\r
+        Item->Caption = val.p_list->p_values[i].psz_string;\r
+        Item->Hint = val.p_list->p_values[i].psz_string;\r
+        Item->RadioItem = true;\r
+        Item->OnClick = MenuItemClick;\r
+        if( !strcmp( psz_value, val.p_list->p_values[i].psz_string ) )\r
+            Item->Checked = true;\r
+\r
+        /* Add the item to the submenu */\r
+        Root->Add( Item );\r
+    }\r
+\r
+    /* enable the menu if there is at least 1 item */\r
+    Root->Enabled = ( val.p_list->i_count > 0 );\r
+\r
+    /* clean up everything */\r
+    var_Change( p_object, psz_variable, VLC_VAR_FREELIST, &val );\r
+//    free( psz_value );\r
+}\r
+\r
+/*****************************************************************************\r
+ * SetupModuleMenu: build a menu listing all the modules of a given\r
+                    capability\r
+ *****************************************************************************/\r
+void __fastcall TMenusGen::SetupModuleMenu( const char *psz_capability,\r
+        TMenuItem *Root, TNotifyEvent MenuItemClick )\r
+{\r
+    module_t * p_parser;\r
+    vlc_list_t *p_list;\r
+    int i_index;\r
+\r
+    /* remove previous menu */\r
+    Root->Clear();\r
+    Root->Enabled = false;\r
+\r
+    p_list = vlc_list_find( p_intf, VLC_OBJECT_MODULE, FIND_ANYWHERE );\r
+    for( i_index = 0; i_index < p_list->i_count; i_index++ )\r
+    {\r
+        p_parser = (module_t *)p_list->p_values[i_index].p_object ;\r
+\r
+        if( !strcmp( p_parser->psz_capability, psz_capability ) )\r
+        {\r
+            TMenuItem *Item = new TMenuItem( Root );\r
+            Item->Caption = p_parser->psz_object_name;\r
+            Item->Hint = Item->Caption;\r
+            Item->OnClick = MenuItemClick;\r
+            Root->Add( Item );\r
+        }\r
+    }\r
+\r
+    vlc_list_release( p_list );\r
+\r
+    /* be sure that menu is enabled, if there is at least one item */\r
+    if( i_index > 0 )\r
+        Root->Enabled = true;\r
+}\r
+\r
+/*****************************************************************************\r
+ * ProgramMenu: update the programs menu of the interface\r
+ *****************************************************************************\r
+ * Builds the program menu according to what have been found in the PAT\r
+ * by the input. Useful for multi-programs streams such as DVB ones.\r
+ *****************************************************************************/\r
+void __fastcall TMenusGen::ProgramMenu( TMenuItem *Root,\r
+    pgrm_descriptor_t *p_pgrm, TNotifyEvent MenuItemClick )\r
+{\r
+    TMenuItem * Item;\r
+\r
+    /* remove previous menu */\r
+    Root->Clear();\r
+    Root->Enabled = false;\r
+\r
+    /* create a set of program buttons and append them to the container */\r
+    for( unsigned int i = 0; i < p_intf->p_sys->p_input->stream.i_pgrm_number;\r
+         i++ )\r
+    {\r
+        AnsiString Name;\r
+        Name.sprintf( "id %d",\r
+            p_intf->p_sys->p_input->stream.pp_programs[i]->i_number );\r
+\r
+        Item = new TMenuItem( Root );\r
+        Item->Caption = Name;\r
+        Item->Hint = Name;\r
+        Item->RadioItem = true;\r
+        Item->OnClick = MenuItemClick;\r
+\r
+        /* FIXME: temporary hack to save the program id with the Item\r
+         * It will be used in the callback. */\r
+        Item->Tag = i + 1;\r
+\r
+        /* check the currently selected program */\r
+        if( p_pgrm == p_intf->p_sys->p_input->stream.pp_programs[i] )\r
+            Item->Checked = true;\r
+\r
+        /* add the item to the submenu */\r
+        Root->Add( Item );\r
+    }\r
+\r
+    /* be sure that menu is enabled if more than 1 program */\r
+    if( p_intf->p_sys->p_input->stream.i_pgrm_number > 1 )\r
+        Root->Enabled = true;\r
+}\r
+\r
+/*****************************************************************************\r
+ * RadioMenu: update interactive menus of the interface\r
+ *****************************************************************************\r
+ * Sets up menus with information from input\r
+ * Warning: since this function is designed to be called by management\r
+ * function, the interface lock has to be taken\r
+ *****************************************************************************/\r
+void __fastcall TMenusGen::RadioMenu( TMenuItem *Root, AnsiString ItemName,\r
+     int i_nb, int i_selected, TNotifyEvent MenuItemClick )\r
+{\r
+    TMenuItem  * ItemGroup;\r
+    TMenuItem  * Item;\r
+    AnsiString   Name;\r
+\r
+    /* remove previous menu */\r
+    Root->Enabled = false;\r
+    Root->Clear();\r
+\r
+    for( int i_item = 1; i_item <= i_nb; i_item++ )\r
+    {\r
+        /* we group titles/chapters in packets of ten for small screens */\r
+        if( ( i_item % 10 == 1 ) && ( i_nb > 20 ) )\r
+        {\r
+            if( i_item != 1 )\r
+                Root->Add( ItemGroup );\r
+\r
+            Name.sprintf( "%ss %d to %d", ItemName, i_item, i_item + 9 );\r
+            ItemGroup = new TMenuItem( Root );\r
+            ItemGroup->Hint = Name;\r
+            ItemGroup->RadioItem = true;\r
+\r
+            /* set the accelerator character */\r
+            Name.Insert( "&", Name.Length() - 1 );\r
+            ItemGroup->Caption = Name;\r
+        }\r
+\r
+        Name.sprintf( "%s %d", ItemName, i_item );\r
+        Item = new TMenuItem( Root );\r
+        Item->RadioItem = true;\r
+        Item->Hint = Name;\r
+\r
+        /* set the accelerator character */\r
+        Name.Insert( "&", Name.Length() );\r
+        Item->Caption = Name;\r
+\r
+        /* FIXME: temporary hack to save i_item with the Item\r
+         * It will be used in the callback. */\r
+        Item->Tag = i_item;\r
+\r
+        /* check the currently selected chapter */\r
+        if( i_selected == i_item )\r
+            Item->Checked = true;\r
+\r
+        /* setup signal handling */\r
+        Item->OnClick = MenuItemClick;\r
+\r
+        if( i_nb > 20 )\r
+            ItemGroup->Add( Item );\r
+        else\r
+            Root->Add( Item );\r
+    }\r
+\r
+//  if( ( i_nb > 20 ) && ( i_item % 10 ) )  ?\r
+    if( i_nb > 20 )\r
+        Root->Add( ItemGroup );\r
+\r
+    /* be sure that menu is enabled, if there are several items */\r
+    if( i_nb > 1 )\r
+        Root->Enabled = true;\r
+}\r
+\r
+/*****************************************************************************\r
+ * LanguageMenus: update interactive menus of the interface\r
+ *****************************************************************************\r
+ * Sets up menus with information from input:\r
+ *  - languages\r
+ *  - sub-pictures\r
+ * Warning: since this function is designed to be called by management\r
+ * function, the interface lock has to be taken\r
+ *****************************************************************************/\r
+void __fastcall TMenusGen::LanguageMenu( TMenuItem *Root, es_descriptor_t *p_es,\r
+    int i_cat, TNotifyEvent MenuItemClick )\r
+{\r
+    TMenuItem     * Separator;\r
+    TMenuItem     * Item;\r
+    AnsiString      Name;\r
+\r
+    /* remove previous menu */\r
+    Root->Clear();\r
+    Root->Enabled = false;\r
+\r
+    /* special case for "off" item */\r
+    Name = "None";\r
+    Item = new TMenuItem( Root );\r
+    Item->RadioItem = true;\r
+    Item->Hint = Name;\r
+    Item->Caption = Name;\r
+    Item->OnClick = MenuItemClick;\r
+    Item->Tag = -1;\r
+    Root->Add( Item );\r
+\r
+    /* separator item */\r
+    Separator = new TMenuItem( Root );\r
+    Separator->Caption = "-";\r
+    Root->Add( Separator );\r
+\r
+    int i_item = 0;\r
+\r
+    vlc_mutex_lock( &p_intf->p_sys->p_input->stream.stream_lock );\r
+\r
+#define ES p_intf->p_sys->p_input->stream.pp_es[i]\r
+    /* create a set of language buttons and append them to the Root */\r
+    for( unsigned int i = 0; i < p_intf->p_sys->p_input->stream.i_es_number;\r
+         i++ )\r
+    {\r
+        if( ( ES->i_cat == i_cat ) &&\r
+            ( !ES->p_pgrm ||\r
+              ES->p_pgrm ==\r
+                p_intf->p_sys->p_input->stream.p_selected_program ) )\r
+        {\r
+            i_item++;\r
+            Name = p_intf->p_sys->p_input->stream.pp_es[i]->psz_desc;\r
+            if( Name.IsEmpty() )\r
+                Name.sprintf( "Language %d", i_item );\r
+\r
+            Item = new TMenuItem( Root );\r
+            Item->RadioItem = true;\r
+            Item->Hint = Name;\r
+            Item->Caption = Name;\r
+            Item->Tag = i;\r
+\r
+            /* check the currently selected item */\r
+            if( p_es == p_intf->p_sys->p_input->stream.pp_es[i] )\r
+                Item->Checked = true;\r
+\r
+            /* setup signal hanling */\r
+            Item->OnClick = MenuItemClick;\r
+            Root->Add( Item );\r
+        }\r
+    }\r
+#undef ES\r
+\r
+    vlc_mutex_unlock( &p_intf->p_sys->p_input->stream.stream_lock );\r
+\r
+    /* be sure that menu is enabled if non empty */\r
+    if( i_item > 0 )\r
+        Root->Enabled = true;\r
+}\r
+\r
+/*****************************************************************************\r
+ * NavigationMenu: sets menus for titles and chapters selection\r
+ *****************************************************************************\r
+ * Generates two types of menus:\r
+ *  -simple list of titles\r
+ *  -cascaded lists of chapters for each title\r
+ *****************************************************************************/\r
+void __fastcall TMenusGen::NavigationMenu( TMenuItem *Root,\r
+    TNotifyEvent MenuItemClick )\r
+{\r
+    TMenuItem     * TitleGroup;\r
+    TMenuItem     * TitleItem;\r
+    TMenuItem     * ChapterGroup;\r
+    TMenuItem     * ChapterItem;\r
+    AnsiString      Name;\r
+    unsigned int    i_title_nb;\r
+    unsigned int    i_chapter_nb;\r
+\r
+\r
+    /* remove previous menu */\r
+    Root->Enabled = false;\r
+    Root->Clear();\r
+\r
+    i_title_nb = p_intf->p_sys->p_input->stream.i_area_nb - 1;\r
+\r
+    /* loop on titles */\r
+    for( unsigned int i_title = 1; i_title <= i_title_nb; i_title++ )\r
+    {\r
+        /* we group titles in packets of ten for small screens */\r
+        if( ( i_title % 10 == 1 ) && ( i_title_nb > 20 ) )\r
+        {\r
+            if( i_title != 1 )\r
+                Root->Add( TitleGroup );\r
+\r
+            Name.sprintf( "%d - %d", i_title, i_title + 9 );\r
+            TitleGroup = new TMenuItem( Root );\r
+            TitleGroup->RadioItem = true;\r
+            TitleGroup->Hint = Name;\r
+            TitleGroup->Caption = Name;\r
+        }\r
+\r
+        Name.sprintf( "Title %d (%d)", i_title,\r
+            p_intf->p_sys->p_input->stream.pp_areas[i_title]->i_part_nb - 1 );\r
+        {\r
+            TitleItem = new TMenuItem( Root );\r
+            TitleItem->RadioItem = true;\r
+            TitleItem->Hint = Name;\r
+            TitleItem->Caption = Name;\r
+\r
+            i_chapter_nb =\r
+                p_intf->p_sys->p_input->stream.pp_areas[i_title]->i_part_nb - 1;\r
+\r
+            /* loop on chapters */\r
+            for( unsigned int i_chapter = 1; i_chapter <= i_chapter_nb;\r
+                 i_chapter++ )\r
+            {\r
+                /* we group chapters in packets of ten for small screens */\r
+                if( ( i_chapter % 10 == 1 ) && ( i_chapter_nb > 20 ) )\r
+                {\r
+                    if( i_chapter != 1 )\r
+                        TitleItem->Add( ChapterGroup );\r
+\r
+                    Name.sprintf( "%d - %d", i_chapter, i_chapter + 9 );\r
+                    ChapterGroup = new TMenuItem( TitleItem );\r
+                    ChapterGroup->RadioItem = true;\r
+                    ChapterGroup->Hint = Name;\r
+                    ChapterGroup->Caption = Name;\r
+                }\r
+\r
+                Name.sprintf( "Chapter %d", i_chapter );\r
+\r
+                ChapterItem = new TMenuItem( TitleItem );\r
+                ChapterItem->RadioItem = true;\r
+                ChapterItem->Hint = Name;\r
+                ChapterItem->Caption = Name;\r
+\r
+                /* FIXME: temporary hack to save i_title and i_chapter with\r
+                 * ChapterItem, since we will need them in the callback */\r
+                ChapterItem->Tag = Pos2Data( i_title, i_chapter );\r
+\r
+#define p_area p_intf->p_sys->p_input->stream.pp_areas[i_title]\r
+                /* check the currently selected chapter */\r
+                if( ( p_area ==\r
+                        p_intf->p_sys->p_input->stream.p_selected_area ) &&\r
+                    ( p_area->i_part == i_chapter ) )\r
+                {\r
+                    ChapterItem->Checked = true;\r
+                }\r
+#undef p_area\r
+\r
+                /* setup signal handling */\r
+                ChapterItem->OnClick = MenuItemClick;\r
+\r
+                if( i_chapter_nb > 20 )\r
+                    ChapterGroup->Add( ChapterItem );\r
+                else\r
+                    TitleItem->Add( ChapterItem );\r
+            }\r
+\r
+            if( i_chapter_nb > 20 )\r
+            {\r
+                TitleItem->Add( ChapterGroup );\r
+            }\r
+\r
+            if( p_intf->p_sys->p_input->stream.pp_areas[i_title]->i_part_nb\r
+                > 1 )\r
+            {\r
+                /* be sure that menu is sensitive */\r
+                Root->Enabled = true;\r
+            }\r
+        }\r
+\r
+        if( i_title_nb > 20 )\r
+            TitleGroup->Add( TitleItem );\r
+        else\r
+            Root->Add( TitleItem );\r
+    }\r
+\r
+    if( i_title_nb > 20 )\r
+        Root->Add( TitleGroup );\r
+\r
+    /* be sure that menu is sensitive */\r
+    Root->Enabled = true;\r
+}\r
+\r
index 3ba58e7fae83e2a5a2480368b1405ea2a16e5be7..4757d1a036147d3defdc8dc9c95a84ed06254612 100644 (file)
@@ -1,98 +1,98 @@
-/*****************************************************************************
- * menu.h: prototypes for menu functions
- *****************************************************************************
- * Copyright (C) 2002 VideoLAN
- * $Id: menu.h,v 1.4 2003/01/23 03:33:34 ipkiss Exp $
- *
- * Authors: Olivier Teuliere <ipkiss@via.ecp.fr>
- *
- * This program is free software; you can redistribute it and/or modify
- * it under the terms of the GNU General Public License as published by
- * the Free Software Foundation; either version 2 of the License, or
- * (at your option) any later version.
- *
- * This program is distributed in the hope that it will be useful,
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
- * GNU General Public License for more details.
- *
- * You should have received a copy of the GNU General Public License
- * along with this program; if not, write to the Free Software
- * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111, USA.
- *****************************************************************************/
-
-#ifndef menuH
-#define menuH
-//----------------------------------------------------------------------------
-class TMenusGen : public TObject
-{
-private:
-    intf_thread_t *p_intf;
-
-    /* local pointers to main window menu items */
-    TMenuItem *MenuChannel;
-    TMenuItem *PopupChannel;
-    TMenuItem *MenuADevice;
-    TMenuItem *PopupADevice;
-    TMenuItem *MenuVDevice;
-    TMenuItem *PopupVDevice;
-    TMenuItem *MenuLanguage;
-    TMenuItem *PopupLanguage;
-    TMenuItem *MenuSubtitles;
-    TMenuItem *PopupSubtitles;
-    TMenuItem *MenuProgram;
-    TMenuItem *PopupProgram;
-    TMenuItem *MenuTitle;
-    TMenuItem *MenuChapter;
-    TMenuItem *PopupNavigation;
-    TMenuItem *MenuAddInterface;
-
-    /* Language information */
-    es_descriptor_t   * p_audio_es_old;
-    es_descriptor_t   * p_spu_es_old;
-
-    /* Helpful functions */
-    int Item2Index( TMenuItem *Root, TMenuItem *Item );
-    TMenuItem *Index2Item( TMenuItem *Root, int i_index, bool SingleColumn );
-    int __fastcall Data2Title( int data );
-    int __fastcall Data2Chapter( int data );
-    int __fastcall Pos2Data( int title, int chapter );
-    AnsiString __fastcall TMenusGen::CleanCaption( AnsiString Caption );
-
-    void __fastcall VarChange( vlc_object_t *, const char *, TMenuItem *,
-                               TMenuItem *, TMenuItem * );
-    void __fastcall LangChange( TMenuItem *, TMenuItem *, TMenuItem *, int );
-    void __fastcall ProgramChange( TMenuItem *, TMenuItem * );
-
-    void __fastcall SetupVarMenu( vlc_object_t *, const char *, TMenuItem *,
-                                  TNotifyEvent );
-    void __fastcall SetupModuleMenu( const char *, TMenuItem *, TNotifyEvent );
-    void __fastcall ProgramMenu( TMenuItem *, pgrm_descriptor_t *,
-                                 TNotifyEvent );
-    void __fastcall RadioMenu( TMenuItem *, AnsiString, int, int,
-                               TNotifyEvent );
-    void __fastcall LanguageMenu( TMenuItem *, es_descriptor_t *, int,
-                                  TNotifyEvent );
-    void __fastcall NavigationMenu( TMenuItem *, TNotifyEvent );
-public:
-    __fastcall TMenusGen( intf_thread_t *_p_intf );
-
-    /* menu generation */
-    void __fastcall SetupMenus();
-
-    /* callbacks for menuitems */
-    void __fastcall AoutVarClick( TObject *Sender );
-    void __fastcall VoutVarClick( TObject *Sender );
-    void __fastcall InterfaceModuleClick( TObject *Sender );
-    void __fastcall MenuLanguageClick( TObject *Sender );
-    void __fastcall PopupLanguageClick( TObject *Sender );
-    void __fastcall MenuSubtitleClick( TObject *Sender );
-    void __fastcall PopupSubtitleClick( TObject *Sender );
-    void __fastcall MenuProgramClick( TObject *Sender );
-    void __fastcall PopupProgramClick( TObject *Sender );
-    void __fastcall MenuTitleClick( TObject *Sender );
-    void __fastcall MenuChapterClick( TObject *Sender );
-    void __fastcall PopupNavigationClick( TObject *Sender );
-};
-//----------------------------------------------------------------------------
-#endif
+/*****************************************************************************\r
+ * menu.h: prototypes for menu functions\r
+ *****************************************************************************\r
+ * Copyright (C) 2002 VideoLAN\r
+ * $Id: menu.h,v 1.5 2003/02/12 02:11:58 ipkiss Exp $\r
+ *\r
+ * Authors: Olivier Teuliere <ipkiss@via.ecp.fr>\r
+ *\r
+ * This program is free software; you can redistribute it and/or modify\r
+ * it under the terms of the GNU General Public License as published by\r
+ * the Free Software Foundation; either version 2 of the License, or\r
+ * (at your option) any later version.\r
+ *\r
+ * This program is distributed in the hope that it will be useful,\r
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of\r
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\r
+ * GNU General Public License for more details.\r
+ *\r
+ * You should have received a copy of the GNU General Public License\r
+ * along with this program; if not, write to the Free Software\r
+ * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111, USA.\r
+ *****************************************************************************/\r
+\r
+#ifndef menuH\r
+#define menuH\r
+//----------------------------------------------------------------------------\r
+class TMenusGen : public TObject\r
+{\r
+private:\r
+    intf_thread_t *p_intf;\r
+\r
+    /* local pointers to main window menu items */\r
+    TMenuItem *MenuChannel;\r
+    TMenuItem *PopupChannel;\r
+    TMenuItem *MenuADevice;\r
+    TMenuItem *PopupADevice;\r
+    TMenuItem *MenuVDevice;\r
+    TMenuItem *PopupVDevice;\r
+    TMenuItem *MenuLanguage;\r
+    TMenuItem *PopupLanguage;\r
+    TMenuItem *MenuSubtitles;\r
+    TMenuItem *PopupSubtitles;\r
+    TMenuItem *MenuProgram;\r
+    TMenuItem *PopupProgram;\r
+    TMenuItem *MenuTitle;\r
+    TMenuItem *MenuChapter;\r
+    TMenuItem *PopupNavigation;\r
+    TMenuItem *MenuAddInterface;\r
+\r
+    /* Language information */\r
+    es_descriptor_t   * p_audio_es_old;\r
+    es_descriptor_t   * p_spu_es_old;\r
+\r
+    /* Helpful functions */\r
+    int Item2Index( TMenuItem *Root, TMenuItem *Item );\r
+    TMenuItem *Index2Item( TMenuItem *Root, int i_index, bool SingleColumn );\r
+    int __fastcall Data2Title( int data );\r
+    int __fastcall Data2Chapter( int data );\r
+    int __fastcall Pos2Data( int title, int chapter );\r
+    AnsiString __fastcall TMenusGen::CleanCaption( AnsiString Caption );\r
+\r
+    void __fastcall VarChange( vlc_object_t *, const char *, TMenuItem *,\r
+                               TMenuItem *, TMenuItem * );\r
+    void __fastcall LangChange( TMenuItem *, TMenuItem *, TMenuItem *, int );\r
+    void __fastcall ProgramChange( TMenuItem *, TMenuItem * );\r
+\r
+    void __fastcall SetupVarMenu( vlc_object_t *, const char *, TMenuItem *,\r
+                                  TNotifyEvent );\r
+    void __fastcall SetupModuleMenu( const char *, TMenuItem *, TNotifyEvent );\r
+    void __fastcall ProgramMenu( TMenuItem *, pgrm_descriptor_t *,\r
+                                 TNotifyEvent );\r
+    void __fastcall RadioMenu( TMenuItem *, AnsiString, int, int,\r
+                               TNotifyEvent );\r
+    void __fastcall LanguageMenu( TMenuItem *, es_descriptor_t *, int,\r
+                                  TNotifyEvent );\r
+    void __fastcall NavigationMenu( TMenuItem *, TNotifyEvent );\r
+public:\r
+    __fastcall TMenusGen( intf_thread_t *_p_intf );\r
+\r
+    /* menu generation */\r
+    void __fastcall SetupMenus();\r
+\r
+    /* callbacks for menuitems */\r
+    void __fastcall AoutVarClick( TObject *Sender );\r
+    void __fastcall VoutVarClick( TObject *Sender );\r
+    void __fastcall InterfaceModuleClick( TObject *Sender );\r
+    void __fastcall MenuLanguageClick( TObject *Sender );\r
+    void __fastcall PopupLanguageClick( TObject *Sender );\r
+    void __fastcall MenuSubtitleClick( TObject *Sender );\r
+    void __fastcall PopupSubtitleClick( TObject *Sender );\r
+    void __fastcall MenuProgramClick( TObject *Sender );\r
+    void __fastcall PopupProgramClick( TObject *Sender );\r
+    void __fastcall MenuTitleClick( TObject *Sender );\r
+    void __fastcall MenuChapterClick( TObject *Sender );\r
+    void __fastcall PopupNavigationClick( TObject *Sender );\r
+};\r
+//----------------------------------------------------------------------------\r
+#endif\r
index a4037fd358d80f6fe08605013075bb2fb9535701..cd8155c3075e8f871220abd3f8d0b3173e84c949 100644 (file)
@@ -1,69 +1,69 @@
-/*****************************************************************************
- * sout.h: the stream ouput dialog box
- *****************************************************************************
- * Copyright (C) 2002-2003 VideoLAN
- * $Id: sout.h,v 1.3 2003/01/26 03:55:36 ipkiss Exp $
- *
- * Authors: Olivier Teuliere <ipkiss@via.ecp.fr>
- *
- * This program is free software; you can redistribute it and/or modify
- * it under the terms of the GNU General Public License as published by
- * the Free Software Foundation; either version 2 of the License, or
- * (at your option) any later version.
- *
- * This program is distributed in the hope that it will be useful,
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
- * GNU General Public License for more details.
- *
- * You should have received a copy of the GNU General Public License
- * along with this program; if not, write to the Free Software
- * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111, USA.
- *****************************************************************************/
-
-#ifndef soutH
-#define soutH
-//---------------------------------------------------------------------------
-#include <Classes.hpp>
-#include <Controls.hpp>
-#include <StdCtrls.hpp>
-#include <Forms.hpp>
-#include <ExtCtrls.hpp>
-#include "CSPIN.h"
-#include <Dialogs.hpp>
-#include <Buttons.hpp>
-//---------------------------------------------------------------------------
-class TSoutDlg : public TForm
-{
-__published:   // IDE-managed Components
-    TGroupBox *GroupBoxStreamOut;
-    TEdit *EditMrl;
-    TPanel *PanelAccess;
-    TRadioButton *RadioButtonFile;
-    TRadioButton *RadioButtonUDP;
-    TRadioButton *RadioButtonRTP;
-    TOpenDialog *OpenDialog1;
-    TButton *ButtonBrowse;
-    TEdit *EditFile;
-    TCSpinEdit *SpinEditPort;
-    TEdit *EditAddress;
-    TLabel *LabelPort;
-    TLabel *LabelAddress;
-    TPanel *PanelMux;
-    TRadioButton *RadioButtonPS;
-    TRadioButton *RadioButtonTS;
-    TButton *ButtonOK;
-    TButton *ButtonCancel;
-    void __fastcall ButtonBrowseClick( TObject *Sender );
-    void __fastcall CustomEditChange( TObject *Sender );
-    void __fastcall RadioButtonMuxClick( TObject *Sender );
-    void __fastcall RadioButtonAccessClick( TObject *Sender );
-    void __fastcall ButtonOKClick( TObject *Sender );
-private:       // User declarations
-    void __fastcall RebuildMrl();
-    intf_thread_t *p_intf;
-public:                // User declarations
-    __fastcall TSoutDlg( TComponent* Owner, intf_thread_t *_p_intf );
-};
-//---------------------------------------------------------------------------
-#endif
+/*****************************************************************************\r
+ * sout.h: the stream ouput dialog box\r
+ *****************************************************************************\r
+ * Copyright (C) 2002-2003 VideoLAN\r
+ * $Id: sout.h,v 1.4 2003/02/12 02:11:58 ipkiss Exp $\r
+ *\r
+ * Authors: Olivier Teuliere <ipkiss@via.ecp.fr>\r
+ *\r
+ * This program is free software; you can redistribute it and/or modify\r
+ * it under the terms of the GNU General Public License as published by\r
+ * the Free Software Foundation; either version 2 of the License, or\r
+ * (at your option) any later version.\r
+ *\r
+ * This program is distributed in the hope that it will be useful,\r
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of\r
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\r
+ * GNU General Public License for more details.\r
+ *\r
+ * You should have received a copy of the GNU General Public License\r
+ * along with this program; if not, write to the Free Software\r
+ * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111, USA.\r
+ *****************************************************************************/\r
+\r
+#ifndef soutH\r
+#define soutH\r
+//---------------------------------------------------------------------------\r
+#include <Classes.hpp>\r
+#include <Controls.hpp>\r
+#include <StdCtrls.hpp>\r
+#include <Forms.hpp>\r
+#include <ExtCtrls.hpp>\r
+#include "CSPIN.h"\r
+#include <Dialogs.hpp>\r
+#include <Buttons.hpp>\r
+//---------------------------------------------------------------------------\r
+class TSoutDlg : public TForm\r
+{\r
+__published:   // IDE-managed Components\r
+    TGroupBox *GroupBoxStreamOut;\r
+    TEdit *EditMrl;\r
+    TPanel *PanelAccess;\r
+    TRadioButton *RadioButtonFile;\r
+    TRadioButton *RadioButtonUDP;\r
+    TRadioButton *RadioButtonRTP;\r
+    TOpenDialog *OpenDialog1;\r
+    TButton *ButtonBrowse;\r
+    TEdit *EditFile;\r
+    TCSpinEdit *SpinEditPort;\r
+    TEdit *EditAddress;\r
+    TLabel *LabelPort;\r
+    TLabel *LabelAddress;\r
+    TPanel *PanelMux;\r
+    TRadioButton *RadioButtonPS;\r
+    TRadioButton *RadioButtonTS;\r
+    TButton *ButtonOK;\r
+    TButton *ButtonCancel;\r
+    void __fastcall ButtonBrowseClick( TObject *Sender );\r
+    void __fastcall CustomEditChange( TObject *Sender );\r
+    void __fastcall RadioButtonMuxClick( TObject *Sender );\r
+    void __fastcall RadioButtonAccessClick( TObject *Sender );\r
+    void __fastcall ButtonOKClick( TObject *Sender );\r
+private:       // User declarations\r
+    void __fastcall RebuildMrl();\r
+    intf_thread_t *p_intf;\r
+public:                // User declarations\r
+    __fastcall TSoutDlg( TComponent* Owner, intf_thread_t *_p_intf );\r
+};\r
+//---------------------------------------------------------------------------\r
+#endif\r
index 69815e037c22bde9a34947658d3a3f5cadf54429..6197d879b1042d896f2a4af7f6b35e048d891fe0 100644 (file)
@@ -1,65 +1,65 @@
-/*****************************************************************************
- * subtitles.cpp: Dialog box for divx subtitle selection
- *****************************************************************************
- * Copyright (C) 2002-2003 VideoLAN
- * $Id: subtitles.cpp,v 1.2 2003/01/26 03:55:36 ipkiss Exp $
- *
- * Authors: Olivier Teuliere <ipkiss@via.ecp.fr>
- *
- * This program is free software; you can redistribute it and/or modify
- * it under the terms of the GNU General Public License as published by
- * the Free Software Foundation; either version 2 of the License, or
- * (at your option) any later version.
- *
- * This program is distributed in the hope that it will be useful,
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
- * GNU General Public License for more details.
- *
- * You should have received a copy of the GNU General Public License
- * along with this program; if not, write to the Free Software
- * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111, USA.
- *****************************************************************************/
-
-#include <vcl.h>
-#pragma hdrstop
-
-#include <vlc/vlc.h>
-#include <vlc/intf.h>
-
-#include "subtitles.h"
-#include "misc.h"
-#include "win32_common.h"
-
-//---------------------------------------------------------------------------
-#pragma resource "*.dfm"
-//---------------------------------------------------------------------------
-__fastcall TSubtitlesDlg::TSubtitlesDlg( TComponent* Owner,
-    intf_thread_t *_p_intf ) : TForm( Owner )
-{
-    p_intf = _p_intf;
-
-    Constraints->MinWidth = Width;
-    Constraints->MinHeight = Height;
-
-    Translate( this );
-}
-//---------------------------------------------------------------------------
-void __fastcall TSubtitlesDlg::ButtonBrowseClick( TObject *Sender )
-{
-    if( OpenDialog1->Execute() )
-    {
-        EditFile->Text = OpenDialog1->FileName;
-    }
-}
-//---------------------------------------------------------------------------
-void __fastcall TSubtitlesDlg::ButtonOKClick( TObject *Sender )
-{
-    int delay = (int) (10 * atof( EditDelay->Text.c_str() ));
-    float fps = atof( EditFPS->Text.c_str() );
-    config_PutPsz( p_intf, "sub-file", EditFile->Text.c_str() );
-    config_PutInt( p_intf, "sub-delay", delay );
-    config_PutFloat( p_intf, "sub-fps", fps );
-}
-//---------------------------------------------------------------------------
-
+/*****************************************************************************\r
+ * subtitles.cpp: Dialog box for divx subtitle selection\r
+ *****************************************************************************\r
+ * Copyright (C) 2002-2003 VideoLAN\r
+ * $Id: subtitles.cpp,v 1.3 2003/02/12 02:11:58 ipkiss Exp $\r
+ *\r
+ * Authors: Olivier Teuliere <ipkiss@via.ecp.fr>\r
+ *\r
+ * This program is free software; you can redistribute it and/or modify\r
+ * it under the terms of the GNU General Public License as published by\r
+ * the Free Software Foundation; either version 2 of the License, or\r
+ * (at your option) any later version.\r
+ *\r
+ * This program is distributed in the hope that it will be useful,\r
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of\r
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\r
+ * GNU General Public License for more details.\r
+ *\r
+ * You should have received a copy of the GNU General Public License\r
+ * along with this program; if not, write to the Free Software\r
+ * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111, USA.\r
+ *****************************************************************************/\r
+\r
+#include <vcl.h>\r
+#pragma hdrstop\r
+\r
+#include <vlc/vlc.h>\r
+#include <vlc/intf.h>\r
+\r
+#include "subtitles.h"\r
+#include "misc.h"\r
+#include "win32_common.h"\r
+\r
+//---------------------------------------------------------------------------\r
+#pragma resource "*.dfm"\r
+//---------------------------------------------------------------------------\r
+__fastcall TSubtitlesDlg::TSubtitlesDlg( TComponent* Owner,\r
+    intf_thread_t *_p_intf ) : TForm( Owner )\r
+{\r
+    p_intf = _p_intf;\r
+\r
+    Constraints->MinWidth = Width;\r
+    Constraints->MinHeight = Height;\r
+\r
+    Translate( this );\r
+}\r
+//---------------------------------------------------------------------------\r
+void __fastcall TSubtitlesDlg::ButtonBrowseClick( TObject *Sender )\r
+{\r
+    if( OpenDialog1->Execute() )\r
+    {\r
+        EditFile->Text = OpenDialog1->FileName;\r
+    }\r
+}\r
+//---------------------------------------------------------------------------\r
+void __fastcall TSubtitlesDlg::ButtonOKClick( TObject *Sender )\r
+{\r
+    int delay = (int) (10 * atof( EditDelay->Text.c_str() ));\r
+    float fps = atof( EditFPS->Text.c_str() );\r
+    config_PutPsz( p_intf, "sub-file", EditFile->Text.c_str() );\r
+    config_PutInt( p_intf, "sub-delay", delay );\r
+    config_PutFloat( p_intf, "sub-fps", fps );\r
+}\r
+//---------------------------------------------------------------------------\r
+\r
index 5d1368b2077fcd977705b1b0268f83f50a6e37b1..bb4e369d1c1bb92a57ce308722641127dcb130d7 100644 (file)
@@ -1,55 +1,55 @@
-/*****************************************************************************
- * subtitles.h: Dialog box for divx subtitle selection
- *****************************************************************************
- * Copyright (C) 2002-2003 VideoLAN
- * $Id: subtitles.h,v 1.2 2003/01/26 03:55:36 ipkiss Exp $
- *
- * Authors: Olivier Teuliere <ipkiss@via.ecp.fr>
- *
- * This program is free software; you can redistribute it and/or modify
- * it under the terms of the GNU General Public License as published by
- * the Free Software Foundation; either version 2 of the License, or
- * (at your option) any later version.
- *
- * This program is distributed in the hope that it will be useful,
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
- * GNU General Public License for more details.
- *
- * You should have received a copy of the GNU General Public License
- * along with this program; if not, write to the Free Software
- * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111, USA.
- *****************************************************************************/
-
-#ifndef subtitlesH
-#define subtitlesH
-//---------------------------------------------------------------------------
-#include <Classes.hpp>
-#include <Controls.hpp>
-#include <StdCtrls.hpp>
-#include <Forms.hpp>
-#include <Dialogs.hpp>
-#include <Buttons.hpp>
-//---------------------------------------------------------------------------
-class TSubtitlesDlg : public TForm
-{
-__published:   // IDE-managed Components
-    TOpenDialog *OpenDialog1;
-    TGroupBox *GroupBoxSubtitles;
-    TEdit *EditDelay;
-    TEdit *EditFPS;
-    TEdit *EditFile;
-    TButton *ButtonBrowse;
-    TLabel *LabelDelay;
-    TLabel *LabelFPS;
-    TButton *ButtonOK;
-    TButton *ButtonCancel;
-    void __fastcall ButtonBrowseClick( TObject *Sender );
-    void __fastcall ButtonOKClick( TObject *Sender );
-private:       // User declarations
-    intf_thread_t *p_intf;
-public:                // User declarations
-    __fastcall TSubtitlesDlg( TComponent* Owner, intf_thread_t *p_intf );
-};
-//---------------------------------------------------------------------------
-#endif
+/*****************************************************************************\r
+ * subtitles.h: Dialog box for divx subtitle selection\r
+ *****************************************************************************\r
+ * Copyright (C) 2002-2003 VideoLAN\r
+ * $Id: subtitles.h,v 1.3 2003/02/12 02:11:58 ipkiss Exp $\r
+ *\r
+ * Authors: Olivier Teuliere <ipkiss@via.ecp.fr>\r
+ *\r
+ * This program is free software; you can redistribute it and/or modify\r
+ * it under the terms of the GNU General Public License as published by\r
+ * the Free Software Foundation; either version 2 of the License, or\r
+ * (at your option) any later version.\r
+ *\r
+ * This program is distributed in the hope that it will be useful,\r
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of\r
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\r
+ * GNU General Public License for more details.\r
+ *\r
+ * You should have received a copy of the GNU General Public License\r
+ * along with this program; if not, write to the Free Software\r
+ * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111, USA.\r
+ *****************************************************************************/\r
+\r
+#ifndef subtitlesH\r
+#define subtitlesH\r
+//---------------------------------------------------------------------------\r
+#include <Classes.hpp>\r
+#include <Controls.hpp>\r
+#include <StdCtrls.hpp>\r
+#include <Forms.hpp>\r
+#include <Dialogs.hpp>\r
+#include <Buttons.hpp>\r
+//---------------------------------------------------------------------------\r
+class TSubtitlesDlg : public TForm\r
+{\r
+__published:   // IDE-managed Components\r
+    TOpenDialog *OpenDialog1;\r
+    TGroupBox *GroupBoxSubtitles;\r
+    TEdit *EditDelay;\r
+    TEdit *EditFPS;\r
+    TEdit *EditFile;\r
+    TButton *ButtonBrowse;\r
+    TLabel *LabelDelay;\r
+    TLabel *LabelFPS;\r
+    TButton *ButtonOK;\r
+    TButton *ButtonCancel;\r
+    void __fastcall ButtonBrowseClick( TObject *Sender );\r
+    void __fastcall ButtonOKClick( TObject *Sender );\r
+private:       // User declarations\r
+    intf_thread_t *p_intf;\r
+public:                // User declarations\r
+    __fastcall TSubtitlesDlg( TComponent* Owner, intf_thread_t *p_intf );\r
+};\r
+//---------------------------------------------------------------------------\r
+#endif\r
index c961f06c2b937a0bcb32cf6bb7b6201be24811bf..7738c64e1509e1deae9efda7b78ecd715d028750 100644 (file)
@@ -14,5 +14,5 @@ USEFORM("sout.cpp", SoutDlg);
 USEFORM("subtitles.cpp", SubtitlesDlg);\r
 //---------------------------------------------------------------------------\r
 This file is used by the project manager only and should be treated like the project file\r
-
-\rDllEntryPoint
+\r
+DllEntryPoint\r
index ccf337f79ff230b2713735c84d25276aa507b1e8..2633aa9f5e405dfd4591ea2f636645ef5153c984 100644 (file)
-/*****************************************************************************
- * win32.cpp : Win32 interface plugin for vlc
- *****************************************************************************
- * Copyright (C) 2002-2003 VideoLAN
- * $Id: win32.cpp,v 1.14 2003/02/01 22:21:44 ipkiss Exp $
- *
- * Authors: Olivier Teulière <ipkiss@via.ecp.fr>
- *
- * This program is free software; you can redistribute it and/or modify
- * it under the terms of the GNU General Public License as published by
- * the Free Software Foundation; either version 2 of the License, or
- * (at your option) any later version.
- *
- * This program is distributed in the hope that it will be useful,
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
- * GNU General Public License for more details.
- *
- * You should have received a copy of the GNU General Public License
- * along with this program; if not, write to the Free Software
- * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111, USA.
- *****************************************************************************/
-
-/*****************************************************************************
- * Preamble
- *****************************************************************************/
-#include <vcl.h>
-#include <stdlib.h>                                      /* malloc(), free() */
-#include <errno.h>                                                /* ENOMEM */
-#include <string.h>
-
-#include <vlc/vlc.h>
-#include <vlc/intf.h>
-
-#include "mainframe.h"
-#include "menu.h"
-#include "win32_common.h"
-
-/*****************************************************************************
- * Exported interface functions.
- *****************************************************************************/
-extern "C" __declspec(dllexport)
-    int __VLC_SYMBOL( vlc_entry ) ( module_t *p_module );
-
-/*****************************************************************************
- * Local prototypes.
- *****************************************************************************/
-static int  Open   ( vlc_object_t * );
-static void Close  ( vlc_object_t * );
-static void Run    ( intf_thread_t * );
-
-int Win32Manage( void *p_data );
-
-/*****************************************************************************
- * Open: initialize interface
- *****************************************************************************/
-static int Open ( vlc_object_t *p_this )
-{
-    intf_thread_t *p_intf = (intf_thread_t *)p_this;
-
-    /* Allocate instance and initialize some members */
-    p_intf->p_sys = (intf_sys_t *) malloc( sizeof( intf_sys_t ) );
-    if( p_intf->p_sys == NULL )
-    {
-        msg_Err( p_intf, "out of memory" );
-        return( 1 );
-    };
-
-    p_intf->pf_run = Run;
-
-    p_intf->p_sys->p_sub = msg_Subscribe( p_intf );
-
-    /* Initialize Win32 thread */
-    p_intf->p_sys->b_playing = 0;
-    p_intf->p_sys->b_popup_changed = 0;
-
-    p_intf->p_sys->p_input = NULL;
-    p_intf->p_sys->i_playing = -1;
-    p_intf->p_sys->b_play_when_adding = VLC_TRUE;
-
-    p_intf->p_sys->b_slider_free = 1;
-
-    p_intf->p_sys->b_aout_update = VLC_FALSE;
-    p_intf->p_sys->b_vout_update = VLC_FALSE;
-    p_intf->p_sys->b_program_update = VLC_FALSE;
-    p_intf->p_sys->b_title_update = VLC_FALSE;
-    p_intf->p_sys->b_chapter_update = VLC_FALSE;
-    p_intf->p_sys->b_audio_update = VLC_FALSE;
-    p_intf->p_sys->b_spu_update = VLC_FALSE;
-
-    return( 0 );
-}
-
-/*****************************************************************************
- * Close: destroy interface
- *****************************************************************************/
-static void Close ( vlc_object_t *p_this )
-{
-    intf_thread_t *p_intf = (intf_thread_t *)p_this;
-
-    if( p_intf->p_sys->p_input )
-    {
-        vlc_object_release( p_intf->p_sys->p_input );
-    }
-
-    msg_Unsubscribe( p_intf, p_intf->p_sys->p_sub );
-
-    /* Destroy structure */
-    free( p_intf->p_sys );
-}
-
-/*****************************************************************************
- * Run: main loop
- *****************************************************************************/
-static void Run( intf_thread_t *p_intf )
-{
-    p_intf->p_sys->p_window = new TMainFrameDlg( NULL, p_intf );
-    p_intf->p_sys->p_playwin = new TPlaylistDlg( NULL, p_intf );
-    p_intf->p_sys->p_messages = new TMessagesDlg( NULL, p_intf );
-    p_intf->p_sys->p_menus = new TMenusGen( p_intf );
-
-    /* show main window and wait until it is closed */
-    p_intf->p_sys->p_window->ShowModal();
-
-    if( p_intf->p_sys->p_disc ) delete p_intf->p_sys->p_disc;
-    if( p_intf->p_sys->p_network ) delete p_intf->p_sys->p_network;
-    if( p_intf->p_sys->p_preferences ) delete p_intf->p_sys->p_preferences;
-    delete p_intf->p_sys->p_menus;
-    delete p_intf->p_sys->p_messages;
-    delete p_intf->p_sys->p_playwin;
-    delete p_intf->p_sys->p_window;
-}
-
-/*****************************************************************************
- * Win32Manage: manage main thread messages
- *****************************************************************************
- * In this function, called approx. 10 times a second, we check what the
- * main program wanted to tell us.
- *****************************************************************************/
-int Win32Manage( intf_thread_t *p_intf )
-{
-    vlc_mutex_lock( &p_intf->change_lock );
-
-    /* If the "display popup" flag has changed */
-    if( p_intf->b_menu_change )
-    {
-        /* FIXME: It would be nice to close the popup when the user left-clicks
-        elsewhere, or to actualize the position when he right-clicks again,
-        but i couldn't find a way to close it :-( */
-        TPoint MousePos = Mouse->CursorPos;
-        p_intf->p_sys->p_window->PopupMenuMain->Popup( MousePos.x, MousePos.y );
-        p_intf->b_menu_change = 0;
-    }
-
-    /* Update the log window */
-    p_intf->p_sys->p_messages->UpdateLog();
-
-    /* Update the playlist */
-    p_intf->p_sys->p_playwin->Manage();
-
-    /* Update the input */
-    if( p_intf->p_sys->p_input == NULL )
-    {
-        p_intf->p_sys->p_input = (input_thread_t *)
-            vlc_object_find( p_intf, VLC_OBJECT_INPUT, FIND_ANYWHERE );
-    }
-    else if( p_intf->p_sys->p_input->b_dead )
-    {
-        vlc_object_release( p_intf->p_sys->p_input );
-        p_intf->p_sys->p_input = NULL;
-    }
-
-    if( p_intf->p_sys->p_input != NULL && !p_intf->p_sys->p_input->b_die )
-    {
-        vlc_bool_t b_need_menus = VLC_FALSE;
-        input_thread_t  * p_input = p_intf->p_sys->p_input;
-        vlc_object_t * p_aout = NULL;
-        vlc_object_t * p_vout = NULL;
-
-        vlc_mutex_lock( &p_input->stream.stream_lock );
-
-        /* New input or stream map change */
-        if( p_input->stream.b_changed )
-        {
-            p_intf->p_sys->p_window->ModeManage();
-            b_need_menus = VLC_TRUE;
-            p_intf->p_sys->b_playing = 1;
-        }
-
-        /* Manage the slider */
-        if( p_input->stream.b_seekable && p_intf->p_sys->b_playing )
-        {
-            TTrackBar * TrackBar = p_intf->p_sys->p_window->TrackBar;
-            off_t NewValue = TrackBar->Position;
-
-#define p_area p_input->stream.p_selected_area
-            /* If the user hasn't touched the slider since the last time,
-             * then the input can safely change it */
-            if( NewValue == p_intf->p_sys->OldValue )
-            {
-                /* Update the value */
-                TrackBar->Position = p_intf->p_sys->OldValue =
-                    ( (off_t)SLIDER_MAX_VALUE * p_area->i_tell ) /
-                      p_area->i_size;
-            }
-            /* Otherwise, send message to the input if the user has
-             * finished dragging the slider */
-            else if( p_intf->p_sys->b_slider_free )
-            {
-                off_t i_seek = ( NewValue * p_area->i_size ) /
-                                 (off_t)SLIDER_MAX_VALUE;
-
-                /* release the lock to be able to seek */
-                vlc_mutex_unlock( &p_input->stream.stream_lock );
-                input_Seek( p_input, i_seek, INPUT_SEEK_SET );
-                vlc_mutex_lock( &p_input->stream.stream_lock );
-
-                /* Update the old value */
-                p_intf->p_sys->OldValue = NewValue;
-            }
-#    undef p_area
-
-        }
-
-        if( p_intf->p_sys->i_part != p_input->stream.p_selected_area->i_part )
-        {
-            p_intf->p_sys->b_chapter_update = 1;
-            b_need_menus = VLC_TRUE;
-        }
-
-        /* Does the audio output require to update the menus ? */
-        p_aout = (vlc_object_t *)vlc_object_find( p_intf, VLC_OBJECT_AOUT,
-                                                  FIND_ANYWHERE );
-        if( p_aout != NULL )
-        {
-            vlc_value_t val;
-            if( var_Get( p_aout, "intf-change", &val ) >= 0
-                && val.b_bool )
-            {
-                p_intf->p_sys->b_aout_update = 1;
-                b_need_menus = VLC_TRUE;
-            }
-
-            vlc_object_release( p_aout );
-        }
-
-        /* Does the video output require to update the menus ? */
-        p_vout = (vlc_object_t *)vlc_object_find( p_intf, VLC_OBJECT_VOUT,
-                                                   FIND_ANYWHERE );
-        if( p_vout != NULL )
-        {
-            vlc_value_t val;
-            if( var_Get( p_vout, "intf-change", &val ) >= 0
-                && val.b_bool )
-            {
-                p_intf->p_sys->b_vout_update = 1;
-                b_need_menus = VLC_TRUE;
-            }
-
-            if( var_Get( p_vout, "directx-on-top", &val ) >= 0 )
-            {
-                p_intf->p_sys->p_window->MenuOnTop->Checked = val.b_bool;
-                p_intf->p_sys->p_window->PopupOnTop->Checked = val.b_bool;
-            }
-
-            vlc_object_release( p_vout );
-        }
-
-        if( b_need_menus )
-        {
-            p_intf->p_sys->p_menus->SetupMenus();
-        }
-
-        vlc_mutex_unlock( &p_input->stream.stream_lock );
-    }
-    else if( p_intf->p_sys->b_playing && !p_intf->b_die )
-    {
-        p_intf->p_sys->p_window->ModeManage();
-        p_intf->p_sys->b_playing = 0;
-    }
-
-    if( p_intf->b_die )
-    {
-        vlc_mutex_unlock( &p_intf->change_lock );
-
-        /* Prepare to die, young Skywalker */
-        p_intf->p_sys->p_window->ModalResult = mrOk;
-
-        /* Just in case */
-        return( FALSE );
-    }
-
-    vlc_mutex_unlock( &p_intf->change_lock );
-
-    return( TRUE );
-}
-
-/*****************************************************************************
- * Module descriptor
- *****************************************************************************/
-
-#define MAX_LINES_TEXT N_("maximum number of lines in the log window")
-#define MAX_LINES_LONGTEXT N_( \
-    "You can set the maximum number of lines that the log window will display."\
-    " Enter -1 if you want to keep all messages." )
-
-vlc_module_begin();
-    add_category_hint( N_("Miscellaneous"), NULL );
-    add_integer( "intfwin-max-lines", 500, NULL, MAX_LINES_TEXT, MAX_LINES_LONGTEXT );
-    set_description( _("Native Windows interface module") );
-    set_capability( "interface", 100 );
-    set_callbacks( E_(Open), E_(Close) );
-    add_shortcut( "win" );
-    add_shortcut( "win32" );
-vlc_module_end();
+/*****************************************************************************\r
+ * win32.cpp : Win32 interface plugin for vlc\r
+ *****************************************************************************\r
+ * Copyright (C) 2002-2003 VideoLAN\r
+ * $Id: win32.cpp,v 1.15 2003/02/12 02:11:58 ipkiss Exp $\r
+ *\r
+ * Authors: Olivier Teulière <ipkiss@via.ecp.fr>\r
+ *\r
+ * This program is free software; you can redistribute it and/or modify\r
+ * it under the terms of the GNU General Public License as published by\r
+ * the Free Software Foundation; either version 2 of the License, or\r
+ * (at your option) any later version.\r
+ *\r
+ * This program is distributed in the hope that it will be useful,\r
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of\r
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\r
+ * GNU General Public License for more details.\r
+ *\r
+ * You should have received a copy of the GNU General Public License\r
+ * along with this program; if not, write to the Free Software\r
+ * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111, USA.\r
+ *****************************************************************************/\r
+\r
+/*****************************************************************************\r
+ * Preamble\r
+ *****************************************************************************/\r
+#include <vcl.h>\r
+#include <stdlib.h>                                      /* malloc(), free() */\r
+#include <errno.h>                                                /* ENOMEM */\r
+#include <string.h>\r
+\r
+#include <vlc/vlc.h>\r
+#include <vlc/intf.h>\r
+\r
+#include "mainframe.h"\r
+#include "menu.h"\r
+#include "win32_common.h"\r
+\r
+/*****************************************************************************\r
+ * Exported interface functions.\r
+ *****************************************************************************/\r
+extern "C" __declspec(dllexport)\r
+    int __VLC_SYMBOL( vlc_entry ) ( module_t *p_module );\r
+\r
+/*****************************************************************************\r
+ * Local prototypes.\r
+ *****************************************************************************/\r
+static int  Open   ( vlc_object_t * );\r
+static void Close  ( vlc_object_t * );\r
+static void Run    ( intf_thread_t * );\r
+\r
+int Win32Manage( void *p_data );\r
+\r
+/*****************************************************************************\r
+ * Open: initialize interface\r
+ *****************************************************************************/\r
+static int Open ( vlc_object_t *p_this )\r
+{\r
+    intf_thread_t *p_intf = (intf_thread_t *)p_this;\r
+\r
+    /* Allocate instance and initialize some members */\r
+    p_intf->p_sys = (intf_sys_t *) malloc( sizeof( intf_sys_t ) );\r
+    if( p_intf->p_sys == NULL )\r
+    {\r
+        msg_Err( p_intf, "out of memory" );\r
+        return( 1 );\r
+    };\r
+\r
+    p_intf->pf_run = Run;\r
+\r
+    p_intf->p_sys->p_sub = msg_Subscribe( p_intf );\r
+\r
+    /* Initialize Win32 thread */\r
+    p_intf->p_sys->b_playing = 0;\r
+    p_intf->p_sys->b_popup_changed = 0;\r
+\r
+    p_intf->p_sys->p_input = NULL;\r
+    p_intf->p_sys->i_playing = -1;\r
+    p_intf->p_sys->b_play_when_adding = VLC_TRUE;\r
+\r
+    p_intf->p_sys->b_slider_free = 1;\r
+\r
+    p_intf->p_sys->b_aout_update = VLC_FALSE;\r
+    p_intf->p_sys->b_vout_update = VLC_FALSE;\r
+    p_intf->p_sys->b_program_update = VLC_FALSE;\r
+    p_intf->p_sys->b_title_update = VLC_FALSE;\r
+    p_intf->p_sys->b_chapter_update = VLC_FALSE;\r
+    p_intf->p_sys->b_audio_update = VLC_FALSE;\r
+    p_intf->p_sys->b_spu_update = VLC_FALSE;\r
+\r
+    return( 0 );\r
+}\r
+\r
+/*****************************************************************************\r
+ * Close: destroy interface\r
+ *****************************************************************************/\r
+static void Close ( vlc_object_t *p_this )\r
+{\r
+    intf_thread_t *p_intf = (intf_thread_t *)p_this;\r
+\r
+    if( p_intf->p_sys->p_input )\r
+    {\r
+        vlc_object_release( p_intf->p_sys->p_input );\r
+    }\r
+\r
+    msg_Unsubscribe( p_intf, p_intf->p_sys->p_sub );\r
+\r
+    /* Destroy structure */\r
+    free( p_intf->p_sys );\r
+}\r
+\r
+/*****************************************************************************\r
+ * Run: main loop\r
+ *****************************************************************************/\r
+static void Run( intf_thread_t *p_intf )\r
+{\r
+    p_intf->p_sys->p_window = new TMainFrameDlg( NULL, p_intf );\r
+    p_intf->p_sys->p_playwin = new TPlaylistDlg( NULL, p_intf );\r
+    p_intf->p_sys->p_messages = new TMessagesDlg( NULL, p_intf );\r
+    p_intf->p_sys->p_menus = new TMenusGen( p_intf );\r
+\r
+    /* show main window and wait until it is closed */\r
+    p_intf->p_sys->p_window->ShowModal();\r
+\r
+    if( p_intf->p_sys->p_disc ) delete p_intf->p_sys->p_disc;\r
+    if( p_intf->p_sys->p_network ) delete p_intf->p_sys->p_network;\r
+    if( p_intf->p_sys->p_preferences ) delete p_intf->p_sys->p_preferences;\r
+    delete p_intf->p_sys->p_menus;\r
+    delete p_intf->p_sys->p_messages;\r
+    delete p_intf->p_sys->p_playwin;\r
+    delete p_intf->p_sys->p_window;\r
+}\r
+\r
+/*****************************************************************************\r
+ * Win32Manage: manage main thread messages\r
+ *****************************************************************************\r
+ * In this function, called approx. 10 times a second, we check what the\r
+ * main program wanted to tell us.\r
+ *****************************************************************************/\r
+int Win32Manage( intf_thread_t *p_intf )\r
+{\r
+    vlc_mutex_lock( &p_intf->change_lock );\r
+\r
+    /* If the "display popup" flag has changed */\r
+    if( p_intf->b_menu_change )\r
+    {\r
+        /* FIXME: It would be nice to close the popup when the user left-clicks\r
+        elsewhere, or to actualize the position when he right-clicks again,\r
+        but i couldn't find a way to close it :-( */\r
+        TPoint MousePos = Mouse->CursorPos;\r
+        p_intf->p_sys->p_window->PopupMenuMain->Popup( MousePos.x, MousePos.y );\r
+        p_intf->b_menu_change = 0;\r
+    }\r
+\r
+    /* Update the log window */\r
+    p_intf->p_sys->p_messages->UpdateLog();\r
+\r
+    /* Update the playlist */\r
+    p_intf->p_sys->p_playwin->Manage();\r
+\r
+    /* Update the input */\r
+    if( p_intf->p_sys->p_input == NULL )\r
+    {\r
+        p_intf->p_sys->p_input = (input_thread_t *)\r
+            vlc_object_find( p_intf, VLC_OBJECT_INPUT, FIND_ANYWHERE );\r
+    }\r
+    else if( p_intf->p_sys->p_input->b_dead )\r
+    {\r
+        vlc_object_release( p_intf->p_sys->p_input );\r
+        p_intf->p_sys->p_input = NULL;\r
+    }\r
+\r
+    if( p_intf->p_sys->p_input != NULL && !p_intf->p_sys->p_input->b_die )\r
+    {\r
+        vlc_bool_t b_need_menus = VLC_FALSE;\r
+        input_thread_t  * p_input = p_intf->p_sys->p_input;\r
+        vlc_object_t * p_aout = NULL;\r
+        vlc_object_t * p_vout = NULL;\r
+\r
+        vlc_mutex_lock( &p_input->stream.stream_lock );\r
+\r
+        /* New input or stream map change */\r
+        if( p_input->stream.b_changed )\r
+        {\r
+            p_intf->p_sys->p_window->ModeManage();\r
+            b_need_menus = VLC_TRUE;\r
+            p_intf->p_sys->b_playing = 1;\r
+        }\r
+\r
+        /* Manage the slider */\r
+        if( p_input->stream.b_seekable && p_intf->p_sys->b_playing )\r
+        {\r
+            TTrackBar * TrackBar = p_intf->p_sys->p_window->TrackBar;\r
+            off_t NewValue = TrackBar->Position;\r
+\r
+#define p_area p_input->stream.p_selected_area\r
+            /* If the user hasn't touched the slider since the last time,\r
+             * then the input can safely change it */\r
+            if( NewValue == p_intf->p_sys->OldValue )\r
+            {\r
+                /* Update the value */\r
+                TrackBar->Position = p_intf->p_sys->OldValue =\r
+                    ( (off_t)SLIDER_MAX_VALUE * p_area->i_tell ) /\r
+                      p_area->i_size;\r
+            }\r
+            /* Otherwise, send message to the input if the user has\r
+             * finished dragging the slider */\r
+            else if( p_intf->p_sys->b_slider_free )\r
+            {\r
+                off_t i_seek = ( NewValue * p_area->i_size ) /\r
+                                 (off_t)SLIDER_MAX_VALUE;\r
+\r
+                /* release the lock to be able to seek */\r
+                vlc_mutex_unlock( &p_input->stream.stream_lock );\r
+                input_Seek( p_input, i_seek, INPUT_SEEK_SET );\r
+                vlc_mutex_lock( &p_input->stream.stream_lock );\r
+\r
+                /* Update the old value */\r
+                p_intf->p_sys->OldValue = NewValue;\r
+            }\r
+#    undef p_area\r
+\r
+        }\r
+\r
+        if( p_intf->p_sys->i_part != p_input->stream.p_selected_area->i_part )\r
+        {\r
+            p_intf->p_sys->b_chapter_update = 1;\r
+            b_need_menus = VLC_TRUE;\r
+        }\r
+\r
+        /* Does the audio output require to update the menus ? */\r
+        p_aout = (vlc_object_t *)vlc_object_find( p_intf, VLC_OBJECT_AOUT,\r
+                                                  FIND_ANYWHERE );\r
+        if( p_aout != NULL )\r
+        {\r
+            vlc_value_t val;\r
+            if( var_Get( p_aout, "intf-change", &val ) >= 0\r
+                && val.b_bool )\r
+            {\r
+                p_intf->p_sys->b_aout_update = 1;\r
+                b_need_menus = VLC_TRUE;\r
+            }\r
+\r
+            vlc_object_release( p_aout );\r
+        }\r
+\r
+        /* Does the video output require to update the menus ? */\r
+        p_vout = (vlc_object_t *)vlc_object_find( p_intf, VLC_OBJECT_VOUT,\r
+                                                   FIND_ANYWHERE );\r
+        if( p_vout != NULL )\r
+        {\r
+            vlc_value_t val;\r
+            if( var_Get( p_vout, "intf-change", &val ) >= 0\r
+                && val.b_bool )\r
+            {\r
+                p_intf->p_sys->b_vout_update = 1;\r
+                b_need_menus = VLC_TRUE;\r
+            }\r
+\r
+            if( var_Get( p_vout, "directx-on-top", &val ) >= 0 )\r
+            {\r
+                p_intf->p_sys->p_window->MenuOnTop->Checked = val.b_bool;\r
+                p_intf->p_sys->p_window->PopupOnTop->Checked = val.b_bool;\r
+            }\r
+\r
+            vlc_object_release( p_vout );\r
+        }\r
+\r
+        if( b_need_menus )\r
+        {\r
+            p_intf->p_sys->p_menus->SetupMenus();\r
+        }\r
+\r
+        vlc_mutex_unlock( &p_input->stream.stream_lock );\r
+    }\r
+    else if( p_intf->p_sys->b_playing && !p_intf->b_die )\r
+    {\r
+        p_intf->p_sys->p_window->ModeManage();\r
+        p_intf->p_sys->b_playing = 0;\r
+    }\r
+\r
+    if( p_intf->b_die )\r
+    {\r
+        vlc_mutex_unlock( &p_intf->change_lock );\r
+\r
+        /* Prepare to die, young Skywalker */\r
+        p_intf->p_sys->p_window->ModalResult = mrOk;\r
+\r
+        /* Just in case */\r
+        return( FALSE );\r
+    }\r
+\r
+    vlc_mutex_unlock( &p_intf->change_lock );\r
+\r
+    return( TRUE );\r
+}\r
+\r
+/*****************************************************************************\r
+ * Module descriptor\r
+ *****************************************************************************/\r
+\r
+#define MAX_LINES_TEXT N_("maximum number of lines in the log window")\r
+#define MAX_LINES_LONGTEXT N_( \\r
+    "You can set the maximum number of lines that the log window will display."\\r
+    " Enter -1 if you want to keep all messages." )\r
+\r
+vlc_module_begin();\r
+    add_category_hint( N_("Miscellaneous"), NULL );\r
+    add_integer( "intfwin-max-lines", 500, NULL, MAX_LINES_TEXT, MAX_LINES_LONGTEXT );\r
+    set_description( _("Native Windows interface module") );\r
+    set_capability( "interface", 100 );\r
+    set_callbacks( E_(Open), E_(Close) );\r
+    add_shortcut( "win" );\r
+    add_shortcut( "win32" );\r
+vlc_module_end();\r