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