interface.cpp
上传用户:riyaled888
上传日期:2009-03-27
资源大小:7338k
文件大小:34k
源码类别:

多媒体

开发平台:

MultiPlatform

  1. /*****************************************************************************
  2.  * interface.cpp : wxWindows plugin for vlc
  3.  *****************************************************************************
  4.  * Copyright (C) 2000-2004, 2003 VideoLAN
  5.  * $Id: interface.cpp 9111 2004-11-02 19:23:40Z gbazin $
  6.  *
  7.  * Authors: Gildas Bazin <gbazin@videolan.org>
  8.  *
  9.  * This program is free software; you can redistribute it and/or modify
  10.  * it under the terms of the GNU General Public License as published by
  11.  * the Free Software Foundation; either version 2 of the License, or
  12.  * (at your option) any later version.
  13.  *
  14.  * This program is distributed in the hope that it will be useful,
  15.  * but WITHOUT ANY WARRANTY; without even the implied warranty of
  16.  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  17.  * GNU General Public License for more details.
  18.  *
  19.  * You should have received a copy of the GNU General Public License
  20.  * along with this program; if not, write to the Free Software
  21.  * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111, USA.
  22.  *****************************************************************************/
  23. /*****************************************************************************
  24.  * Preamble
  25.  *****************************************************************************/
  26. #include <vlc/vlc.h>
  27. #include <vlc/aout.h>
  28. #include <vlc/vout.h>
  29. #include <vlc/intf.h>
  30. #include "wxwindows.h"
  31. /* include the toolbar graphics */
  32. #include "bitmaps/play.xpm"
  33. #include "bitmaps/pause.xpm"
  34. #include "bitmaps/stop.xpm"
  35. #include "bitmaps/prev.xpm"
  36. #include "bitmaps/next.xpm"
  37. #include "bitmaps/eject.xpm"
  38. #include "bitmaps/slow.xpm"
  39. #include "bitmaps/fast.xpm"
  40. #include "bitmaps/playlist.xpm"
  41. #include "bitmaps/speaker.xpm"
  42. #define TOOLBAR_BMP_WIDTH 16
  43. #define TOOLBAR_BMP_HEIGHT 16
  44. /* include the icon graphic */
  45. #include "../../../share/vlc32x32.xpm"
  46. /*****************************************************************************
  47.  * Local class declarations.
  48.  *****************************************************************************/
  49. class wxMenuExt: public wxMenu
  50. {
  51. public:
  52.     /* Constructor */
  53.     wxMenuExt( wxMenu* parentMenu, int id, const wxString& text,
  54.                    const wxString& helpString, wxItemKind kind,
  55.                    char *_psz_var, int _i_object_id, vlc_value_t _val,
  56.                    int _i_val_type );
  57.     virtual ~wxMenuExt() {};
  58.     char *psz_var;
  59.     int  i_val_type;
  60.     int  i_object_id;
  61.     vlc_value_t val;
  62. private:
  63. };
  64. class wxVolCtrl: public wxGauge
  65. {
  66. public:
  67.     /* Constructor */
  68.     wxVolCtrl( intf_thread_t *_p_intf, wxWindow* parent, wxWindowID id,
  69.                wxPoint = wxDefaultPosition, wxSize = wxSize( 20, -1 ) );
  70.     virtual ~wxVolCtrl() {};
  71.     void UpdateVolume();
  72.     void OnChange( wxMouseEvent& event );
  73. private:
  74.     intf_thread_t *p_intf;
  75.     DECLARE_EVENT_TABLE();
  76. };
  77. BEGIN_EVENT_TABLE(wxVolCtrl, wxWindow)
  78.     /* Mouse events */
  79.     EVT_LEFT_DOWN(wxVolCtrl::OnChange)
  80.     EVT_MOTION(wxVolCtrl::OnChange)
  81. END_EVENT_TABLE()
  82. /*****************************************************************************
  83.  * Event Table.
  84.  *****************************************************************************/
  85. DEFINE_LOCAL_EVENT_TYPE( wxEVT_INTF );
  86. /* IDs for the controls and the menu commands */
  87. enum
  88. {
  89.     /* menu items */
  90.     MenuDummy_Event = wxID_HIGHEST + 1000,
  91.     Exit_Event = wxID_HIGHEST,
  92.     OpenFileSimple_Event,
  93.     OpenAdv_Event,
  94.     OpenFile_Event,
  95.     OpenDisc_Event,
  96.     OpenNet_Event,
  97.     OpenCapture_Event,
  98.     OpenSat_Event,
  99.     OpenOther_Event,
  100.     EjectDisc_Event,
  101.     Wizard_Event,
  102.     Playlist_Event,
  103.     Logs_Event,
  104.     FileInfo_Event,
  105.     Prefs_Event,
  106.     Extended_Event,
  107. //    Undock_Event,
  108.     Bookmarks_Event,
  109.     Skins_Event,
  110.     SliderScroll_Event,
  111.     StopStream_Event,
  112.     PlayStream_Event,
  113.     PrevStream_Event,
  114.     NextStream_Event,
  115.     SlowStream_Event,
  116.     FastStream_Event,
  117.     /* it is important for the id corresponding to the "About" command to have
  118.      * this standard value as otherwise it won't be handled properly under Mac
  119.      * (where it is special and put into the "Apple" menu) */
  120.     About_Event = wxID_ABOUT
  121. };
  122. BEGIN_EVENT_TABLE(Interface, wxFrame)
  123.     /* Menu events */
  124.     EVT_MENU(Exit_Event, Interface::OnExit)
  125.     EVT_MENU(About_Event, Interface::OnAbout)
  126.     EVT_MENU(Playlist_Event, Interface::OnShowDialog)
  127.     EVT_MENU(Logs_Event, Interface::OnShowDialog)
  128.     EVT_MENU(FileInfo_Event, Interface::OnShowDialog)
  129.     EVT_MENU(Prefs_Event, Interface::OnShowDialog)
  130.     EVT_MENU_OPEN(Interface::OnMenuOpen)
  131.     EVT_MENU( Extended_Event, Interface::OnExtended )
  132. //    EVT_MENU( Undock_Event, Interface::OnUndock )
  133.     EVT_MENU( Bookmarks_Event, Interface::OnShowDialog)
  134. #if defined( __WXMSW__ ) || defined( __WXMAC__ )
  135.     EVT_CONTEXT_MENU(Interface::OnContextMenu2)
  136. #endif
  137.     EVT_RIGHT_UP(Interface::OnContextMenu)
  138.     /* Toolbar events */
  139.     EVT_MENU(OpenFileSimple_Event, Interface::OnShowDialog)
  140.     EVT_MENU(OpenAdv_Event, Interface::OnShowDialog)
  141.     EVT_MENU(OpenFile_Event, Interface::OnShowDialog)
  142.     EVT_MENU(OpenDisc_Event, Interface::OnShowDialog)
  143.     EVT_MENU(OpenNet_Event, Interface::OnShowDialog)
  144.     EVT_MENU(OpenCapture_Event, Interface::OnShowDialog)
  145.     EVT_MENU(OpenSat_Event, Interface::OnShowDialog)
  146.     EVT_MENU(Wizard_Event, Interface::OnShowDialog)
  147.     EVT_MENU(StopStream_Event, Interface::OnStopStream)
  148.     EVT_MENU(PlayStream_Event, Interface::OnPlayStream)
  149.     EVT_MENU(PrevStream_Event, Interface::OnPrevStream)
  150.     EVT_MENU(NextStream_Event, Interface::OnNextStream)
  151.     EVT_MENU(SlowStream_Event, Interface::OnSlowStream)
  152.     EVT_MENU(FastStream_Event, Interface::OnFastStream)
  153.     /* Slider events */
  154.     EVT_COMMAND_SCROLL(SliderScroll_Event, Interface::OnSliderUpdate)
  155.     /* Custom events */
  156.     EVT_COMMAND(0, wxEVT_INTF, Interface::OnControlEvent)
  157.     EVT_COMMAND(1, wxEVT_INTF, Interface::OnControlEvent)
  158. END_EVENT_TABLE()
  159. /*****************************************************************************
  160.  * Constructor.
  161.  *****************************************************************************/
  162. Interface::Interface( intf_thread_t *_p_intf ):
  163.     wxFrame( NULL, -1, wxT("VLC media player"),
  164.              wxDefaultPosition, wxSize(700,100), wxDEFAULT_FRAME_STYLE )
  165. {
  166.     /* Initializations */
  167.     p_intf = _p_intf;
  168.     i_old_playing_status = PAUSE_S;
  169.     b_extra = VLC_FALSE;
  170. //    b_undock = VLC_FALSE;
  171.     extra_window = NULL;
  172.     /* Give our interface a nice little icon */
  173.     SetIcon( wxIcon( vlc_xpm ) );
  174.     /* Create a sizer for the main frame */
  175.     frame_sizer = new wxBoxSizer( wxVERTICAL );
  176.     SetSizer( frame_sizer );
  177.     /* Create a dummy widget that can get the keyboard focus */
  178.     wxWindow *p_dummy = new wxWindow( this, 0, wxDefaultPosition,
  179.                                       wxSize(0,0) );
  180.     p_dummy->SetFocus();
  181.     frame_sizer->Add( p_dummy, 0, 0 );
  182.     /* Creation of the menu bar */
  183.     CreateOurMenuBar();
  184.     /* Creation of the tool bar */
  185.     CreateOurToolBar();
  186.     /* Create the extra panel */
  187.     extra_frame = new ExtraPanel( p_intf, this );
  188.     frame_sizer->Add( extra_frame, 0, wxEXPAND , 0 );
  189.     frame_sizer->Hide( extra_frame );
  190.     /* Creation of the status bar
  191.      * Helptext for menu items and toolbar tools will automatically get
  192.      * displayed here. */
  193.     int i_status_width[3] = {-6, -2, -9};
  194.     statusbar = CreateStatusBar( 3 );                            /* 2 fields */
  195.     statusbar->SetStatusWidths( 3, i_status_width );
  196.     statusbar->SetStatusText( wxString::Format(wxT("x%.2f"), 1.0), 1 );
  197.     /* Video window */
  198.     if( config_GetInt( p_intf, "wxwin-embed" ) )
  199.     {
  200.         VideoWindow( p_intf, this );
  201.         frame_sizer->Add( p_intf->p_sys->p_video_sizer, 1, wxEXPAND , 0 );
  202.     }
  203.     /* Creation of the slider sub-window */
  204.     CreateOurSlider();
  205.     frame_sizer->Add( slider_frame, 0, wxEXPAND , 0 );
  206.     frame_sizer->Hide( slider_frame );
  207.     /* Make sure we've got the right background colour */
  208.     SetBackgroundColour( slider_frame->GetBackgroundColour() );
  209.     /* Layout everything */
  210.     frame_sizer->Layout();
  211.     frame_sizer->Fit(this);
  212. #if wxUSE_DRAG_AND_DROP
  213.     /* Associate drop targets with the main interface */
  214.     SetDropTarget( new DragAndDrop( p_intf ) );
  215. #endif
  216.     SetupHotkeys();
  217.     /* Start timer */
  218.     timer = new Timer( p_intf, this );
  219. }
  220. Interface::~Interface()
  221. {
  222.     if( p_intf->p_sys->p_wxwindow )
  223.     {
  224.         delete p_intf->p_sys->p_wxwindow;
  225.     }
  226.     /* Clean up */
  227.     delete timer;
  228. }
  229. void Interface::Init()
  230. {
  231.     /* Misc init */
  232.     SetupHotkeys();
  233. }
  234. void Interface::Update()
  235. {
  236.     /* Misc updates */
  237.     ((wxVolCtrl *)volctrl)->UpdateVolume();
  238. }
  239. void Interface::OnControlEvent( wxCommandEvent& event )
  240. {
  241.     switch( event.GetId() )
  242.     {
  243.     case 0:
  244.         frame_sizer->Layout();
  245.         frame_sizer->Fit(this);
  246.         break;
  247.     case 1:
  248.         long i_style = GetWindowStyle();
  249.         if( event.GetInt() ) i_style |= wxSTAY_ON_TOP;
  250.         else i_style &= ~wxSTAY_ON_TOP;
  251.         SetWindowStyle( i_style );
  252.         break;
  253.     }
  254. }
  255. /*****************************************************************************
  256.  * Private methods.
  257.  *****************************************************************************/
  258. void Interface::CreateOurMenuBar()
  259. {
  260.     /* Create the "File" menu */
  261.     wxMenu *file_menu = new wxMenu;
  262.     file_menu->Append( OpenFileSimple_Event,
  263.                        wxU(_("Quick &Open File...tCtrl-O")) );
  264.     file_menu->AppendSeparator();
  265.     file_menu->Append( OpenFile_Event, wxU(_("Open &File...tCtrl-F")) );
  266.     file_menu->Append( OpenDisc_Event, wxU(_("Open &Disc...tCtrl-D")) );
  267.     file_menu->Append( OpenNet_Event,
  268.                        wxU(_("Open &Network Stream...tCtrl-N")) );
  269.     file_menu->Append( OpenCapture_Event,
  270.                        wxU(_("Open &Capture Device...tCtrl-C")) );
  271.     file_menu->AppendSeparator();
  272.     file_menu->Append( Wizard_Event, wxU(_("&Wizard...tCtrl-W")) );
  273.     file_menu->AppendSeparator();
  274.     file_menu->Append( Exit_Event, wxU(_("E&xittCtrl-X")) );
  275.     /* Create the "View" menu */
  276.     wxMenu *view_menu = new wxMenu;
  277.     view_menu->Append( Playlist_Event, wxU(_("&Playlist...tCtrl-P")) );
  278.     view_menu->Append( Logs_Event, wxU(_("&Messages...tCtrl-M")) );
  279.     view_menu->Append( FileInfo_Event,
  280.                        wxU(_("Stream and Media &info...tCtrl-I")) );
  281.     /* Create the "Auto-generated" menus */
  282.     p_settings_menu = SettingsMenu( p_intf, this );
  283.     p_audio_menu = AudioMenu( p_intf, this );
  284.     p_video_menu = VideoMenu( p_intf, this );
  285.     p_navig_menu = NavigMenu( p_intf, this );
  286.     /* Create the "Help" menu */
  287.     wxMenu *help_menu = new wxMenu;
  288.     help_menu->Append( About_Event, wxU(_("About VLC media player")) );
  289.     /* Append the freshly created menus to the menu bar... */
  290.     wxMenuBar *menubar = new wxMenuBar( wxMB_DOCKABLE );
  291.     menubar->Append( file_menu, wxU(_("&File")) );
  292.     menubar->Append( view_menu, wxU(_("&View")) );
  293.     menubar->Append( p_settings_menu, wxU(_("&Settings")) );
  294.     menubar->Append( p_audio_menu, wxU(_("&Audio")) );
  295.     menubar->Append( p_video_menu, wxU(_("&Video")) );
  296.     menubar->Append( p_navig_menu, wxU(_("&Navigation")) );
  297.     menubar->Append( help_menu, wxU(_("&Help")) );
  298.     /* Attach the menu bar to the frame */
  299.     SetMenuBar( menubar );
  300.     /* Find out size of menu bar */
  301.     int i_size = 0;
  302.     for( unsigned int i = 0; i < menubar->GetMenuCount(); i++ )
  303.     {
  304.         int i_width, i_height;
  305.         menubar->GetTextExtent( menubar->GetLabelTop(i), &i_width, &i_height );
  306.         i_size += i_width +
  307. #if defined(__WXGTK__)
  308.             22 /* approximate margin */;
  309. #else
  310. #if (wxMAJOR_VERSION <= 2) && (wxMINOR_VERSION <= 5) && (wxRELEASE_NUMBER < 3)
  311.             4 /* approximate margin */;
  312. #else
  313.             18 /* approximate margin */;
  314. #endif
  315. #endif
  316.     }
  317.     frame_sizer->SetMinSize( i_size, -1 );
  318.     /* Intercept all menu events in our custom event handler */
  319.     PushEventHandler( new MenuEvtHandler( p_intf, this ) );
  320. #if wxUSE_DRAG_AND_DROP
  321.     /* Associate drop targets with the menubar */
  322.     menubar->SetDropTarget( new DragAndDrop( p_intf ) );
  323. #endif
  324. }
  325. class VLCVolCtrl : public wxControl
  326. {
  327. public:
  328.     VLCVolCtrl( intf_thread_t *p_intf, wxWindow *p_parent, wxGauge ** );
  329.     virtual ~VLCVolCtrl() {};
  330.     virtual void OnPaint( wxPaintEvent &event );
  331.   private:
  332.     DECLARE_EVENT_TABLE()
  333.     int i_y_offset;
  334. };
  335. BEGIN_EVENT_TABLE(VLCVolCtrl, wxControl)
  336.    EVT_PAINT(VLCVolCtrl::OnPaint)
  337. END_EVENT_TABLE()
  338. #if defined(__WXGTK__)
  339. #define VLCVOL_HEIGHT p_parent->GetSize().GetHeight()
  340. #else
  341. #define VLCVOL_HEIGHT TOOLBAR_BMP_HEIGHT
  342. #endif
  343. VLCVolCtrl::VLCVolCtrl( intf_thread_t *p_intf, wxWindow *p_parent,
  344.                         wxGauge **pp_volctrl )
  345.   :wxControl( p_parent, -1, wxDefaultPosition, wxSize(64, VLCVOL_HEIGHT ),
  346.               wxBORDER_NONE ),
  347.    i_y_offset((VLCVOL_HEIGHT - TOOLBAR_BMP_HEIGHT) / 2)
  348. {
  349.     *pp_volctrl = new wxVolCtrl( p_intf, this, -1, wxPoint( 18, i_y_offset ),
  350.                                  wxSize( 44, TOOLBAR_BMP_HEIGHT ) );
  351. }
  352. void VLCVolCtrl::OnPaint( wxPaintEvent &evt )
  353. {
  354.     wxPaintDC dc( this );
  355.     wxBitmap mPlayBitmap( speaker_xpm );
  356.     dc.DrawBitmap( mPlayBitmap, 0, i_y_offset, TRUE );
  357. }
  358. void Interface::CreateOurToolBar()
  359. {
  360. #define HELP_OPEN N_("Open")
  361. #define HELP_STOP N_("Stop")
  362. #define HELP_PLAY N_("Play")
  363. #define HELP_PAUSE N_("Pause")
  364. #define HELP_PLO N_("Playlist")
  365. #define HELP_PLP N_("Previous playlist item")
  366. #define HELP_PLN N_("Next playlist item")
  367. #define HELP_SLOW N_("Play slower")
  368. #define HELP_FAST N_("Play faster")
  369.     wxLogNull LogDummy; /* Hack to suppress annoying log message on the win32
  370.                          * version because we don't include wx.rc */
  371.     wxToolBar *toolbar =
  372.         CreateToolBar( wxTB_HORIZONTAL | wxTB_FLAT | wxTB_DOCKABLE );
  373.     toolbar->SetToolBitmapSize( wxSize(TOOLBAR_BMP_WIDTH,TOOLBAR_BMP_HEIGHT) );
  374.     toolbar->AddTool( OpenFile_Event, wxT(""),
  375.                       wxBitmap( eject_xpm ), wxU(_(HELP_OPEN)) );
  376.     toolbar->AddSeparator();
  377.     toolbar->AddTool( PlayStream_Event, wxT(""), wxBitmap( play_xpm ),
  378.                       wxU(_(HELP_PLAY)) );
  379. #if 0
  380.     toolbar->AddTool( PlayStream_Event, wxT(""), wxBitmap( pause_xpm ),
  381.                       wxU(_(HELP_PAUSE)) );
  382. #endif
  383.     toolbar->AddTool( StopStream_Event, wxT(""), wxBitmap( stop_xpm ),
  384.                       wxU(_(HELP_STOP)) );
  385.     toolbar->AddSeparator();
  386.     toolbar->AddTool( PrevStream_Event, wxT(""),
  387.                       wxBitmap( prev_xpm ), wxU(_(HELP_PLP)) );
  388.     toolbar->AddTool( SlowStream_Event, wxT(""),
  389.                       wxBitmap( slow_xpm ), wxU(_(HELP_SLOW)) );
  390.     toolbar->AddTool( FastStream_Event, wxT(""),
  391.                       wxBitmap( fast_xpm ), wxU(_(HELP_FAST)) );
  392.     toolbar->AddTool( NextStream_Event, wxT(""), wxBitmap( next_xpm ),
  393.                       wxU(_(HELP_PLN)) );
  394.     toolbar->AddSeparator();
  395.     toolbar->AddTool( Playlist_Event, wxT(""), wxBitmap( playlist_xpm ),
  396.                       wxU(_(HELP_PLO)) );
  397.     wxControl *p_dummy_ctrl =
  398.         new wxControl( toolbar, -1, wxDefaultPosition,
  399.                        wxSize(35, 16 ), wxBORDER_NONE );
  400.     toolbar->AddControl( p_dummy_ctrl );
  401.     VLCVolCtrl *sound_control = new VLCVolCtrl( p_intf, toolbar, &volctrl );
  402.     toolbar->AddControl( sound_control );
  403.     toolbar->Realize();
  404. #if wxUSE_DRAG_AND_DROP
  405.     /* Associate drop targets with the toolbar */
  406.     toolbar->SetDropTarget( new DragAndDrop( p_intf ) );
  407. #endif
  408. }
  409. void Interface::CreateOurSlider()
  410. {
  411.     /* Create a new frame and sizer containing the slider */
  412.     slider_frame = new wxPanel( this, -1, wxDefaultPosition, wxDefaultSize );
  413.     slider_frame->SetAutoLayout( TRUE );
  414.     wxBoxSizer *frame_sizer = new wxBoxSizer( wxHORIZONTAL );
  415.     //frame_sizer->SetMinSize( -1, 50 );
  416.     /* Create slider */
  417.     slider = new wxSlider( slider_frame, SliderScroll_Event, 0, 0,
  418.                            SLIDER_MAX_POS, wxDefaultPosition, wxDefaultSize );
  419.     /* Add everything to the frame */
  420.     frame_sizer->Add( slider, 1, wxEXPAND | wxALL, 5 );
  421.     slider_frame->SetSizer( frame_sizer );
  422.     frame_sizer->Layout();
  423.     frame_sizer->SetSizeHints(slider_frame);
  424.     /* Hide the slider by default */
  425.     slider_frame->Hide();
  426. }
  427. static int ConvertHotkeyModifiers( int i_hotkey )
  428. {
  429.     int i_accel_flags = 0;
  430.     if( i_hotkey & KEY_MODIFIER_ALT ) i_accel_flags |= wxACCEL_ALT;
  431.     if( i_hotkey & KEY_MODIFIER_CTRL ) i_accel_flags |= wxACCEL_CTRL;
  432.     if( i_hotkey & KEY_MODIFIER_SHIFT ) i_accel_flags |= wxACCEL_SHIFT;
  433.     if( !i_accel_flags ) i_accel_flags = wxACCEL_NORMAL;
  434.     return i_accel_flags;
  435. }
  436. static int ConvertHotkey( int i_hotkey )
  437. {
  438.     int i_key = i_hotkey & ~KEY_MODIFIER;
  439.     if( i_key & KEY_ASCII ) return i_key & KEY_ASCII;
  440.     else if( i_key & KEY_SPECIAL )
  441.     {
  442.         switch ( i_key )
  443.         {
  444.         case KEY_LEFT: return WXK_LEFT;
  445.         case KEY_RIGHT: return WXK_RIGHT;
  446.         case KEY_UP: return WXK_UP;
  447.         case KEY_DOWN: return WXK_DOWN;
  448.         case KEY_SPACE: return WXK_SPACE;
  449.         case KEY_ENTER: return WXK_RETURN;
  450.         case KEY_F1: return WXK_F1;
  451.         case KEY_F2: return WXK_F2;
  452.         case KEY_F3: return WXK_F3;
  453.         case KEY_F4: return WXK_F4;
  454.         case KEY_F5: return WXK_F5;
  455.         case KEY_F6: return WXK_F6;
  456.         case KEY_F7: return WXK_F7;
  457.         case KEY_F8: return WXK_F8;
  458.         case KEY_F9: return WXK_F9;
  459.         case KEY_F10: return WXK_F10;
  460.         case KEY_F11: return WXK_F11;
  461.         case KEY_F12: return WXK_F12;
  462.         case KEY_HOME: return WXK_HOME;
  463.         case KEY_END: return WXK_HOME;
  464.         case KEY_MENU: return WXK_MENU;
  465.         case KEY_ESC: return WXK_ESCAPE;
  466.         case KEY_PAGEUP: return WXK_PRIOR;
  467.         case KEY_PAGEDOWN: return WXK_NEXT;
  468.         case KEY_TAB: return WXK_TAB;
  469.         case KEY_BACKSPACE: return WXK_BACK;
  470.         }
  471.     }
  472.     return WXK_F24;
  473. }
  474. void Interface::SetupHotkeys()
  475. {
  476.     struct vlc_t::hotkey *p_hotkeys = p_intf->p_vlc->p_hotkeys;
  477.     int i_hotkeys;
  478.     /* Count number of hoteys */
  479.     for( i_hotkeys = 0; p_hotkeys[i_hotkeys].psz_action != NULL; i_hotkeys++ );
  480.     p_intf->p_sys->i_first_hotkey_event = wxID_HIGHEST + 7000;
  481.     p_intf->p_sys->i_hotkeys = i_hotkeys;
  482.     wxAcceleratorEntry p_entries[i_hotkeys];
  483.     /* Setup the hotkeys as accelerators */
  484.     for( int i = 0; i < i_hotkeys; i++ )
  485.     {
  486.         p_entries[i].Set( ConvertHotkeyModifiers( p_hotkeys[i].i_key ),
  487.                           ConvertHotkey( p_hotkeys[i].i_key ),
  488.                           p_intf->p_sys->i_first_hotkey_event + i );
  489.     }
  490.     wxAcceleratorTable accel( i_hotkeys, p_entries );
  491.     if( !accel.Ok() )
  492.     {
  493.         msg_Err( p_intf, "invalid accelerator table" );
  494.     }
  495.     else
  496.     {
  497.         SetAcceleratorTable( accel );
  498.         msg_Dbg( p_intf, "accelerator table loaded" );
  499.     }
  500. }
  501. /*****************************************************************************
  502.  * Event Handlers.
  503.  *****************************************************************************/
  504. void Interface::OnMenuOpen(wxMenuEvent& event)
  505. {
  506. #if defined( __WXMSW__ )
  507. #   define GetEventObject GetMenu
  508. #endif
  509.     if( event.GetEventObject() == p_settings_menu )
  510.     {
  511.         p_settings_menu = SettingsMenu( p_intf, this, p_settings_menu );
  512.         /* Add static items */
  513.         p_settings_menu->AppendCheckItem( Extended_Event,
  514.             wxU(_("&Extended GUI") ) );
  515.         if( b_extra ) p_settings_menu->Check( Extended_Event, TRUE );
  516. #if 0
  517.         p_settings_menu->AppendCheckItem( Undock_Event,
  518.             wxU(_("&Undock Ext. GUI") ) );
  519.         if( b_undock ) p_settings_menu->Check( Undock_Event, TRUE );
  520. #endif
  521.         p_settings_menu->Append( Bookmarks_Event, wxU(_("&Bookmarks...") ) );
  522.         p_settings_menu->Append( Prefs_Event, wxU(_("&Preferences...")) );
  523.     }
  524.     else if( event.GetEventObject() == p_audio_menu )
  525.     {
  526.         p_audio_menu = AudioMenu( p_intf, this, p_audio_menu );
  527.     }
  528.     else if( event.GetEventObject() == p_video_menu )
  529.     {
  530.         p_video_menu = VideoMenu( p_intf, this, p_video_menu );
  531.     }
  532.     else if( event.GetEventObject() == p_navig_menu )
  533.     {
  534.         p_navig_menu = NavigMenu( p_intf, this, p_navig_menu );
  535.     }
  536. #if defined( __WXMSW__ )
  537. #   undef GetEventObject
  538. #endif
  539. }
  540. #if defined( __WXMSW__ ) || defined( __WXMAC__ )
  541. void Interface::OnContextMenu2(wxContextMenuEvent& event)
  542. {
  543.     /* Only show the context menu for the main interface */
  544.     if( GetId() != event.GetId() )
  545.     {
  546.         event.Skip();
  547.         return;
  548.     }
  549.     if( p_intf->p_sys->pf_show_dialog )
  550.         p_intf->p_sys->pf_show_dialog( p_intf, INTF_DIALOG_POPUPMENU, 1, 0 );
  551. }
  552. #endif
  553. void Interface::OnContextMenu(wxMouseEvent& event)
  554. {
  555.     if( p_intf->p_sys->pf_show_dialog )
  556.         p_intf->p_sys->pf_show_dialog( p_intf, INTF_DIALOG_POPUPMENU, 1, 0 );
  557. }
  558. void Interface::OnExit( wxCommandEvent& WXUNUSED(event) )
  559. {
  560.     /* TRUE is to force the frame to close. */
  561.     Close(TRUE);
  562. }
  563. void Interface::OnAbout( wxCommandEvent& WXUNUSED(event) )
  564. {
  565.     wxString msg;
  566.     msg.Printf( wxString(wxT("VLC media player " PACKAGE_VERSION)) +
  567.         wxU(_(" (wxWindows interface)nn")) +
  568.         wxU(_("(c) 1996-2004 - the VideoLAN Teamnn")) +
  569.         wxU( vlc_wraptext(INTF_ABOUT_MSG,WRAPCOUNT,ISUTF8) ) + wxT("nn") +
  570.         wxU(_("The VideoLAN team <videolan@videolan.org>n"
  571.               "http://www.videolan.org/nn")) );
  572.     wxMessageBox( msg, wxString::Format(wxU(_("About %s")),
  573.                   wxT("VLC media player")), wxOK | wxICON_INFORMATION, this );
  574. }
  575. void Interface::OnShowDialog( wxCommandEvent& event )
  576. {
  577.     if( p_intf->p_sys->pf_show_dialog )
  578.     {
  579.         int i_id;
  580.         switch( event.GetId() )
  581.         {
  582.         case OpenFileSimple_Event:
  583.             i_id = INTF_DIALOG_FILE_SIMPLE;
  584.             break;
  585.         case OpenAdv_Event:
  586.             i_id = INTF_DIALOG_FILE;
  587.         case OpenFile_Event:
  588.             i_id = INTF_DIALOG_FILE;
  589.             break;
  590.         case OpenDisc_Event:
  591.             i_id = INTF_DIALOG_DISC;
  592.             break;
  593.         case OpenNet_Event:
  594.             i_id = INTF_DIALOG_NET;
  595.             break;
  596.         case OpenCapture_Event:
  597.             i_id = INTF_DIALOG_CAPTURE;
  598.             break;
  599.         case OpenSat_Event:
  600.             i_id = INTF_DIALOG_SAT;
  601.             break;
  602.         case Playlist_Event:
  603.             i_id = INTF_DIALOG_PLAYLIST;
  604.             break;
  605.         case Logs_Event:
  606.             i_id = INTF_DIALOG_MESSAGES;
  607.             break;
  608.         case FileInfo_Event:
  609.             i_id = INTF_DIALOG_FILEINFO;
  610.             break;
  611.         case Prefs_Event:
  612.             i_id = INTF_DIALOG_PREFS;
  613.             break;
  614.         case Wizard_Event:
  615.             i_id = INTF_DIALOG_WIZARD;
  616.             break;
  617.         case Bookmarks_Event:
  618.             i_id = INTF_DIALOG_BOOKMARKS;
  619.             break;
  620.         default:
  621.             i_id = INTF_DIALOG_FILE;
  622.             break;
  623.         }
  624.         p_intf->p_sys->pf_show_dialog( p_intf, i_id, 1, 0 );
  625.     }
  626. }
  627. void Interface::OnExtended(wxCommandEvent& event)
  628. {
  629.     b_extra = (b_extra == VLC_TRUE ? VLC_FALSE : VLC_TRUE );
  630.     if( b_extra == VLC_FALSE )
  631.     {
  632.         extra_frame->Hide();
  633.         frame_sizer->Hide( extra_frame );
  634.     }
  635.     else
  636.     {
  637.         extra_frame->Show();
  638.         frame_sizer->Show( extra_frame );
  639.     }
  640.     frame_sizer->Layout();
  641.     frame_sizer->Fit(this);
  642. }
  643. #if 0
  644.         if( b_undock == VLC_TRUE )
  645.         {
  646.                 fprintf(stderr,"Deleting windown");
  647.             if( extra_window )
  648.             {
  649.                 delete extra_window;
  650.                 extra_window = NULL;
  651.             }
  652.         }
  653.         else
  654.         {
  655.             extra_frame->Hide();
  656.             frame_sizer->Hide( extra_frame );
  657.             frame_sizer->Layout();
  658.             frame_sizer->Fit(this);
  659.         }
  660.     }
  661.     else
  662.     {
  663.         if( b_undock == VLC_TRUE )
  664.         {
  665.                 fprintf(stderr,"Creating windown");
  666.             extra_frame->Hide();
  667.             frame_sizer->Hide( extra_frame );
  668.             frame_sizer->Detach( extra_frame );
  669.             frame_sizer->Layout();
  670.             frame_sizer->Fit(this);
  671.             extra_window = new ExtraWindow( p_intf, this, extra_frame );
  672.         }
  673.         else
  674.         {
  675.                 fprintf(stderr,"Deleting windown");
  676.             if( extra_window )
  677.             {
  678.                 delete extra_window;
  679.             }
  680.             extra_frame->Show();
  681.             frame_sizer->Show( extra_frame );
  682.             frame_sizer->Layout();
  683.             frame_sizer->Fit(this);
  684.         }
  685.     }
  686. }
  687. void Interface::OnUndock(wxCommandEvent& event)
  688. {
  689.     b_undock = (b_undock == VLC_TRUE ? VLC_FALSE : VLC_TRUE );
  690.     if( b_extra == VLC_TRUE )
  691.     {
  692.         if( b_undock == VLC_FALSE )
  693.         {
  694.                 fprintf(stderr,"Deleting windown");
  695.             if( extra_window )
  696.             {
  697.                 delete extra_window;
  698.                 extra_window = NULL;
  699.             }
  700.             extra_frame->Show();
  701.             frame_sizer->Show( extra_frame );
  702.             frame_sizer->Layout();
  703.             frame_sizer->Fit(this);
  704.         }
  705.         else
  706.         {
  707.                 fprintf(stderr,"Creating windown");
  708.             extra_frame->Hide();
  709.             frame_sizer->Hide( extra_frame );
  710.             frame_sizer->Detach( extra_frame );
  711.             frame_sizer->Layout();
  712.             frame_sizer->Fit(this);
  713.             extra_window = new ExtraWindow( p_intf, this, extra_frame );
  714.         }
  715.     }
  716. }
  717. #endif
  718. void Interface::OnPlayStream( wxCommandEvent& WXUNUSED(event) )
  719. {
  720.     wxCommandEvent dummy;
  721.     playlist_t *p_playlist =
  722.         (playlist_t *)vlc_object_find( p_intf, VLC_OBJECT_PLAYLIST,
  723.                                        FIND_ANYWHERE );
  724.     if( p_playlist == NULL ) return;
  725.     if( p_playlist->i_size && p_playlist->i_enabled )
  726.     {
  727.         vlc_value_t state;
  728.         input_thread_t *p_input = (input_thread_t *)vlc_object_find( p_intf,
  729.                                                        VLC_OBJECT_INPUT,
  730.                                                        FIND_ANYWHERE );
  731.         if( p_input == NULL )
  732.         {
  733.             /* No stream was playing, start one */
  734.             playlist_Play( p_playlist );
  735.             TogglePlayButton( PLAYING_S );
  736.             vlc_object_release( p_playlist );
  737.             return;
  738.         }
  739.         var_Get( p_input, "state", &state );
  740.         if( state.i_int != PAUSE_S )
  741.         {
  742.             /* A stream is being played, pause it */
  743.             state.i_int = PAUSE_S;
  744.         }
  745.         else
  746.         {
  747.             /* Stream is paused, resume it */
  748.             state.i_int = PLAYING_S;
  749.         }
  750.         var_Set( p_input, "state", state );
  751.         TogglePlayButton( state.i_int );
  752.         vlc_object_release( p_input );
  753.         vlc_object_release( p_playlist );
  754.     }
  755.     else
  756.     {
  757.         /* If the playlist is empty, open a file requester instead */
  758.         vlc_object_release( p_playlist );
  759.         OnShowDialog( dummy );
  760.     }
  761. }
  762. void Interface::OnStopStream( wxCommandEvent& WXUNUSED(event) )
  763. {
  764.     playlist_t * p_playlist =
  765.         (playlist_t *)vlc_object_find( p_intf, VLC_OBJECT_PLAYLIST,
  766.                                        FIND_ANYWHERE );
  767.     if( p_playlist == NULL )
  768.     {
  769.         return;
  770.     }
  771.     playlist_Stop( p_playlist );
  772.     TogglePlayButton( PAUSE_S );
  773.     vlc_object_release( p_playlist );
  774. }
  775. void Interface::OnSliderUpdate( wxScrollEvent& event )
  776. {
  777.     vlc_mutex_lock( &p_intf->change_lock );
  778. #ifdef WIN32
  779.     if( event.GetEventType() == wxEVT_SCROLL_THUMBRELEASE
  780.         || event.GetEventType() == wxEVT_SCROLL_ENDSCROLL )
  781.     {
  782. #endif
  783.         if( p_intf->p_sys->i_slider_pos != event.GetPosition()
  784.             && p_intf->p_sys->p_input )
  785.         {
  786.             vlc_value_t pos;
  787.             pos.f_float = (float)event.GetPosition() / (float)SLIDER_MAX_POS;
  788.             var_Set( p_intf->p_sys->p_input, "position", pos );
  789.         }
  790. #ifdef WIN32
  791.         p_intf->p_sys->b_slider_free = VLC_TRUE;
  792.     }
  793.     else
  794.     {
  795.         p_intf->p_sys->b_slider_free = VLC_FALSE;
  796.         if( p_intf->p_sys->p_input )
  797.         {
  798.             /* Update stream date */
  799.             char psz_time[ MSTRTIME_MAX_SIZE ], psz_total[ MSTRTIME_MAX_SIZE ];
  800.             mtime_t i_seconds;
  801.             vlc_value_t val;
  802.             i_seconds = var_GetTime( p_intf->p_sys->p_input, "length" ) / I64C(1000000 );
  803.             secstotimestr( psz_total, i_seconds );
  804.             i_seconds = var_GetTime( p_intf->p_sys->p_input, "time" ) / I64C(1000000 );
  805.             secstotimestr( psz_time, i_seconds );
  806.             statusbar->SetStatusText( wxU(psz_time)+ wxString(wxT(" / ")) + wxU(psz_total), 0 );
  807.         }
  808.     }
  809. #endif
  810. #undef WIN32
  811.     vlc_mutex_unlock( &p_intf->change_lock );
  812. }
  813. void Interface::OnPrevStream( wxCommandEvent& WXUNUSED(event) )
  814. {
  815.     playlist_t * p_playlist =
  816.         (playlist_t *)vlc_object_find( p_intf, VLC_OBJECT_PLAYLIST,
  817.                                        FIND_ANYWHERE );
  818.     if( p_playlist == NULL )
  819.     {
  820.         return;
  821.     }
  822.     /* FIXME --fenrir */
  823. #if 0
  824.     if( p_playlist->p_input != NULL )
  825.     {
  826.         vlc_mutex_lock( &p_playlist->p_input->stream.stream_lock );
  827.         if( p_playlist->p_input->stream.p_selected_area->i_id > 1 )
  828.         {
  829.             vlc_value_t val; val.b_bool = VLC_TRUE;
  830.             vlc_mutex_unlock( &p_playlist->p_input->stream.stream_lock );
  831.             var_Set( p_playlist->p_input, "prev-title", val );
  832.         } else
  833.             vlc_mutex_unlock( &p_playlist->p_input->stream.stream_lock );
  834.     }
  835.     vlc_mutex_unlock( &p_playlist->object_lock );
  836. #endif
  837.     playlist_Prev( p_playlist );
  838.     vlc_object_release( p_playlist );
  839. }
  840. void Interface::OnNextStream( wxCommandEvent& WXUNUSED(event) )
  841. {
  842.     playlist_t * p_playlist =
  843.         (playlist_t *)vlc_object_find( p_intf, VLC_OBJECT_PLAYLIST,
  844.                                        FIND_ANYWHERE );
  845.     if( p_playlist == NULL )
  846.     {
  847.         return;
  848.     }
  849.     /* FIXME --fenrir */
  850. #if 0
  851.     var_Change( p_input, "title", VLC_VAR_CHOICESCOUNT, &val, NULL );
  852.     vlc_mutex_lock( &p_playlist->object_lock );
  853.     if( p_playlist->p_input != NULL )
  854.     {
  855.         vlc_mutex_lock( &p_playlist->p_input->stream.stream_lock );
  856.         if( p_playlist->p_input->stream.i_area_nb > 1 &&
  857.             p_playlist->p_input->stream.p_selected_area->i_id <
  858.               p_playlist->p_input->stream.i_area_nb - 1 )
  859.         {
  860.             vlc_value_t val; val.b_bool = VLC_TRUE;
  861.             vlc_mutex_unlock( &p_playlist->p_input->stream.stream_lock );
  862.             var_Set( p_playlist->p_input, "next-title", val );
  863.         } else
  864.             vlc_mutex_unlock( &p_playlist->p_input->stream.stream_lock );
  865.     }
  866.     vlc_mutex_unlock( &p_playlist->object_lock );
  867. #endif
  868.     playlist_Next( p_playlist );
  869.     vlc_object_release( p_playlist );
  870. }
  871. void Interface::OnSlowStream( wxCommandEvent& WXUNUSED(event) )
  872. {
  873.     input_thread_t *p_input =
  874.         (input_thread_t *)vlc_object_find( p_intf, VLC_OBJECT_INPUT,
  875.                                            FIND_ANYWHERE );
  876.     if( p_input )
  877.     {
  878.         vlc_value_t val; val.b_bool = VLC_TRUE;
  879.         var_Set( p_input, "rate-slower", val );
  880.         vlc_object_release( p_input );
  881.     }
  882. }
  883. void Interface::OnFastStream( wxCommandEvent& WXUNUSED(event) )
  884. {
  885.     input_thread_t *p_input =
  886.         (input_thread_t *)vlc_object_find( p_intf, VLC_OBJECT_INPUT,
  887.                                            FIND_ANYWHERE );
  888.     if( p_input )
  889.     {
  890.         vlc_value_t val; val.b_bool = VLC_TRUE;
  891.         var_Set( p_input, "rate-faster", val );
  892.         vlc_object_release( p_input );
  893.     }
  894. }
  895. void Interface::TogglePlayButton( int i_playing_status )
  896. {
  897.     if( i_playing_status == i_old_playing_status )
  898.         return;
  899.     GetToolBar()->DeleteTool( PlayStream_Event );
  900.     if( i_playing_status == PLAYING_S )
  901.     {
  902.         GetToolBar()->InsertTool( 2, PlayStream_Event, wxU(_("Pause")),
  903.                                   wxBitmap( pause_xpm ), wxNullBitmap,
  904.                                   wxITEM_NORMAL, wxU(_(HELP_PAUSE)) );
  905.     }
  906.     else
  907.     {
  908.         GetToolBar()->InsertTool( 2, PlayStream_Event, wxU(_("Play")),
  909.                                   wxBitmap( play_xpm ), wxNullBitmap,
  910.                                   wxITEM_NORMAL, wxU(_(HELP_PLAY)) );
  911.     }
  912.     GetToolBar()->Realize();
  913.     i_old_playing_status = i_playing_status;
  914. }
  915. #if wxUSE_DRAG_AND_DROP
  916. /*****************************************************************************
  917.  * Definition of DragAndDrop class.
  918.  *****************************************************************************/
  919. DragAndDrop::DragAndDrop( intf_thread_t *_p_intf, vlc_bool_t _b_enqueue )
  920. {
  921.     p_intf = _p_intf;
  922.     b_enqueue = _b_enqueue;
  923. }
  924. bool DragAndDrop::OnDropFiles( wxCoord, wxCoord,
  925.                                const wxArrayString& filenames )
  926. {
  927.     /* Add dropped files to the playlist */
  928.     playlist_t *p_playlist =
  929.         (playlist_t *)vlc_object_find( p_intf, VLC_OBJECT_PLAYLIST,
  930.                                        FIND_ANYWHERE );
  931.     if( p_playlist == NULL )
  932.     {
  933.         return FALSE;
  934.     }
  935.     for( size_t i = 0; i < filenames.GetCount(); i++ )
  936.         playlist_Add( p_playlist, (const char *)filenames[i].mb_str(),
  937.                       (const char *)filenames[i].mb_str(),
  938.                       PLAYLIST_APPEND | ((i | b_enqueue) ? 0 : PLAYLIST_GO),
  939.                       PLAYLIST_END );
  940.     vlc_object_release( p_playlist );
  941.     return TRUE;
  942. }
  943. #endif
  944. /*****************************************************************************
  945.  * Definition of VolCtrl class.
  946.  *****************************************************************************/
  947. wxVolCtrl::wxVolCtrl( intf_thread_t *_p_intf, wxWindow* parent, wxWindowID id,
  948.                       wxPoint point, wxSize size )
  949.   : wxGauge( parent, id, 200, point, size, wxGA_HORIZONTAL | wxGA_SMOOTH )
  950. {
  951.     p_intf = _p_intf;
  952.     UpdateVolume();
  953. }
  954. void wxVolCtrl::OnChange( wxMouseEvent& event )
  955. {
  956.     if( !event.LeftDown() && !event.LeftIsDown() ) return;
  957.     int i_volume = event.GetX() * 200 / GetClientSize().GetWidth();
  958.     aout_VolumeSet( p_intf, i_volume * AOUT_VOLUME_MAX / 200 / 2 );
  959.     UpdateVolume();
  960. }
  961. void wxVolCtrl::UpdateVolume()
  962. {
  963.     audio_volume_t i_volume;
  964.     aout_VolumeGet( p_intf, &i_volume );
  965.     int i_gauge_volume = i_volume * 200 * 2 / AOUT_VOLUME_MAX;
  966.     if( i_gauge_volume == GetValue() ) return;
  967.     SetValue( i_gauge_volume );
  968.     SetToolTip( wxString::Format((wxString)wxU(_("Volume")) + wxT(" %d"),
  969.                 i_gauge_volume / 2 ) );
  970. }