]> git.sesse.net Git - vlc/blob - modules/gui/wxwidgets/interface.cpp
Forgot to change a few variable names (refs #80)
[vlc] / modules / gui / wxwidgets / interface.cpp
1 /*****************************************************************************
2  * interface.cpp : wxWidgets plugin for vlc
3  *****************************************************************************
4  * Copyright (C) 2000-2005 the VideoLAN team
5  * $Id$
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 /*****************************************************************************
25  * Preamble
26  *****************************************************************************/
27 #include <vlc/vlc.h>
28 #include <vlc/aout.h>
29 #include <vlc/vout.h>
30 #include <vlc/input.h>
31 #include <vlc/intf.h>
32
33 #include "wxwidgets.h"
34
35 /* include the toolbar graphics */
36 #include "bitmaps/play.xpm"
37 #include "bitmaps/pause.xpm"
38 #include "bitmaps/stop.xpm"
39 #include "bitmaps/prev.xpm"
40 #include "bitmaps/next.xpm"
41 #include "bitmaps/eject.xpm"
42 #include "bitmaps/slow.xpm"
43 #include "bitmaps/fast.xpm"
44 #include "bitmaps/playlist.xpm"
45 #include "bitmaps/speaker.xpm"
46 #include "bitmaps/speaker_mute.xpm"
47
48 #define TOOLBAR_BMP_WIDTH 16
49 #define TOOLBAR_BMP_HEIGHT 16
50
51 /* include the icon graphic */
52 #include "../../../share/vlc32x32.xpm"
53 /* include a small icon graphic for the systray icon */
54 #ifdef wxHAS_TASK_BAR_ICON
55 #include "../../../share/vlc16x16.xpm"
56 #endif
57
58 /*****************************************************************************
59  * Local class declarations.
60  *****************************************************************************/
61 class wxMenuExt: public wxMenu
62 {
63 public:
64     /* Constructor */
65     wxMenuExt( wxMenu* parentMenu, int id, const wxString& text,
66                    const wxString& helpString, wxItemKind kind,
67                    char *_psz_var, int _i_object_id, vlc_value_t _val,
68                    int _i_val_type );
69
70     virtual ~wxMenuExt() {};
71
72     char *psz_var;
73     int  i_val_type;
74     int  i_object_id;
75     vlc_value_t val;
76
77 private:
78
79 };
80
81 class wxVolCtrl;
82 class VLCVolCtrl : public wxControl
83 {
84 public:
85     VLCVolCtrl( intf_thread_t *p_intf, wxWindow *p_parent );
86     virtual ~VLCVolCtrl() {};
87
88     virtual void OnPaint( wxPaintEvent &event );
89     void OnChange( wxMouseEvent& event );
90     void UpdateVolume();
91
92   private:
93     DECLARE_EVENT_TABLE()
94
95     wxVolCtrl *gauge;
96     int i_y_offset;
97     vlc_bool_t b_mute;
98     intf_thread_t *p_intf;
99 };
100
101 BEGIN_EVENT_TABLE(VLCVolCtrl, wxControl)
102    EVT_PAINT(VLCVolCtrl::OnPaint)
103
104     /* Mouse events */
105     EVT_LEFT_UP(VLCVolCtrl::OnChange)
106 END_EVENT_TABLE()
107
108 /*****************************************************************************
109  * Event Table.
110  *****************************************************************************/
111
112 DEFINE_LOCAL_EVENT_TYPE( wxEVT_INTF );
113
114 /* IDs for the controls and the menu commands */
115 enum
116 {
117     /* menu items */
118     MenuDummy_Event = wxID_HIGHEST + 1000,
119     Exit_Event = wxID_HIGHEST,
120     OpenFileSimple_Event,
121     OpenAdv_Event,
122     OpenFile_Event,
123     OpenDir_Event,
124     OpenDisc_Event,
125     OpenNet_Event,
126     OpenCapture_Event,
127     OpenSat_Event,
128     OpenOther_Event,
129     EjectDisc_Event,
130
131     Wizard_Event,
132
133     Playlist_Event,
134     Logs_Event,
135     FileInfo_Event,
136
137     Prefs_Event,
138     Extended_Event,
139 //    Undock_Event,
140     Bookmarks_Event,
141     Skins_Event,
142
143     SliderScroll_Event,
144     StopStream_Event,
145     PlayStream_Event,
146     PrevStream_Event,
147     NextStream_Event,
148     SlowStream_Event,
149     FastStream_Event,
150
151     DiscMenu_Event,
152     DiscPrev_Event,
153     DiscNext_Event,
154
155     /* it is important for the id corresponding to the "About" command to have
156      * this standard value as otherwise it won't be handled properly under Mac
157      * (where it is special and put into the "Apple" menu) */
158     About_Event = wxID_ABOUT,
159     UpdateVLC_Event,
160
161     Iconize_Event
162 };
163
164 BEGIN_EVENT_TABLE(Interface, wxFrame)
165     /* Menu events */
166     EVT_MENU(Exit_Event, Interface::OnExit)
167     EVT_MENU(About_Event, Interface::OnAbout)
168     EVT_MENU(UpdateVLC_Event, Interface::OnShowDialog)
169
170     EVT_MENU(Playlist_Event, Interface::OnShowDialog)
171     EVT_MENU(Logs_Event, Interface::OnShowDialog)
172     EVT_MENU(FileInfo_Event, Interface::OnShowDialog)
173     EVT_MENU(Prefs_Event, Interface::OnShowDialog)
174
175     EVT_MENU_OPEN(Interface::OnMenuOpen)
176
177     EVT_MENU( Extended_Event, Interface::OnExtended )
178 //    EVT_MENU( Undock_Event, Interface::OnUndock )
179
180     EVT_MENU( Bookmarks_Event, Interface::OnShowDialog)
181
182 #if defined( __WXMSW__ ) || defined( __WXMAC__ )
183     EVT_CONTEXT_MENU(Interface::OnContextMenu2)
184 #endif
185     EVT_RIGHT_UP(Interface::OnContextMenu)
186
187     /* Toolbar events */
188     EVT_MENU(OpenFileSimple_Event, Interface::OnShowDialog)
189     EVT_MENU(OpenAdv_Event, Interface::OnShowDialog)
190     EVT_MENU(OpenFile_Event, Interface::OnShowDialog)
191     EVT_MENU(OpenDir_Event, Interface::OnShowDialog)
192     EVT_MENU(OpenDisc_Event, Interface::OnShowDialog)
193     EVT_MENU(OpenNet_Event, Interface::OnShowDialog)
194     EVT_MENU(OpenCapture_Event, Interface::OnShowDialog)
195     EVT_MENU(OpenSat_Event, Interface::OnShowDialog)
196     EVT_MENU(Wizard_Event, Interface::OnShowDialog)
197     EVT_MENU(StopStream_Event, Interface::OnStopStream)
198     EVT_MENU(PlayStream_Event, Interface::OnPlayStream)
199     EVT_MENU(PrevStream_Event, Interface::OnPrevStream)
200     EVT_MENU(NextStream_Event, Interface::OnNextStream)
201     EVT_MENU(SlowStream_Event, Interface::OnSlowStream)
202     EVT_MENU(FastStream_Event, Interface::OnFastStream)
203
204     /* Disc Buttons events */
205     EVT_BUTTON(DiscMenu_Event, Interface::OnDiscMenu)
206     EVT_BUTTON(DiscPrev_Event, Interface::OnDiscPrev)
207     EVT_BUTTON(DiscNext_Event, Interface::OnDiscNext)
208
209     /* Slider events */
210     EVT_COMMAND_SCROLL(SliderScroll_Event, Interface::OnSliderUpdate)
211
212     /* Custom events */
213     EVT_COMMAND(0, wxEVT_INTF, Interface::OnControlEvent)
214     EVT_COMMAND(1, wxEVT_INTF, Interface::OnControlEvent)
215
216     EVT_TIMER(ID_CONTROLS_TIMER, Interface::OnControlsTimer)
217     EVT_TIMER(ID_SLIDER_TIMER, Interface::OnSliderTimer)
218 END_EVENT_TABLE()
219
220 /*****************************************************************************
221  * Constructor.
222  *****************************************************************************/
223 Interface::Interface( intf_thread_t *_p_intf, long style ):
224     wxFrame( NULL, -1, wxT("VLC media player"),
225              wxDefaultPosition, wxSize(700,100), style )
226 {
227     /* Initializations */
228     p_intf = _p_intf;
229     i_old_playing_status = PAUSE_S;
230     b_extra = VLC_FALSE;
231 //    b_undock = VLC_FALSE;
232
233
234     extra_window = NULL;
235
236     /* Give our interface a nice little icon */
237     SetIcon( wxIcon( vlc_xpm ) );
238
239     /* Create a sizer for the main frame */
240     frame_sizer = new wxBoxSizer( wxVERTICAL );
241     SetSizer( frame_sizer );
242
243     /* Create a dummy widget that can get the keyboard focus */
244     wxWindow *p_dummy = new wxWindow( this, 0, wxDefaultPosition,
245                                       wxSize(0,0) );
246 #if defined(__WXGTK20__) && wxCHECK_VERSION(2,5,6)
247     /* As ugly as your butt! Please remove when wxWidgets 2.6 fixed their
248      * Accelerators bug. */
249     p_dummy->m_imData = 0;
250     m_imData = 0;
251 #endif
252     p_dummy->SetFocus();
253     frame_sizer->Add( p_dummy, 0, 0 );
254
255 #ifdef wxHAS_TASK_BAR_ICON
256     /* Systray integration */
257     p_systray = NULL;
258     if ( config_GetInt( p_intf, "wx-systray" ) )
259     {
260         p_systray = new Systray(this, p_intf);
261         p_systray->SetIcon( wxIcon( vlc16x16_xpm ), wxT("VLC media player") );
262         if ( (! p_systray->IsOk()) || (! p_systray->IsIconInstalled()) )
263         {
264             msg_Warn(p_intf, "Cannot set systray icon, weird things may happen");
265         }
266     }
267 #endif
268
269     /* Creation of the menu bar */
270     CreateOurMenuBar();
271
272     /* Creation of the tool bar */
273     CreateOurToolBar();
274
275     /* Create the extra panel */
276     extra_frame = new ExtraPanel( p_intf, this );
277     frame_sizer->Add( extra_frame, 0, wxEXPAND , 0 );
278     frame_sizer->Hide( extra_frame );
279
280     /* Creation of the status bar
281      * Helptext for menu items and toolbar tools will automatically get
282      * displayed here. */
283     int i_status_width[3] = {-6, -2, -9};
284     statusbar = CreateStatusBar( 3 );                            /* 2 fields */
285     statusbar->SetStatusWidths( 3, i_status_width );
286     statusbar->SetStatusText( wxString::Format(wxT("x%.2f"), 1.0), 1 );
287
288     /* Video window */
289     video_window = 0;
290     if( config_GetInt( p_intf, "wx-embed" ) )
291     {
292         video_window = CreateVideoWindow( p_intf, this );
293         frame_sizer->Add( p_intf->p_sys->p_video_sizer, 1, wxEXPAND, 0 );
294     }
295
296     /* Creation of the slider sub-window */
297     CreateOurSlider();
298     frame_sizer->Add( slider_frame, 0, wxEXPAND , 0 );
299     frame_sizer->Hide( slider_frame );
300
301     /* Make sure we've got the right background colour */
302     SetBackgroundColour( slider_frame->GetBackgroundColour() );
303
304     /* Layout everything */
305     frame_sizer->Layout();
306     frame_sizer->Fit(this);
307
308 #if wxUSE_DRAG_AND_DROP
309     /* Associate drop targets with the main interface */
310     SetDropTarget( new DragAndDrop( p_intf ) );
311 #endif
312
313     SetupHotkeys();
314
315     m_controls_timer.SetOwner(this, ID_CONTROLS_TIMER);
316     m_slider_timer.SetOwner(this, ID_SLIDER_TIMER);
317
318     /* Start timer */
319     timer = new Timer( p_intf, this );
320
321     /* */
322     WindowSettings *ws = p_intf->p_sys->p_window_settings;
323     wxPoint p;
324     wxSize  s;
325     bool    b_shown;
326
327     ws->SetScreen( wxSystemSettings::GetMetric( wxSYS_SCREEN_X ),
328                    wxSystemSettings::GetMetric( wxSYS_SCREEN_Y ) );
329
330     if( ws->GetSettings( WindowSettings::ID_MAIN, b_shown, p, s ) )
331         Move( p );
332 }
333
334 Interface::~Interface()
335 {
336     WindowSettings *ws = p_intf->p_sys->p_window_settings;
337
338     if( !IsIconized() )
339     {
340         ws->SetSettings( WindowSettings::ID_MAIN, true,
341                          GetPosition(), GetSize() );
342     }
343
344     if( video_window ) delete video_window;
345
346 #ifdef wxHAS_TASK_BAR_ICON
347     if( p_systray ) delete p_systray;
348 #endif
349
350     if( p_intf->p_sys->p_wxwindow ) delete p_intf->p_sys->p_wxwindow;
351
352     /* Clean up */
353     delete timer;
354 }
355
356 void Interface::Init()
357 {
358     /* Misc init */
359     SetupHotkeys();
360 }
361
362 void Interface::Update()
363 {
364     /* Misc updates */
365     ((VLCVolCtrl *)volctrl)->UpdateVolume();
366 }
367
368 void Interface::OnControlEvent( wxCommandEvent& event )
369 {
370     switch( event.GetId() )
371     {
372     case 0:
373         {
374           if( p_intf->p_sys->b_video_autosize )
375           {
376         frame_sizer->Layout();
377         frame_sizer->Fit(this);
378           }
379         }
380         break;
381
382     case 1:
383         long i_style = GetWindowStyle();
384         if( event.GetInt() ) i_style |= wxSTAY_ON_TOP;
385         else i_style &= ~wxSTAY_ON_TOP;
386         SetWindowStyle( i_style );
387         break;
388     }
389 }
390
391 /*****************************************************************************
392  * Private methods.
393  *****************************************************************************/
394 void Interface::CreateOurMenuBar()
395 {
396     int minimal = config_GetInt( p_intf, "wx-minimal" );
397
398     /* Create the "File" menu */
399     wxMenu *file_menu = new wxMenu;
400
401     if (!minimal)
402     {
403     file_menu->Append( OpenFileSimple_Event,
404                        wxU(_("Quick &Open File...\tCtrl-O")) );
405
406     file_menu->AppendSeparator();
407     file_menu->Append( OpenFile_Event, wxU(_("Open &File...\tCtrl-F")) );
408     file_menu->Append( OpenDir_Event, wxU(_("Open Dir&ectory...\tCtrl-E")) );
409     file_menu->Append( OpenDisc_Event, wxU(_("Open &Disc...\tCtrl-D")) );
410     file_menu->Append( OpenNet_Event,
411                        wxU(_("Open &Network Stream...\tCtrl-N")) );
412     file_menu->Append( OpenCapture_Event,
413                        wxU(_("Open C&apture Device...\tCtrl-A")) );
414
415     file_menu->AppendSeparator();
416     file_menu->Append( Wizard_Event, wxU(_("&Wizard...\tCtrl-W")) );
417     file_menu->AppendSeparator();
418     }
419     file_menu->Append( Exit_Event, wxU(_("E&xit\tCtrl-X")) );
420
421     /* Create the "View" menu */
422     wxMenu *view_menu = new wxMenu;
423     if (!minimal)
424     {
425     view_menu->Append( Playlist_Event, wxU(_("&Playlist...\tCtrl-P")) );
426     }
427     view_menu->Append( Logs_Event, wxU(_("&Messages...\tCtrl-M")) );
428     view_menu->Append( FileInfo_Event,
429                        wxU(_("Stream and Media &info...\tCtrl-I")) );
430
431     /* Create the "Auto-generated" menus */
432     p_settings_menu = SettingsMenu( p_intf, this );
433     p_audio_menu = AudioMenu( p_intf, this );
434     p_video_menu = VideoMenu( p_intf, this );
435     p_navig_menu = NavigMenu( p_intf, this );
436
437     /* Create the "Help" menu */
438     wxMenu *help_menu = new wxMenu;
439     help_menu->Append( About_Event, wxU(_("About VLC media player")) );
440     help_menu->AppendSeparator();
441     help_menu->Append( UpdateVLC_Event, wxU(_("Check for updates ...")) );
442
443     /* Append the freshly created menus to the menu bar... */
444     wxMenuBar *menubar = new wxMenuBar();
445     menubar->Append( file_menu, wxU(_("&File")) );
446     menubar->Append( view_menu, wxU(_("&View")) );
447     menubar->Append( p_settings_menu, wxU(_("&Settings")) );
448     menubar->Append( p_audio_menu, wxU(_("&Audio")) );
449     menubar->Append( p_video_menu, wxU(_("&Video")) );
450     menubar->Append( p_navig_menu, wxU(_("&Navigation")) );
451     menubar->Append( help_menu, wxU(_("&Help")) );
452
453     /* Attach the menu bar to the frame */
454     SetMenuBar( menubar );
455
456     /* Find out size of menu bar */
457     int i_size = 0;
458     for( unsigned int i = 0; i < menubar->GetMenuCount(); i++ )
459     {
460         int i_width, i_height;
461         menubar->GetTextExtent( menubar->GetLabelTop(i), &i_width, &i_height );
462         i_size += i_width +
463 #if defined(__WXGTK__)
464             22 /* approximate margin */;
465 #else
466 #if (wxMAJOR_VERSION <= 2) && (wxMINOR_VERSION <= 5) && (wxRELEASE_NUMBER < 3)
467             4 /* approximate margin */;
468 #else
469             18 /* approximate margin */;
470 #endif
471 #endif
472     }
473     frame_sizer->SetMinSize( i_size, -1 );
474
475     /* Intercept all menu events in our custom event handler */
476     PushEventHandler( new MenuEvtHandler( p_intf, this ) );
477
478 #if wxUSE_DRAG_AND_DROP
479     /* Associate drop targets with the menubar */
480     menubar->SetDropTarget( new DragAndDrop( p_intf ) );
481 #endif
482 }
483
484 void Interface::CreateOurToolBar()
485 {
486 #define HELP_OPEN N_("Open")
487 #define HELP_STOP N_("Stop")
488 #define HELP_PLAY N_("Play")
489 #define HELP_PAUSE N_("Pause")
490 #define HELP_PLO N_("Playlist")
491 #define HELP_PLP N_("Previous playlist item")
492 #define HELP_PLN N_("Next playlist item")
493 #define HELP_SLOW N_("Play slower")
494 #define HELP_FAST N_("Play faster")
495
496     int minimal = config_GetInt( p_intf, "wx-minimal" );
497
498     wxLogNull LogDummy; /* Hack to suppress annoying log message on the win32
499                          * version because we don't include wx.rc */
500
501     wxToolBar *toolbar =
502         CreateToolBar( wxTB_HORIZONTAL | wxTB_FLAT );
503
504     toolbar->SetToolBitmapSize( wxSize(TOOLBAR_BMP_WIDTH,TOOLBAR_BMP_HEIGHT) );
505
506     if (!minimal)
507     {
508     toolbar->AddTool( OpenFile_Event, wxT(""),
509                       wxBitmap( eject_xpm ), wxU(_(HELP_OPEN)) );
510     toolbar->AddSeparator();
511     }
512
513     wxToolBarToolBase *p_tool = toolbar->AddTool( PlayStream_Event, wxT(""),
514                       wxBitmap( play_xpm ), wxU(_(HELP_PLAY)), wxITEM_CHECK );
515     p_tool->SetClientData( p_tool );
516
517     if (!minimal)
518     {
519     toolbar->AddTool( StopStream_Event, wxT(""), wxBitmap( stop_xpm ),
520                       wxU(_(HELP_STOP)) );
521     toolbar->AddSeparator();
522
523     toolbar->AddTool( PrevStream_Event, wxT(""),
524                       wxBitmap( prev_xpm ), wxU(_(HELP_PLP)) );
525     toolbar->AddTool( SlowStream_Event, wxT(""),
526                       wxBitmap( slow_xpm ), wxU(_(HELP_SLOW)) );
527     toolbar->AddTool( FastStream_Event, wxT(""),
528                       wxBitmap( fast_xpm ), wxU(_(HELP_FAST)) );
529     toolbar->AddTool( NextStream_Event, wxT(""), wxBitmap( next_xpm ),
530                       wxU(_(HELP_PLN)) );
531     toolbar->AddSeparator();
532     toolbar->AddTool( Playlist_Event, wxT(""), wxBitmap( playlist_xpm ),
533                       wxU(_(HELP_PLO)) );
534     }
535
536     wxControl *p_dummy_ctrl =
537         new wxControl( toolbar, -1, wxDefaultPosition,
538                        wxSize(35, 16 ), wxBORDER_NONE );
539
540     toolbar->AddControl( p_dummy_ctrl );
541
542     volctrl = new VLCVolCtrl( p_intf, toolbar );
543     toolbar->AddControl( volctrl );
544
545     toolbar->Realize();
546
547 #if wxUSE_DRAG_AND_DROP
548     /* Associate drop targets with the toolbar */
549     toolbar->SetDropTarget( new DragAndDrop( p_intf ) );
550 #endif
551 }
552
553 void Interface::CreateOurSlider()
554 {
555     /* Create a new frame and sizer containing the slider */
556     slider_frame = new wxPanel( this, -1, wxDefaultPosition, wxDefaultSize );
557     slider_frame->SetAutoLayout( TRUE );
558     slider_sizer = new wxBoxSizer( wxHORIZONTAL );
559     //slider_sizer->SetMinSize( -1, 50 );
560
561     /* Create slider */
562     slider = new wxSlider( slider_frame, SliderScroll_Event, 0, 0,
563                            SLIDER_MAX_POS, wxDefaultPosition, wxDefaultSize );
564
565     /* Add Disc Buttons */
566     disc_frame = new wxPanel( slider_frame, -1, wxDefaultPosition,
567                               wxDefaultSize );
568     disc_frame->SetAutoLayout( TRUE );
569     disc_sizer = new wxBoxSizer( wxHORIZONTAL );
570
571     disc_menu_button = new wxBitmapButton( disc_frame, DiscMenu_Event,
572                                            wxBitmap( playlist_xpm ) );
573     disc_prev_button = new wxBitmapButton( disc_frame, DiscPrev_Event,
574                                            wxBitmap( prev_xpm ) );
575     disc_next_button = new wxBitmapButton( disc_frame, DiscNext_Event,
576                                            wxBitmap( next_xpm ) );
577
578     disc_sizer->Add( disc_menu_button, 1, wxEXPAND | wxLEFT | wxRIGHT, 1 );
579     disc_sizer->Add( disc_prev_button, 1, wxEXPAND | wxLEFT | wxRIGHT, 1 );
580     disc_sizer->Add( disc_next_button, 1, wxEXPAND | wxLEFT | wxRIGHT, 1 );
581
582     disc_frame->SetSizer( disc_sizer );
583     disc_sizer->Layout();
584
585     /* Add everything to the frame */
586     slider_sizer->Add( slider, 1, wxEXPAND | wxALL, 5 );
587     slider_sizer->Add( disc_frame, 0, wxALL, 2 );
588     slider_frame->SetSizer( slider_sizer );
589
590     disc_frame->Hide();
591     slider_sizer->Hide( disc_frame );
592
593     slider_sizer->Layout();
594     slider_sizer->Fit( slider_frame );
595
596     /* Hide the slider by default */
597     slider_frame->Hide();
598 }
599
600 static int ConvertHotkeyModifiers( int i_hotkey )
601 {
602     int i_accel_flags = 0;
603     if( i_hotkey & KEY_MODIFIER_ALT ) i_accel_flags |= wxACCEL_ALT;
604     if( i_hotkey & KEY_MODIFIER_CTRL ) i_accel_flags |= wxACCEL_CTRL;
605     if( i_hotkey & KEY_MODIFIER_SHIFT ) i_accel_flags |= wxACCEL_SHIFT;
606     if( !i_accel_flags ) i_accel_flags = wxACCEL_NORMAL;
607     return i_accel_flags;
608 }
609
610 static int ConvertHotkey( int i_hotkey )
611 {
612     int i_key = i_hotkey & ~KEY_MODIFIER;
613     if( i_key & KEY_ASCII ) return i_key & KEY_ASCII;
614     else if( i_key & KEY_SPECIAL )
615     {
616         switch ( i_key )
617         {
618         case KEY_LEFT: return WXK_LEFT;
619         case KEY_RIGHT: return WXK_RIGHT;
620         case KEY_UP: return WXK_UP;
621         case KEY_DOWN: return WXK_DOWN;
622         case KEY_SPACE: return WXK_SPACE;
623         case KEY_ENTER: return WXK_RETURN;
624         case KEY_F1: return WXK_F1;
625         case KEY_F2: return WXK_F2;
626         case KEY_F3: return WXK_F3;
627         case KEY_F4: return WXK_F4;
628         case KEY_F5: return WXK_F5;
629         case KEY_F6: return WXK_F6;
630         case KEY_F7: return WXK_F7;
631         case KEY_F8: return WXK_F8;
632         case KEY_F9: return WXK_F9;
633         case KEY_F10: return WXK_F10;
634         case KEY_F11: return WXK_F11;
635         case KEY_F12: return WXK_F12;
636         case KEY_HOME: return WXK_HOME;
637         case KEY_END: return WXK_END;
638         case KEY_INSERT: return WXK_INSERT;
639         case KEY_DELETE: return WXK_DELETE;
640         case KEY_MENU: return WXK_MENU;
641         case KEY_ESC: return WXK_ESCAPE;
642         case KEY_PAGEUP: return WXK_PRIOR;
643         case KEY_PAGEDOWN: return WXK_NEXT;
644         case KEY_TAB: return WXK_TAB;
645         case KEY_BACKSPACE: return WXK_BACK;
646         }
647     }
648     return WXK_F24;
649 }
650
651 void Interface::SetupHotkeys()
652 {
653     struct vlc_t::hotkey *p_hotkeys = p_intf->p_vlc->p_hotkeys;
654     int i_hotkeys;
655
656     /* Count number of hoteys */
657     for( i_hotkeys = 0; p_hotkeys[i_hotkeys].psz_action != NULL; i_hotkeys++ );
658
659     p_intf->p_sys->i_first_hotkey_event = wxID_HIGHEST + 7000;
660     p_intf->p_sys->i_hotkeys = i_hotkeys;
661
662     wxAcceleratorEntry *p_entries = new wxAcceleratorEntry[i_hotkeys];
663
664     /* Setup the hotkeys as accelerators */
665     for( int i = 0; i < i_hotkeys; i++ )
666     {
667         int i_mod = ConvertHotkeyModifiers( p_hotkeys[i].i_key );
668         int i_key = ConvertHotkey( p_hotkeys[i].i_key );
669
670 #ifdef WIN32
671         if( !(p_hotkeys[i].i_key & KEY_SPECIAL) && i_mod )
672             i_key = toupper(i_key);
673 #endif
674
675         p_entries[i].Set( i_mod, i_key,
676                           p_intf->p_sys->i_first_hotkey_event + i );
677     }
678
679     wxAcceleratorTable accel( i_hotkeys, p_entries );
680
681     if( !accel.Ok() )
682     {
683         msg_Err( p_intf, "invalid accelerator table" );
684     }
685     else
686     {
687         SetAcceleratorTable( accel );
688     }
689
690     delete [] p_entries;
691 }
692
693 void Interface::HideSlider( bool layout )
694 {
695     ShowSlider( false, layout );
696 }
697
698 void Interface::ShowSlider( bool show, bool layout )
699 {
700     if( show )
701     {
702         //prevent the hide timers from hiding it now
703         m_slider_timer.Stop();
704         m_controls_timer.Stop();
705
706         //prevent continuous layout
707         if( slider_frame->IsShown() ) return;
708     }
709     else
710     {
711         //prevent continuous layout
712         if( !slider_frame->IsShown() ) return;
713     }
714
715     if( layout && p_intf->p_sys->b_video_autosize )
716         UpdateVideoWindow( p_intf, video_window );
717
718     slider_frame->Show( show );
719     frame_sizer->Show( slider_frame, show );
720
721     if( layout )
722     {
723         frame_sizer->Layout();
724         if( p_intf->p_sys->b_video_autosize ) frame_sizer->Fit( this );
725     }
726 }
727
728 void Interface::HideDiscFrame( bool layout )
729 {
730     ShowDiscFrame( false, layout );
731 }
732
733 void Interface::ShowDiscFrame( bool show, bool layout )
734 {
735     if( show )
736     {
737         //prevent the hide timer from hiding it now
738         m_controls_timer.Stop();
739
740         //prevent continuous layout
741         if( disc_frame->IsShown() ) return;
742     }
743     else
744     {
745         //prevent continuous layout
746         if( !disc_frame->IsShown() ) return;
747     }
748
749     if( layout && p_intf->p_sys->b_video_autosize )
750         UpdateVideoWindow( p_intf, video_window );
751
752     disc_frame->Show( show );
753     slider_sizer->Show( disc_frame, show );
754
755     if( layout )
756     {
757         slider_sizer->Layout();
758         if( p_intf->p_sys->b_video_autosize )
759             slider_sizer->Fit( slider_frame );
760     }
761 }
762
763 /*****************************************************************************
764  * Event Handlers.
765  *****************************************************************************/
766 void Interface::OnControlsTimer( wxTimerEvent& WXUNUSED(event) )
767 {
768     if( p_intf->p_sys->b_video_autosize )
769         UpdateVideoWindow( p_intf, video_window );
770
771     /* Hide slider and Disc Buttons */
772     //postpone layout, we'll do it ourselves
773     HideDiscFrame( false );
774     HideSlider( false );
775
776     slider_sizer->Layout();
777     if( p_intf->p_sys->b_video_autosize )
778     {
779         slider_sizer->Fit( slider_frame );
780         frame_sizer->Fit( this );
781     }
782 }
783
784 void Interface::OnSliderTimer( wxTimerEvent& WXUNUSED(event) )
785 {
786     HideSlider();
787 }
788
789 void Interface::OnMenuOpen( wxMenuEvent& event )
790 {
791 #if defined( __WXMSW__ )
792 #   define GetEventObject GetMenu
793 #endif
794
795     if( event.GetEventObject() == p_settings_menu )
796     {
797         p_settings_menu = SettingsMenu( p_intf, this, p_settings_menu );
798
799         /* Add static items */
800         p_settings_menu->AppendCheckItem( Extended_Event,
801             wxU(_("Extended &GUI\tCtrl-G") ) );
802         if( b_extra ) p_settings_menu->Check( Extended_Event, TRUE );
803 #if 0
804         p_settings_menu->AppendCheckItem( Undock_Event,
805             wxU(_("&Undock Ext. GUI") ) );
806         if( b_undock ) p_settings_menu->Check( Undock_Event, TRUE );
807 #endif
808         p_settings_menu->Append( Bookmarks_Event,
809                                  wxU(_("&Bookmarks...\tCtrl-B") ) );
810         p_settings_menu->Append( Prefs_Event,
811                                  wxU(_("Preference&s...\tCtrl-S")) );
812     }
813
814     else if( event.GetEventObject() == p_audio_menu )
815     {
816         p_audio_menu = AudioMenu( p_intf, this, p_audio_menu );
817     }
818
819     else if( event.GetEventObject() == p_video_menu )
820     {
821         p_video_menu = VideoMenu( p_intf, this, p_video_menu );
822     }
823
824     else if( event.GetEventObject() == p_navig_menu )
825     {
826         p_navig_menu = NavigMenu( p_intf, this, p_navig_menu );
827     }
828
829 #if defined( __WXMSW__ )
830 #   undef GetEventObject
831 #endif
832 }
833
834 #if defined( __WXMSW__ ) || defined( __WXMAC__ )
835 void Interface::OnContextMenu2(wxContextMenuEvent& event)
836 {
837     /* Only show the context menu for the main interface */
838     if( GetId() != event.GetId() )
839     {
840         event.Skip();
841         return;
842     }
843
844     if( p_intf->p_sys->pf_show_dialog )
845         p_intf->p_sys->pf_show_dialog( p_intf, INTF_DIALOG_POPUPMENU, 1, 0 );
846 }
847 #endif
848 void Interface::OnContextMenu(wxMouseEvent& event)
849 {
850     if( p_intf->p_sys->pf_show_dialog )
851         p_intf->p_sys->pf_show_dialog( p_intf, INTF_DIALOG_POPUPMENU, 1, 0 );
852 }
853
854 void Interface::OnExit( wxCommandEvent& WXUNUSED(event) )
855 {
856     /* TRUE is to force the frame to close. */
857     Close(TRUE);
858 }
859
860 void Interface::OnAbout( wxCommandEvent& WXUNUSED(event) )
861 {
862     wxString msg;
863     msg.Printf( wxString(wxT("VLC media player " PACKAGE_VERSION)) +
864         wxU(_(" (wxWidgets interface)\n\n")) +
865         wxU(_("(c) 1996-2005 - the VideoLAN Team\n\n")) +
866         wxU( INTF_ABOUT_MSG ) + wxT("\n\n") +
867         wxU(_("The VideoLAN team <videolan@videolan.org>\n"
868               "http://www.videolan.org/\n\n")) );
869
870     wxMessageBox( msg, wxString::Format(wxU(_("About %s")),
871                   wxT("VLC media player")), wxOK | wxICON_INFORMATION, this );
872 }
873
874 void Interface::OnShowDialog( wxCommandEvent& event )
875 {
876     if( p_intf->p_sys->pf_show_dialog )
877     {
878         int i_id;
879
880         switch( event.GetId() )
881         {
882         case OpenFileSimple_Event:
883             i_id = INTF_DIALOG_FILE_SIMPLE;
884             break;
885         case OpenAdv_Event:
886             i_id = INTF_DIALOG_FILE;
887         case OpenFile_Event:
888             i_id = INTF_DIALOG_FILE;
889             break;
890         case OpenDir_Event:
891             i_id = INTF_DIALOG_DIRECTORY;
892             break;
893         case OpenDisc_Event:
894             i_id = INTF_DIALOG_DISC;
895             break;
896         case OpenNet_Event:
897             i_id = INTF_DIALOG_NET;
898             break;
899         case OpenCapture_Event:
900             i_id = INTF_DIALOG_CAPTURE;
901             break;
902         case OpenSat_Event:
903             i_id = INTF_DIALOG_SAT;
904             break;
905         case Playlist_Event:
906             i_id = INTF_DIALOG_PLAYLIST;
907             break;
908         case Logs_Event:
909             i_id = INTF_DIALOG_MESSAGES;
910             break;
911         case FileInfo_Event:
912             i_id = INTF_DIALOG_FILEINFO;
913             break;
914         case Prefs_Event:
915             i_id = INTF_DIALOG_PREFS;
916             break;
917         case Wizard_Event:
918             i_id = INTF_DIALOG_WIZARD;
919             break;
920         case Bookmarks_Event:
921             i_id = INTF_DIALOG_BOOKMARKS;
922             break;
923         case UpdateVLC_Event:
924             i_id = INTF_DIALOG_UPDATEVLC;
925             break;
926         default:
927             i_id = INTF_DIALOG_FILE;
928             break;
929         }
930
931         p_intf->p_sys->pf_show_dialog( p_intf, i_id, 1, 0 );
932     }
933 }
934
935 void Interface::OnExtended(wxCommandEvent& event)
936 {
937     b_extra = (b_extra == VLC_TRUE ? VLC_FALSE : VLC_TRUE );
938
939     if( b_extra == VLC_FALSE )
940     {
941         extra_frame->Hide();
942         frame_sizer->Hide( extra_frame );
943     }
944     else
945     {
946         extra_frame->Show();
947         frame_sizer->Show( extra_frame );
948     }
949     frame_sizer->Layout();
950     frame_sizer->Fit(this);
951 }
952
953 #if 0
954         if( b_undock == VLC_TRUE )
955         {
956                 fprintf(stderr,"Deleting window\n");
957             if( extra_window )
958             {
959                 delete extra_window;
960                 extra_window = NULL;
961             }
962         }
963         else
964         {
965             extra_frame->Hide();
966             frame_sizer->Hide( extra_frame );
967             frame_sizer->Layout();
968             frame_sizer->Fit(this);
969         }
970     }
971     else
972     {
973         if( b_undock == VLC_TRUE )
974         {
975                 fprintf(stderr,"Creating window\n");
976             extra_frame->Hide();
977             frame_sizer->Hide( extra_frame );
978 #if (wxCHECK_VERSION(2,5,0))
979             frame_sizer->Detach( extra_frame );
980 #else
981             frame_sizer->Remove( extra_frame );
982 #endif
983             frame_sizer->Layout();
984             frame_sizer->Fit(this);
985             extra_window = new ExtraWindow( p_intf, this, extra_frame );
986         }
987         else
988         {
989                 fprintf(stderr,"Deleting window\n");
990             if( extra_window )
991             {
992                 delete extra_window;
993             }
994             extra_frame->Show();
995             frame_sizer->Show( extra_frame );
996             frame_sizer->Layout();
997             frame_sizer->Fit(this);
998         }
999     }
1000 }
1001
1002 void Interface::OnUndock(wxCommandEvent& event)
1003 {
1004     b_undock = (b_undock == VLC_TRUE ? VLC_FALSE : VLC_TRUE );
1005
1006     if( b_extra == VLC_TRUE )
1007     {
1008         if( b_undock == VLC_FALSE )
1009         {
1010                 fprintf(stderr,"Deleting window\n");
1011             if( extra_window )
1012             {
1013                 delete extra_window;
1014                 extra_window = NULL;
1015             }
1016             extra_frame->Show();
1017             frame_sizer->Show( extra_frame );
1018             frame_sizer->Layout();
1019             frame_sizer->Fit(this);
1020         }
1021         else
1022         {
1023                 fprintf(stderr,"Creating window\n");
1024             extra_frame->Hide();
1025             frame_sizer->Hide( extra_frame );
1026 #if (wxCHECK_VERSION(2,5,0))
1027             frame_sizer->Detach( extra_frame );
1028 #else
1029             frame_sizer->Remove( extra_frame );
1030 #endif
1031             frame_sizer->Layout();
1032             frame_sizer->Fit(this);
1033             extra_window = new ExtraWindow( p_intf, this, extra_frame );
1034         }
1035     }
1036 }
1037 #endif
1038
1039
1040 void Interface::OnPlayStream( wxCommandEvent& WXUNUSED(event) )
1041 {
1042     PlayStream();
1043 }
1044
1045 void Interface::PlayStream()
1046 {
1047     wxCommandEvent dummy;
1048     playlist_t *p_playlist =
1049         (playlist_t *)vlc_object_find( p_intf, VLC_OBJECT_PLAYLIST,
1050                                        FIND_ANYWHERE );
1051     if( p_playlist == NULL ) return;
1052
1053     if( p_playlist->i_size && p_playlist->i_enabled )
1054     {
1055         vlc_value_t state;
1056
1057         input_thread_t *p_input = (input_thread_t *)vlc_object_find( p_intf,
1058                                                        VLC_OBJECT_INPUT,
1059                                                        FIND_ANYWHERE );
1060         if( p_input == NULL )
1061         {
1062             /* No stream was playing, start one */
1063             playlist_Play( p_playlist );
1064             TogglePlayButton( PLAYING_S );
1065             vlc_object_release( p_playlist );
1066             return;
1067         }
1068
1069         var_Get( p_input, "state", &state );
1070
1071         if( state.i_int != PAUSE_S )
1072         {
1073             /* A stream is being played, pause it */
1074             state.i_int = PAUSE_S;
1075         }
1076         else
1077         {
1078             /* Stream is paused, resume it */
1079             state.i_int = PLAYING_S;
1080         }
1081         var_Set( p_input, "state", state );
1082
1083         TogglePlayButton( state.i_int );
1084         vlc_object_release( p_input );
1085         vlc_object_release( p_playlist );
1086     }
1087     else
1088     {
1089         /* If the playlist is empty, open a file requester instead */
1090         vlc_object_release( p_playlist );
1091         OnShowDialog( dummy );
1092     }
1093 }
1094
1095 void Interface::OnStopStream( wxCommandEvent& WXUNUSED(event) )
1096 {
1097     StopStream();
1098 }
1099 void Interface::StopStream()
1100 {
1101     playlist_t * p_playlist =
1102         (playlist_t *)vlc_object_find( p_intf, VLC_OBJECT_PLAYLIST,
1103                                        FIND_ANYWHERE );
1104     if( p_playlist == NULL )
1105     {
1106         return;
1107     }
1108
1109     playlist_Stop( p_playlist );
1110     TogglePlayButton( PAUSE_S );
1111     vlc_object_release( p_playlist );
1112 }
1113
1114 void Interface::OnSliderUpdate( wxScrollEvent& event )
1115 {
1116     vlc_mutex_lock( &p_intf->change_lock );
1117
1118 #ifdef WIN32
1119     if( event.GetEventType() == wxEVT_SCROLL_THUMBRELEASE
1120         || event.GetEventType() == wxEVT_SCROLL_ENDSCROLL )
1121     {
1122 #endif
1123         if( p_intf->p_sys->i_slider_pos != event.GetPosition()
1124             && p_intf->p_sys->p_input )
1125         {
1126             vlc_value_t pos;
1127             pos.f_float = (float)event.GetPosition() / (float)SLIDER_MAX_POS;
1128
1129             var_Set( p_intf->p_sys->p_input, "position", pos );
1130         }
1131
1132 #ifdef WIN32
1133         p_intf->p_sys->b_slider_free = VLC_TRUE;
1134     }
1135     else
1136     {
1137         p_intf->p_sys->b_slider_free = VLC_FALSE;
1138
1139         if( p_intf->p_sys->p_input )
1140         {
1141             /* Update stream date */
1142             char psz_time[ MSTRTIME_MAX_SIZE ], psz_total[ MSTRTIME_MAX_SIZE ];
1143             mtime_t i_seconds;
1144
1145             i_seconds = var_GetTime( p_intf->p_sys->p_input, "length" ) /
1146                         I64C(1000000 );
1147             secstotimestr( psz_total, i_seconds );
1148
1149             i_seconds = var_GetTime( p_intf->p_sys->p_input, "time" ) /
1150                         I64C(1000000 );
1151             secstotimestr( psz_time, i_seconds );
1152
1153             statusbar->SetStatusText( wxU(psz_time) + wxString(wxT(" / ") ) +
1154                                       wxU(psz_total), 0 );
1155         }
1156     }
1157 #endif
1158
1159 #undef WIN32
1160     vlc_mutex_unlock( &p_intf->change_lock );
1161 }
1162
1163 void Interface::OnPrevStream( wxCommandEvent& WXUNUSED(event) )
1164 {
1165     PrevStream();
1166 }
1167
1168 void Interface::PrevStream()
1169 {
1170     playlist_t * p_playlist =
1171         (playlist_t *)vlc_object_find( p_intf, VLC_OBJECT_PLAYLIST,
1172                                        FIND_ANYWHERE );
1173     if( p_playlist == NULL )
1174     {
1175         return;
1176     }
1177
1178     /* FIXME --fenrir */
1179 #if 0
1180     if( p_playlist->p_input != NULL )
1181     {
1182         vlc_mutex_lock( &p_playlist->p_input->stream.stream_lock );
1183         if( p_playlist->p_input->stream.p_selected_area->i_id > 1 )
1184         {
1185             vlc_value_t val; val.b_bool = VLC_TRUE;
1186             vlc_mutex_unlock( &p_playlist->p_input->stream.stream_lock );
1187             var_Set( p_playlist->p_input, "prev-title", val );
1188         } else
1189             vlc_mutex_unlock( &p_playlist->p_input->stream.stream_lock );
1190     }
1191     vlc_mutex_unlock( &p_playlist->object_lock );
1192 #endif
1193
1194     playlist_Prev( p_playlist );
1195     vlc_object_release( p_playlist );
1196 }
1197
1198 void Interface::OnNextStream( wxCommandEvent& WXUNUSED(event) )
1199 {
1200     NextStream();
1201 }
1202
1203 void Interface::NextStream()
1204 {
1205     playlist_t * p_playlist =
1206         (playlist_t *)vlc_object_find( p_intf, VLC_OBJECT_PLAYLIST,
1207                                        FIND_ANYWHERE );
1208     if( p_playlist == NULL )
1209     {
1210         return;
1211     }
1212
1213     /* FIXME --fenrir */
1214 #if 0
1215     var_Change( p_input, "title", VLC_VAR_CHOICESCOUNT, &val, NULL );
1216     vlc_mutex_lock( &p_playlist->object_lock );
1217     if( p_playlist->p_input != NULL )
1218     {
1219         vlc_mutex_lock( &p_playlist->p_input->stream.stream_lock );
1220         if( p_playlist->p_input->stream.i_area_nb > 1 &&
1221             p_playlist->p_input->stream.p_selected_area->i_id <
1222               p_playlist->p_input->stream.i_area_nb - 1 )
1223         {
1224             vlc_value_t val; val.b_bool = VLC_TRUE;
1225             vlc_mutex_unlock( &p_playlist->p_input->stream.stream_lock );
1226             var_Set( p_playlist->p_input, "next-title", val );
1227         } else
1228             vlc_mutex_unlock( &p_playlist->p_input->stream.stream_lock );
1229     }
1230     vlc_mutex_unlock( &p_playlist->object_lock );
1231 #endif
1232     playlist_Next( p_playlist );
1233     vlc_object_release( p_playlist );
1234 }
1235
1236 void Interface::OnSlowStream( wxCommandEvent& WXUNUSED(event) )
1237 {
1238     input_thread_t *p_input =
1239         (input_thread_t *)vlc_object_find( p_intf, VLC_OBJECT_INPUT,
1240                                            FIND_ANYWHERE );
1241     if( p_input )
1242     {
1243         vlc_value_t val; val.b_bool = VLC_TRUE;
1244
1245         var_Set( p_input, "rate-slower", val );
1246         vlc_object_release( p_input );
1247     }
1248 }
1249
1250 void Interface::OnFastStream( wxCommandEvent& WXUNUSED(event) )
1251 {
1252     input_thread_t *p_input =
1253         (input_thread_t *)vlc_object_find( p_intf, VLC_OBJECT_INPUT,
1254                                            FIND_ANYWHERE );
1255     if( p_input )
1256     {
1257         vlc_value_t val; val.b_bool = VLC_TRUE;
1258
1259         var_Set( p_input, "rate-faster", val );
1260         vlc_object_release( p_input );
1261     }
1262 }
1263
1264 void Interface::TogglePlayButton( int i_playing_status )
1265 {
1266     if( i_playing_status == i_old_playing_status )
1267         return;
1268
1269     wxToolBarToolBase *p_tool = (wxToolBarToolBase *)
1270         GetToolBar()->GetToolClientData( PlayStream_Event );
1271     if( !p_tool ) return;
1272
1273     if( i_playing_status == PLAYING_S )
1274     {
1275         p_tool->SetNormalBitmap( wxBitmap( pause_xpm ) );
1276         p_tool->SetLabel( wxU(_("Pause")) );
1277         p_tool->SetShortHelp( wxU(_(HELP_PAUSE)) );
1278     }
1279     else
1280     {
1281         p_tool->SetNormalBitmap( wxBitmap( play_xpm ) );
1282         p_tool->SetLabel( wxU(_("Play")) );
1283         p_tool->SetShortHelp( wxU(_(HELP_PLAY)) );
1284     }
1285
1286     GetToolBar()->Realize();
1287     GetToolBar()->ToggleTool( PlayStream_Event, true );
1288     GetToolBar()->ToggleTool( PlayStream_Event, false );
1289
1290     i_old_playing_status = i_playing_status;
1291 }
1292
1293 void Interface::OnDiscMenu( wxCommandEvent& WXUNUSED(event) )
1294 {
1295     input_thread_t *p_input =
1296         (input_thread_t *)vlc_object_find( p_intf, VLC_OBJECT_INPUT,
1297                                            FIND_ANYWHERE );
1298     if( p_input )
1299     {
1300         vlc_value_t val; val.i_int = 2;
1301
1302         var_Set( p_input, "title  0", val);
1303         vlc_object_release( p_input );
1304     }
1305 }
1306
1307 void Interface::OnDiscPrev( wxCommandEvent& WXUNUSED(event) )
1308 {
1309     input_thread_t *p_input =
1310         (input_thread_t *)vlc_object_find( p_intf, VLC_OBJECT_INPUT,
1311                                            FIND_ANYWHERE );
1312     if( p_input )
1313     {
1314         int i_type = var_Type( p_input, "prev-chapter" );
1315         vlc_value_t val; val.b_bool = VLC_TRUE;
1316
1317         var_Set( p_input, ( i_type & VLC_VAR_TYPE ) != 0 ?
1318                  "prev-chapter" : "prev-title", val );
1319
1320         vlc_object_release( p_input );
1321     }
1322 }
1323
1324 void Interface::OnDiscNext( wxCommandEvent& WXUNUSED(event) )
1325 {
1326     input_thread_t *p_input =
1327         (input_thread_t *)vlc_object_find( p_intf, VLC_OBJECT_INPUT,
1328                                            FIND_ANYWHERE );
1329     if( p_input )
1330     {
1331         int i_type = var_Type( p_input, "next-chapter" );
1332         vlc_value_t val; val.b_bool = VLC_TRUE;
1333
1334         var_Set( p_input, ( i_type & VLC_VAR_TYPE ) != 0 ?
1335                  "next-chapter" : "next-title", val );
1336
1337         vlc_object_release( p_input );
1338     }
1339 }
1340
1341 #if wxUSE_DRAG_AND_DROP
1342 /*****************************************************************************
1343  * Definition of DragAndDrop class.
1344  *****************************************************************************/
1345 DragAndDrop::DragAndDrop( intf_thread_t *_p_intf, vlc_bool_t _b_enqueue )
1346 {
1347     p_intf = _p_intf;
1348     b_enqueue = _b_enqueue;
1349 }
1350
1351 bool DragAndDrop::OnDropFiles( wxCoord, wxCoord,
1352                                const wxArrayString& filenames )
1353 {
1354     /* Add dropped files to the playlist */
1355
1356     playlist_t *p_playlist =
1357         (playlist_t *)vlc_object_find( p_intf, VLC_OBJECT_PLAYLIST,
1358                                        FIND_ANYWHERE );
1359     if( p_playlist == NULL )
1360     {
1361         return FALSE;
1362     }
1363
1364     for( size_t i = 0; i < filenames.GetCount(); i++ )
1365         playlist_Add( p_playlist, (const char *)filenames[i].mb_str(),
1366                       (const char *)filenames[i].mb_str(),
1367                       PLAYLIST_APPEND | ((i | b_enqueue) ? 0 : PLAYLIST_GO),
1368                       PLAYLIST_END );
1369
1370     vlc_object_release( p_playlist );
1371
1372     return TRUE;
1373 }
1374 #endif
1375
1376 /*****************************************************************************
1377  * Definition of VolCtrl class.
1378  *****************************************************************************/
1379 class wxVolCtrl: public wxGauge
1380 {
1381 public:
1382     /* Constructor */
1383     wxVolCtrl( intf_thread_t *_p_intf, wxWindow* parent, wxWindowID id,
1384                wxPoint = wxDefaultPosition, wxSize = wxSize( 20, -1 ) );
1385     virtual ~wxVolCtrl() {};
1386
1387     void UpdateVolume();
1388     int GetVolume();
1389
1390     void OnChange( wxMouseEvent& event );
1391
1392 private:
1393     intf_thread_t *p_intf;
1394
1395     DECLARE_EVENT_TABLE();
1396 };
1397
1398 BEGIN_EVENT_TABLE(wxVolCtrl, wxWindow)
1399     /* Mouse events */
1400     EVT_LEFT_DOWN(wxVolCtrl::OnChange)
1401     EVT_MOTION(wxVolCtrl::OnChange)
1402 END_EVENT_TABLE()
1403
1404 wxVolCtrl::wxVolCtrl( intf_thread_t *_p_intf, wxWindow* parent, wxWindowID id,
1405                       wxPoint point, wxSize size )
1406   : wxGauge( parent, id, 200, point, size, wxGA_HORIZONTAL | wxGA_SMOOTH )
1407 {
1408     p_intf = _p_intf;
1409     UpdateVolume();
1410 }
1411
1412 void wxVolCtrl::OnChange( wxMouseEvent& event )
1413 {
1414     if( !event.LeftDown() && !event.LeftIsDown() ) return;
1415
1416     int i_volume = event.GetX() * 200 / GetClientSize().GetWidth();
1417     aout_VolumeSet( p_intf, i_volume * AOUT_VOLUME_MAX / 200 / 2 );
1418     UpdateVolume();
1419 }
1420
1421 void wxVolCtrl::UpdateVolume()
1422 {
1423     audio_volume_t i_volume;
1424     aout_VolumeGet( p_intf, &i_volume );
1425
1426     int i_gauge_volume = i_volume * 200 * 2 / AOUT_VOLUME_MAX;
1427     if( i_gauge_volume == GetValue() ) return;
1428
1429     SetValue( i_gauge_volume );
1430     SetToolTip( wxString::Format((wxString)wxU(_("Volume")) + wxT(" %d"),
1431                 i_gauge_volume / 2 ) );
1432 }
1433
1434 #if defined(__WXGTK__)
1435 #define VLCVOL_HEIGHT p_parent->GetSize().GetHeight()
1436 #else
1437 #define VLCVOL_HEIGHT TOOLBAR_BMP_HEIGHT
1438 #endif
1439 VLCVolCtrl::VLCVolCtrl( intf_thread_t *_p_intf, wxWindow *p_parent )
1440   :wxControl( p_parent, -1, wxDefaultPosition, wxSize(64, VLCVOL_HEIGHT ),
1441               wxBORDER_NONE ),
1442    i_y_offset((VLCVOL_HEIGHT - TOOLBAR_BMP_HEIGHT) / 2),
1443    b_mute(0), p_intf(_p_intf)
1444 {
1445     gauge = new wxVolCtrl( p_intf, this, -1, wxPoint( 18, i_y_offset ),
1446                            wxSize( 44, TOOLBAR_BMP_HEIGHT ) );
1447 }
1448
1449 void VLCVolCtrl::OnPaint( wxPaintEvent &evt )
1450 {
1451     wxPaintDC dc( this );
1452     wxBitmap mPlayBitmap( b_mute ? speaker_mute_xpm : speaker_xpm );
1453     dc.DrawBitmap( mPlayBitmap, 0, i_y_offset, TRUE );
1454 }
1455
1456 void VLCVolCtrl::OnChange( wxMouseEvent& event )
1457 {
1458     if( event.GetX() < TOOLBAR_BMP_WIDTH )
1459     {
1460         int i_volume;
1461         aout_VolumeMute( p_intf, (audio_volume_t *)&i_volume );
1462
1463         b_mute = !b_mute;
1464         Refresh();
1465     }
1466 }
1467
1468 void VLCVolCtrl::UpdateVolume()
1469 {
1470     gauge->UpdateVolume();
1471
1472     int i_volume = gauge->GetValue();
1473     if( !!i_volume == !b_mute ) return;
1474     b_mute = !b_mute;
1475     Refresh();
1476 }
1477
1478 /*****************************************************************************
1479  * Systray class.
1480  *****************************************************************************/
1481
1482 #ifdef wxHAS_TASK_BAR_ICON
1483
1484 BEGIN_EVENT_TABLE(Systray, wxTaskBarIcon)
1485     /* Mouse events */
1486 #ifdef WIN32
1487     EVT_TASKBAR_LEFT_DCLICK(Systray::OnLeftClick)
1488 #else
1489     EVT_TASKBAR_LEFT_DOWN(Systray::OnLeftClick)
1490 #endif
1491     /* Menu events */
1492     EVT_MENU(Iconize_Event, Systray::OnMenuIconize)
1493     EVT_MENU(Exit_Event, Systray::OnExit)
1494     EVT_MENU(PlayStream_Event, Systray::OnPlayStream)
1495     EVT_MENU(NextStream_Event, Systray::OnNextStream)
1496     EVT_MENU(PrevStream_Event, Systray::OnPrevStream)
1497     EVT_MENU(StopStream_Event, Systray::OnStopStream)
1498 END_EVENT_TABLE()
1499
1500 Systray::Systray( Interface *_p_main_interface, intf_thread_t *_p_intf )
1501 {
1502     p_main_interface = _p_main_interface;
1503     p_intf = _p_intf;
1504 }
1505
1506 /* Event handlers */
1507 void Systray::OnMenuIconize( wxCommandEvent& event )
1508 {
1509     p_main_interface->Show( ! p_main_interface->IsShown() );
1510     if ( p_main_interface->IsShown() ) p_main_interface->Raise();
1511 }
1512
1513 void Systray::OnLeftClick( wxTaskBarIconEvent& event )
1514 {
1515     wxCommandEvent cevent;
1516     OnMenuIconize(cevent);
1517 }
1518
1519 void Systray::OnExit( wxCommandEvent& event )
1520 {
1521     p_main_interface->Close(TRUE);
1522 }
1523
1524 void Systray::OnPrevStream( wxCommandEvent& event )
1525 {
1526     p_main_interface->PrevStream();
1527 }
1528
1529 void Systray::OnNextStream( wxCommandEvent& event )
1530 {
1531     p_main_interface->NextStream();
1532 }
1533
1534 void Systray::OnPlayStream( wxCommandEvent& event )
1535 {
1536     p_main_interface->PlayStream();
1537 }
1538
1539 void Systray::OnStopStream( wxCommandEvent& event )
1540 {
1541     p_main_interface->StopStream();
1542 }
1543
1544 /* Systray popup menu */
1545 wxMenu* Systray::CreatePopupMenu()
1546 {
1547     int minimal = config_GetInt( p_intf, "wx-minimal" );
1548
1549     wxMenu* systray_menu = new wxMenu;
1550     systray_menu->Append( Exit_Event, wxU(_("Quit VLC")) );
1551     systray_menu->AppendSeparator();
1552     systray_menu->Append( PlayStream_Event, wxU(_("Play/Pause")) );
1553
1554     if (!minimal)
1555     {
1556     systray_menu->Append( PrevStream_Event, wxU(_("Previous")) );
1557     systray_menu->Append( NextStream_Event, wxU(_("Next")) );
1558     systray_menu->Append( StopStream_Event, wxU(_("Stop")) );
1559     }
1560     systray_menu->AppendSeparator();
1561     systray_menu->Append( Iconize_Event, wxU(_("Show/Hide interface")) );
1562     return systray_menu;
1563 }
1564
1565 void Systray::UpdateTooltip( const wxChar* tooltip )
1566 {
1567     SetIcon( wxIcon( vlc16x16_xpm ), tooltip );
1568 }
1569 #endif