]> git.sesse.net Git - vlc/blob - modules/gui/wxwidgets/interface.cpp
60b1973bfedbf96e09f9b84a3a6b8b6474f9baf8
[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 "vlc_charset.h"
35
36 #include <vlc_aout.h>
37 #include "vlc_charset.h"
38
39 #include <vlc_interface.h>
40
41 #include <wx/splitter.h>
42
43 #include <wx/utils.h>                             /* wxLaunchDefaultBrowser() */
44
45 /* include the toolbar graphics */
46 #include "bitmaps/play.xpm"
47 #include "bitmaps/pause.xpm"
48 #include "bitmaps/stop.xpm"
49 #include "bitmaps/prev.xpm"
50 #include "bitmaps/next.xpm"
51 #include "bitmaps/eject.xpm"
52 #include "bitmaps/slow.xpm"
53 #include "bitmaps/fast.xpm"
54 #include "bitmaps/playlist.xpm"
55 #include "bitmaps/playlist_small.xpm"
56 #include "bitmaps/speaker.xpm"
57 #include "bitmaps/speaker_mute.xpm"
58
59 #define TOOLBAR_BMP_WIDTH 16
60 #define TOOLBAR_BMP_HEIGHT 16
61
62 /* include the icon graphic */
63 #include "../../../share/vlc32x32.xpm"
64 /* include a small icon graphic for the systray icon */
65 #ifdef wxHAS_TASK_BAR_ICON
66 #include "../../../share/vlc16x16.xpm"
67 #endif
68
69 /*****************************************************************************
70  * Local prototypes
71  *****************************************************************************/
72  static int InteractCallback( vlc_object_t *, const char *, vlc_value_t,
73                              vlc_value_t, void *);
74
75 /*****************************************************************************
76  * Local class declarations.
77  *****************************************************************************/
78 class wxMenuExt: public wxMenu
79 {
80 public:
81     /* Constructor */
82     wxMenuExt( wxMenu* parentMenu, int id, const wxString& text,
83                    const wxString& helpString, wxItemKind kind,
84                    char *_psz_var, int _i_object_id, vlc_value_t _val,
85                    int _i_val_type );
86
87     virtual ~wxMenuExt() {};
88
89     char *psz_var;
90     int  i_val_type;
91     int  i_object_id;
92     vlc_value_t val;
93
94 private:
95
96 };
97
98 class Splitter : public wxSplitterWindow
99 {
100 public:
101     Splitter( wxWindow *p_parent, intf_thread_t *_p_intf )
102       : wxSplitterWindow( p_parent, -1, wxDefaultPosition, wxSize(0,0),
103 #if defined( __WXMSW__ )
104                           wxCLIP_CHILDREN ),
105 #else
106                           wxCLIP_CHILDREN | wxSP_3DSASH ),
107 #endif
108         p_intf(_p_intf), b_video(0), i_delay(0)
109     {
110         SetSashSize( 0 );
111
112         wxSize size = wxSize(-1, 150);
113         wxPoint p = wxPoint(0,0);
114         bool b_dummy;
115         WindowSettings *ws = p_intf->p_sys->p_window_settings;
116         ws->GetSettings( WindowSettings::ID_SMALL_PLAYLIST, b_dummy, p, size );
117
118         i_width = size.GetWidth();
119         i_sash_position = size.GetHeight();
120         b_show_on_start = !!p.x;
121     }
122
123     virtual ~Splitter()
124     {
125         WindowSettings *ws = p_intf->p_sys->p_window_settings;
126         ws->SetSettings( WindowSettings::ID_SMALL_PLAYLIST, true,
127                          wxPoint(!!GetWindow2(),0),
128                          wxSize(i_width, i_sash_position) );
129     };
130
131     virtual bool Split( wxWindow* window1, wxWindow* window2 )
132     {
133         SetSashSize( 0 );
134         wxSize size = wxSize( i_width, i_sash_position );
135         if( window2->GetSizer() ) window2->GetSizer()->SetMinSize( size );
136
137         return wxSplitterWindow::SplitHorizontally( window1, window2,
138                                                     -i_sash_position );
139     }
140
141     virtual bool Unsplit( wxWindow* window )
142     {
143         SetSashSize( 0 );
144         return wxSplitterWindow::Unsplit( window );
145     }
146
147     bool ShowOnStart() { return b_show_on_start; }
148
149 private:
150     DECLARE_EVENT_TABLE()
151
152     void OnSize( wxSizeEvent &event )
153     {
154         /* If we display video, then resize the video window */
155         if( GetWindow2() &&
156             p_intf->p_sys->p_video_window && p_intf->p_sys->p_video_sizer &&
157             p_intf->p_sys->p_video_sizer->GetMinSize() != wxSize(0,0) )
158         {
159             if( !b_video ) i_delay = mdate() + 1000000;
160             b_video = true;
161
162             SetSashSize( -1 );
163
164 #if defined( __WXMSW__ )
165             SetSashPosition( event.GetSize().GetHeight() - i_sash_position );
166 #else
167             SetSashPosition( event.GetSize().GetHeight() -
168                              i_sash_position - GetSashSize() );
169 #endif
170         }
171         else if( GetWindow2() && GetWindow1() && GetWindow1()->GetSizer() )
172         {
173             wxSize size = GetWindow1()->GetSizer()->GetMinSize();
174
175             if( b_video ) i_delay = mdate() + 1000000;
176             b_video = false;
177
178             if( event.GetSize().GetHeight() - size.GetHeight() )
179             {
180                 SetSashSize( 0 );
181
182                 SetSashPosition( size.GetHeight() ? size.GetHeight() : 1 );
183
184                 if( i_delay < mdate() )
185                 {
186                     i_sash_position = event.GetSize().GetHeight() -
187                         size.GetHeight();
188                     i_width = event.GetSize().GetWidth();
189
190                     size = wxSize( i_width, i_sash_position );
191                     if( GetWindow2()->GetSizer() )
192                         GetWindow2()->GetSizer()->SetMinSize( size );
193                 }
194             }
195         }
196
197         event.Skip();
198     }
199
200     void OnSashPosChanged( wxSplitterEvent &event )
201     {
202         if( !GetSize().GetHeight() ){ event.Skip(); return; }
203
204         if( i_delay < mdate() )
205         {
206             i_sash_position = GetSize().GetHeight() - event.GetSashPosition();
207
208             wxSize size = wxSize( i_width, i_sash_position );
209             if( GetWindow2()->GetSizer() )
210                 GetWindow2()->GetSizer()->SetMinSize( size );
211         }
212         event.Skip();
213     }
214
215     intf_thread_t *p_intf;
216     int i_sash_position;
217     int i_width;
218     bool b_video;
219     mtime_t i_delay;
220     bool b_show_on_start;
221 };
222
223 BEGIN_EVENT_TABLE(Splitter, wxSplitterWindow)
224     EVT_SIZE( Splitter::OnSize )
225     EVT_SPLITTER_SASH_POS_CHANGED(-1, Splitter::OnSashPosChanged)
226 END_EVENT_TABLE()
227
228 /*****************************************************************************
229  * Event Table.
230  *****************************************************************************/
231
232 DEFINE_LOCAL_EVENT_TYPE( wxEVT_INTF );
233
234 /* IDs for the controls and the menu commands */
235 enum
236 {
237     /* menu items */
238     MenuDummy_Event = wxID_HIGHEST + 1000,
239     Exit_Event = wxID_HIGHEST,
240     OpenFileSimple_Event,
241     OpenAdv_Event,
242     OpenFile_Event,
243     OpenDir_Event,
244     OpenDisc_Event,
245     OpenNet_Event,
246     OpenCapture_Event,
247     OpenSat_Event,
248     OpenOther_Event,
249     EjectDisc_Event,
250
251     Wizard_Event,
252
253     Playlist_Event,
254     PlaylistSmall_Event,
255     Logs_Event,
256     FileInfo_Event,
257
258     Prefs_Event,
259     Extended_Event,
260     Bookmarks_Event,
261     Skins_Event,
262
263     StopStream_Event,
264     PlayStream_Event,
265     PrevStream_Event,
266     NextStream_Event,
267     SlowStream_Event,
268     FastStream_Event,
269     ToggleMute_Event,
270     SlideVolume_Event,
271
272     /* it is important for the id corresponding to the "About" command to have
273      * this standard value as otherwise it won't be handled properly under Mac
274      * (where it is special and put into the "Apple" menu) */
275     About_Event = wxID_ABOUT,
276     OnWebLink_Event,
277     OnWebHelp_Event,
278 #ifdef UPDATE_CHECK
279     UpdateVLC_Event,
280 #endif
281     //VLM_Event,
282
283     Iconize_Event,
284 };
285
286 DEFINE_LOCAL_EVENT_TYPE( wxEVT_INTERACTION );
287
288 BEGIN_EVENT_TABLE(Interface, wxFrame)
289     /* Menu events */
290     EVT_MENU(Exit_Event, Interface::OnExit)
291     EVT_MENU(About_Event, Interface::OnAbout)
292     EVT_MENU(OnWebLink_Event, Interface::OnWebLink)
293     EVT_MENU(OnWebHelp_Event, Interface::OnWebHelp)
294 #ifdef UPDATE_CHECK
295     EVT_MENU(UpdateVLC_Event, Interface::OnShowDialog)
296 #endif
297     //EVT_MENU(VLM_Event, Interface::OnShowDialog)
298
299     EVT_MENU(Playlist_Event, Interface::OnShowDialog)
300     EVT_MENU(PlaylistSmall_Event, Interface::OnSmallPlaylist)
301     EVT_MENU(Logs_Event, Interface::OnShowDialog)
302     EVT_MENU(FileInfo_Event, Interface::OnShowDialog)
303     EVT_MENU(Prefs_Event, Interface::OnShowDialog)
304
305     EVT_MENU_OPEN(Interface::OnMenuOpen)
306
307     EVT_MENU( Extended_Event, Interface::OnExtended )
308
309     EVT_MENU( Bookmarks_Event, Interface::OnShowDialog)
310
311 #if defined( __WXMSW__ ) || defined( __WXMAC__ )
312     EVT_CONTEXT_MENU(Interface::OnContextMenu2)
313 #endif
314     EVT_RIGHT_UP(Interface::OnContextMenu)
315
316     /* Toolbar events */
317     EVT_MENU(OpenFileSimple_Event, Interface::OnShowDialog)
318     EVT_MENU(OpenAdv_Event, Interface::OnShowDialog)
319     EVT_MENU(OpenFile_Event, Interface::OnShowDialog)
320     EVT_MENU(OpenDir_Event, Interface::OnShowDialog)
321     EVT_MENU(OpenDisc_Event, Interface::OnShowDialog)
322     EVT_MENU(OpenNet_Event, Interface::OnShowDialog)
323     EVT_MENU(OpenCapture_Event, Interface::OnShowDialog)
324     EVT_MENU(OpenSat_Event, Interface::OnShowDialog)
325     EVT_MENU(Wizard_Event, Interface::OnShowDialog)
326     EVT_MENU(StopStream_Event, Interface::OnStopStream)
327     EVT_MENU(PlayStream_Event, Interface::OnPlayStream)
328     EVT_MENU(PrevStream_Event, Interface::OnPrevStream)
329     EVT_MENU(NextStream_Event, Interface::OnNextStream)
330     EVT_MENU(SlowStream_Event, Interface::OnSlowStream)
331     EVT_MENU(FastStream_Event, Interface::OnFastStream)
332     EVT_MENU(ToggleMute_Event, Interface::OnToggleMute)
333     EVT_COMMAND_SCROLL(SlideVolume_Event, Interface::OnSlideVolume)
334
335     /* Custom events */
336     EVT_COMMAND(0, wxEVT_INTF, Interface::OnControlEvent)
337     EVT_COMMAND(1, wxEVT_INTF, Interface::OnControlEvent)
338
339     EVT_COMMAND( -1, wxEVT_INTERACTION, Interface::OnInteraction )
340 END_EVENT_TABLE()
341
342 /*****************************************************************************
343  * Constructor.
344  *****************************************************************************/
345 Interface::Interface( intf_thread_t *_p_intf, long style ):
346     wxFrame( NULL, -1, wxT("VLC media player"),
347              wxDefaultPosition, wxSize(700,100), style )
348 {
349     /* Initializations */
350     p_intf = _p_intf;
351     b_extra = false;
352     extra_frame = 0;
353     playlist_manager = 0;
354     i_update_counter = 0;
355
356
357     /* Give our interface a nice little icon */
358     SetIcon( wxIcon( (const char**) vlc_xpm ) );
359
360     /* Create a splitter window that will fill in the interface window.
361      * We need a splitter bar in order to make the embedded playlist
362      * resizable. */
363     splitter = new Splitter( this, p_intf );
364     main_sizer = new wxBoxSizer( wxVERTICAL );
365     main_sizer->Add( splitter, 1, wxEXPAND );
366     SetSizer( main_sizer );
367
368     /* Create a main panel that will fill in the interface window */
369     main_panel = new wxPanel( splitter, -1, wxPoint(0,0), wxSize(0,0),
370                               wxCLIP_CHILDREN );
371     main_panel->SetFocus();
372
373 #if defined(__WXGTK20__) && wxCHECK_VERSION(2,5,6)
374     /* As ugly as your butt! Please remove when wxWidgets 2.6 fixed their
375      * Accelerators bug. */
376     main_panel->m_imData = 0;
377     m_imData = 0;
378 #endif
379
380     /* Create a sizer for the main frame */
381     panel_sizer = new wxBoxSizer( wxVERTICAL );
382     main_panel->SetSizer( panel_sizer );
383
384     /* Put this in the splitter */
385     splitter->Initialize( main_panel );
386
387 /* wxCocoa pretends to support this, but at least 2.6.x doesn't */
388 #ifndef __APPLE__
389 #ifdef wxHAS_TASK_BAR_ICON
390     /* Systray integration */
391     p_systray = NULL;
392     if( config_GetInt( p_intf, "wx-systray" ) )
393     {
394         p_systray = new Systray( this, p_intf );
395     }
396 #endif
397 #endif
398
399     /* Creation of the menu bar */
400     CreateOurMenuBar();
401
402     /* Creation of the tool bar */
403     CreateOurToolBar();
404
405     /* Creation of the status bar
406      * Helptext for menu items and toolbar tools will automatically get
407      * displayed here. */
408     int i_status_width[3] = {150, 55, -1};
409     statusbar = CreateStatusBar( 3 );                            /* 2 fields */
410     statusbar->SetStatusWidths( 3, i_status_width );
411     statusbar->SetStatusText( wxString::Format(wxT("x%.2f"), 1.0), 1 );
412
413     /* Get minimum window size to prevent user from glitching it */
414     splitter->SetSizeHints( -1, 0 );
415     panel_sizer->Layout(); panel_sizer->Fit( main_panel );
416     main_sizer->Layout(); main_sizer->Fit( this );
417     main_min_size = GetSize();
418     /* FIXME HACK as far as i understan (i.e. not a lot) the toolbar
419      * doesn't take the labels into account when it returns its size */
420
421     if( config_GetInt(p_intf, "wx-labels") )
422     {
423         main_min_size.SetWidth(800);
424     }
425     splitter->SetSizeHints( -1, -1 );
426
427     /* Video window */
428     video_window = 0;
429     if( config_GetInt( p_intf, "wx-embed" ) )
430     {
431         video_window = CreateVideoWindow( p_intf, main_panel );
432         panel_sizer->Add( p_intf->p_sys->p_video_sizer, 1, wxEXPAND, 0 );
433     }
434
435     /* Creation of the input manager panel */
436     input_manager = new InputManager( p_intf, this, main_panel );
437     panel_sizer->Add( input_manager, 0, wxEXPAND , 0 );
438
439     /* Layout everything */
440     splitter->SetSizeHints( -1, 0 );
441     panel_sizer->Layout(); panel_sizer->Fit( main_panel );
442     main_sizer->Layout(); main_sizer->Fit( this );
443     splitter->SetSizeHints( -1, -1 );
444
445 #if wxUSE_DRAG_AND_DROP
446     /* Associate drop targets with the main interface */
447     SetDropTarget( new DragAndDrop( p_intf ) );
448 #endif
449
450     SetupHotkeys();
451
452     /* Start timer */
453     timer = new Timer( p_intf, this );
454
455     /* Restore previous position / settings */
456     WindowSettings *ws = p_intf->p_sys->p_window_settings;
457     wxPoint p;
458     wxSize s;
459     bool b_shown;
460
461     ws->SetScreen( wxSystemSettings::GetMetric( wxSYS_SCREEN_X ),
462                    wxSystemSettings::GetMetric( wxSYS_SCREEN_Y ) );
463
464     if( ws->GetSettings( WindowSettings::ID_MAIN, b_shown, p, s ) ) Move( p );
465
466     /* Show extended GUI if requested */
467     wxCommandEvent dummy;
468     if( config_GetInt( p_intf, "wx-extended" ) ) OnExtended( dummy );
469
470     SetIntfMinSize();
471
472     var_Create( p_intf, "interaction", VLC_VAR_ADDRESS );
473     var_AddCallback( p_intf, "interaction", InteractCallback, this );
474     p_intf->b_interaction = true;
475
476     /* Show embedded playlist if requested */
477     if( splitter->ShowOnStart() ) OnSmallPlaylist( dummy );
478 }
479
480 Interface::~Interface()
481 {
482     WindowSettings *ws = p_intf->p_sys->p_window_settings;
483
484     if( !IsIconized() )
485     {
486         ws->SetSettings( WindowSettings::ID_MAIN, true,
487                          GetPosition(), GetSize() );
488     }
489
490     PopEventHandler(true);
491
492     delete video_window;
493
494 /* wxCocoa pretends to support this, but at least 2.6.x doesn't */
495 #ifndef __APPLE__
496 #ifdef wxHAS_TASK_BAR_ICON
497     delete p_systray;
498 #endif
499 #endif
500
501     p_intf->b_interaction = false;
502     var_DelCallback( p_intf, "interaction", InteractCallback, this );
503
504     delete p_intf->p_sys->p_wxwindow;
505
506
507     /* Clean up */
508     delete timer;
509 }
510
511 void Interface::Init()
512 {
513     /* Misc init */
514     SetupHotkeys();
515 }
516
517 void Interface::Update()
518 {
519     /* Misc updates */
520
521     if( playlist_manager ) playlist_manager->Update();
522
523     i_update_counter++;
524 }
525
526 void Interface::OnControlEvent( wxCommandEvent& event )
527 {
528     switch( event.GetId() )
529     {
530     case 0:
531         main_sizer->Layout();
532         main_sizer->Fit( this );
533         break;
534
535     case 1:
536         long i_style = GetWindowStyle();
537         if( event.GetInt() ) i_style |= wxSTAY_ON_TOP;
538         else i_style &= ~wxSTAY_ON_TOP;
539         SetWindowStyle( i_style );
540         break;
541     }
542 }
543
544 /*****************************************************************************
545  * Private methods.
546  *****************************************************************************/
547 void Interface::CreateOurMenuBar()
548 {
549     int minimal = config_GetInt( p_intf, "wx-minimal" );
550
551     /* Create the "File" menu */
552     wxMenu *file_menu = new wxMenu;
553
554     if (!minimal)
555     {
556     file_menu->Append( OpenFileSimple_Event,
557                        wxU(_("Quick &Open File...\tCtrl-O")) );
558
559     file_menu->AppendSeparator();
560     file_menu->Append( OpenFile_Event, wxU(_("Open &File...\tCtrl-F")) );
561     file_menu->Append( OpenDir_Event, wxU(_("Open Dir&ectory...\tCtrl-E")) );
562     file_menu->Append( OpenDisc_Event, wxU(_("Open &Disc...\tCtrl-D")) );
563     file_menu->Append( OpenNet_Event,
564                        wxU(_("Open &Network Stream...\tCtrl-N")) );
565     file_menu->Append( OpenCapture_Event,
566                        wxU(_("Open C&apture Device...\tCtrl-A")) );
567
568     file_menu->AppendSeparator();
569     file_menu->Append( Wizard_Event, wxU(_("&Wizard...\tCtrl-W")) );
570     file_menu->AppendSeparator();
571     }
572     file_menu->Append( Exit_Event, wxU(_("E&xit\tCtrl-X")) );
573
574     /* Create the "View" menu */
575     wxMenu *view_menu = new wxMenu;
576     if (!minimal)
577     {
578     view_menu->Append( Playlist_Event, wxU(_("&Playlist...\tCtrl-P")) );
579     }
580     view_menu->Append( Logs_Event, wxU(_("&Messages...\tCtrl-M")) );
581     view_menu->Append( FileInfo_Event,
582                        wxU(_("Stream and Media &Info...\tCtrl-I")) );
583 #if 0
584     view_menu->Append( VLM_Event,
585                        wxU(_("VLM Control...\tCtrl-V")) );
586 #endif
587
588     /* Create the "Auto-generated" menus */
589     p_settings_menu = SettingsMenu( p_intf, this );
590     p_audio_menu = AudioMenu( p_intf, this );
591     p_video_menu = VideoMenu( p_intf, this );
592     p_navig_menu = NavigMenu( p_intf, this );
593
594     /* Create the "Help" menu */
595     wxMenu *help_menu = new wxMenu;
596     help_menu->Append( OnWebLink_Event, wxU(_("VideoLAN's Website")) );
597     help_menu->Append( OnWebHelp_Event, wxU(_("Online Help")) );
598     help_menu->AppendSeparator();
599     help_menu->Append( About_Event, wxU(_("About...")) );
600 #ifdef UPDATE_CHECK
601     help_menu->AppendSeparator();
602     help_menu->Append( UpdateVLC_Event, wxU(_("Check for Updates...")) );
603 #endif
604
605     /* Append the freshly created menus to the menu bar... */
606     wxMenuBar *menubar = new wxMenuBar();
607     menubar->Append( file_menu, wxU(_("&File")) );
608     menubar->Append( view_menu, wxU(_("V&iew")) );
609     menubar->Append( p_settings_menu, wxU(_("&Settings")) );
610     menubar->Append( p_audio_menu, wxU(_("&Audio")) );
611     menubar->Append( p_video_menu, wxU(_("&Video")) );
612     menubar->Append( p_navig_menu, wxU(_("&Navigation")) );
613     menubar->Append( help_menu, wxU(_("&Help")) );
614
615     /* Attach the menu bar to the frame */
616     SetMenuBar( menubar );
617
618     /* Find out size of menu bar */
619     int i_size = 0;
620     for( unsigned int i = 0; i < menubar->GetMenuCount(); i++ )
621     {
622         int i_width, i_height;
623         menubar->GetTextExtent( menubar->GetLabelTop(i), &i_width, &i_height );
624         i_size += i_width +
625 #if defined(__WXGTK__)
626             22 /* approximate margin */;
627 #else
628 #if (wxMAJOR_VERSION <= 2) && (wxMINOR_VERSION <= 5) && (wxRELEASE_NUMBER < 3)
629             4 /* approximate margin */;
630 #else
631             18 /* approximate margin */;
632 #endif
633 #endif
634     }
635
636 /* Patch by zcot for menu wrapping */
637 #if defined(WIN32)
638     /* Find out size of msw menu bar */
639     i_size = 0;
640     SIZE sizing;
641     HDC hdc = GetDC( NULL );
642     for( unsigned int i = 0; i < menubar->GetMenuCount(); i++ )
643     {
644         GetTextExtentPoint32( hdc, menubar->GetLabelTop(i).c_str(),
645                                 menubar->GetLabelTop(i).Length(), &sizing );
646
647         // [ SM_CXDLGFRAME + pixels + textextent + pixels + SM_CXDLGFRAME ]
648         i_size += sizing.cx + 2 + GetSystemMetrics( SM_CXDLGFRAME ) * 2;
649     }
650     ReleaseDC( NULL, hdc );
651     i_size += GetSystemMetrics( SM_CXSIZEFRAME ) * 2 + 4;
652 #endif
653 /* End patch by zcot */
654
655     panel_sizer->SetMinSize( i_size, -1 );
656
657     /* Intercept all menu events in our custom event handler */
658     PushEventHandler( new MenuEvtHandler( p_intf, this ) );
659
660 #if wxUSE_DRAG_AND_DROP
661     /* Associate drop targets with the menubar */
662     menubar->SetDropTarget( new DragAndDrop( p_intf ) );
663 #endif
664 }
665
666 void Interface::CreateOurToolBar()
667 {
668 #define HELP_OPEN N_("Open")
669 #define HELP_STOP N_("Stop")
670 #define HELP_PLAY N_("Play")
671 #define HELP_PAUSE N_("Pause")
672 #define HELP_PLO N_("Playlist")
673 #define HELP_SPLO N_("Embedded playlist")
674 #define HELP_PLP N_("Previous playlist item")
675 #define HELP_PLN N_("Next playlist item")
676 #define HELP_SLOW N_("Play slower")
677 #define HELP_FAST N_("Play faster")
678 #define HELP_VOL N_("Toggle mute/unmute of the audio")
679
680 #define LABEL_OPEN N_("Open")
681 #define LABEL_STOP N_("Stop")
682 #define LABEL_PLAY N_("Play")
683 #define LABEL_PAUSE N_("Pause")
684 #define LABEL_PLO N_("Playlist")
685 #define LABEL_SPLO N_("Embedded playlist")
686 #define LABEL_PLP N_("Previous")
687 #define LABEL_PLN N_("Next")
688 #define LABEL_SLOW N_("Slower")
689 #define LABEL_FAST N_("Faster")
690 #define LABEL_VOL N_("Mute")
691
692     int minimal = config_GetInt( p_intf, "wx-minimal" );
693     bool label = config_GetInt( p_intf, "wx-labels" );
694
695     wxLogNull LogDummy; /* Hack to suppress annoying log message on the win32
696                          * version because we don't include wx.rc */
697
698     wxToolBar *toolbar =
699         CreateToolBar( label?wxTB_HORIZONTAL | wxTB_FLAT |wxTB_TEXT:
700                        wxTB_HORIZONTAL | wxTB_FLAT );
701
702     toolbar->SetToolBitmapSize( wxSize(TOOLBAR_BMP_WIDTH,TOOLBAR_BMP_HEIGHT) );
703
704     if (!minimal)
705     {
706     toolbar->AddTool( OpenFile_Event, wxU(LABEL_OPEN),
707                       wxBitmap( eject_xpm ), wxU(_(HELP_OPEN)) );
708     toolbar->AddSeparator();
709     }
710
711     wxToolBarToolBase *p_tool = toolbar->AddTool( PlayStream_Event, wxU(LABEL_PLAY),
712                       wxBitmap( play_xpm ), wxU(_(HELP_PLAY)), wxITEM_CHECK );
713     p_tool->SetClientData( p_tool );
714
715     if (!minimal)
716     {
717     toolbar->AddTool( StopStream_Event, wxU(LABEL_STOP), wxBitmap( stop_xpm ),
718                       wxU(_(HELP_STOP)) );
719     toolbar->AddSeparator();
720
721     toolbar->AddTool( PrevStream_Event, wxU(LABEL_PLP),
722                       wxBitmap( prev_xpm ), wxU(_(HELP_PLP)) );
723     toolbar->AddTool( SlowStream_Event, wxU(LABEL_SLOW),
724                       wxBitmap( slow_xpm ), wxU(_(HELP_SLOW)) );
725     toolbar->AddTool( FastStream_Event, wxU(LABEL_FAST),
726                       wxBitmap( fast_xpm ), wxU(_(HELP_FAST)) );
727     toolbar->AddTool( NextStream_Event, wxU(LABEL_PLN), wxBitmap( next_xpm ),
728                       wxU(_(HELP_PLN)) );
729     toolbar->AddSeparator();
730     if( config_GetInt( p_intf, "wx-playlist-view" ) != 1 )
731         toolbar->AddTool( Playlist_Event, wxU(LABEL_PLO),
732                           wxBitmap( playlist_xpm ), wxU(_(HELP_PLO)) );
733     if( config_GetInt( p_intf, "wx-playlist-view" ) >= 1 )
734         toolbar->AddTool( PlaylistSmall_Event, wxU(LABEL_SPLO),
735                           wxBitmap( playlist_small_xpm ), wxU(_(HELP_SPLO)) );
736     }
737
738     wxToolBarToolBase *v_tool = toolbar->AddTool( ToggleMute_Event,
739                          wxU(LABEL_VOL), wxBitmap( speaker_xpm ),
740                          wxU(_(HELP_VOL)), wxITEM_CHECK );
741     v_tool->SetClientData( v_tool );
742
743     wxSlider *v_gauge = new wxSlider(toolbar, SlideVolume_Event, 256, 0,
744                             AOUT_VOLUME_MAX, wxDefaultPosition,
745                             wxSize(64,TOOLBAR_BMP_HEIGHT), wxSL_HORIZONTAL);
746     toolbar->AddControl(v_gauge);
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 libvlc_int_t::hotkey *p_hotkeys = p_intf->p_libvlc->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 " VERSION_MESSAGE)) +
936         wxU(_(" (wxWidgets interface)\n\n")) +
937         wxU(_("(c) " COPYRIGHT_YEARS " - 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        wxU(_("Based on Git commit: "))+wxU(VLC_Changeset())+wxT(".\n\n") +
942 #ifdef __WXMSW__
943         wxU( vlc_wraptext(LICENSE_MSG,WRAPCOUNT) ) + wxT("\n\n") +
944 #else
945         wxU( LICENSE_MSG ) + wxT("\n\n") +
946 #endif
947         wxU(_("The VideoLAN team <videolan@videolan.org>\n"
948               "http://www.videolan.org/\n\n")) );
949     wxMessageBox( msg, wxString::Format(wxU(_("About %s")),
950                   wxT("VLC media player")), wxOK | wxICON_INFORMATION, this );
951 }
952
953 void Interface::OnWebLink( wxCommandEvent& WXUNUSED(event) )
954 {
955     wxLaunchDefaultBrowser( wxU("http://videolan.org/") );
956 }
957
958 void Interface::OnWebHelp( wxCommandEvent& WXUNUSED(event) )
959 {
960     wxLaunchDefaultBrowser( wxU("http://videolan.org/doc/") );
961 }
962
963 void Interface::OnShowDialog( wxCommandEvent& event )
964 {
965     if( p_intf->p_sys->pf_show_dialog )
966     {
967         int i_id;
968
969         switch( event.GetId() )
970         {
971         case OpenFileSimple_Event:
972             i_id = INTF_DIALOG_FILE_SIMPLE;
973             break;
974         case OpenAdv_Event:
975             i_id = INTF_DIALOG_FILE;
976             break;
977         case OpenFile_Event:
978             i_id = INTF_DIALOG_FILE;
979             break;
980         case OpenDir_Event:
981             i_id = INTF_DIALOG_DIRECTORY;
982             break;
983         case OpenDisc_Event:
984             i_id = INTF_DIALOG_DISC;
985             break;
986         case OpenNet_Event:
987             i_id = INTF_DIALOG_NET;
988             break;
989         case OpenCapture_Event:
990             i_id = INTF_DIALOG_CAPTURE;
991             break;
992         case OpenSat_Event:
993             i_id = INTF_DIALOG_SAT;
994             break;
995         case Playlist_Event:
996             i_id = INTF_DIALOG_PLAYLIST;
997             break;
998         case Logs_Event:
999             i_id = INTF_DIALOG_MESSAGES;
1000             break;
1001         case FileInfo_Event:
1002             i_id = INTF_DIALOG_FILEINFO;
1003             break;
1004         case Prefs_Event:
1005             i_id = INTF_DIALOG_PREFS;
1006             break;
1007         case Wizard_Event:
1008             i_id = INTF_DIALOG_WIZARD;
1009             break;
1010         case Bookmarks_Event:
1011             i_id = INTF_DIALOG_BOOKMARKS;
1012             break;
1013 #ifdef UPDATE_CHECK
1014         case UpdateVLC_Event:
1015             i_id = INTF_DIALOG_UPDATEVLC;
1016             break;
1017 #endif
1018 #if 0
1019         case VLM_Event:
1020             i_id = INTF_DIALOG_VLM;
1021             break;
1022 #endif
1023         default:
1024             i_id = INTF_DIALOG_FILE;
1025             break;
1026         }
1027
1028         p_intf->p_sys->pf_show_dialog( p_intf, i_id, 1, 0 );
1029     }
1030 }
1031
1032 void Interface::OnExtended( wxCommandEvent& WXUNUSED(event) )
1033 {
1034     UpdateVideoWindow( p_intf, video_window );
1035
1036     if( !extra_frame )
1037     {
1038         /* Create the extra panel */
1039         extra_frame = new ExtraPanel( p_intf, main_panel );
1040         panel_sizer->Add( extra_frame, 0, wxEXPAND , 0 );
1041         ext_min_size = extra_frame->GetBestSize();
1042     }
1043
1044     b_extra = !b_extra;
1045     panel_sizer->Show( extra_frame, b_extra );
1046
1047     SetIntfMinSize();
1048     main_sizer->Layout();
1049     main_sizer->Fit( this );
1050 }
1051
1052 void Interface::OnSmallPlaylist( wxCommandEvent& WXUNUSED(event) )
1053 {
1054     UpdateVideoWindow( p_intf, video_window );
1055
1056     if( !playlist_manager )
1057     {
1058         /* Create the extra panel */
1059         playlist_manager = new PlaylistManager( p_intf, splitter );
1060     }
1061
1062     if( !splitter->IsSplit() ) splitter->Split( main_panel, playlist_manager );
1063     else splitter->Unsplit( playlist_manager );
1064
1065     SetIntfMinSize();
1066     main_sizer->Layout();
1067     main_sizer->Fit( this );
1068 }
1069
1070 void Interface::OnPlayStream( wxCommandEvent& WXUNUSED(event) )
1071 {
1072     PlayStream();
1073 }
1074
1075 void Interface::PlayStream()
1076 {
1077     wxCommandEvent dummy;
1078     playlist_t *p_playlist = pl_Yield( p_intf );
1079     if( p_playlist == NULL ) return;
1080
1081     if( !playlist_IsEmpty(p_playlist) )
1082     {
1083         vlc_value_t state;
1084
1085         input_thread_t *p_input = (input_thread_t *)vlc_object_find( p_intf,
1086                                                        VLC_OBJECT_INPUT,
1087                                                        FIND_ANYWHERE );
1088         if( p_input == NULL )
1089         {
1090             /* No stream was playing, start one */
1091             playlist_Play( p_playlist );
1092             pl_Release( p_playlist );
1093             input_manager->Update();
1094             return;
1095         }
1096
1097         var_Get( p_input, "state", &state );
1098         if( state.i_int != PAUSE_S )
1099         {
1100             /* A stream is being played, pause it */
1101             state.i_int = PAUSE_S;
1102         }
1103         else
1104         {
1105             /* Stream is paused, resume it */
1106             state.i_int = PLAYING_S;
1107         }
1108         var_Set( p_input, "state", state );
1109
1110         vlc_object_release( p_input );
1111         pl_Release( p_playlist );
1112         input_manager->Update();
1113     }
1114     else
1115     {
1116         /* If the playlist is empty, open a file requester instead */
1117         pl_Release( p_playlist );
1118         OnShowDialog( dummy );
1119         GetToolBar()->ToggleTool( PlayStream_Event, false );
1120     }
1121 }
1122
1123 void Interface::OnStopStream( wxCommandEvent& WXUNUSED(event) )
1124 {
1125     StopStream();
1126 }
1127 void Interface::StopStream()
1128 {
1129     playlist_t * p_playlist = pl_Yield( p_intf );
1130     if( p_playlist == NULL )
1131     {
1132         return;
1133     }
1134
1135     playlist_Stop( p_playlist );
1136     pl_Release( p_playlist );
1137     input_manager->Update();
1138 }
1139
1140 void Interface::OnPrevStream( wxCommandEvent& WXUNUSED(event) )
1141 {
1142     PrevStream();
1143 }
1144
1145 void Interface::PrevStream()
1146 {
1147     playlist_t * p_playlist = pl_Yield( p_intf );
1148     if( p_playlist == NULL )
1149     {
1150         return;
1151     }
1152
1153     playlist_Prev( p_playlist );
1154     pl_Release( p_playlist );
1155 }
1156
1157 void Interface::OnNextStream( wxCommandEvent& WXUNUSED(event) )
1158 {
1159     NextStream();
1160 }
1161
1162 void Interface::NextStream()
1163 {
1164     playlist_t * p_playlist = pl_Yield( p_intf );
1165     if( p_playlist == NULL )
1166     {
1167         return;
1168     }
1169     playlist_Next( p_playlist );
1170     pl_Release( p_playlist );
1171 }
1172
1173 void Interface::OnSlowStream( wxCommandEvent& WXUNUSED(event) )
1174 {
1175     input_thread_t *p_input =
1176         (input_thread_t *)vlc_object_find( p_intf, VLC_OBJECT_INPUT,
1177                                            FIND_ANYWHERE );
1178     if( p_input )
1179     {
1180         vlc_value_t val; val.b_bool = true;
1181
1182         var_Set( p_input, "rate-slower", val );
1183         vlc_object_release( p_input );
1184     }
1185 }
1186
1187 void Interface::OnFastStream( wxCommandEvent& WXUNUSED(event) )
1188 {
1189     input_thread_t *p_input =
1190         (input_thread_t *)vlc_object_find( p_intf, VLC_OBJECT_INPUT,
1191                                            FIND_ANYWHERE );
1192     if( p_input )
1193     {
1194         vlc_value_t val; val.b_bool = true;
1195
1196         var_Set( p_input, "rate-faster", val );
1197         vlc_object_release( p_input );
1198     }
1199 }
1200
1201 void Interface::OnToggleMute ( wxCommandEvent& WXUNUSED(event) )
1202 {
1203     aout_VolumeMute(p_intf, NULL);
1204     SyncVolume();
1205
1206 }
1207
1208 void Interface::SyncVolume()
1209 {
1210     wxToolBarToolBase *p_tool = (wxToolBarToolBase *)
1211         GetToolBar()->GetToolClientData( ToggleMute_Event );
1212     if ( !p_tool) return;
1213
1214     audio_volume_t i_volume;
1215     aout_VolumeGet(p_intf, &i_volume);
1216
1217     /* Updating the Mute Button... IF the slider is completely moved to the left,
1218      * the mute icon is shown too. */
1219     p_tool->SetNormalBitmap( wxBitmap( i_volume ? speaker_xpm : speaker_mute_xpm ) );
1220     GetToolBar()->Realize();
1221 #if defined( __WXMSW__ )
1222     /* Needed to work around a bug in wxToolBar::Realize() */
1223     GetToolBar()->SetSize( GetSize().GetWidth(),
1224                            GetToolBar()->GetSize().GetHeight() );
1225     GetToolBar()->Update();
1226 #endif
1227     /* the Toggle to true and false is nescessary; otherwise, the Icon
1228      * is not repainted */
1229     GetToolBar()->ToggleTool( ToggleMute_Event, true );
1230     GetToolBar()->ToggleTool( ToggleMute_Event, false );
1231     GetToolBar()->Update();
1232 }
1233
1234 void Interface::OnSlideVolume( wxScrollEvent& WXUNUSED(event))
1235 {
1236     wxSlider *p_tool = (wxSlider *)
1237         GetToolBar()->FindControl( SlideVolume_Event );
1238     if ( !p_tool) return;
1239
1240     aout_VolumeSet(p_intf , p_tool->GetValue());
1241     SyncVolume();
1242
1243 }
1244
1245 void Interface::TogglePlayButton( int i_playing_status )
1246 {
1247     wxToolBarToolBase *p_tool = (wxToolBarToolBase *)
1248         GetToolBar()->GetToolClientData( PlayStream_Event );
1249     if( !p_tool ) return;
1250
1251     if( i_playing_status == PLAYING_S )
1252     {
1253         p_tool->SetNormalBitmap( wxBitmap( pause_xpm ) );
1254         p_tool->SetLabel( wxU(_("Pause")) );
1255         p_tool->SetShortHelp( wxU(_(HELP_PAUSE)) );
1256     }
1257     else
1258     {
1259         p_tool->SetNormalBitmap( wxBitmap( play_xpm ) );
1260         p_tool->SetLabel( wxU(_("Play")) );
1261         p_tool->SetShortHelp( wxU(_(HELP_PLAY)) );
1262     }
1263
1264     GetToolBar()->Realize();
1265
1266 #if defined( __WXMSW__ )
1267     /* Needed to work around a bug in wxToolBar::Realize() */
1268     GetToolBar()->SetSize( GetSize().GetWidth(),
1269                            GetToolBar()->GetSize().GetHeight() );
1270     GetToolBar()->Update();
1271 #endif
1272
1273     GetToolBar()->ToggleTool( PlayStream_Event, true );
1274     GetToolBar()->ToggleTool( PlayStream_Event, false );
1275 }
1276
1277 void Interface::OnInteraction( wxCommandEvent& event )
1278 {
1279     interaction_dialog_t *p_dialog = (interaction_dialog_t *)
1280                                         event.GetClientData();
1281
1282     intf_dialog_args_t *p_arg = new intf_dialog_args_t;
1283     p_arg->p_dialog = p_dialog;
1284     p_arg->p_intf = p_intf;
1285
1286     p_intf->p_sys->pf_show_dialog( p_intf, INTF_DIALOG_INTERACTION,
1287                                        0, p_arg );
1288
1289 }
1290
1291 static int InteractCallback( vlc_object_t *p_this,
1292                              const char *psz_var, vlc_value_t old_val,
1293                              vlc_value_t new_val, void *param )
1294 {
1295     Interface *p_interface = (Interface*)param;
1296     /*interaction_dialog_t *p_dialog = (interaction_dialog_t*)(new_val.p_address);*/
1297
1298     wxCommandEvent event( wxEVT_INTERACTION, -1 );
1299     event.SetClientData( new_val.p_address );
1300     p_interface->AddPendingEvent( event );
1301     return VLC_SUCCESS;
1302 }
1303
1304 #if wxUSE_DRAG_AND_DROP
1305 /*****************************************************************************
1306  * Definition of DragAndDrop class.
1307  *****************************************************************************/
1308 DragAndDrop::DragAndDrop( intf_thread_t *_p_intf, bool _b_enqueue )
1309 {
1310     p_intf = _p_intf;
1311     b_enqueue = _b_enqueue;
1312 }
1313
1314 bool DragAndDrop::OnDropFiles( wxCoord, wxCoord,
1315                                const wxArrayString& filenames )
1316 {
1317     /* Add dropped files to the playlist */
1318     playlist_t *p_playlist = pl_Yield( p_intf );
1319     if( p_playlist == NULL )
1320     {
1321         return FALSE;
1322     }
1323
1324     /* If we drag & drop a subtitle file, add it on the fly */
1325     if( filenames.GetCount() == 1 )
1326     {
1327         char *psz_utf8 = wxDnDFromLocale( filenames[0] );
1328         input_thread_t *p_input = (input_thread_t *)vlc_object_find( p_intf,
1329                                             VLC_OBJECT_INPUT, FIND_ANYWHERE );
1330         if( p_input )
1331         {
1332             if( input_AddSubtitles( p_input, psz_utf8, true ) )
1333             {
1334                 vlc_object_release( p_input );
1335                 wxDnDLocaleFree( psz_utf8 );
1336                 pl_Release( p_playlist );
1337                 return TRUE;
1338             }
1339             vlc_object_release( p_input );
1340         }
1341         wxDnDLocaleFree( psz_utf8 );
1342     }
1343
1344     for( size_t i = 0; i < filenames.GetCount(); i++ )
1345     {
1346         char *psz_utf8 = wxDnDFromLocale( filenames[i] );
1347
1348         playlist_Add( p_playlist, psz_utf8, NULL,
1349                       PLAYLIST_APPEND | ((i | b_enqueue) ? 0 : PLAYLIST_GO),
1350                       PLAYLIST_END, true, false );
1351
1352         wxDnDLocaleFree( psz_utf8 );
1353     }
1354     pl_Release( p_playlist );
1355
1356     return TRUE;
1357 }
1358 #endif
1359
1360 /*****************************************************************************
1361  * Systray class.
1362  *****************************************************************************/
1363
1364 /* wxCocoa pretends to support this, but at least 2.6.x doesn't */
1365 #ifndef __APPLE__
1366 #ifdef wxHAS_TASK_BAR_ICON
1367
1368 BEGIN_EVENT_TABLE(Systray, wxTaskBarIcon)
1369     /* Mouse events */
1370 #ifdef WIN32
1371     EVT_TASKBAR_LEFT_DCLICK(Systray::OnLeftClick)
1372 #else
1373     EVT_TASKBAR_LEFT_DOWN(Systray::OnLeftClick)
1374 #endif
1375     /* Menu events */
1376     EVT_MENU(Iconize_Event, Systray::OnMenuIconize)
1377     EVT_MENU(Exit_Event, Systray::OnExit)
1378     EVT_MENU(PlayStream_Event, Systray::OnPlayStream)
1379     EVT_MENU(NextStream_Event, Systray::OnNextStream)
1380     EVT_MENU(PrevStream_Event, Systray::OnPrevStream)
1381     EVT_MENU(StopStream_Event, Systray::OnStopStream)
1382 END_EVENT_TABLE()
1383
1384 Systray::Systray( Interface *_p_main_interface, intf_thread_t *_p_intf )
1385 {
1386     p_main_interface = _p_main_interface;
1387     p_intf = _p_intf;
1388
1389     SetIcon( wxIcon( (const char**) vlc16x16_xpm ), wxT("VLC media player") );
1390     if( !IsOk() || !IsIconInstalled() )
1391     {
1392         msg_Warn(p_intf, "cannot set systray icon, weird things may happen");
1393     }
1394 }
1395
1396 /* Event handlers */
1397 void Systray::OnMenuIconize( wxCommandEvent& event )
1398 {
1399     p_main_interface->Show( ! p_main_interface->IsShown() );
1400     if ( p_main_interface->IsShown() ) p_main_interface->Raise();
1401 }
1402
1403 void Systray::OnLeftClick( wxTaskBarIconEvent& event )
1404 {
1405     wxCommandEvent cevent;
1406     OnMenuIconize(cevent);
1407 }
1408
1409 void Systray::OnExit( wxCommandEvent& event )
1410 {
1411     p_main_interface->Close(TRUE);
1412 }
1413
1414 void Systray::OnPrevStream( wxCommandEvent& event )
1415 {
1416     p_main_interface->PrevStream();
1417 }
1418
1419 void Systray::OnNextStream( wxCommandEvent& event )
1420 {
1421     p_main_interface->NextStream();
1422 }
1423
1424 void Systray::OnPlayStream( wxCommandEvent& event )
1425 {
1426     p_main_interface->PlayStream();
1427 }
1428
1429 void Systray::OnStopStream( wxCommandEvent& event )
1430 {
1431     p_main_interface->StopStream();
1432 }
1433
1434 /* Systray popup menu */
1435 wxMenu* Systray::CreatePopupMenu()
1436 {
1437     int minimal = config_GetInt( p_intf, "wx-minimal" );
1438
1439     wxMenu* systray_menu = new wxMenu;
1440     systray_menu->Append( Exit_Event, wxU(_("Quit VLC")) );
1441     systray_menu->AppendSeparator();
1442     systray_menu->Append( PlayStream_Event, wxU(_("Play/Pause")) );
1443
1444     if (!minimal)
1445     {
1446     systray_menu->Append( PrevStream_Event, wxU(_("Previous")) );
1447     systray_menu->Append( NextStream_Event, wxU(_("Next")) );
1448     systray_menu->Append( StopStream_Event, wxU(_("Stop")) );
1449     }
1450     systray_menu->AppendSeparator();
1451     systray_menu->Append( Iconize_Event, wxU(_("Show/Hide Interface")) );
1452     return systray_menu;
1453 }
1454
1455 void Systray::UpdateTooltip( const wxChar* tooltip )
1456 {
1457     SetIcon( wxIcon( (const char**) vlc16x16_xpm ), tooltip );
1458 }
1459 #endif
1460 #endif