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