]> git.sesse.net Git - vlc/blob - modules/gui/wxwidgets/interface.cpp
* modules/gui/wxwidgets: massive cleanup and simplification of the main interface...
[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     Bookmarks_Event,
143     Skins_Event,
144
145     StopStream_Event,
146     PlayStream_Event,
147     PrevStream_Event,
148     NextStream_Event,
149     SlowStream_Event,
150     FastStream_Event,
151
152     /* it is important for the id corresponding to the "About" command to have
153      * this standard value as otherwise it won't be handled properly under Mac
154      * (where it is special and put into the "Apple" menu) */
155     About_Event = wxID_ABOUT,
156     UpdateVLC_Event,
157     VLM_Event,
158
159     Iconize_Event
160 };
161
162 BEGIN_EVENT_TABLE(Interface, wxFrame)
163     /* Menu events */
164     EVT_MENU(Exit_Event, Interface::OnExit)
165     EVT_MENU(About_Event, Interface::OnAbout)
166     EVT_MENU(UpdateVLC_Event, Interface::OnShowDialog)
167     EVT_MENU(VLM_Event, Interface::OnShowDialog)
168
169     EVT_MENU(Playlist_Event, Interface::OnShowDialog)
170     EVT_MENU(Logs_Event, Interface::OnShowDialog)
171     EVT_MENU(FileInfo_Event, Interface::OnShowDialog)
172     EVT_MENU(Prefs_Event, Interface::OnShowDialog)
173
174     EVT_MENU_OPEN(Interface::OnMenuOpen)
175
176     EVT_MENU( Extended_Event, Interface::OnExtended )
177
178     EVT_MENU( Bookmarks_Event, Interface::OnShowDialog)
179
180 #if defined( __WXMSW__ ) || defined( __WXMAC__ )
181     EVT_CONTEXT_MENU(Interface::OnContextMenu2)
182 #endif
183     EVT_RIGHT_UP(Interface::OnContextMenu)
184
185     /* Toolbar events */
186     EVT_MENU(OpenFileSimple_Event, Interface::OnShowDialog)
187     EVT_MENU(OpenAdv_Event, Interface::OnShowDialog)
188     EVT_MENU(OpenFile_Event, Interface::OnShowDialog)
189     EVT_MENU(OpenDir_Event, Interface::OnShowDialog)
190     EVT_MENU(OpenDisc_Event, Interface::OnShowDialog)
191     EVT_MENU(OpenNet_Event, Interface::OnShowDialog)
192     EVT_MENU(OpenCapture_Event, Interface::OnShowDialog)
193     EVT_MENU(OpenSat_Event, Interface::OnShowDialog)
194     EVT_MENU(Wizard_Event, Interface::OnShowDialog)
195     EVT_MENU(StopStream_Event, Interface::OnStopStream)
196     EVT_MENU(PlayStream_Event, Interface::OnPlayStream)
197     EVT_MENU(PrevStream_Event, Interface::OnPrevStream)
198     EVT_MENU(NextStream_Event, Interface::OnNextStream)
199     EVT_MENU(SlowStream_Event, Interface::OnSlowStream)
200     EVT_MENU(FastStream_Event, Interface::OnFastStream)
201
202     /* Custom events */
203     EVT_COMMAND(0, wxEVT_INTF, Interface::OnControlEvent)
204     EVT_COMMAND(1, wxEVT_INTF, Interface::OnControlEvent)
205 END_EVENT_TABLE()
206
207 /*****************************************************************************
208  * Constructor.
209  *****************************************************************************/
210 Interface::Interface( intf_thread_t *_p_intf, long style ):
211     wxFrame( NULL, -1, wxT("VLC media player"),
212              wxDefaultPosition, wxSize(700,100), style )
213 {
214     /* Initializations */
215     p_intf = _p_intf;
216     b_extra = VLC_FALSE;
217     extra_frame = 0;
218
219     /* Give our interface a nice little icon */
220     SetIcon( wxIcon( vlc_xpm ) );
221
222     /* Create a main panel that will fill in the interface window */
223     main_sizer = new wxBoxSizer( wxVERTICAL );
224     SetSizer( main_sizer );
225     main_panel = new wxPanel( this );
226     main_sizer->Add( main_panel, 1, wxEXPAND );
227     main_panel->SetFocus();
228
229 #if defined(__WXGTK20__) && wxCHECK_VERSION(2,5,6)
230     /* As ugly as your butt! Please remove when wxWidgets 2.6 fixed their
231      * Accelerators bug. */
232     main_panel->m_imData = 0;
233     m_imData = 0;
234 #endif
235
236     /* Create a sizer for the main frame */
237     panel_sizer = new wxBoxSizer( wxVERTICAL );
238     main_panel->SetSizer( panel_sizer );
239
240 #ifdef wxHAS_TASK_BAR_ICON
241     /* Systray integration */
242     p_systray = NULL;
243     if( config_GetInt( p_intf, "wx-systray" ) )
244     {
245         p_systray = new Systray( this, p_intf );
246     }
247 #endif
248
249     /* Creation of the menu bar */
250     CreateOurMenuBar();
251
252     /* Creation of the tool bar */
253     CreateOurToolBar();
254
255     /* Creation of the status bar
256      * Helptext for menu items and toolbar tools will automatically get
257      * displayed here. */
258     int i_status_width[3] = {-6, -2, -9};
259     statusbar = CreateStatusBar( 3 );                            /* 2 fields */
260     statusbar->SetStatusWidths( 3, i_status_width );
261     statusbar->SetStatusText( wxString::Format(wxT("x%.2f"), 1.0), 1 );
262
263     /* Video window */
264     video_window = 0;
265     if( config_GetInt( p_intf, "wx-embed" ) )
266     {
267         video_window = CreateVideoWindow( p_intf, main_panel );
268         panel_sizer->Add( p_intf->p_sys->p_video_sizer, 1, wxEXPAND, 0 );
269     }
270
271     /* Creation of the input manager panel */
272     input_manager = new InputManager( p_intf, this, main_panel );
273     panel_sizer->Add( input_manager, 0, wxEXPAND , 0 );
274
275     /* Layout everything */
276     panel_sizer->Layout();
277     panel_sizer->Fit( main_panel );
278     main_sizer->Layout();
279     main_sizer->Fit( this );
280
281 #if wxUSE_DRAG_AND_DROP
282     /* Associate drop targets with the main interface */
283     SetDropTarget( new DragAndDrop( p_intf ) );
284 #endif
285
286     SetupHotkeys();
287
288     /* Start timer */
289     timer = new Timer( p_intf, this );
290
291     /* Restore previous position / settings */
292     WindowSettings *ws = p_intf->p_sys->p_window_settings;
293     wxPoint p;
294     wxSize s;
295     bool b_shown;
296
297     ws->SetScreen( wxSystemSettings::GetMetric( wxSYS_SCREEN_X ),
298                    wxSystemSettings::GetMetric( wxSYS_SCREEN_Y ) );
299
300     if( ws->GetSettings( WindowSettings::ID_MAIN, b_shown, p, s ) ) Move( p );
301
302     /* Get minimum window size to prevent user from glitching it */
303     s = GetSize();
304     if( video_window && video_window->IsShown() )
305         s.SetHeight( s.GetHeight() - video_window->GetSize().GetHeight() );
306     main_min_size = s;
307
308     /* Show extended GUI if requested */
309     wxCommandEvent dummy;
310     if( config_GetInt( p_intf, "wx-extended" ) ) OnExtended( dummy );
311
312     SetIntfMinSize();
313 }
314
315 Interface::~Interface()
316 {
317     WindowSettings *ws = p_intf->p_sys->p_window_settings;
318
319     if( !IsIconized() )
320     {
321         ws->SetSettings( WindowSettings::ID_MAIN, true,
322                          GetPosition(), GetSize() );
323     }
324
325     PopEventHandler(true);
326
327     if( video_window ) delete video_window;
328
329 #ifdef wxHAS_TASK_BAR_ICON
330     if( p_systray ) delete p_systray;
331 #endif
332
333     if( p_intf->p_sys->p_wxwindow ) delete p_intf->p_sys->p_wxwindow;
334
335     /* Clean up */
336     delete timer;
337 }
338
339 void Interface::Init()
340 {
341     /* Misc init */
342     SetupHotkeys();
343 }
344
345 void Interface::Update()
346 {
347     /* Misc updates */
348     ((VLCVolCtrl *)volctrl)->UpdateVolume();
349 }
350
351 void Interface::OnControlEvent( wxCommandEvent& event )
352 {
353     switch( event.GetId() )
354     {
355     case 0:
356         if( p_intf->p_sys->b_video_autosize )
357         {
358             main_sizer->Layout();
359             main_sizer->Fit(this);
360         }
361         break;
362
363     case 1:
364         long i_style = GetWindowStyle();
365         if( event.GetInt() ) i_style |= wxSTAY_ON_TOP;
366         else i_style &= ~wxSTAY_ON_TOP;
367         SetWindowStyle( i_style );
368         break;
369     }
370 }
371
372 /*****************************************************************************
373  * Private methods.
374  *****************************************************************************/
375 void Interface::CreateOurMenuBar()
376 {
377     int minimal = config_GetInt( p_intf, "wx-minimal" );
378
379     /* Create the "File" menu */
380     wxMenu *file_menu = new wxMenu;
381
382     if (!minimal)
383     {
384     file_menu->Append( OpenFileSimple_Event,
385                        wxU(_("Quick &Open File...\tCtrl-O")) );
386
387     file_menu->AppendSeparator();
388     file_menu->Append( OpenFile_Event, wxU(_("Open &File...\tCtrl-F")) );
389     file_menu->Append( OpenDir_Event, wxU(_("Open Dir&ectory...\tCtrl-E")) );
390     file_menu->Append( OpenDisc_Event, wxU(_("Open &Disc...\tCtrl-D")) );
391     file_menu->Append( OpenNet_Event,
392                        wxU(_("Open &Network Stream...\tCtrl-N")) );
393     file_menu->Append( OpenCapture_Event,
394                        wxU(_("Open C&apture Device...\tCtrl-A")) );
395
396     file_menu->AppendSeparator();
397     file_menu->Append( Wizard_Event, wxU(_("&Wizard...\tCtrl-W")) );
398     file_menu->AppendSeparator();
399     }
400     file_menu->Append( Exit_Event, wxU(_("E&xit\tCtrl-X")) );
401
402     /* Create the "View" menu */
403     wxMenu *view_menu = new wxMenu;
404     if (!minimal)
405     {
406     view_menu->Append( Playlist_Event, wxU(_("&Playlist...\tCtrl-P")) );
407     }
408     view_menu->Append( Logs_Event, wxU(_("&Messages...\tCtrl-M")) );
409     view_menu->Append( FileInfo_Event,
410                        wxU(_("Stream and Media &info...\tCtrl-I")) );
411     view_menu->Append( VLM_Event,
412                        wxU(_("VLM Control...\tCtrl-V")) );
413
414     /* Create the "Auto-generated" menus */
415     p_settings_menu = SettingsMenu( p_intf, this );
416     p_audio_menu = AudioMenu( p_intf, this );
417     p_video_menu = VideoMenu( p_intf, this );
418     p_navig_menu = NavigMenu( p_intf, this );
419
420     /* Create the "Help" menu */
421     wxMenu *help_menu = new wxMenu;
422     help_menu->Append( About_Event, wxU(_("About VLC media player")) );
423     help_menu->AppendSeparator();
424     help_menu->Append( UpdateVLC_Event, wxU(_("Check for updates ...")) );
425
426     /* Append the freshly created menus to the menu bar... */
427     wxMenuBar *menubar = new wxMenuBar();
428     menubar->Append( file_menu, wxU(_("&File")) );
429     menubar->Append( view_menu, wxU(_("&View")) );
430     menubar->Append( p_settings_menu, wxU(_("&Settings")) );
431     menubar->Append( p_audio_menu, wxU(_("&Audio")) );
432     menubar->Append( p_video_menu, wxU(_("&Video")) );
433     menubar->Append( p_navig_menu, wxU(_("&Navigation")) );
434     menubar->Append( help_menu, wxU(_("&Help")) );
435
436     /* Attach the menu bar to the frame */
437     SetMenuBar( menubar );
438
439     /* Find out size of menu bar */
440     int i_size = 0;
441     for( unsigned int i = 0; i < menubar->GetMenuCount(); i++ )
442     {
443         int i_width, i_height;
444         menubar->GetTextExtent( menubar->GetLabelTop(i), &i_width, &i_height );
445         i_size += i_width +
446 #if defined(__WXGTK__)
447             22 /* approximate margin */;
448 #else
449 #if (wxMAJOR_VERSION <= 2) && (wxMINOR_VERSION <= 5) && (wxRELEASE_NUMBER < 3)
450             4 /* approximate margin */;
451 #else
452             18 /* approximate margin */;
453 #endif
454 #endif
455     }
456
457 /* Patch by zcot for menu wrapping */
458 #if defined(WIN32)
459     /* Find out size of msw menu bar */
460     i_size = 0;
461     SIZE sizing;
462     HDC hdc = GetDC( NULL );
463     for( unsigned int i = 0; i < menubar->GetMenuCount(); i++ )
464     {
465         GetTextExtentPoint32( hdc, menubar->GetLabelTop(i).c_str(),
466                                 menubar->GetLabelTop(i).Length(), &sizing );
467
468         // [ SM_CXDLGFRAME + pixels + textextent + pixels + SM_CXDLGFRAME ]
469         i_size += sizing.cx + 2 + GetSystemMetrics( SM_CXDLGFRAME ) * 2;
470     }
471     ReleaseDC( NULL, hdc );
472     i_size += GetSystemMetrics( SM_CXSIZEFRAME ) * 2 + 4;
473 #endif
474 /* End patch by zcot */
475
476     panel_sizer->SetMinSize( i_size, -1 );
477
478     /* Intercept all menu events in our custom event handler */
479     PushEventHandler( new MenuEvtHandler( p_intf, this ) );
480
481 #if wxUSE_DRAG_AND_DROP
482     /* Associate drop targets with the menubar */
483     menubar->SetDropTarget( new DragAndDrop( p_intf ) );
484 #endif
485 }
486
487 void Interface::CreateOurToolBar()
488 {
489 #define HELP_OPEN N_("Open")
490 #define HELP_STOP N_("Stop")
491 #define HELP_PLAY N_("Play")
492 #define HELP_PAUSE N_("Pause")
493 #define HELP_PLO N_("Playlist")
494 #define HELP_PLP N_("Previous playlist item")
495 #define HELP_PLN N_("Next playlist item")
496 #define HELP_SLOW N_("Play slower")
497 #define HELP_FAST N_("Play faster")
498
499     int minimal = config_GetInt( p_intf, "wx-minimal" );
500
501     wxLogNull LogDummy; /* Hack to suppress annoying log message on the win32
502                          * version because we don't include wx.rc */
503
504     wxToolBar *toolbar =
505         CreateToolBar( wxTB_HORIZONTAL | wxTB_FLAT );
506
507     toolbar->SetToolBitmapSize( wxSize(TOOLBAR_BMP_WIDTH,TOOLBAR_BMP_HEIGHT) );
508
509     if (!minimal)
510     {
511     toolbar->AddTool( OpenFile_Event, wxT(""),
512                       wxBitmap( eject_xpm ), wxU(_(HELP_OPEN)) );
513     toolbar->AddSeparator();
514     }
515
516     wxToolBarToolBase *p_tool = toolbar->AddTool( PlayStream_Event, wxT(""),
517                       wxBitmap( play_xpm ), wxU(_(HELP_PLAY)), wxITEM_CHECK );
518     p_tool->SetClientData( p_tool );
519
520     if (!minimal)
521     {
522     toolbar->AddTool( StopStream_Event, wxT(""), wxBitmap( stop_xpm ),
523                       wxU(_(HELP_STOP)) );
524     toolbar->AddSeparator();
525
526     toolbar->AddTool( PrevStream_Event, wxT(""),
527                       wxBitmap( prev_xpm ), wxU(_(HELP_PLP)) );
528     toolbar->AddTool( SlowStream_Event, wxT(""),
529                       wxBitmap( slow_xpm ), wxU(_(HELP_SLOW)) );
530     toolbar->AddTool( FastStream_Event, wxT(""),
531                       wxBitmap( fast_xpm ), wxU(_(HELP_FAST)) );
532     toolbar->AddTool( NextStream_Event, wxT(""), wxBitmap( next_xpm ),
533                       wxU(_(HELP_PLN)) );
534     toolbar->AddSeparator();
535     toolbar->AddTool( Playlist_Event, wxT(""), wxBitmap( playlist_xpm ),
536                       wxU(_(HELP_PLO)) );
537     }
538
539 #if !( (wxMAJOR_VERSION <= 2) && (wxMINOR_VERSION <= 6) && (wxRELEASE_NUMBER < 2) )
540     wxControl *p_dummy_ctrl =
541         new wxControl( toolbar, -1, wxDefaultPosition,
542                        wxSize(35, 16 ), wxBORDER_NONE );
543
544     toolbar->AddControl( p_dummy_ctrl );
545 #endif
546
547     volctrl = new VLCVolCtrl( p_intf, toolbar );
548     toolbar->AddControl( volctrl );
549
550     toolbar->Realize();
551
552 #if wxUSE_DRAG_AND_DROP
553     /* Associate drop targets with the toolbar */
554     toolbar->SetDropTarget( new DragAndDrop( p_intf ) );
555 #endif
556 }
557
558 static int ConvertHotkeyModifiers( int i_hotkey )
559 {
560     int i_accel_flags = 0;
561     if( i_hotkey & KEY_MODIFIER_ALT ) i_accel_flags |= wxACCEL_ALT;
562     if( i_hotkey & KEY_MODIFIER_CTRL ) i_accel_flags |= wxACCEL_CTRL;
563     if( i_hotkey & KEY_MODIFIER_SHIFT ) i_accel_flags |= wxACCEL_SHIFT;
564     if( !i_accel_flags ) i_accel_flags = wxACCEL_NORMAL;
565     return i_accel_flags;
566 }
567
568 static int ConvertHotkey( int i_hotkey )
569 {
570     int i_key = i_hotkey & ~KEY_MODIFIER;
571     if( i_key & KEY_ASCII ) return i_key & KEY_ASCII;
572     else if( i_key & KEY_SPECIAL )
573     {
574         switch ( i_key )
575         {
576         case KEY_LEFT: return WXK_LEFT;
577         case KEY_RIGHT: return WXK_RIGHT;
578         case KEY_UP: return WXK_UP;
579         case KEY_DOWN: return WXK_DOWN;
580         case KEY_SPACE: return WXK_SPACE;
581         case KEY_ENTER: return WXK_RETURN;
582         case KEY_F1: return WXK_F1;
583         case KEY_F2: return WXK_F2;
584         case KEY_F3: return WXK_F3;
585         case KEY_F4: return WXK_F4;
586         case KEY_F5: return WXK_F5;
587         case KEY_F6: return WXK_F6;
588         case KEY_F7: return WXK_F7;
589         case KEY_F8: return WXK_F8;
590         case KEY_F9: return WXK_F9;
591         case KEY_F10: return WXK_F10;
592         case KEY_F11: return WXK_F11;
593         case KEY_F12: return WXK_F12;
594         case KEY_HOME: return WXK_HOME;
595         case KEY_END: return WXK_END;
596         case KEY_INSERT: return WXK_INSERT;
597         case KEY_DELETE: return WXK_DELETE;
598         case KEY_MENU: return WXK_MENU;
599         case KEY_ESC: return WXK_ESCAPE;
600         case KEY_PAGEUP: return WXK_PRIOR;
601         case KEY_PAGEDOWN: return WXK_NEXT;
602         case KEY_TAB: return WXK_TAB;
603         case KEY_BACKSPACE: return WXK_BACK;
604         }
605     }
606     return WXK_F24;
607 }
608
609 void Interface::SetupHotkeys()
610 {
611     struct vlc_t::hotkey *p_hotkeys = p_intf->p_vlc->p_hotkeys;
612     int i_hotkeys;
613
614     /* Count number of hoteys */
615     for( i_hotkeys = 0; p_hotkeys[i_hotkeys].psz_action != NULL; i_hotkeys++ );
616
617     p_intf->p_sys->i_first_hotkey_event = wxID_HIGHEST + 7000;
618     p_intf->p_sys->i_hotkeys = i_hotkeys;
619
620     wxAcceleratorEntry *p_entries = new wxAcceleratorEntry[i_hotkeys];
621
622     /* Setup the hotkeys as accelerators */
623     for( int i = 0; i < i_hotkeys; i++ )
624     {
625         int i_mod = ConvertHotkeyModifiers( p_hotkeys[i].i_key );
626         int i_key = ConvertHotkey( p_hotkeys[i].i_key );
627
628 #ifdef WIN32
629         if( !(p_hotkeys[i].i_key & KEY_SPECIAL) && i_mod )
630             i_key = toupper(i_key);
631 #endif
632
633         p_entries[i].Set( i_mod, i_key,
634                           p_intf->p_sys->i_first_hotkey_event + i );
635     }
636
637     wxAcceleratorTable accel( i_hotkeys, p_entries );
638
639     if( !accel.Ok() )
640     {
641         msg_Err( p_intf, "invalid accelerator table" );
642     }
643     else
644     {
645         SetAcceleratorTable( accel );
646     }
647
648     delete [] p_entries;
649 }
650
651 void Interface::SetIntfMinSize()
652 {
653     wxSize ms = main_min_size;
654
655     if( extra_frame && extra_frame->IsShown() )
656     {
657         ms.SetHeight( ms.GetHeight() + ext_min_size.GetHeight() );
658         if( ext_min_size.GetWidth() > ms.GetWidth() )
659             ms.SetWidth( ext_min_size.GetWidth() );
660     }
661
662 #if ( wxCHECK_VERSION( 2,5,4 ) )
663     SetMinSize( ms );
664 #else
665     main_sizer->SetMinSize( ms );
666 #endif
667 }
668
669 /*****************************************************************************
670  * Event Handlers.
671  *****************************************************************************/
672 void Interface::OnMenuOpen( wxMenuEvent& event )
673 {
674 #if defined( __WXMSW__ )
675 #   define GetEventObject GetMenu
676 #endif
677
678     if( event.GetEventObject() == p_settings_menu )
679     {
680         p_settings_menu = SettingsMenu( p_intf, this, p_settings_menu );
681
682         /* Add static items */
683         p_settings_menu->AppendCheckItem( Extended_Event,
684             wxU(_("Extended &GUI\tCtrl-G") ) );
685         if( b_extra ) p_settings_menu->Check( Extended_Event, TRUE );
686         p_settings_menu->Append( Bookmarks_Event,
687                                  wxU(_("&Bookmarks...\tCtrl-B") ) );
688         p_settings_menu->Append( Prefs_Event,
689                                  wxU(_("Preference&s...\tCtrl-S")) );
690     }
691
692     else if( event.GetEventObject() == p_audio_menu )
693     {
694         p_audio_menu = AudioMenu( p_intf, this, p_audio_menu );
695     }
696
697     else if( event.GetEventObject() == p_video_menu )
698     {
699         p_video_menu = VideoMenu( p_intf, this, p_video_menu );
700     }
701
702     else if( event.GetEventObject() == p_navig_menu )
703     {
704         p_navig_menu = NavigMenu( p_intf, this, p_navig_menu );
705     }
706
707 #if defined( __WXMSW__ )
708 #   undef GetEventObject
709 #endif
710 }
711
712 #if defined( __WXMSW__ ) || defined( __WXMAC__ )
713 void Interface::OnContextMenu2(wxContextMenuEvent& event)
714 {
715     /* Only show the context menu for the main interface */
716     if( GetId() != event.GetId() )
717     {
718         event.Skip();
719         return;
720     }
721
722     if( p_intf->p_sys->pf_show_dialog )
723         p_intf->p_sys->pf_show_dialog( p_intf, INTF_DIALOG_POPUPMENU, 1, 0 );
724 }
725 #endif
726 void Interface::OnContextMenu(wxMouseEvent& event)
727 {
728     if( p_intf->p_sys->pf_show_dialog )
729         p_intf->p_sys->pf_show_dialog( p_intf, INTF_DIALOG_POPUPMENU, 1, 0 );
730 }
731
732 void Interface::OnExit( wxCommandEvent& WXUNUSED(event) )
733 {
734     /* TRUE is to force the frame to close. */
735     Close(TRUE);
736 }
737
738 void Interface::OnAbout( wxCommandEvent& WXUNUSED(event) )
739 {
740     wxString msg;
741     msg.Printf( wxString(wxT("VLC media player " PACKAGE_VERSION)) +
742         wxU(_(" (wxWidgets interface)\n\n")) +
743         wxU(_("(c) 1996-2005 - the VideoLAN Team\n\n")) +
744        wxU(_("Compiled by "))+ wxU(VLC_CompileBy())+ wxU("@") +
745        wxU(VLC_CompileHost())+ wxT(".")+ wxU(VLC_CompileDomain())+ wxT(".\n") +
746        wxU(_("Compiler: "))+ wxU(VLC_Compiler())+wxT( ".\n") +
747        wxU(_("Based on SVN revision: "))+wxU(VLC_Changeset())+wxT(".\n\n") +
748 #ifdef __WXMSW__
749         wxU( vlc_wraptext(LICENSE_MSG,WRAPCOUNT,VLC_TRUE) ) + wxT("\n\n") +
750 #else
751         wxU( LICENSE_MSG ) + wxT("\n\n") +
752 #endif
753         wxU(_("The VideoLAN team <videolan@videolan.org>\n"
754               "http://www.videolan.org/\n\n")) );
755
756     wxMessageBox( msg, wxString::Format(wxU(_("About %s")),
757                   wxT("VLC media player")), wxOK | wxICON_INFORMATION, this );
758 }
759
760 void Interface::OnShowDialog( wxCommandEvent& event )
761 {
762     if( p_intf->p_sys->pf_show_dialog )
763     {
764         int i_id;
765
766         switch( event.GetId() )
767         {
768         case OpenFileSimple_Event:
769             i_id = INTF_DIALOG_FILE_SIMPLE;
770             break;
771         case OpenAdv_Event:
772             i_id = INTF_DIALOG_FILE;
773             break;
774         case OpenFile_Event:
775             i_id = INTF_DIALOG_FILE;
776             break;
777         case OpenDir_Event:
778             i_id = INTF_DIALOG_DIRECTORY;
779             break;
780         case OpenDisc_Event:
781             i_id = INTF_DIALOG_DISC;
782             break;
783         case OpenNet_Event:
784             i_id = INTF_DIALOG_NET;
785             break;
786         case OpenCapture_Event:
787             i_id = INTF_DIALOG_CAPTURE;
788             break;
789         case OpenSat_Event:
790             i_id = INTF_DIALOG_SAT;
791             break;
792         case Playlist_Event:
793             i_id = INTF_DIALOG_PLAYLIST;
794             break;
795         case Logs_Event:
796             i_id = INTF_DIALOG_MESSAGES;
797             break;
798         case FileInfo_Event:
799             i_id = INTF_DIALOG_FILEINFO;
800             break;
801         case Prefs_Event:
802             i_id = INTF_DIALOG_PREFS;
803             break;
804         case Wizard_Event:
805             i_id = INTF_DIALOG_WIZARD;
806             break;
807         case Bookmarks_Event:
808             i_id = INTF_DIALOG_BOOKMARKS;
809             break;
810         case UpdateVLC_Event:
811             i_id = INTF_DIALOG_UPDATEVLC;
812             break;
813         case VLM_Event:
814             i_id = INTF_DIALOG_VLM;
815             break;
816         default:
817             i_id = INTF_DIALOG_FILE;
818             break;
819         }
820
821         p_intf->p_sys->pf_show_dialog( p_intf, i_id, 1, 0 );
822     }
823 }
824
825 void Interface::OnExtended( wxCommandEvent& WXUNUSED(event) )
826 {
827     if( !extra_frame )
828     {
829         /* Create the extra panel */
830         extra_frame = new ExtraPanel( p_intf, main_panel );
831         panel_sizer->Add( extra_frame, 0, wxEXPAND , 0 );
832         ext_min_size = extra_frame->GetBestSize();
833     }
834
835     b_extra = !b_extra;
836
837     panel_sizer->Show( extra_frame, b_extra );
838
839     SetIntfMinSize();
840     main_sizer->Layout();
841     main_sizer->Fit( this );
842 }
843
844 void Interface::OnPlayStream( wxCommandEvent& WXUNUSED(event) )
845 {
846     PlayStream();
847 }
848
849 void Interface::PlayStream()
850 {
851     wxCommandEvent dummy;
852     playlist_t *p_playlist =
853         (playlist_t *)vlc_object_find( p_intf, VLC_OBJECT_PLAYLIST,
854                                        FIND_ANYWHERE );
855     if( p_playlist == NULL ) return;
856
857     if( p_playlist->i_size && p_playlist->i_enabled )
858     {
859         vlc_value_t state;
860
861         input_thread_t *p_input = (input_thread_t *)vlc_object_find( p_intf,
862                                                        VLC_OBJECT_INPUT,
863                                                        FIND_ANYWHERE );
864         if( p_input == NULL )
865         {
866             /* No stream was playing, start one */
867             playlist_Play( p_playlist );
868             vlc_object_release( p_playlist );
869             input_manager->Update();
870             return;
871         }
872
873         var_Get( p_input, "state", &state );
874         if( state.i_int != PAUSE_S )
875         {
876             /* A stream is being played, pause it */
877             state.i_int = PAUSE_S;
878         }
879         else
880         {
881             /* Stream is paused, resume it */
882             state.i_int = PLAYING_S;
883         }
884         var_Set( p_input, "state", state );
885
886         vlc_object_release( p_input );
887         vlc_object_release( p_playlist );
888         input_manager->Update();
889     }
890     else
891     {
892         /* If the playlist is empty, open a file requester instead */
893         vlc_object_release( p_playlist );
894         OnShowDialog( dummy );
895     }
896 }
897
898 void Interface::OnStopStream( wxCommandEvent& WXUNUSED(event) )
899 {
900     StopStream();
901 }
902 void Interface::StopStream()
903 {
904     playlist_t * p_playlist =
905         (playlist_t *)vlc_object_find( p_intf, VLC_OBJECT_PLAYLIST,
906                                        FIND_ANYWHERE );
907     if( p_playlist == NULL )
908     {
909         return;
910     }
911
912     playlist_Stop( p_playlist );
913     vlc_object_release( p_playlist );
914     input_manager->Update();
915 }
916
917 void Interface::OnPrevStream( wxCommandEvent& WXUNUSED(event) )
918 {
919     PrevStream();
920 }
921
922 void Interface::PrevStream()
923 {
924     playlist_t * p_playlist =
925         (playlist_t *)vlc_object_find( p_intf, VLC_OBJECT_PLAYLIST,
926                                        FIND_ANYWHERE );
927     if( p_playlist == NULL )
928     {
929         return;
930     }
931
932     playlist_Prev( p_playlist );
933     vlc_object_release( p_playlist );
934 }
935
936 void Interface::OnNextStream( wxCommandEvent& WXUNUSED(event) )
937 {
938     NextStream();
939 }
940
941 void Interface::NextStream()
942 {
943     playlist_t * p_playlist =
944         (playlist_t *)vlc_object_find( p_intf, VLC_OBJECT_PLAYLIST,
945                                        FIND_ANYWHERE );
946     if( p_playlist == NULL )
947     {
948         return;
949     }
950     playlist_Next( p_playlist );
951     vlc_object_release( p_playlist );
952 }
953
954 void Interface::OnSlowStream( wxCommandEvent& WXUNUSED(event) )
955 {
956     input_thread_t *p_input =
957         (input_thread_t *)vlc_object_find( p_intf, VLC_OBJECT_INPUT,
958                                            FIND_ANYWHERE );
959     if( p_input )
960     {
961         vlc_value_t val; val.b_bool = VLC_TRUE;
962
963         var_Set( p_input, "rate-slower", val );
964         vlc_object_release( p_input );
965     }
966 }
967
968 void Interface::OnFastStream( wxCommandEvent& WXUNUSED(event) )
969 {
970     input_thread_t *p_input =
971         (input_thread_t *)vlc_object_find( p_intf, VLC_OBJECT_INPUT,
972                                            FIND_ANYWHERE );
973     if( p_input )
974     {
975         vlc_value_t val; val.b_bool = VLC_TRUE;
976
977         var_Set( p_input, "rate-faster", val );
978         vlc_object_release( p_input );
979     }
980 }
981
982 void Interface::TogglePlayButton( int i_playing_status )
983 {
984     wxToolBarToolBase *p_tool = (wxToolBarToolBase *)
985         GetToolBar()->GetToolClientData( PlayStream_Event );
986     if( !p_tool ) return;
987
988     if( i_playing_status == PLAYING_S )
989     {
990         p_tool->SetNormalBitmap( wxBitmap( pause_xpm ) );
991         p_tool->SetLabel( wxU(_("Pause")) );
992         p_tool->SetShortHelp( wxU(_(HELP_PAUSE)) );
993     }
994     else
995     {
996         p_tool->SetNormalBitmap( wxBitmap( play_xpm ) );
997         p_tool->SetLabel( wxU(_("Play")) );
998         p_tool->SetShortHelp( wxU(_(HELP_PLAY)) );
999     }
1000
1001     GetToolBar()->Realize();
1002     GetToolBar()->ToggleTool( PlayStream_Event, true );
1003     GetToolBar()->ToggleTool( PlayStream_Event, false );
1004 }
1005
1006 #if wxUSE_DRAG_AND_DROP
1007 /*****************************************************************************
1008  * Definition of DragAndDrop class.
1009  *****************************************************************************/
1010 DragAndDrop::DragAndDrop( intf_thread_t *_p_intf, vlc_bool_t _b_enqueue )
1011 {
1012     p_intf = _p_intf;
1013     b_enqueue = _b_enqueue;
1014 }
1015
1016 bool DragAndDrop::OnDropFiles( wxCoord, wxCoord,
1017                                const wxArrayString& filenames )
1018 {
1019     /* Add dropped files to the playlist */
1020
1021     playlist_t *p_playlist =
1022         (playlist_t *)vlc_object_find( p_intf, VLC_OBJECT_PLAYLIST,
1023                                        FIND_ANYWHERE );
1024     if( p_playlist == NULL )
1025     {
1026         return FALSE;
1027     }
1028
1029     for( size_t i = 0; i < filenames.GetCount(); i++ )
1030     {
1031         char *psz_utf8 = wxFromLocale( filenames[i] );
1032
1033         playlist_Add( p_playlist, psz_utf8, psz_utf8,
1034                       PLAYLIST_APPEND | ((i | b_enqueue) ? 0 : PLAYLIST_GO),
1035                       PLAYLIST_END );
1036         wxLocaleFree( psz_utf8 );
1037     }
1038
1039     vlc_object_release( p_playlist );
1040
1041     return TRUE;
1042 }
1043 #endif
1044
1045 /*****************************************************************************
1046  * Definition of VolCtrl class.
1047  *****************************************************************************/
1048 class wxVolCtrl: public wxGauge
1049 {
1050 public:
1051     /* Constructor */
1052     wxVolCtrl( intf_thread_t *_p_intf, wxWindow* parent, wxWindowID id,
1053                wxPoint = wxDefaultPosition, wxSize = wxSize( 20, -1 ) );
1054     virtual ~wxVolCtrl() {};
1055
1056     void UpdateVolume();
1057     int GetVolume();
1058
1059     void OnChange( wxMouseEvent& event );
1060
1061 private:
1062     intf_thread_t *p_intf;
1063
1064     DECLARE_EVENT_TABLE();
1065 };
1066
1067 BEGIN_EVENT_TABLE(wxVolCtrl, wxWindow)
1068     /* Mouse events */
1069     EVT_LEFT_DOWN(wxVolCtrl::OnChange)
1070     EVT_MOTION(wxVolCtrl::OnChange)
1071 END_EVENT_TABLE()
1072
1073 wxVolCtrl::wxVolCtrl( intf_thread_t *_p_intf, wxWindow* parent, wxWindowID id,
1074                       wxPoint point, wxSize size )
1075   : wxGauge( parent, id, 200, point, size, wxGA_HORIZONTAL | wxGA_SMOOTH )
1076 {
1077     p_intf = _p_intf;
1078     UpdateVolume();
1079 }
1080
1081 void wxVolCtrl::OnChange( wxMouseEvent& event )
1082 {
1083     if( !event.LeftDown() && !event.LeftIsDown() ) return;
1084
1085     int i_volume = event.GetX() * 200 / GetClientSize().GetWidth();
1086     aout_VolumeSet( p_intf, i_volume * AOUT_VOLUME_MAX / 200 / 2 );
1087     UpdateVolume();
1088 }
1089
1090 void wxVolCtrl::UpdateVolume()
1091 {
1092     audio_volume_t i_volume;
1093     aout_VolumeGet( p_intf, &i_volume );
1094
1095     int i_gauge_volume = i_volume * 200 * 2 / AOUT_VOLUME_MAX;
1096     if( i_gauge_volume == GetValue() ) return;
1097
1098     SetValue( i_gauge_volume );
1099     SetToolTip( wxString::Format((wxString)wxU(_("Volume")) + wxT(" %d"),
1100                 i_gauge_volume / 2 ) );
1101 }
1102
1103 #if defined(__WXGTK__)
1104 #define VLCVOL_HEIGHT p_parent->GetSize().GetHeight()
1105 #else
1106 #define VLCVOL_HEIGHT TOOLBAR_BMP_HEIGHT
1107 #endif
1108 VLCVolCtrl::VLCVolCtrl( intf_thread_t *_p_intf, wxWindow *p_parent )
1109   :wxControl( p_parent, -1, wxDefaultPosition, wxSize(64, VLCVOL_HEIGHT ),
1110               wxBORDER_NONE ),
1111    i_y_offset((VLCVOL_HEIGHT - TOOLBAR_BMP_HEIGHT) / 2),
1112    b_mute(0), p_intf(_p_intf)
1113 {
1114     gauge = new wxVolCtrl( p_intf, this, -1, wxPoint( 18, i_y_offset ),
1115                            wxSize( 44, TOOLBAR_BMP_HEIGHT ) );
1116 }
1117
1118 void VLCVolCtrl::OnPaint( wxPaintEvent &evt )
1119 {
1120     wxPaintDC dc( this );
1121     wxBitmap mPlayBitmap( b_mute ? speaker_mute_xpm : speaker_xpm );
1122     dc.DrawBitmap( mPlayBitmap, 0, i_y_offset, TRUE );
1123 }
1124
1125 void VLCVolCtrl::OnChange( wxMouseEvent& event )
1126 {
1127     if( event.GetX() < TOOLBAR_BMP_WIDTH )
1128     {
1129         int i_volume;
1130         aout_VolumeMute( p_intf, (audio_volume_t *)&i_volume );
1131
1132         b_mute = !b_mute;
1133         Refresh();
1134     }
1135 }
1136
1137 void VLCVolCtrl::UpdateVolume()
1138 {
1139     gauge->UpdateVolume();
1140
1141     int i_volume = gauge->GetValue();
1142     if( !!i_volume == !b_mute ) return;
1143     b_mute = !b_mute;
1144     Refresh();
1145 }
1146
1147 /*****************************************************************************
1148  * Systray class.
1149  *****************************************************************************/
1150
1151 #ifdef wxHAS_TASK_BAR_ICON
1152
1153 BEGIN_EVENT_TABLE(Systray, wxTaskBarIcon)
1154     /* Mouse events */
1155 #ifdef WIN32
1156     EVT_TASKBAR_LEFT_DCLICK(Systray::OnLeftClick)
1157 #else
1158     EVT_TASKBAR_LEFT_DOWN(Systray::OnLeftClick)
1159 #endif
1160     /* Menu events */
1161     EVT_MENU(Iconize_Event, Systray::OnMenuIconize)
1162     EVT_MENU(Exit_Event, Systray::OnExit)
1163     EVT_MENU(PlayStream_Event, Systray::OnPlayStream)
1164     EVT_MENU(NextStream_Event, Systray::OnNextStream)
1165     EVT_MENU(PrevStream_Event, Systray::OnPrevStream)
1166     EVT_MENU(StopStream_Event, Systray::OnStopStream)
1167 END_EVENT_TABLE()
1168
1169 Systray::Systray( Interface *_p_main_interface, intf_thread_t *_p_intf )
1170 {
1171     p_main_interface = _p_main_interface;
1172     p_intf = _p_intf;
1173
1174     SetIcon( wxIcon( vlc16x16_xpm ), wxT("VLC media player") );
1175     if( !IsOk() || !IsIconInstalled() )
1176     {
1177         msg_Warn(p_intf, "cannot set systray icon, weird things may happen");
1178     }
1179 }
1180
1181 /* Event handlers */
1182 void Systray::OnMenuIconize( wxCommandEvent& event )
1183 {
1184     p_main_interface->Show( ! p_main_interface->IsShown() );
1185     if ( p_main_interface->IsShown() ) p_main_interface->Raise();
1186 }
1187
1188 void Systray::OnLeftClick( wxTaskBarIconEvent& event )
1189 {
1190     wxCommandEvent cevent;
1191     OnMenuIconize(cevent);
1192 }
1193
1194 void Systray::OnExit( wxCommandEvent& event )
1195 {
1196     p_main_interface->Close(TRUE);
1197 }
1198
1199 void Systray::OnPrevStream( wxCommandEvent& event )
1200 {
1201     p_main_interface->PrevStream();
1202 }
1203
1204 void Systray::OnNextStream( wxCommandEvent& event )
1205 {
1206     p_main_interface->NextStream();
1207 }
1208
1209 void Systray::OnPlayStream( wxCommandEvent& event )
1210 {
1211     p_main_interface->PlayStream();
1212 }
1213
1214 void Systray::OnStopStream( wxCommandEvent& event )
1215 {
1216     p_main_interface->StopStream();
1217 }
1218
1219 /* Systray popup menu */
1220 wxMenu* Systray::CreatePopupMenu()
1221 {
1222     int minimal = config_GetInt( p_intf, "wx-minimal" );
1223
1224     wxMenu* systray_menu = new wxMenu;
1225     systray_menu->Append( Exit_Event, wxU(_("Quit VLC")) );
1226     systray_menu->AppendSeparator();
1227     systray_menu->Append( PlayStream_Event, wxU(_("Play/Pause")) );
1228
1229     if (!minimal)
1230     {
1231     systray_menu->Append( PrevStream_Event, wxU(_("Previous")) );
1232     systray_menu->Append( NextStream_Event, wxU(_("Next")) );
1233     systray_menu->Append( StopStream_Event, wxU(_("Stop")) );
1234     }
1235     systray_menu->AppendSeparator();
1236     systray_menu->Append( Iconize_Event, wxU(_("Show/Hide interface")) );
1237     return systray_menu;
1238 }
1239
1240 void Systray::UpdateTooltip( const wxChar* tooltip )
1241 {
1242     SetIcon( wxIcon( vlc16x16_xpm ), tooltip );
1243 }
1244 #endif