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