]> git.sesse.net Git - vlc/blob - modules/gui/wxwindows/interface.cpp
fec9e36736a9bb25a8eaa0b0eedddadd6f4ab467
[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     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
160     Iconize_Event
161 };
162
163 BEGIN_EVENT_TABLE(Interface, wxFrame)
164     /* Menu events */
165     EVT_MENU(Exit_Event, Interface::OnExit)
166     EVT_MENU(About_Event, Interface::OnAbout)
167
168     EVT_MENU(Playlist_Event, Interface::OnShowDialog)
169     EVT_MENU(Logs_Event, Interface::OnShowDialog)
170     EVT_MENU(FileInfo_Event, Interface::OnShowDialog)
171     EVT_MENU(Prefs_Event, Interface::OnShowDialog)
172
173     EVT_MENU_OPEN(Interface::OnMenuOpen)
174
175     EVT_MENU( Extended_Event, Interface::OnExtended )
176 //    EVT_MENU( Undock_Event, Interface::OnUndock )
177
178     EVT_MENU( Bookmarks_Event, Interface::OnShowDialog)
179
180 #if defined( __WXMSW__ ) || defined( __WXMAC__ )
181     EVT_CONTEXT_MENU(Interface::OnContextMenu2)
182 #endif
183     EVT_RIGHT_UP(Interface::OnContextMenu)
184
185     /* Toolbar events */
186     EVT_MENU(OpenFileSimple_Event, Interface::OnShowDialog)
187     EVT_MENU(OpenAdv_Event, Interface::OnShowDialog)
188     EVT_MENU(OpenFile_Event, Interface::OnShowDialog)
189     EVT_MENU(OpenDir_Event, Interface::OnShowDialog)
190     EVT_MENU(OpenDisc_Event, Interface::OnShowDialog)
191     EVT_MENU(OpenNet_Event, Interface::OnShowDialog)
192     EVT_MENU(OpenCapture_Event, Interface::OnShowDialog)
193     EVT_MENU(OpenSat_Event, Interface::OnShowDialog)
194     EVT_MENU(Wizard_Event, Interface::OnShowDialog)
195     EVT_MENU(StopStream_Event, Interface::OnStopStream)
196     EVT_MENU(PlayStream_Event, Interface::OnPlayStream)
197     EVT_MENU(PrevStream_Event, Interface::OnPrevStream)
198     EVT_MENU(NextStream_Event, Interface::OnNextStream)
199     EVT_MENU(SlowStream_Event, Interface::OnSlowStream)
200     EVT_MENU(FastStream_Event, Interface::OnFastStream)
201
202     /* Disc Buttons events */
203     EVT_BUTTON(DiscMenu_Event, Interface::OnDiscMenu)
204     EVT_BUTTON(DiscPrev_Event, Interface::OnDiscPrev)
205     EVT_BUTTON(DiscNext_Event, Interface::OnDiscNext)
206
207     /* Slider events */
208     EVT_COMMAND_SCROLL(SliderScroll_Event, Interface::OnSliderUpdate)
209
210     /* Custom events */
211     EVT_COMMAND(0, wxEVT_INTF, Interface::OnControlEvent)
212     EVT_COMMAND(1, wxEVT_INTF, Interface::OnControlEvent)
213
214     EVT_TIMER(ID_CONTROLS_TIMER, Interface::OnControlsTimer)
215     EVT_TIMER(ID_SLIDER_TIMER, Interface::OnSliderTimer)
216 END_EVENT_TABLE()
217
218 /*****************************************************************************
219  * Constructor.
220  *****************************************************************************/
221 Interface::Interface( intf_thread_t *_p_intf, long style ):
222     wxFrame( NULL, -1, wxT("VLC media player"),
223              wxDefaultPosition, wxSize(700,100), style )
224 {
225     /* Initializations */
226     p_intf = _p_intf;
227     i_old_playing_status = PAUSE_S;
228     b_extra = VLC_FALSE;
229 //    b_undock = VLC_FALSE;
230
231
232     extra_window = NULL;
233
234     /* Give our interface a nice little icon */
235     SetIcon( wxIcon( vlc_xpm ) );
236
237     /* Create a sizer for the main frame */
238     frame_sizer = new wxBoxSizer( wxVERTICAL );
239     SetSizer( frame_sizer );
240
241     /* Create a dummy widget that can get the keyboard focus */
242     wxWindow *p_dummy = new wxWindow( this, 0, wxDefaultPosition,
243                                       wxSize(0,0) );
244     p_dummy->SetFocus();
245     frame_sizer->Add( p_dummy, 0, 0 );
246
247 #ifdef wxHAS_TASK_BAR_ICON
248     /* Systray integration */
249     p_systray = NULL;
250     if ( config_GetInt( p_intf, "wxwin-systray" ) )
251     {
252         p_systray = new Systray(this, p_intf);
253         p_systray->SetIcon( wxIcon( vlc16x16_xpm ), wxT("VLC media player") );
254         if ( (! p_systray->IsOk()) || (! p_systray->IsIconInstalled()) )
255         {
256             msg_Warn(p_intf, "Cannot set systray icon, weird things may happen");
257         }
258     }
259 #endif
260
261     /* Creation of the menu bar */
262     CreateOurMenuBar();
263
264     /* Creation of the tool bar */
265     CreateOurToolBar();
266
267     /* Create the extra panel */
268     extra_frame = new ExtraPanel( p_intf, this );
269     frame_sizer->Add( extra_frame, 0, wxEXPAND , 0 );
270     frame_sizer->Hide( extra_frame );
271
272     /* Creation of the status bar
273      * Helptext for menu items and toolbar tools will automatically get
274      * displayed here. */
275     int i_status_width[3] = {-6, -2, -9};
276     statusbar = CreateStatusBar( 3 );                            /* 2 fields */
277     statusbar->SetStatusWidths( 3, i_status_width );
278     statusbar->SetStatusText( wxString::Format(wxT("x%.2f"), 1.0), 1 );
279
280     /* Video window */
281     video_window = 0;
282     if( config_GetInt( p_intf, "wxwin-embed" ) )
283     {
284         video_window = CreateVideoWindow( p_intf, this );
285         frame_sizer->Add( p_intf->p_sys->p_video_sizer, 1, wxEXPAND, 0 );
286     }
287
288     /* Creation of the slider sub-window */
289     CreateOurSlider();
290     frame_sizer->Add( slider_frame, 0, wxEXPAND , 0 );
291     frame_sizer->Hide( slider_frame );
292
293     /* Make sure we've got the right background colour */
294     SetBackgroundColour( slider_frame->GetBackgroundColour() );
295
296     /* Layout everything */
297     frame_sizer->Layout();
298     frame_sizer->Fit(this);
299
300 #if wxUSE_DRAG_AND_DROP
301     /* Associate drop targets with the main interface */
302     SetDropTarget( new DragAndDrop( p_intf ) );
303 #endif
304
305     SetupHotkeys();
306
307     m_controls_timer.SetOwner(this, ID_CONTROLS_TIMER);
308     m_slider_timer.SetOwner(this, ID_SLIDER_TIMER);
309
310     /* Start timer */
311     timer = new Timer( p_intf, this );
312
313     /* */
314     WindowSettings *ws = p_intf->p_sys->p_window_settings;
315     wxPoint p;
316     wxSize  s;
317     bool    b_shown;
318
319     ws->SetScreen( wxSystemSettings::GetMetric( wxSYS_SCREEN_X ),
320                    wxSystemSettings::GetMetric( wxSYS_SCREEN_Y ) );
321
322     if( ws->GetSettings( WindowSettings::ID_MAIN, b_shown, p, s ) )
323         Move( p );
324 }
325
326 Interface::~Interface()
327 {
328     WindowSettings *ws = p_intf->p_sys->p_window_settings;
329
330     ws->SetSettings( WindowSettings::ID_MAIN, true,
331                      GetPosition(), GetSize() );
332
333     if( video_window ) delete video_window;
334
335 #ifdef wxHAS_TASK_BAR_ICON
336     if( p_systray ) delete p_systray;
337 #endif
338
339     if( p_intf->p_sys->p_wxwindow ) delete p_intf->p_sys->p_wxwindow;
340
341     /* Clean up */
342     delete timer;
343 }
344
345 void Interface::Init()
346 {
347     /* Misc init */
348     SetupHotkeys();
349 }
350
351 void Interface::Update()
352 {
353     /* Misc updates */
354     ((VLCVolCtrl *)volctrl)->UpdateVolume();
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     if( i_playing_status == PLAYING_S )
1263     {
1264         p_tool->SetNormalBitmap( wxBitmap( pause_xpm ) );
1265         p_tool->SetLabel( wxU(_("Pause")) );
1266         p_tool->SetShortHelp( wxU(_(HELP_PAUSE)) );
1267     }
1268     else
1269     {
1270         p_tool->SetNormalBitmap( wxBitmap( play_xpm ) );
1271         p_tool->SetLabel( wxU(_("Play")) );
1272         p_tool->SetShortHelp( wxU(_(HELP_PLAY)) );
1273     }
1274
1275     GetToolBar()->Realize();
1276
1277     i_old_playing_status = i_playing_status;
1278 }
1279
1280 void Interface::OnDiscMenu( wxCommandEvent& WXUNUSED(event) )
1281 {
1282     input_thread_t *p_input =
1283         (input_thread_t *)vlc_object_find( p_intf, VLC_OBJECT_INPUT,
1284                                            FIND_ANYWHERE );
1285     if( p_input )
1286     {
1287         vlc_value_t val; val.i_int = 2;
1288
1289         var_Set( p_input, "title  0", val);
1290         vlc_object_release( p_input );
1291     }
1292 }
1293
1294 void Interface::OnDiscPrev( wxCommandEvent& WXUNUSED(event) )
1295 {
1296     input_thread_t *p_input =
1297         (input_thread_t *)vlc_object_find( p_intf, VLC_OBJECT_INPUT,
1298                                            FIND_ANYWHERE );
1299     if( p_input )
1300     {
1301         int i_type = var_Type( p_input, "prev-chapter" );
1302         vlc_value_t val; val.b_bool = VLC_TRUE;
1303
1304         var_Set( p_input, ( i_type & VLC_VAR_TYPE ) != 0 ?
1305                  "prev-chapter" : "prev-title", val );
1306
1307         vlc_object_release( p_input );
1308     }
1309 }
1310
1311 void Interface::OnDiscNext( wxCommandEvent& WXUNUSED(event) )
1312 {
1313     input_thread_t *p_input =
1314         (input_thread_t *)vlc_object_find( p_intf, VLC_OBJECT_INPUT,
1315                                            FIND_ANYWHERE );
1316     if( p_input )
1317     {
1318         int i_type = var_Type( p_input, "next-chapter" );
1319         vlc_value_t val; val.b_bool = VLC_TRUE;
1320
1321         var_Set( p_input, ( i_type & VLC_VAR_TYPE ) != 0 ?
1322                  "next-chapter" : "next-title", val );
1323
1324         vlc_object_release( p_input );
1325     }
1326 }
1327
1328 #if wxUSE_DRAG_AND_DROP
1329 /*****************************************************************************
1330  * Definition of DragAndDrop class.
1331  *****************************************************************************/
1332 DragAndDrop::DragAndDrop( intf_thread_t *_p_intf, vlc_bool_t _b_enqueue )
1333 {
1334     p_intf = _p_intf;
1335     b_enqueue = _b_enqueue;
1336 }
1337
1338 bool DragAndDrop::OnDropFiles( wxCoord, wxCoord,
1339                                const wxArrayString& filenames )
1340 {
1341     /* Add dropped files to the playlist */
1342
1343     playlist_t *p_playlist =
1344         (playlist_t *)vlc_object_find( p_intf, VLC_OBJECT_PLAYLIST,
1345                                        FIND_ANYWHERE );
1346     if( p_playlist == NULL )
1347     {
1348         return FALSE;
1349     }
1350
1351     for( size_t i = 0; i < filenames.GetCount(); i++ )
1352         playlist_Add( p_playlist, (const char *)filenames[i].mb_str(),
1353                       (const char *)filenames[i].mb_str(),
1354                       PLAYLIST_APPEND | ((i | b_enqueue) ? 0 : PLAYLIST_GO),
1355                       PLAYLIST_END );
1356
1357     vlc_object_release( p_playlist );
1358
1359     return TRUE;
1360 }
1361 #endif
1362
1363 /*****************************************************************************
1364  * Definition of VolCtrl class.
1365  *****************************************************************************/
1366 class wxVolCtrl: public wxGauge
1367 {
1368 public:
1369     /* Constructor */
1370     wxVolCtrl( intf_thread_t *_p_intf, wxWindow* parent, wxWindowID id,
1371                wxPoint = wxDefaultPosition, wxSize = wxSize( 20, -1 ) );
1372     virtual ~wxVolCtrl() {};
1373
1374     void UpdateVolume();
1375
1376     void OnChange( wxMouseEvent& event );
1377
1378 private:
1379     intf_thread_t *p_intf;
1380
1381     DECLARE_EVENT_TABLE();
1382 };
1383
1384 BEGIN_EVENT_TABLE(wxVolCtrl, wxWindow)
1385     /* Mouse events */
1386     EVT_LEFT_DOWN(wxVolCtrl::OnChange)
1387     EVT_MOTION(wxVolCtrl::OnChange)
1388 END_EVENT_TABLE()
1389
1390 wxVolCtrl::wxVolCtrl( intf_thread_t *_p_intf, wxWindow* parent, wxWindowID id,
1391                       wxPoint point, wxSize size )
1392   : wxGauge( parent, id, 200, point, size, wxGA_HORIZONTAL | wxGA_SMOOTH )
1393 {
1394     p_intf = _p_intf;
1395     UpdateVolume();
1396 }
1397
1398 void wxVolCtrl::OnChange( wxMouseEvent& event )
1399 {
1400     if( !event.LeftDown() && !event.LeftIsDown() ) return;
1401
1402     int i_volume = event.GetX() * 200 / GetClientSize().GetWidth();
1403     aout_VolumeSet( p_intf, i_volume * AOUT_VOLUME_MAX / 200 / 2 );
1404     UpdateVolume();
1405 }
1406
1407 void wxVolCtrl::UpdateVolume()
1408 {
1409     audio_volume_t i_volume;
1410     aout_VolumeGet( p_intf, &i_volume );
1411
1412     int i_gauge_volume = i_volume * 200 * 2 / AOUT_VOLUME_MAX;
1413     if( i_gauge_volume == GetValue() ) return;
1414
1415     SetValue( i_gauge_volume );
1416     SetToolTip( wxString::Format((wxString)wxU(_("Volume")) + wxT(" %d"),
1417                 i_gauge_volume / 2 ) );
1418 }
1419
1420 #if defined(__WXGTK__)
1421 #define VLCVOL_HEIGHT p_parent->GetSize().GetHeight()
1422 #else
1423 #define VLCVOL_HEIGHT TOOLBAR_BMP_HEIGHT
1424 #endif
1425 VLCVolCtrl::VLCVolCtrl( intf_thread_t *_p_intf, wxWindow *p_parent )
1426   :wxControl( p_parent, -1, wxDefaultPosition, wxSize(64, VLCVOL_HEIGHT ),
1427               wxBORDER_NONE ),
1428    i_y_offset((VLCVOL_HEIGHT - TOOLBAR_BMP_HEIGHT) / 2),
1429    b_mute(0), p_intf(_p_intf)
1430 {
1431     gauge = new wxVolCtrl( p_intf, this, -1, wxPoint( 18, i_y_offset ),
1432                            wxSize( 44, TOOLBAR_BMP_HEIGHT ) );
1433 }
1434
1435 void VLCVolCtrl::OnPaint( wxPaintEvent &evt )
1436 {
1437     wxPaintDC dc( this );
1438     wxBitmap mPlayBitmap( b_mute ? speaker_mute_xpm : speaker_xpm );
1439     dc.DrawBitmap( mPlayBitmap, 0, i_y_offset, TRUE );
1440 }
1441
1442 void VLCVolCtrl::OnChange( wxMouseEvent& event )
1443 {
1444     if( event.GetX() < TOOLBAR_BMP_WIDTH )
1445     {
1446         int i_volume;
1447         aout_VolumeMute( p_intf, (audio_volume_t *)&i_volume );
1448
1449         b_mute = !b_mute;
1450         Refresh();
1451     }
1452 }
1453
1454 void VLCVolCtrl::UpdateVolume()
1455 {
1456     gauge->UpdateVolume();
1457 }
1458
1459 /*****************************************************************************
1460  * Systray class.
1461  *****************************************************************************/
1462
1463 #ifdef wxHAS_TASK_BAR_ICON
1464
1465 BEGIN_EVENT_TABLE(Systray, wxTaskBarIcon)
1466     /* Mouse events */
1467 #ifdef WIN32
1468     EVT_TASKBAR_LEFT_DCLICK(Systray::OnLeftClick)
1469 #else
1470     EVT_TASKBAR_LEFT_DOWN(Systray::OnLeftClick)
1471 #endif
1472     /* Menu events */
1473     EVT_MENU(Iconize_Event, Systray::OnMenuIconize)
1474     EVT_MENU(Exit_Event, Systray::OnExit)
1475     EVT_MENU(PlayStream_Event, Systray::OnPlayStream)
1476     EVT_MENU(NextStream_Event, Systray::OnNextStream)
1477     EVT_MENU(PrevStream_Event, Systray::OnPrevStream)
1478     EVT_MENU(StopStream_Event, Systray::OnStopStream)
1479 END_EVENT_TABLE()
1480
1481 Systray::Systray( Interface *_p_main_interface, intf_thread_t *_p_intf )
1482 {
1483     p_main_interface = _p_main_interface;
1484     p_intf = _p_intf;
1485 }
1486
1487 /* Event handlers */
1488 void Systray::OnMenuIconize( wxCommandEvent& event )
1489 {
1490     p_main_interface->Show( ! p_main_interface->IsShown() );
1491     if ( p_main_interface->IsShown() ) p_main_interface->Raise();
1492 }
1493
1494 void Systray::OnLeftClick( wxTaskBarIconEvent& event )
1495 {
1496     wxCommandEvent cevent;
1497     OnMenuIconize(cevent);
1498 }
1499
1500 void Systray::OnExit( wxCommandEvent& event )
1501 {
1502     p_main_interface->Close(TRUE);
1503 }
1504
1505 void Systray::OnPrevStream( wxCommandEvent& event )
1506 {
1507     p_main_interface->PrevStream();
1508 }
1509
1510 void Systray::OnNextStream( wxCommandEvent& event )
1511 {
1512     p_main_interface->NextStream();
1513 }
1514
1515 void Systray::OnPlayStream( wxCommandEvent& event )
1516 {
1517     p_main_interface->PlayStream();
1518 }
1519
1520 void Systray::OnStopStream( wxCommandEvent& event )
1521 {
1522     p_main_interface->StopStream();
1523 }
1524
1525 /* Systray popup menu */
1526 wxMenu* Systray::CreatePopupMenu()
1527 {
1528     int minimal = config_GetInt( p_intf, "wxwin-minimal" );
1529
1530     wxMenu* systray_menu = new wxMenu;
1531     systray_menu->Append( Exit_Event, wxU(_("Quit VLC")) );
1532     systray_menu->AppendSeparator();
1533     systray_menu->Append( PlayStream_Event, wxU(_("Play/Pause")) );
1534
1535     if (!minimal)
1536     {
1537     systray_menu->Append( PrevStream_Event, wxU(_("Previous")) );
1538     systray_menu->Append( NextStream_Event, wxU(_("Next")) );
1539     systray_menu->Append( StopStream_Event, wxU(_("Stop")) );
1540     }
1541     systray_menu->AppendSeparator();
1542     systray_menu->Append( Iconize_Event, wxU(_("Show/Hide interface")) );
1543     return systray_menu;
1544 }
1545
1546 void Systray::UpdateTooltip( const wxChar* tooltip )
1547 {
1548     SetIcon( wxIcon( vlc16x16_xpm ), tooltip );
1549 }
1550 #endif